:root {
  --sky-top: #f7f0df;
  --sky-mid: #e8dbc0;
  --sky-bottom: #d9ccb0;
  --mist: #d7e0de;
  --mist-deep: #aec0bb;
  --teal-soft: #6f8b81;
  --teal-deep: #556e65;
  --meadow: #87956d;
  --meadow-deep: #5d694b;
  --leaf: #7c8861;
  --leaf-deep: #46543d;
  --blush: #c98f6a;
  --blush-deep: #9d6042;
  --peach: #d4a86b;
  --butter: #efd18d;
  --soil: #705543;
  --soil-soft: #93715a;
  --paper: rgba(252, 247, 238, 0.82);
  --paper-strong: rgba(255, 251, 244, 0.94);
  --paper-soft: rgba(247, 238, 223, 0.72);
  --line: rgba(88, 67, 52, 0.16);
  --line-strong: rgba(88, 67, 52, 0.28);
  --text: #2f241c;
  --text-soft: #5b4a3d;
  --muted: #7b6a5d;
  --shadow-xl: 0 40px 110px rgba(81, 59, 40, 0.16);
  --shadow-lg: 0 24px 64px rgba(81, 59, 40, 0.13);
  --shadow-md: 0 14px 32px rgba(81, 59, 40, 0.1);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --font-body: "Gowun Dodum", sans-serif;
  --font-display: "Jua", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 14% 10%, rgba(246, 249, 248, 0.74), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(171, 191, 187, 0.18), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(135, 149, 109, 0.14), transparent 28%),
    linear-gradient(180deg, #f2e9d8 0%, #e6dac0 40%, #d8c8a6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.46) 0 7px, transparent 8px),
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.38) 0 9px, transparent 10px),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.4) 0 8px, transparent 9px),
    radial-gradient(circle at 76% 62%, rgba(255, 255, 255, 0.28) 0 6px, transparent 7px);
  filter: blur(14px);
  opacity: 0.36;
}

body::after {
  background:
    linear-gradient(rgba(88, 67, 52, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 67, 52, 0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 86%);
  opacity: 0.24;
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 251, 241, 0.88), transparent 22%),
    radial-gradient(circle at 16% 14%, rgba(193, 212, 207, 0.2), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(214, 183, 125, 0.16), transparent 17%),
    radial-gradient(circle at 50% 84%, rgba(135, 149, 109, 0.14), transparent 26%),
    linear-gradient(180deg, #f2e7d3 0%, #e5d7bc 46%, #d8c8a3 100%);
}

body[data-page="home"] .page-shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  min-height: calc(100svh + 120px);
  padding: 0 0 40px;
}

body[data-page="home"] main {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
}

body[data-page="charge"] {
  background:
    radial-gradient(circle at 16% 12%, rgba(247, 250, 248, 0.56), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(171, 191, 187, 0.14), transparent 19%),
    radial-gradient(circle at 50% 86%, rgba(120, 137, 96, 0.1), transparent 26%),
    linear-gradient(180deg, #efe4d0 0%, #e3d6ba 42%, #d7c6a4 100%);
}

body[data-page="auth"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(247, 250, 248, 0.58), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(171, 191, 187, 0.16), transparent 18%),
    radial-gradient(circle at 50% 84%, rgba(120, 137, 96, 0.12), transparent 28%),
    linear-gradient(180deg, #f0e4d0 0%, #e3d5b9 44%, #d2c19f 100%);
}

body[data-page="login"],
body[data-page="register"],
body[data-page="forgot"],
body[data-page="password"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(247, 250, 248, 0.58), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(171, 191, 187, 0.16), transparent 18%),
    radial-gradient(circle at 50% 84%, rgba(120, 137, 96, 0.12), transparent 28%),
    linear-gradient(180deg, #f0e4d0 0%, #e3d5b9 44%, #d2c19f 100%);
}

body[data-page="charge"]::before,
body[data-page="charge"]::after,
body[data-page="home"]::before,
body[data-page="home"]::after,
body[data-page="login"]::before,
body[data-page="login"]::after,
body[data-page="register"]::before,
body[data-page="register"]::after,
body[data-page="forgot"]::before,
body[data-page="forgot"]::after,
body[data-page="password"]::before,
body[data-page="password"]::after,
body[data-page="mypage"]::before,
body[data-page="mypage"]::after {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(223, 201, 166, 0.68);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(247, 237, 219, 0.92), rgba(232, 220, 199, 0.84));
  box-shadow: 0 18px 44px rgba(104, 84, 60, 0.12);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .site-header {
  top: 0;
  gap: 20px;
  width: 100%;
  margin: 0 0 24px;
  padding: 18px 28px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0 0 28px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 239, 0.8);
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(145deg, #f0d59e, #e8dbc3 64%, #d7b17a);
  color: #62452d;
  font-size: 1rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 20px rgba(91, 65, 45, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f5e8bd, #dca665);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 5px 12px rgba(91, 65, 45, 0.1);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: none;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  font-size: 0.91rem;
  font-weight: 800;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.site-nav-button {
  padding: 10px 15px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.91rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible,
body[data-page="home"] .site-nav a[href="./index.html"],
body[data-page="auth"] .site-nav a[href="./auth.html"],
body[data-page="login"] .site-nav a[href="./login.html"],
body[data-page="register"] .site-nav a[href="./register.html"],
body[data-page="forgot"] .site-nav a[href="./login.html"],
body[data-page="about"] .site-nav a[href="./about.html"],
body[data-page="guide"] .site-nav a[href="./guide.html"],
body[data-page="notice"] .site-nav a[href="./notice.html"],

.hero,
.sub-hero,
.panel,
.step-card,
.timeline-card,
.cta-banner,
.feature-strip article,
.connect-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 234, 0.58);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero::before,
.sub-hero::before,
.panel::before,
.step-card::before,
.timeline-card::before,
.cta-banner::before,
.feature-strip article::before,
.connect-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(180deg, transparent 56%, rgba(255, 255, 255, 0.16));
}

.hero-copy,
.connect-card,
.panel,
.step-card,
.timeline-card,
.cta-banner {
  position: relative;
  z-index: 1;
}

.hero,
.sub-hero {
  padding: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hero-home {
  flex: 1 1 auto;
  min-height: calc(100svh - 96px);
  place-items: center;
  width: 100%;
  padding: 52px max(24px, 4vw) 220px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  backdrop-filter: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 248, 230, 0.28), transparent 40%),
    linear-gradient(180deg, rgba(196, 186, 151, 0.16), rgba(106, 122, 79, 0.34));
  opacity: 0.56;
  z-index: 0;
}

.hero-home .hero-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 860px);
  gap: 18px;
  padding: 18px 12px 22px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-home .hero-copy::before {
  display: none;
}

.hero h1,
.sub-hero h1,
.panel h2,
.feature-strip h2,
.timeline-card h2,
.cta-banner h2,
.step-card h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero h1,
.sub-hero h1 {
  font-size: clamp(3.3rem, 8vw, 5.7rem);
}

.panel h2,
.feature-strip h2,
.timeline-card h2,
.cta-banner h2,
.step-card h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.hero-text,
.sub-hero p,
.panel p,
.feature-strip p,
.timeline-card p,
.step-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-text {
  max-width: 32rem;
  color: #4e3d31;
  font-size: clamp(1.02rem, 2vw, 1.14rem);
}

.eyebrow,
.section-label,
.card-label,
.feature-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(251, 240, 220, 0.92);
  border-radius: var(--radius-pill);
  background: rgba(251, 241, 222, 0.88);
  color: #7c5a3d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-home .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.menu-toggle[data-icon],
.charge-agreement-view[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menu-toggle[data-icon]::before,
.charge-agreement-view[data-icon]::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 1.08rem;
  height: 1.08rem;
  background-color: currentColor;
  mask-image: var(--button-icon);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: var(--button-icon);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  opacity: 0.9;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background:
    linear-gradient(180deg, #b1764c, #8f5a39);
  color: #fff9f1;
  box-shadow: 0 16px 34px rgba(118, 74, 47, 0.24);
}

.button-secondary {
  border-color: rgba(205, 182, 148, 0.9);
  background:
    linear-gradient(180deg, rgba(246, 238, 223, 0.96), rgba(236, 223, 202, 0.9));
  color: #5c4836;
  box-shadow: 0 12px 28px rgba(112, 86, 60, 0.1);
}


.menu-toggle[data-icon]::before,
.charge-agreement-view[data-icon]::before {
  opacity: 0.84;
}

.button-ghost {
  border-color: rgba(124, 156, 113, 0.22);
  background: rgba(215, 230, 202, 0.54);
  color: var(--leaf-deep);
}


.button[data-icon="menu"] {
  --button-icon: url("./icons/menu.svg");
}


.button[data-icon="play"] {
  --button-icon: url("./icons/play.svg");
}

.button[data-icon="cash"] {
  --button-icon: url("./icons/cash.svg");
}

.button[data-icon="login"] {
  --button-icon: url("./icons/login.svg");
}

.button[data-icon="microsoft"] {
  --button-icon: url("./icons/microsoft.svg");
}

.button[data-icon="mypage"] {
  --button-icon: url("./icons/mypage.svg");
}

.button[data-icon="next"] {
  --button-icon: url("./icons/next.svg");
}

.button[data-icon="back"] {
  --button-icon: url("./icons/back.svg");
}

.button[data-icon="signup"] {
  --button-icon: url("./icons/signup.svg");
}

.button[data-icon="save"] {
  --button-icon: url("./icons/save.svg");
}

.button[data-icon="view"],
.charge-agreement-view[data-icon="view"] {
  --button-icon: url("./icons/view.svg");
}

.button[data-icon="discord"] {
  --button-icon: url("./icons/discord.svg");
}

.button[data-icon="delete"] {
  --button-icon: url("./icons/delete.svg");
}

.menu-toggle[data-icon="menu"] {
  --button-icon: url("./icons/menu.svg");
}

.charge-agreement-view[data-icon="view"] {
  --button-icon: url("./icons/view.svg");
}

.button-disabled {
  background: rgba(255, 255, 255, 0.44);
  color: #9f938a;
  pointer-events: none;
}

.button-full {
  width: 100%;
}

.hero-server-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(229, 235, 228, 0.92);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(252, 250, 244, 0.94), rgba(237, 233, 223, 0.88));
  color: #4f3f32;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(82, 86, 74, 0.1);
}

.hero-server-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
}

.hero-server-divider {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(95, 71, 45, 0.34);
  font-size: 0;
  line-height: 0;
}

.copy-feedback,
.play-feedback {
  min-height: 1.2em;
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.copy-feedback {
  color: var(--blush-deep);
}

.play-feedback {
  color: var(--leaf-deep);
}

.hero-scene {
  position: absolute;
  inset: auto 18px 0 18px;
  height: 62%;
  pointer-events: none;
  z-index: 0;
}

.scene-sun,
.scene-cloud,
.scene-hill,
.scene-path,
.scene-fence,
.scene-house,
.scene-roof,
.scene-tree,
.scene-flowers {
  position: absolute;
}

.scene-sun {
  top: 3%;
  right: 10%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.84), rgba(243, 222, 154, 0.82) 36%, rgba(214, 168, 96, 0.64) 68%, transparent 74%);
  filter: blur(1px);
}

.scene-cloud {
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 55%, rgba(255, 255, 255, 0.88), transparent 42%),
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.88), transparent 44%),
    radial-gradient(circle at 74% 58%, rgba(255, 255, 255, 0.88), transparent 42%);
  filter: blur(2px);
  opacity: 0.8;
}

.scene-cloud-a {
  top: 8%;
  left: 13%;
  width: 170px;
  height: 68px;
}

.scene-cloud-b {
  top: 18%;
  right: 22%;
  width: 136px;
  height: 54px;
}

.scene-hill {
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
}

.scene-hill-back {
  bottom: 34%;
  width: 115%;
  height: 40%;
  background:
    linear-gradient(180deg, rgba(181, 190, 143, 0.94), rgba(116, 132, 87, 0.94));
}

.scene-hill-front {
  bottom: 0;
  width: 122%;
  height: 54%;
  background:
    radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(140, 157, 101, 0.98), rgba(90, 108, 66, 0.98));
}

.scene-path {
  left: 50%;
  bottom: 0;
  width: min(22vw, 270px);
  height: 48%;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(180deg, rgba(235, 214, 170, 0.98), rgba(188, 149, 96, 0.98));
  box-shadow: 0 -4px 0 rgba(255, 255, 255, 0.16);
  clip-path: polygon(42% 0%, 58% 0%, 78% 100%, 22% 100%);
  opacity: 0.95;
}

.scene-fence {
  left: 9%;
  right: 9%;
  bottom: 17%;
  height: 34px;
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(120, 95, 78, 0.5) 16px 20px, transparent 20px 48px),
    linear-gradient(180deg, transparent 0 12px, rgba(120, 95, 78, 0.5) 12px 16px, transparent 16px 18px, rgba(120, 95, 78, 0.5) 18px 22px);
  opacity: 0.72;
}

.scene-house {
  left: 50%;
  bottom: 22%;
  width: 96px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, #f1dcc1, #c9a174);
  box-shadow:
    inset 0 -8px 0 rgba(121, 95, 79, 0.08),
    0 10px 18px rgba(121, 95, 79, 0.12);
}

.scene-house::before,
.scene-house::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 18px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 244, 205, 0.74);
}

.scene-house::before {
  left: 16px;
}

.scene-house::after {
  right: 16px;
}

.scene-roof {
  left: 50%;
  bottom: calc(22% + 44px);
  width: 120px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #9f6848, #74482d);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  filter: drop-shadow(0 8px 12px rgba(121, 95, 79, 0.12));
}

.scene-tree {
  bottom: 20%;
  width: 82px;
  height: 128px;
}

.scene-tree::before,
.scene-tree::after {
  content: "";
  position: absolute;
}

.scene-tree::before {
  left: 34px;
  bottom: 0;
  width: 14px;
  height: 58px;
  border-radius: 10px;
  background: linear-gradient(180deg, #9b7a66, #745847);
}

.scene-tree::after {
  inset: 0;
  bottom: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 36%, rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at 34% 54%, rgba(145, 164, 112, 0.98), transparent 34%),
    radial-gradient(circle at 68% 44%, rgba(102, 121, 73, 0.98), transparent 36%),
    radial-gradient(circle at 52% 72%, rgba(70, 84, 61, 0.92), transparent 34%);
}

.scene-tree-left {
  left: 13%;
}

.scene-tree-right {
  right: 14%;
}

.scene-flowers {
  bottom: 10%;
  width: 110px;
  height: 54px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 58%, rgba(242, 179, 184, 0.96), transparent 10%),
    radial-gradient(circle at 32% 38%, rgba(244, 226, 168, 0.96), transparent 10%),
    radial-gradient(circle at 48% 62%, rgba(255, 255, 255, 0.92), transparent 9%),
    radial-gradient(circle at 62% 36%, rgba(242, 179, 184, 0.94), transparent 10%),
    radial-gradient(circle at 82% 54%, rgba(244, 226, 168, 0.94), transparent 10%);
  opacity: 0.92;
}

.scene-flowers-left {
  left: 7%;
}

.scene-flowers-right {
  right: 7%;
}

.sub-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 209, 141, 0.26), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(201, 143, 106, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(250, 243, 230, 0.92), rgba(241, 231, 211, 0.88));
}

.sub-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.hero-badges,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges {
  margin-bottom: 8px;
}

.hero-badges span,
.pill-grid span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-strip,
.content-grid,
.info-grid,
.notice-layout,
.guide-stack {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-strip article,
.panel,
.step-card,
.timeline-card,
.cta-banner,
.connect-card {
  padding: 24px;
}

.feature-strip article {
  background:
    linear-gradient(180deg, rgba(250, 244, 233, 0.94), rgba(240, 229, 208, 0.88));
}

.content-grid,
.notice-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.server-meta {
  display: grid;
  gap: 12px;
}

.server-meta div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 239, 0.68));
}

.server-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.server-meta strong {
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  word-break: break-all;
}

.server-meta-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-plain,
.panel-earth,
.panel-warm,
.panel-sky,
.timeline-card,
.step-card,
.cta-banner {
  background:
    linear-gradient(180deg, rgba(250, 244, 233, 0.94), rgba(240, 229, 208, 0.88));
}

.panel-warm {
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 143, 106, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(252, 246, 236, 0.96), rgba(244, 232, 210, 0.9));
}

.panel-sky {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(246, 242, 232, 0.94), rgba(227, 232, 217, 0.9));
}

.panel-earth {
  background:
    radial-gradient(circle at 14% 12%, rgba(239, 209, 141, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(248, 241, 230, 0.96), rgba(232, 220, 200, 0.92));
}

.panel-actions .hero-actions {
  margin-top: 14px;
}

.simple-steps,
.detail-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.82;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blush-deep);
  font-weight: 800;
}

.timeline-card,
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.step-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(180deg, rgba(240, 216, 160, 0.56), rgba(208, 187, 145, 0.5));
  color: #6a4a2f;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.charge-hero {
  margin-bottom: 18px;
}

.charge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.charge-panel {
  display: grid;
  gap: 18px;
  box-shadow:
    0 18px 44px rgba(88, 67, 52, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.charge-panel[hidden] {
  display: none !important;
}

.charge-widget-panel {
  position: sticky;
  top: 104px;
}

.charge-panel-head {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(88, 67, 52, 0.08);
}

.charge-verify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.charge-field {
  display: grid;
  gap: 10px;
}

.charge-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.charge-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(104, 81, 62, 0.14);
  border-radius: 16px;
  background: rgba(255, 251, 244, 0.9);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.charge-input:focus {
  outline: 0;
  border-color: rgba(132, 105, 71, 0.44);
  box-shadow:
    0 0 0 4px rgba(132, 105, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.charge-check-button {
  min-width: 148px;
}

.charge-inline-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.charge-auth-actions,
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.charge-player-status {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(247, 236, 216, 0.9);
  border-radius: 16px;
  background: rgba(251, 245, 235, 0.76);
  color: var(--text-soft);
  font-weight: 700;
}

.charge-player-status[data-state="success"] {
  border-color: rgba(116, 132, 87, 0.24);
  background: rgba(220, 229, 208, 0.64);
  color: var(--leaf-deep);
}

.charge-player-status[data-state="error"] {
  border-color: rgba(157, 96, 66, 0.24);
  background: rgba(213, 177, 156, 0.24);
  color: #84472e;
}

.charge-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.charge-stage-actions {
  justify-content: flex-start;
}

.charge-package-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(247, 235, 216, 0.94);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(244, 233, 212, 0.9));
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.charge-package-card:hover,
.charge-package-card:focus-visible,
.charge-package-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(132, 105, 71, 0.34);
  box-shadow: 0 18px 34px rgba(86, 63, 45, 0.14);
}

.charge-package-card strong {
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.charge-package-card span {
  color: var(--text-soft);
  font-weight: 700;
}

.charge-method-card {
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
}

.charge-method-card .charge-package-label {
  font-size: 0.8rem;
  letter-spacing: 0;
  color: var(--text);
}

.charge-method-card span:last-child {
  font-size: 0.74rem;
  line-height: 1.5;
  font-weight: 600;
}

.charge-package-label {
  color: #8a745f;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}


.charge-payment-caption {
  margin-top: 4px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(92, 72, 54, 0.78);
}

.charge-summary {
  display: grid;
  gap: 10px;
}

.charge-summary-vertical {
  gap: 12px;
}

.charge-summary-compact {
  gap: 0;
}

.charge-summary-compact div {
  justify-content: flex-start;
  gap: 14px;
}

.charge-summary-compact strong {
  font-size: 1rem;
}

.charge-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(247, 235, 216, 0.88);
  border-radius: 16px;
  background: rgba(251, 245, 235, 0.8);
}

.charge-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.charge-summary strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
}

.charge-checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.charge-checkline input {
  width: 18px;
  height: 18px;
}

.charge-widget-box {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px dashed rgba(112, 85, 67, 0.24);
  border-radius: 18px;
  background: rgba(249, 242, 230, 0.54);
}

.charge-widget-box[data-ready="true"] {
  border-style: solid;
  border-color: rgba(116, 132, 87, 0.24);
  background: rgba(249, 244, 235, 0.76);
}

.charge-widget-message {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.charge-agreements {
  display: grid;
  gap: 10px;
}

.charge-agreement-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 235, 216, 0.88);
  border-radius: 14px;
  background: rgba(251, 245, 235, 0.8);
}

.charge-agreement-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.charge-agreement-main input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.charge-agreement-view {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(104, 81, 62, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.92);
  color: var(--text-soft);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.charge-pay-action {
  margin-top: 2px;
}

.charge-legal-dialog {
  width: min(100% - 24px, 920px);
  max-height: min(86svh, 860px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.98);
  box-shadow: 0 26px 70px rgba(88, 67, 52, 0.24);
}

.charge-legal-dialog::backdrop {
  background: rgba(41, 29, 21, 0.42);
  backdrop-filter: blur(4px);
}

.charge-legal-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(88, 67, 52, 0.08);
}

.charge-legal-dialog-head strong {
  font-size: 0.96rem;
}

.charge-legal-close {
  padding: 8px 12px;
  border: 1px solid rgba(104, 81, 62, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.92);
  color: var(--text-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.charge-legal-dialog-body {
  min-height: 380px;
}

.charge-legal-dialog-body iframe {
  width: 100%;
  min-height: min(68svh, 720px);
  border: 0;
  border-radius: 0 0 22px 22px;
  background: #fff;
}

.charge-legal-copy {
  display: grid;
  gap: 12px;
  padding: 20px 18px 22px;
}

.charge-legal-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.charge-notice-strip {
  margin-top: 18px;
}

.auth-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.auth-page-shell {
  min-height: 100vh;
  width: min(calc(100% - 24px), 1480px);
  padding: 16px 0 32px;
}

.auth-page-main {
  display: block;
  min-height: 0;
  padding: 10px 0 24px;
}

.auth-single-layout {
  width: min(100%, 900px);
  margin: 0 auto;
}

.charge-simple-layout {
  width: min(100%, 1040px);
  gap: 18px;
}

.auth-page-shell .panel {
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.96);
  box-shadow: 0 14px 30px rgba(88, 67, 52, 0.08);
  backdrop-filter: none;
}

.auth-page-shell .panel::before {
  display: none;
}

.auth-panel {
  display: grid;
  gap: 18px;
}

.auth-panel-centered {
  text-align: center;
}

.auth-center-head {
  justify-items: center;
}

.auth-form-grid {
  display: grid;
  gap: 14px;
}

.auth-step-indicator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auth-step-indicator span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(103, 78, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.7);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.auth-step-indicator .is-active {
  border-color: rgba(132, 105, 71, 0.26);
  background: rgba(239, 229, 208, 0.92);
  color: var(--text);
}

.auth-step-panel {
  display: grid;
  gap: 16px;
}

.auth-step-panel[hidden] {
  display: none !important;
}

.auth-code-head {
  padding-bottom: 0;
  border-bottom: 0;
}

.auth-code-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.auth-code-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.auth-code-input {
  width: 100%;
  min-height: 72px;
  padding: 0;
  border: 1px solid rgba(104, 81, 62, 0.14);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--text);
  text-align: center;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.auth-code-input:focus {
  outline: 0;
  border-color: rgba(132, 105, 71, 0.44);
  box-shadow:
    0 0 0 4px rgba(132, 105, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.auth-step-actions {
  justify-content: space-between;
}

.auth-divider {
  height: 1px;
  background: rgba(88, 67, 52, 0.1);
}

.auth-account-panel {
  margin-top: 18px;
}

.auth-feedback {
  margin-top: 18px;
  min-height: 1.4em;
  text-align: center;
}

.auth-feedback[data-state="success"] {
  color: var(--leaf-deep);
}

.auth-feedback[data-state="error"] {
  color: var(--blush-deep);
}

.auth-bottom-link {
  text-align: center;
}

.auth-bottom-link a {
  color: var(--blush-deep);
  font-weight: 800;
}

.mypage-layout {
  width: min(100%, 760px);
}

.mypage-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mypage-stat-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(103, 78, 60, 0.1);
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.84);
  text-align: left;
}

.mypage-stat-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.mypage-stat-card strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.mypage-stat-card-wide {
  grid-column: 1 / -1;
}

.auth-actions-single {
  justify-content: center;
}

.mypage-order-list {
  display: grid;
  gap: 8px;
}

.mypage-order-actions {
  display: flex;
  justify-content: center;
  margin-top: -2px;
}

.mypage-order-card {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(103, 78, 60, 0.1);
  border-radius: 14px;
  background: rgba(255, 251, 245, 0.84);
}

.mypage-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mypage-order-head strong {
  font-size: 0.92rem;
}

.mypage-order-head span {
  color: var(--leaf-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.mypage-order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.mypage-order-meta div {
  display: grid;
  gap: 2px;
}

.mypage-order-meta span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.mypage-order-meta strong {
  color: var(--text);
  font-size: 0.84rem;
  word-break: break-all;
}

.mypage-order-empty {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.mypage-utility-row {
  display: flex;
  justify-content: center;
}

.mypage-utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(104, 81, 62, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.92);
  color: var(--text-soft);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.mypage-delete-trigger {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(157, 96, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.85);
  color: #8b5940;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.mypage-delete-dialog {
  width: min(100% - 24px, 560px);
}

.mypage-delete-dialog-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px 18px;
  margin-top: 26px;
  border: 1px solid rgba(232, 226, 213, 0.72);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.94));
  color: #6a5433;
}

body[data-page="home"] .site-footer {
  margin-top: 0;
}

.site-footer strong {
  color: #6a5433;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.04rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.site-footer-legal {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.site-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: auto;
  justify-content: flex-end;
}

.legal-links a {
  color: #7b6443;
  font-size: 0.75rem;
  font-weight: 700;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: #a37232;
}

.site-footer-business {
  margin: 0;
  color: rgba(106, 84, 51, 0.82);
  font-size: 0.62rem;
  line-height: 1.6;
  text-align: left;
  flex: 1 1 auto;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-document {
  padding: 26px 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 247, 240, 0.88));
}

.legal-document h2 {
  margin: 24px 0 8px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document p {
  margin: 0 0 10px;
  font-size: 0.96rem;
  line-height: 1.9;
}

.legal-business {
  margin-bottom: 18px;
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-business p {
  margin: 0 0 4px;
  font-size: 0.78rem;
  line-height: 1.75;
}

.legal-business strong {
  color: var(--text);
  font-weight: 800;
}

main > * {
  animation: fade-up 0.56s ease both;
}

main > *:nth-child(2) {
  animation-delay: 0.05s;
}

main > *:nth-child(3) {
  animation-delay: 0.1s;
}

main > *:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .feature-strip,
  .content-grid,
  .info-grid,
  .notice-layout,
  .charge-layout,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: calc(100vh - 156px);
    padding-bottom: 210px;
  }

  .timeline-card,
  .cta-banner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .charge-widget-panel {
    position: relative;
    top: auto;
  }

  .site-footer-legal {
    align-items: flex-start;
  }

  .site-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 14px;
  }

  body[data-page="home"] .page-shell {
    width: 100%;
    padding-top: 0;
  }

  body[data-page="home"] main {
    flex: 1 1 auto;
  }

  .site-header {
    top: 8px;
    border-radius: 26px;
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  body[data-page="home"] .site-header {
    top: 0;
    padding: 14px 16px;
    border-radius: 0 0 22px 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav-button {
    display: flex;
    align-items: center;
    align-self: stretch;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border: 0;
    border-radius: 16px;
    appearance: none;
    -webkit-appearance: none;
    justify-content: flex-start;
    text-align: left;
  }

  .hero,
  .sub-hero,
  .panel,
  .step-card,
  .timeline-card,
  .cta-banner,
  .feature-strip article,
  .connect-card,
  .hero-home .hero-copy {
    border-radius: 22px;
  }

  .hero,
  .sub-hero,
  .panel,
  .step-card,
  .timeline-card,
  .cta-banner,
  .feature-strip article,
  .connect-card {
    padding: 18px;
  }

  .hero-home {
    min-height: calc(100vh - 126px);
    padding: 24px 16px 210px;
  }

  .hero-home .hero-copy {
    padding: 28px 20px 24px;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.9rem);
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 48px;
    height: 48px;
  }

  .server-meta-inline {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .charge-verify-row,
  .charge-package-grid {
    grid-template-columns: 1fr;
  }

  .charge-auth-actions,
  .auth-actions {
    flex-direction: column;
  }

  .mypage-summary-grid,
  .mypage-order-meta {
    grid-template-columns: 1fr;
  }

  .auth-step-indicator {
    grid-template-columns: 1fr;
  }

  .auth-code-grid {
    gap: 10px;
  }

  .auth-code-input {
    min-height: 64px;
    font-size: 1.32rem;
  }

  .button,
  .button-full {
    width: 100%;
  }

  .hero-server-line {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-scene {
    inset: auto 10px 10px 10px;
    height: 42%;
  }

  .scene-sun {
    width: 76px;
    height: 76px;
    right: 6%;
  }

  .scene-cloud-a {
    left: 4%;
    width: 108px;
    height: 44px;
  }

  .scene-cloud-b {
    top: 14%;
    right: 12%;
    width: 96px;
    height: 38px;
  }

  .scene-house {
    width: 70px;
    height: 46px;
  }

  .scene-roof {
    width: 92px;
    height: 42px;
    bottom: calc(22% + 30px);
  }

  .scene-tree {
    width: 58px;
    height: 96px;
  }

  .scene-flowers {
    width: 72px;
    height: 40px;
  }

  .legal-document {
    padding: 20px 18px;
  }
}

@media (min-width: 781px) {
  .menu-toggle {
    display: none !important;
  }

  .site-nav {
    display: flex !important;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .hero-home {
    padding-bottom: 156px;
  }

  .hero-server-line {
    font-size: 0.92rem;
  }

  .hero-server-divider {
    display: none;
  }

  .scene-fence,
  .scene-flowers {
    display: none;
  }
}

/* Harvest Premium refresh */
:root {
  --sky-top: #fff7db;
  --sky-mid: #f8eabc;
  --sky-bottom: #f1d99d;
  --meadow: #a9be8b;
  --meadow-deep: #7b8d63;
  --leaf: #98b07c;
  --leaf-deep: #6c8054;
  --blush: #e0a06f;
  --blush-deep: #bb7950;
  --peach: #f2c59a;
  --butter: #f5dd9c;
  --soil: #71543d;
  --soil-soft: #94755b;
  --paper: rgba(255, 250, 238, 0.82);
  --paper-strong: rgba(255, 253, 246, 0.95);
  --paper-soft: rgba(250, 242, 218, 0.76);
  --line: rgba(132, 103, 67, 0.12);
  --line-strong: rgba(132, 103, 67, 0.22);
  --text: #36281a;
  --text-soft: #6a5642;
  --muted: #93816c;
  --shadow-xl: 0 38px 84px rgba(136, 103, 54, 0.12);
  --shadow-lg: 0 22px 54px rgba(136, 103, 54, 0.1);
  --shadow-md: 0 12px 28px rgba(136, 103, 54, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(211, 236, 246, 0.42), transparent 22%),
    linear-gradient(180deg, #f4fcff 0%, #eef8f0 48%, #e5f0d8 100%);
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.84), transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(210, 235, 245, 0.34), transparent 20%),
    linear-gradient(180deg, #f6fdff 0%, #edf8f0 44%, #e4efd5 100%);
}

body[data-page="login"],
body[data-page="register"],
body[data-page="forgot"],
body[data-page="password"],
body[data-page="charge"],
body[data-page="mypage"] {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(212, 236, 244, 0.26), transparent 18%),
    linear-gradient(180deg, #f7fdff 0%, #eff8f1 44%, #e7f0dc 100%);
}

.page-shell {
  width: min(calc(100% - 40px), 1360px);
  padding: 24px 0 48px;
}

.site-header {
  top: 16px;
  gap: 24px;
  padding: 16px 22px;
  border: 1px solid rgba(233, 227, 214, 0.9);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 238, 0.86));
  box-shadow: 0 18px 42px rgba(145, 126, 92, 0.1);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-bottom: 0;
}

body[data-page="home"] main {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

body[data-page="home"] .site-header {
  position: relative;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 12px 28px;
  border-width: 0 0 1px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.88));
  box-shadow: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(150deg, #fff6cf, #f8dd88 68%, #ebb86b);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(178, 142, 75, 0.14);
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.site-nav {
  gap: 8px;
}

.site-nav a,
.site-nav-button {
  padding: 8px 12px;
  color: #6f5938;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible,
body[data-page="home"] .site-nav a[href="./index.html"],
body[data-page="auth"] .site-nav a[href="./auth.html"],
body[data-page="login"] .site-nav a[href="./login.html"],
body[data-page="register"] .site-nav a[href="./register.html"],
body[data-page="forgot"] .site-nav a[href="./login.html"],
body[data-page="about"] .site-nav a[href="./about.html"],
body[data-page="guide"] .site-nav a[href="./guide.html"],
body[data-page="notice"] .site-nav a[href="./notice.html"],

.hero-home {
  flex: 1 1 auto;
  align-items: center;
  justify-items: center;
  min-height: clamp(692px, calc(100svh - 36px), 892px);
  padding: 60px max(32px, 5vw) 194px;
  background:
    linear-gradient(180deg, rgba(248, 253, 255, 0.14), rgba(105, 138, 88, 0.12)),
    linear-gradient(90deg, rgba(252, 255, 252, 0.24), rgba(252, 255, 252, 0) 46%),
    radial-gradient(circle at 18% 14%, rgba(210, 235, 245, 0.22), transparent 22%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    url("./back.png") center center / cover no-repeat;
}

.hero-home::after {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(103, 131, 86, 0.14));
}

.hero-home .hero-copy {
  width: min(100%, 720px);
  justify-items: center;
  gap: 18px;
  padding: 0;
  margin-top: 112px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy-head {
  display: grid;
  gap: 12px;
  justify-items: center;
  width: fit-content;
  max-width: min(100%, 30rem);
  padding: 14px 16px 12px;
  border: 1px solid rgba(244, 223, 167, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 248, 220, 0.09), rgba(255, 251, 238, 0.02));
  box-shadow: 0 8px 18px rgba(143, 117, 67, 0.02);
  backdrop-filter: blur(1px);
}

.hero h1,
.sub-hero h1 {
  letter-spacing: -0.06em;
}

.hero-home h1 {
  font-size: clamp(3.8rem, 8vw, 5.3rem);
  color: #6a4e25;
  text-shadow:
    0 4px 14px rgba(255, 248, 221, 0.22);
}

.hero-text {
  max-width: 24rem;
  font-size: clamp(1.14rem, 2.2vw, 1.3rem);
  color: #785c33;
  text-shadow: none;
}

.hero-home .hero-actions {
  justify-content: center;
  gap: 18px;
}

.hero-home .button {
  min-height: 76px;
  padding: 0 38px;
  border-radius: 20px;
  font-size: 1.12rem;
  min-width: 208px;
}

.button-primary {
  background: linear-gradient(180deg, #f6d96e, #e9ba43);
  color: #62411f;
  box-shadow: 0 14px 28px rgba(202, 158, 52, 0.24);
}

.button-secondary {
  border-color: rgba(241, 215, 151, 0.94);
  background: linear-gradient(180deg, rgba(255, 251, 234, 0.98), rgba(247, 239, 201, 0.94));
  color: #6d5633;
  box-shadow: 0 10px 22px rgba(190, 159, 88, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #f1ce55, #deaa2f);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: linear-gradient(180deg, rgba(255, 248, 224, 0.98), rgba(243, 232, 184, 0.94));
}

.hero-server-line {
  gap: 12px;
  padding: 14px 20px;
  border-color: rgba(211, 225, 200, 0.92);
  background: linear-gradient(180deg, rgba(254, 255, 251, 0.96), rgba(240, 244, 231, 0.92));
  font-size: 1.06rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(112, 140, 98, 0.12);
}

.hero-scene {
  display: none;
}

.scene-sun {
  top: 4%;
  right: 12%;
  width: 124px;
  height: 124px;
}

.scene-hill-back {
  bottom: 31%;
  width: 118%;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(241, 223, 184, 0.95), rgba(177, 197, 143, 0.95));
}

.scene-hill-front {
  width: 126%;
  height: 57%;
  background:
    radial-gradient(circle at 50% -30%, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(201, 219, 171, 0.98), rgba(137, 161, 105, 0.98));
}

.scene-path {
  width: min(24vw, 320px);
  height: 52%;
  background:
    linear-gradient(180deg, rgba(255, 224, 176, 0.98), rgba(235, 188, 120, 0.98));
}

.scene-house {
  width: 112px;
  height: 70px;
  background:
    linear-gradient(180deg, #fff1cf, #f0c98a);
}

.scene-roof {
  width: 138px;
  height: 64px;
  background: linear-gradient(180deg, #ecb56a, #cf8446);
}

.scene-tree {
  width: 94px;
  height: 140px;
}

.panel,
.step-card,
.timeline-card,
.cta-banner,
.feature-strip article,
.connect-card {
  border-color: rgba(223, 234, 220, 0.84);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.94), rgba(244, 246, 235, 0.88));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.panel-warm {
  background:
    radial-gradient(circle at 88% 12%, rgba(208, 234, 243, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.94), rgba(245, 247, 237, 0.9));
}

.panel-earth {
  background:
    radial-gradient(circle at 12% 10%, rgba(204, 230, 205, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 244, 0.94), rgba(241, 246, 232, 0.9));
}

.panel-plain {
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.9), rgba(245, 247, 238, 0.84));
}

.charge-panel-head {
  gap: 8px;
}

.charge-panel-head h1,
.charge-panel-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.charge-panel-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-page-shell {
  width: min(calc(100% - 40px), 1360px);
}

.auth-page-main {
  display: flex;
  justify-content: center;
  width: 100%;
}

.auth-single-layout {
  width: min(100%, 760px);
  gap: 18px;
}

.auth-panel {
  padding: 30px;
}

.auth-panel-centered {
  gap: 18px;
}

.auth-center-head {
  gap: 8px;
}

.auth-center-head p {
  max-width: 34rem;
  margin: 0 auto;
  font-size: 0.94rem;
  color: var(--muted);
}

.charge-field span {
  color: #705c45;
  font-size: 0.83rem;
  font-weight: 800;
}

.charge-input,
.auth-code-input {
  border: 1px solid rgba(132, 103, 67, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.charge-input {
  min-height: 56px;
}

.auth-code-grid {
  gap: 12px;
}

.auth-code-input {
  min-height: 72px;
  border-radius: 18px;
  font-size: 1.5rem;
}

.auth-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 71, 45, 0.14), transparent);
}

.auth-bottom-link a {
  color: #6f924a;
  font-weight: 800;
}

.charge-simple-layout {
  width: min(100%, 720px);
}

.charge-panel {
  padding: 28px;
}

.charge-package-grid {
  gap: 12px;
}

.charge-package-card {
  border-radius: 16px;
  border: 1px solid rgba(199, 216, 190, 0.76);
  background: rgba(255, 255, 251, 0.88);
  box-shadow: 0 10px 22px rgba(126, 147, 112, 0.08);
}

.charge-package-card:hover,
.charge-package-card:focus-visible,
.charge-package-card[data-selected="true"] {
  border-color: rgba(127, 169, 90, 0.48);
  box-shadow:
    0 14px 28px rgba(112, 140, 98, 0.12),
    inset 0 0 0 1px rgba(199, 223, 174, 0.78);
}

.charge-method-card {
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 12px;
}

.charge-method-card .charge-package-label {
  font-size: 0.88rem;
}

.charge-method-card span:last-child {
  font-size: 0.68rem;
}

.charge-summary {
  padding: 14px 16px;
  border: 1px solid rgba(206, 219, 194, 0.9);
  border-radius: 16px;
  background: rgba(253, 255, 249, 0.88);
}

.charge-summary-compact strong {
  font-size: 1rem;
}

.charge-widget-box {
  padding: 18px;
  border: 1px solid rgba(204, 221, 198, 0.92);
  border-radius: 18px;
  background: rgba(244, 248, 236, 0.88);
}

.charge-widget-message {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.charge-agreements {
  gap: 10px;
}

.charge-agreement-row {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(206, 219, 194, 0.76);
  background: rgba(253, 255, 249, 0.8);
}

.charge-agreement-main span:last-child {
  font-size: 0.84rem;
  color: #5f5646;
  font-weight: 700;
}

.charge-agreement-view {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(193, 211, 180, 0.88);
  border-radius: 999px;
  background: rgba(239, 246, 232, 0.94);
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.charge-pay-action {
  margin-top: 18px;
}

.mypage-layout {
  width: min(100%, 880px);
  gap: 18px;
}

.mypage-summary-grid {
  gap: 12px;
}

.mypage-stat-card {
  padding: 16px 18px;
  border: 1px solid rgba(204, 219, 196, 0.84);
  border-radius: 16px;
  background: rgba(253, 255, 249, 0.84);
}

.mypage-stat-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.mypage-stat-card strong {
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.mypage-order-card {
  border-radius: 14px;
  background: rgba(253, 255, 249, 0.84);
}

.mypage-utility-link,
.mypage-orders-toggle,
.mypage-delete-trigger {
  border-radius: 999px;
  background: rgba(239, 246, 232, 0.92);
}

.site-footer {
  gap: 10px;
  padding: 18px 0 4px;
  color: #6a5433;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

body[data-page="home"] .site-footer > strong {
  margin-left: 0;
}

.site-footer-row {
  align-items: flex-start;
  gap: 14px 20px;
}

.site-footer-business {
  margin: 0;
  font-size: 0.71rem;
  line-height: 1.6;
  color: rgba(106, 84, 51, 0.82);
}

body[data-page="home"] .site-footer {
  margin-top: auto;
  padding: 18px 28px 20px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.94));
}

body[data-page="home"] .site-footer-row {
  justify-content: space-between;
  padding: 0;
}

body[data-page="home"] .site-footer-business {
  flex: 1 1 auto;
}

body[data-page="home"] .legal-links {
  margin-left: auto;
  margin-right: 10px;
}

.legal-links a {
  color: #7b6443;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .page-shell,
  .auth-page-shell {
    width: min(calc(100% - 24px), 1360px);
  }

  body[data-page="home"] .site-header {
    padding: 12px 16px;
    border-radius: 0 0 20px 20px;
  }

  .hero-home {
    min-height: clamp(628px, calc(100svh - 32px), 788px);
    padding: 44px 22px 168px;
    background-position: 58% center;
  }

  .hero-home .hero-copy {
    width: min(100%, 620px);
    margin-top: 84px;
  }

  .hero-copy-head {
    max-width: min(100%, 27rem);
  }

}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-home {
    min-height: clamp(576px, calc(100svh - 40px), 736px);
    padding: 28px 16px 150px;
    background-position: 70% center;
  }

  .hero-home .hero-copy {
    justify-items: center;
    margin-top: 48px;
    text-align: center;
  }

  .hero-copy-head {
    max-width: min(100%, 22rem);
    padding: 12px 14px 10px;
    border-radius: 22px;
  }

  .hero-home .hero-actions {
    justify-content: center;
  }

  .hero-home .button {
    min-height: 56px;
    min-width: 148px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: 0.92rem;
  }

  .auth-single-layout,
  .charge-simple-layout,
  .mypage-layout {
    width: 100%;
  }

  .auth-panel,
  .charge-panel {
    padding: 22px 18px;
  }

  body[data-page="home"] .site-footer-row {
    padding: 0;
  }

  body[data-page="home"] .site-footer-business {
    margin-left: 0;
  }

  body[data-page="home"] .legal-links {
    margin-right: 0;
  }

  body[data-page="home"] .site-footer {
    padding: 18px 16px 20px;
  }
}

@media (max-width: 780px) {
  .page-shell,
  .auth-page-shell {
    width: min(calc(100% - 16px), 1360px);
  }

  body[data-page="home"] .page-shell {
    width: 100%;
  }

  .site-header {
    gap: 12px;
    align-items: center;
  }

  .brand {
    gap: 10px;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0 14px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .site-nav {
    order: 20;
    width: 100%;
    margin-top: 2px;
    padding-top: 8px;
    gap: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .site-nav > button {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    align-self: stretch;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 12px 14px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 251, 240, 0.94);
    box-shadow:
      inset 0 0 0 1px rgba(232, 221, 198, 0.78),
      0 6px 14px rgba(148, 127, 92, 0.08);
    color: var(--text);
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
  }

  .site-nav > .site-nav-button[data-icon] {
    gap: 0;
  }

  .site-nav > [hidden] {
    display: none !important;
  }

  .hero-home {
    min-height: clamp(560px, calc(100svh - 24px), 728px);
    padding: 26px 16px 138px;
    background-position: 68% center;
  }

  .hero-home .hero-copy {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    margin-top: 40px;
  }

  .hero-copy-head {
    max-width: min(100%, 19rem);
  }

  .hero-home h1 {
    font-size: clamp(2.9rem, 16vw, 3.9rem);
  }

  .hero-text {
    max-width: 17rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-home .hero-actions {
    width: min(100%, 17.5rem);
    margin: 0 auto;
    gap: 10px;
  }

  .hero-home .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
    font-size: 0.97rem;
  }

  .hero-server-line {
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 0 auto;
    gap: 8px 10px;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .hero-server-chip {
    max-width: 100%;
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .play-feedback {
    text-align: center;
  }

  .auth-panel,
  .charge-panel {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .charge-input,
  .auth-code-input {
    font-size: 16px;
  }

  .auth-code-input {
    min-height: 64px;
    font-size: 1.24rem;
  }

  .site-footer-row,
  body[data-page="home"] .site-footer-row {
    gap: 10px 14px;
  }

  .site-footer-business,
  body[data-page="home"] .site-footer-business {
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .legal-links,
  body[data-page="home"] .legal-links {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 10px 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-home {
    padding: 22px 14px 126px;
    background-position: 72% center;
  }

  .hero-home .hero-actions {
    width: min(100%, 16.5rem);
  }

  .hero-home .hero-copy {
    margin-top: 32px;
  }

  .hero-copy-head {
    max-width: min(100%, 18rem);
    padding: 10px 12px 8px;
    border-radius: 20px;
  }

  .hero-home h1 {
    font-size: clamp(2.6rem, 17vw, 3.4rem);
  }

  .hero-text {
    max-width: 16rem;
    font-size: 0.96rem;
  }

  .hero-home .button {
    min-height: 54px;
    font-size: 0.94rem;
  }

  .hero-server-line {
    max-width: calc(100% - 32px);
    padding: 10px 14px;
    font-size: 0.88rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wiki-main {
  display: grid;
  gap: 28px;
}

.wiki-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.wiki-hero-copy,
.wiki-search-panel,
.wiki-info-card,
.wiki-sidebar,
.wiki-article-shell,
.wiki-results-section {
  min-width: 0;
}

.wiki-hero-summary {
  max-width: 38rem;
  margin: 0;
  color: rgba(71, 55, 33, 0.88);
  line-height: 1.75;
}

.wiki-search-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.wiki-search-head {
  display: grid;
  gap: 8px;
}

.wiki-search-head h2,
.wiki-info-card h2 {
  margin: 0;
  font-size: 1.32rem;
}

.wiki-search-head p,
.wiki-info-card p {
  margin: 0;
  color: rgba(86, 69, 45, 0.86);
  line-height: 1.7;
}

.wiki-search-box input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(214, 192, 153, 0.72);
  border-radius: 18px;
  background: rgba(255, 252, 244, 0.96);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.wiki-search-box input:focus {
  outline: 2px solid rgba(227, 164, 101, 0.28);
  border-color: rgba(196, 134, 70, 0.72);
}

.wiki-search-meta {
  margin: 0;
  color: rgba(103, 82, 56, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
}

.wiki-search-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wiki-inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 250, 238, 0.92);
  box-shadow: inset 0 0 0 1px rgba(216, 196, 160, 0.84);
  color: rgba(92, 70, 42, 0.92);
}

.wiki-search-shortcut,
.wiki-feedback-text {
  color: rgba(103, 82, 56, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wiki-quick-links,
.wiki-pill-strip,
.wiki-chip-list,
.wiki-category-preview,
.wiki-article-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wiki-pill-strip {
  margin-top: -4px;
}

.wiki-chip-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wiki-chip-button,
.wiki-pill-button,
.wiki-preview-pill,
.wiki-chip-list li,
.wiki-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.92);
  box-shadow: inset 0 0 0 1px rgba(216, 196, 160, 0.84);
  color: rgba(92, 70, 42, 0.92);
  font-size: 0.9rem;
}

.wiki-chip-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.wiki-pill-button,
.wiki-inline-button,
.wiki-outline-button,
.wiki-command-chip {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.wiki-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.92);
  box-shadow: inset 0 0 0 1px rgba(216, 196, 160, 0.84);
  color: rgba(92, 70, 42, 0.92);
}

.wiki-chip-button.is-active,
.wiki-pill-button.is-active,
.wiki-category-card.is-active,
.wiki-nav-button.is-active,
.wiki-article-link.is-active {
  box-shadow:
    inset 0 0 0 1px rgba(194, 120, 51, 0.92),
    0 10px 22px rgba(184, 133, 79, 0.18);
}

.wiki-top-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wiki-info-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.wiki-guide-list,
.wiki-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: rgba(78, 62, 40, 0.92);
  line-height: 1.7;
}

.wiki-popular-list,
.wiki-results-list,
.wiki-related-grid {
  display: grid;
  gap: 12px;
}

.wiki-popular-card,
.wiki-result-card,
.wiki-related-card {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(226, 211, 183, 0.9),
    0 8px 18px rgba(157, 126, 83, 0.12);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.wiki-popular-card strong,
.wiki-result-card strong,
.wiki-related-card strong {
  font-size: 1rem;
}

.wiki-popular-card span,
.wiki-result-card p,
.wiki-related-card p {
  margin: 0;
  color: rgba(88, 69, 42, 0.82);
  line-height: 1.65;
}

.wiki-category-section .section-head,
.wiki-results-section .section-head,
.wiki-related-wrap .section-head {
  margin-bottom: 18px;
}

.wiki-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wiki-category-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(247, 236, 214, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(231, 214, 188, 0.92),
    0 14px 28px rgba(156, 128, 89, 0.14);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.wiki-category-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wiki-category-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.wiki-category-card p {
  margin: 0;
  color: rgba(81, 63, 39, 0.86);
  line-height: 1.72;
}

.wiki-shell {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.wiki-sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 18px;
}

.wiki-sidebar-block {
  display: grid;
  gap: 12px;
}

.wiki-category-list,
.wiki-article-nav {
  display: grid;
  gap: 10px;
}

.wiki-nav-button,
.wiki-article-link {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 251, 243, 0.96);
  box-shadow: inset 0 0 0 1px rgba(224, 207, 180, 0.82);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.wiki-nav-button {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.wiki-nav-button strong,
.wiki-article-link strong {
  font-size: 0.98rem;
}

.wiki-nav-button span,
.wiki-article-link span {
  color: rgba(87, 67, 38, 0.82);
  line-height: 1.6;
}

.wiki-article-shell {
  display: grid;
  gap: 22px;
}

.wiki-article-utility,
.wiki-article-outline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wiki-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(89, 69, 42, 0.88);
}

.wiki-utility-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.wiki-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.96);
  box-shadow: inset 0 0 0 1px rgba(224, 207, 180, 0.82);
  color: var(--text);
}

.wiki-article-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 18px;
  align-items: start;
}

.wiki-article-title-block {
  display: grid;
  gap: 12px;
}

.wiki-article-title-block h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
}

.wiki-article-summary {
  margin: 0;
  color: rgba(82, 63, 39, 0.88);
  line-height: 1.8;
}

.wiki-action-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 248, 231, 0.9);
  box-shadow: inset 0 0 0 1px rgba(224, 201, 155, 0.84);
}

.wiki-action-box span {
  color: rgba(139, 91, 33, 0.88);
  font-size: 0.88rem;
}

.wiki-action-box strong {
  line-height: 1.7;
}

.wiki-article-content {
  display: grid;
  gap: 16px;
}

.wiki-section-block {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 251, 243, 0.92);
  box-shadow: inset 0 0 0 1px rgba(224, 208, 183, 0.82);
}

.wiki-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wiki-command-list li {
  list-style: none;
  padding: 0;
}

.wiki-command-list li::marker {
  content: "";
}

.wiki-command-list li {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
}

.wiki-command-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 244, 225, 0.88);
  box-shadow: inset 0 0 0 1px rgba(217, 188, 139, 0.82);
  color: var(--text);
}

.wiki-related-wrap {
  display: grid;
  gap: 14px;
}

.wiki-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wiki-empty-state {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: inset 0 0 0 1px rgba(226, 210, 188, 0.84);
}

.wiki-empty-state p {
  margin: 0;
  color: rgba(86, 67, 42, 0.82);
  line-height: 1.72;
}

body[data-page="guide"] .site-nav a[href="./guide.html"] {
  background: rgba(255, 248, 229, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(206, 156, 90, 0.86),
    0 8px 20px rgba(166, 124, 73, 0.16);
  color: rgba(109, 67, 24, 0.96);
}

@media (max-width: 1180px) {
  .wiki-hero,
  .wiki-shell,
  .wiki-article-head,
  .wiki-top-grid,
  .wiki-category-grid,
  .wiki-related-grid {
    grid-template-columns: 1fr;
  }

  .wiki-sidebar {
    position: static;
  }

  .wiki-category-grid {
    gap: 14px;
  }

  .wiki-utility-actions {
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .wiki-main {
    gap: 22px;
  }

  .wiki-category-card,
  .wiki-section-block,
  .wiki-popular-card,
  .wiki-result-card,
  .wiki-related-card,
  .wiki-nav-button,
  .wiki-article-link {
    border-radius: 18px;
  }

  .wiki-search-box input {
    font-size: 16px;
  }

  .wiki-search-tools,
  .wiki-article-utility {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 2026-04-18 visual refresh */
:root {
  --sky-top: #ffffff;
  --sky-mid: #ffffff;
  --sky-bottom: #ffffff;
  --mist: #ffffff;
  --mist-deep: #ffffff;
  --teal-soft: #4f9098;
  --teal-deep: #295d67;
  --meadow: #70b96f;
  --meadow-deep: #3f7d4a;
  --leaf: #5ca46a;
  --leaf-deep: #255d39;
  --blush: #ff9d73;
  --blush-deep: #cb643a;
  --peach: #ffc27f;
  --butter: #ffe6a4;
  --soil: #47372f;
  --soil-soft: #746359;
  --paper: rgba(255, 255, 255, 0.98);
  --paper-strong: rgba(255, 255, 255, 1);
  --paper-soft: rgba(255, 255, 255, 0.98);
  --line: rgba(0, 0, 0, 0.06);
  --line-strong: rgba(0, 0, 0, 0.1);
  --text: #000000;
  --text-soft: #000000;
  --muted: #222222;
  --shadow-xl: 0 42px 124px rgba(31, 58, 76, 0.18);
  --shadow-lg: 0 28px 72px rgba(31, 58, 76, 0.14);
  --shadow-md: 0 16px 38px rgba(31, 58, 76, 0.12);
  --font-body: "Noto Sans KR", sans-serif;
  --font-display: "Do Hyeon", sans-serif;
}

body {
  color: var(--text);
  background: #ffffff;
}

body::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.66) 0 12px, transparent 13px),
    radial-gradient(circle at 28% 10%, rgba(255, 255, 255, 0.46) 0 10px, transparent 11px),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.56) 0 10px, transparent 11px),
    radial-gradient(circle at 76% 62%, rgba(255, 255, 255, 0.36) 0 9px, transparent 10px);
  filter: blur(18px);
  opacity: 0.08;
}

body::after {
  background:
    radial-gradient(ellipse at bottom, rgba(236, 236, 236, 0.42) 0%, rgba(236, 236, 236, 0.18) 28%, transparent 58%),
    linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  background-position: center bottom, 0 0, 0 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.14) 56%, transparent 92%);
  opacity: 0.32;
}

body[data-page="home"] {
  background: #ffffff;
}

body[data-page="home"]::after {
  background:
    radial-gradient(ellipse at bottom, rgba(238, 238, 238, 0.3) 0%, rgba(238, 238, 238, 0.1) 26%, transparent 52%),
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.18;
}

body[data-page="charge"],

.site-header {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 251, 251, 0.92));
  box-shadow: 0 18px 44px rgba(36, 68, 93, 0.12);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 252, 0.94));
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(145deg, #8ce1d8, #8bb8ff 62%, #ffd17b);
  color: #173345;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 26px rgba(41, 89, 111, 0.18);
}

.brand-mark::after {
  background: linear-gradient(180deg, #fff0b5, #ff9d68);
  box-shadow: 0 6px 14px rgba(103, 79, 45, 0.14);
}

.brand-copy strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.site-nav a,
.site-nav-button {
  color: #000000;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible,
body[data-page="home"] .site-nav a[href="./index.html"],
body[data-page="auth"] .site-nav a[href="./auth.html"],
body[data-page="login"] .site-nav a[href="./login.html"],
body[data-page="register"] .site-nav a[href="./register.html"],
body[data-page="forgot"] .site-nav a[href="./login.html"],
body[data-page="about"] .site-nav a[href="./about.html"],
body[data-page="guide"] .site-nav a[href="./guide.html"],
body[data-page="notice"] .site-nav a[href="./notice.html"],

.hero,
.sub-hero,
.panel,
.step-card,
.timeline-card,
.cta-banner,
.feature-strip article,
.connect-card {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero::before,
.sub-hero::before,
.panel::before,
.step-card::before,
.timeline-card::before,
.cta-banner::before,
.feature-strip article::before,
.connect-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 28%);
}

.hero h1,
.sub-hero h1,
.panel h2,
.feature-strip h2,
.timeline-card h2,
.cta-banner h2,
.step-card h2 {
  color: #000000;
  letter-spacing: -0.04em;
}

.hero-title-brand {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-title-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}

.hero-text,
.sub-hero p,
.panel p,
.feature-strip p,
.timeline-card p,
.step-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.eyebrow,
.section-label,
.card-label,
.feature-kicker {
  border: 1px solid rgba(220, 220, 220, 0.7);
  background: #ffffff;
  color: #000000;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.button {
  min-height: 56px;
  border-radius: 18px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, #ffd95e, #f4ba32);
  color: #fff;
  box-shadow: 0 18px 34px rgba(186, 138, 31, 0.28);
}

.button-secondary {
  border-color: rgba(188, 198, 207, 0.54);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 12px 26px rgba(58, 100, 133, 0.12);
}

.button-ghost {
  border-color: rgba(77, 150, 94, 0.18);
  background: rgba(225, 245, 226, 0.74);
  color: #1f5f35;
}

.hero-home .hero-copy {
  gap: 20px;
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-home {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
    url("./back.png") center center / cover no-repeat;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.05), transparent 18%);
  z-index: 0;
  pointer-events: none;
}

.hero-home::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  opacity: 0.16;
}

.sub-hero,
.panel,
.step-card,
.timeline-card,
.cta-banner,
.feature-strip article,
.connect-card {
  box-shadow:
    0 18px 44px rgba(31, 58, 76, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.34) inset;
}

.hero-server-line {
  border: 1px solid rgba(176, 217, 228, 0.5);
  background: transparent;
  color: #000000;
  box-shadow: none;
}

.hero-server-divider {
  background: rgba(0, 0, 0, 0.24);
}

.play-feedback {
  color: #2a7c51;
}

.charge-input,
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  border: 1px solid rgba(151, 194, 214, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.charge-input:focus,
input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(69, 144, 183, 0.7);
  box-shadow:
    0 0 0 4px rgba(106, 173, 214, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.site-footer,
body[data-page="home"] .site-footer {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(38, 73, 95, 0.1);
}

.site-footer strong,
.legal-links a {
  color: #000000;
}

.site-footer-business {
  color: #222222;
}

.wiki-search-box input,
.wiki-outline-button,
.wiki-command-chip,
.wiki-action-box,
.wiki-section-block,
.wiki-empty-state {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(174, 210, 221, 0.46);
}

.wiki-breadcrumb,
.wiki-nav-button span,
.wiki-article-link span,
.wiki-article-summary,
.wiki-empty-state p {
  color: #111111;
}

body[data-page="guide"] .site-nav a[href="./guide.html"] {
  background: rgba(226, 244, 247, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(204, 204, 204, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.06);
  color: #000000;
}

/* 2026-04-27 clean white refresh */
:root {
  --paper: #ffffff;
  --paper-strong: #ffffff;
  --paper-soft: #ffffff;
  --line: rgba(17, 24, 39, 0.08);
  --line-strong: rgba(17, 24, 39, 0.14);
  --text: #111827;
  --text-soft: #374151;
  --muted: #6b7280;
  --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.06);
  --font-body: "Noto Sans KR", sans-serif;
  --font-display: "Noto Sans KR", sans-serif;
}

body,
body[data-page="home"],
body[data-page="guide"],
body[data-page="charge"],
body[data-page="auth"],
body[data-page="login"],
body[data-page="register"],
body[data-page="forgot"],
body[data-page="password"],
body[data-page="mypage"] {
  color: var(--text);
  background: #ffffff;
}

body::before,
body::after {
  display: none;
}

.page-shell {
  width: min(calc(100% - 28px), 1120px);
  padding-top: 18px;
}

.site-header,
body[data-page="home"] .site-header {
  top: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-color: var(--line);
  border-radius: 14px;
  background: transparent;
  color: #e5a900;
  box-shadow: none;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark::after {
  display: none;
}

.brand-copy strong {
  color: #e5a900;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.site-nav a,
.site-nav-button {
  color: var(--text-soft);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible,
body[data-page="home"] .site-nav a[href="./index.html"],

.hero,
.sub-hero,
.panel,
.step-card,
.timeline-card,
.cta-banner,
.feature-strip article,
.connect-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
}

.hero::before,
.sub-hero::before,
.panel::before,
.step-card::before,
.timeline-card::before,
.cta-banner::before,
.feature-strip article::before,
.connect-card::before {
  display: none;
}

.hero h1,
.sub-hero h1,
.panel h2,
.feature-strip h2,
.timeline-card h2,
.cta-banner h2,
.step-card h2 {
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: -0.055em;
}

.hero-text,
.sub-hero p,
.panel p,
.feature-strip p,
.timeline-card p,
.step-card p {
  color: var(--text-soft);
}

.button {
  min-height: 52px;
  border-radius: 14px;
}

.button-primary {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
  box-shadow: none;
}

.eyebrow,
.section-label,
.card-label,
.feature-kicker,
.hero-badges span,
.pill-grid span,
.wiki-chip-button,
.wiki-pill-button,
.wiki-preview-pill,
.wiki-chip-list li,
.wiki-badge,
.wiki-inline-button,
.wiki-outline-button,
.wiki-command-chip {
  border: 1px solid var(--line);
  background: #f9fafb;
  color: var(--text);
  box-shadow: none;
}

.hero-home {
  min-height: calc(100svh - 92px);
  background: url("./back.png") center center / cover no-repeat;
}

.hero-home::before,
.hero-home::after {
  display: none !important;
}






























.charge-title-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-inline: auto;
  border-radius: 18px;
  background: #eff6ff;
  font-size: 1.8rem;
}

.charge-step-badge {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
}

.charge-panel-head {
  align-items: flex-start;
}

.charge-panel-head h2 {
  margin-bottom: 4px;
}

.charge-package-card {
  position: relative;
  overflow: hidden;
  border-color: var(--line);
  background: #ffffff;
}

.charge-package-icon,
.charge-method-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #f8fafc;
  font-size: 1.35rem;
}

.charge-package-card strong {
  font-family: var(--font-body);
}

.charge-package-price {
  color: var(--muted) !important;
}

.charge-package-bonus {
  color: #ea580c !important;
  font-weight: 900 !important;
}

.charge-package-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c !important;
  font-size: 0.72rem;
  font-weight: 900 !important;
}

.charge-info-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.charge-info-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.charge-info-card strong {
  color: var(--text);
  font-size: 1rem;
}

.charge-info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

body[data-page="charge"] #charge-package-grid {
  grid-template-columns: 1fr;
}

body[data-page="charge"] #charge-payment-method-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="charge"] .charge-package-card {
  min-height: 118px;
}

body[data-page="charge"] .charge-method-card {
  min-height: 92px;
}

.play-feedback[data-error="true"] {
  color: #dc2626;
}

@media (max-width: 1080px) {
}

@media (max-width: 860px) {
}

@media (max-width: 560px) {


}

.hero-scene {
  display: none !important;
}

.hero-home .hero-copy {
  max-width: 680px;
}

.hero-title-image {
  width: min(100%, 460px);
  filter: none;
}

.hero-title-brand {
  color: #111827;
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 8.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 48px rgba(15, 23, 42, 0.16);
}

.hero-server-line {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  box-shadow: none;
}

.panel-plain,
.panel-earth,
.panel-warm,
.panel-sky,
.timeline-card,
.step-card,
.cta-banner,
.feature-strip article {
  background: #ffffff;
}

.site-footer,
body[data-page="home"] .site-footer {
  border-color: var(--line);
  background: #ffffff;
  box-shadow: none;
}

body[data-page="guide"] .page-shell {
  width: min(calc(100% - 24px), 960px);
}

.wiki-main {
  gap: 18px;
}

.wiki-hero {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px;
}

.wiki-hero h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.wiki-hero-summary {
  max-width: 44rem;
  color: var(--text-soft);
}

.wiki-search-panel {
  padding: 18px;
  box-shadow: none;
}

.wiki-search-head h2 {
  font-size: 1.12rem;
}

.wiki-search-head p,
.wiki-search-shortcut,
.wiki-search-meta,
.wiki-feedback-text {
  color: var(--muted);
}

.wiki-search-box input {
  min-height: 52px;
  border-color: var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.wiki-search-box input:focus {
  outline: 3px solid rgba(17, 24, 39, 0.08);
  border-color: #111827;
}

.wiki-pill-strip {
  position: sticky;
  top: 82px;
  z-index: 20;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 0 -12px;
  padding: 8px 12px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.94);
  border-block: 1px solid var(--line);
}

.wiki-pill-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  white-space: nowrap;
}

.wiki-pill-button.is-active,
.wiki-chip-button.is-active,
.wiki-category-card.is-active,
.wiki-nav-button.is-active,
.wiki-article-link.is-active {
  background: transparent;
  color: #e5a900;
  box-shadow: none;
  overflow: hidden;
}

.wiki-quick-links,
.wiki-top-grid,
.wiki-sidebar,
.wiki-article-utility,
.wiki-article-outline,
.wiki-related-wrap {
  display: none;
}

.wiki-category-section .section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.wiki-category-section .section-head h2 {
  font-size: 1.28rem;
}

.wiki-category-section .section-head > p {
  color: var(--muted);
  line-height: 1.6;
}

.wiki-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wiki-category-card {
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}

.wiki-category-card-head {
  align-items: flex-start;
}

.wiki-category-card-head strong {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.wiki-category-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.wiki-shell {
  display: block;
}

.wiki-article-shell {
  gap: 16px;
  padding: 20px;
}

.wiki-article-head {
  grid-template-columns: 1fr;
  gap: 12px;
}

.wiki-article-badges {
  gap: 8px;
}

.wiki-article-title-block h2 {
  font-size: clamp(1.55rem, 7vw, 2.2rem);
}

.wiki-article-summary {
  color: var(--text-soft);
  line-height: 1.68;
}

.wiki-action-box,
.wiki-section-block,
.wiki-empty-state,
.wiki-popular-card,
.wiki-result-card,
.wiki-related-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: none;
}

.wiki-action-box span {
  color: var(--muted);
}

.wiki-section-block {
  padding: 16px;
  border-radius: 16px;
}

.wiki-guide-list,
.wiki-list {
  gap: 8px;
  padding-left: 16px;
  color: var(--text-soft);
  line-height: 1.62;
}

.wiki-results-section {
  padding: 18px;
}

.wiki-results-section .section-head {
  display: grid;
  gap: 6px;
}

.wiki-results-list {
  gap: 10px;
}

@media (max-width: 780px) {
  .page-shell,
  body[data-page="guide"] .page-shell {
    width: min(calc(100% - 20px), 960px);
    padding-top: 10px;
  }

  .site-header,
  body[data-page="home"] .site-header {
    top: 8px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .menu-toggle {
    border-color: var(--line);
    background: #ffffff;
  }

  .site-nav {
    border-color: var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-md);
  }

  .hero,
  .sub-hero {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-home {
    min-height: auto;
    padding: 52px 16px 140px;
  }

  .hero-home h1 {
    font-size: clamp(3.8rem, 22vw, 5.6rem);
  }

  .hero-actions,
  .hero-home .hero-actions {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .button,
  .button-full {
    width: 100%;
    min-height: 50px;
  }

  .wiki-hero {
    padding: 18px;
  }

  .wiki-search-panel {
    padding: 16px;
  }

  .wiki-pill-strip {
    top: 72px;
  }

  .wiki-category-grid {
    grid-template-columns: 1fr;
  }

  .wiki-category-card {
    min-height: 0;
  }

  .wiki-article-shell {
    padding: 18px;
  }
}

body[data-page="charge"] #charge-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="charge"] .charge-package-card:not(.charge-method-card) {
  aspect-ratio: 3 / 2.5;
  align-content: center;
  gap: 5px;
  padding: 10px 12px;
}

body[data-page="charge"] .charge-package-card:not(.charge-method-card) strong {
  font-size: 1.05rem;
}

body[data-page="charge"] .charge-package-card:not(.charge-method-card) .charge-package-icon {
  font-size: 1.25rem;
}

body[data-page="charge"] .charge-package-card:not(.charge-method-card) span {
  font-size: 0.78rem;
}

body[data-page="charge"] .charge-package-badge {
  width: fit-content;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 223, 127, 0.42);
  color: #8a5b1e !important;
}

@media (max-width: 720px) {
  body[data-page="charge"] #charge-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* PC처럼 작은 텍스트 패널이 줄바꿈되는 모바일 내비게이션 */
.menu-toggle {
  display: none !important;
}

.site-header .site-nav {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 780px) {
  .site-header {
    align-items: center;
    gap: 10px 12px;
  }

  .site-header .site-nav {
    order: 20;
    width: 100%;
    margin-top: 6px;
    padding-top: 4px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header .site-nav > a,
  .site-header .site-nav > button {
    display: inline-flex !important;
    width: auto;
    min-height: 0;
    align-self: auto;
    justify-content: center !important;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 251, 240, 0.9);
    box-shadow: inset 0 0 0 1px rgba(232, 221, 198, 0.78);
    font-size: 0.78rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .site-header .site-nav > [hidden] {
    display: none !important;
  }
}



.eyebrow {
  margin: 0 0 8px;
  color: #a26b25;
  font-weight: 900;
  letter-spacing: 0.02em;
}






















.skin-grade {
  justify-self: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.skin-grade-전설 { background: linear-gradient(135deg, #f0a11f, #df5638); }
.skin-grade-영웅 { background: linear-gradient(135deg, #995ee8, #d05de0); }
.skin-grade-희귀 { background: linear-gradient(135deg, #2f83da, #56b7e6); }
.skin-grade-고급 { background: linear-gradient(135deg, #36a86e, #6dbd5f); }
.skin-grade-일반 { background: linear-gradient(135deg, #8a8f98, #b2b7bd); }

.patch-notes-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 56px 24px;
  text-align: center;
}

.patch-notes-empty > span {
  font-size: 3rem;
}

.patch-notes-empty h2 {
  margin: 0;
}

.patch-notes-empty p {
  max-width: 520px;
  color: rgba(77, 57, 37, 0.72);
}

@media (max-width: 780px) {



}

/* 20260428g 최종 평면형 레이아웃 */
html,
body {
  background: #f6f1e8 !important;
}

body::before,
body::after,
.page-shell::before,
.page-shell::after {
  display: none !important;
}

.page-shell,
.auth-page-shell,
body[data-page="home"] .page-shell,
body[data-page="guide"] .page-shell {
  position: relative !important;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100svh;
  margin: 0 !important;
  padding: 0 0 40px !important;
}

.site-header,
body[data-page="home"] .site-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 10;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 18px;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 16px clamp(16px, 4vw, 42px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.brand {
  min-width: max-content;
}

.brand-mark {
  width: 38px !important;
  height: 38px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.brand-mark::after {
  display: none !important;
}

.brand-copy strong {
  color: #e1a62f !important;
  font-size: 1.16rem !important;
  text-shadow: 0 1px 0 #ffffff, 0 4px 14px rgba(198, 139, 30, 0.2);
}

.menu-toggle {
  display: none !important;
}

.site-nav,
.site-header .site-nav,
.site-header .site-nav-main,
.site-header .site-nav-account {
  display: flex !important;
  flex-flow: row wrap !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 7px !important;
}

.site-nav-main {
  justify-content: center !important;
}

.site-nav-account {
  justify-content: flex-end !important;
}

.site-nav a,
.site-nav-button,
.site-header .site-nav > a,
.site-header .site-nav > button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 7px 11px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.54) !important;
  box-shadow: inset 0 0 0 1px rgba(210, 190, 154, 0.48) !important;
  color: #5f4a31 !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  transform: none !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible {
  display: inline-flex !important;
  color: #4e3518 !important;
  background: rgba(255, 247, 224, 0.9) !important;
  box-shadow:
    inset 0 0 0 1px rgba(214, 174, 82, 0.5),
    0 8px 18px rgba(148, 127, 92, 0.08) !important;
}

.site-nav > [hidden] {
  display: none !important;
}

main,
.auth-page-main,

body[data-page="home"] main {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

.hero-home {
  min-height: calc(100svh - 112px) !important;
  padding: clamp(52px, 9vh, 96px) 18px 150px !important;
  background: #f6f1e8 !important;
}

.hero-home .hero-copy {
  width: min(100%, 760px) !important;
}

.panel,
.auth-page-shell .panel,
.step-card,
.timeline-card,
.cta-banner,
.connect-card,
.feature-strip article {
  border: 1px solid rgba(219, 198, 163, 0.54) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 12px 34px rgba(92, 70, 38, 0.07) !important;
  backdrop-filter: none !important;
}

.site-footer,
body[data-page="home"] .site-footer,
.site-footer-legal {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 16px clamp(16px, 4vw, 42px) 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-footer-row {
  width: 100% !important;
}

/* 캐쉬상점 카드 축소 */








/* 스킨 도감 축소 */




















.skin-grade {
  padding: 3px 7px !important;
  font-size: 0.68rem !important;
}

@media (max-width: 900px) {
  .site-header,
  body[data-page="home"] .site-header {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    gap: 8px !important;
  }

  .site-nav-main,
  .site-nav-account {
    justify-content: flex-start !important;
  }

  .site-nav a,
  .site-nav-button,
  .site-header .site-nav > a,
  .site-header .site-nav > button {
    padding: 6px 9px !important;
    font-size: 0.76rem !important;
  }



}

@media (max-width: 560px) {
  main,
  .auth-page-main,





}

/* 20260428h 메인 홈 배경 복구 + 상하단 흰색 패널 */
.site-header,
body[data-page="home"] .site-header {
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 6px 22px rgba(76, 54, 25, 0.08) !important;
}

.site-footer,
body[data-page="home"] .site-footer,
.site-footer-legal {
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 -6px 22px rgba(76, 54, 25, 0.06) !important;
}

body[data-page="home"],
body[data-page="home"] .hero-home {
  background: url("./back.png") center center / cover no-repeat fixed !important;
}

body[data-page="home"] .hero-home {
  min-height: calc(100svh - 112px) !important;
}


/* 20260428i 캐쉬상점 정리 */
.panel,
.auth-page-shell .panel,
.step-card,
.timeline-card,
.cta-banner,
.connect-card,
.feature-strip article,






@media (max-width: 680px) {

}

/* 20260428j 도감/상점/AI 정리 */
.site-header .site-nav > [hidden],
.site-header [hidden] {
  display: none !important;
}

.site-header .brand-mark,
body .site-header .brand-mark {
  display: inline-grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.site-header .brand-mark img,
body .site-header .brand-mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.site-header .site-nav-main,
body[data-page="guide"] .site-header .site-nav-main,
body[data-page="guide"] .site-header .brand {
  display: flex !important;
}












.skin-grade {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-weight: 900 !important;
}

.skin-grade-전설 { color: #ff8d1a !important; }
.skin-grade-영웅 { color: #c35cff !important; }
.skin-grade-희귀 { color: #3d8cff !important; }
.skin-grade-고급 { color: #2faf62 !important; }
.skin-grade-일반 { color: #6b7280 !important; }

.lucy-ai-button {
  position: fixed;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(82px, 11vh, 132px);
  z-index: 80;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffe08a, #f7a928);
  color: #493010;
  box-shadow: 0 16px 30px rgba(91, 61, 18, 0.26), inset 0 2px 0 rgba(255,255,255,0.62);
  cursor: pointer;
  font-family: "Do Hyeon", "Noto Sans KR", sans-serif;
  font-size: 1.08rem;
}

.lucy-ai-button span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.lucy-ai-button::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.lucy-ai-panel {
  position: fixed;
  right: clamp(16px, 4vw, 38px);
  bottom: clamp(150px, 20vh, 205px);
  z-index: 81;
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 24px;
  background: #fffdf7;
  box-shadow: 0 22px 50px rgba(56, 38, 12, 0.24);
  border: 1px solid rgba(223, 180, 85, 0.34);
}

.lucy-ai-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 17px;
  background: linear-gradient(135deg, #fff5cf, #ffffff);
  color: #4e351d;
}

.lucy-ai-head strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
}

.lucy-ai-head span {
  display: block;
  margin-top: 3px;
  color: #80613d;
  font-size: 0.82rem;
  font-weight: 700;
}

.lucy-ai-close {
  border: 0;
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #6a4a24;
}

.lucy-ai-log {
  display: grid;
  gap: 8px;
  max-height: 270px;
  overflow-y: auto;
  padding: 14px;
  background: #fffdf7;
}

.lucy-ai-message {
  max-width: 86%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 700;
}

.lucy-ai-message-bot {
  justify-self: start;
  background: #fff4cf;
  color: #563c1f;
}

.lucy-ai-message-user {
  justify-self: end;
  background: #5f7f4b;
  color: #ffffff;
}

.lucy-ai-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(223, 180, 85, 0.25);
  background: #ffffff;
}

.lucy-ai-input {
  min-width: 0;
  border: 1px solid rgba(154, 114, 50, 0.22);
  border-radius: 999px;
  padding: 10px 13px;
  font: inherit;
  font-size: 0.9rem;
}

.lucy-ai-send {
  border: 0;
  border-radius: 999px;
  background: #f0b43a;
  color: #3f2a12;
  font-size: 1rem;
  cursor: pointer;
}

.lucy-ai-form.is-busy .lucy-ai-send {
  opacity: 0.55;
  pointer-events: none;
}

.lucy-ai-thinking {
  position: relative;
  padding-right: 34px !important;
  color: #7a5528 !important;
}

.lucy-ai-thinking::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
  animation: lucy-ai-dots 1s infinite ease-in-out;
}

@keyframes lucy-ai-dots {
  0%, 100% { opacity: 0.35; transform: translateY(-50%) scale(0.86); }
  50% { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* 20260428l 홈 히어로 톤 보정 */
body[data-page="home"] .hero-title-brand {
  color: #ffaa00 !important;
  font-family: "Jua", var(--font-display) !important;
  font-weight: 400 !important;
  letter-spacing: -0.055em !important;
  text-shadow:
    -1px -1px 0 #4f3100,
    0 -1px 0 #4f3100,
    1px -1px 0 #4f3100,
    -1px 0 0 #4f3100,
    1px 0 0 #4f3100,
    -1px 1px 0 #4f3100,
    0 1px 0 #4f3100,
    1px 1px 0 #4f3100,
    0 5px 0 rgba(124, 78, 0, 0.18),
    0 16px 28px rgba(68, 49, 18, 0.18) !important;
}

body[data-page="home"] .site-header {
  position: relative;
  display: flex;
  justify-content: space-between;
}

body[data-page="home"] .site-nav-main {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

body[data-page="home"] .eyebrow {
  color: #111111 !important;
}

body[data-page="home"] .hero-text {
  color: #111111 !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 7px 18px rgba(51, 73, 35, 0.16) !important;
}

/* 20260430 홈/충전 UX 정리 */
body[data-page="home"] .home-brand-copy {
  display: none;
}

body[data-page="charge"] .charge-nickname-box {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(230, 209, 165, 0.78);
  border-radius: 20px;
  background: rgba(255, 250, 238, 0.9);
}

body[data-page="charge"] .charge-nickname-box[hidden] {
  display: none !important;
}

body[data-page="charge"] .charge-nickname-box label {
  color: #5a3d19;
  font-weight: 900;
}

body[data-page="charge"] .charge-nickname-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(156, 119, 61, 0.26);
  border-radius: 14px;
  background: #ffffff;
  color: #342514;
  font: inherit;
  font-weight: 800;
}

body[data-page="charge"] .charge-nickname-box p {
  margin: 0;
  color: rgba(78, 53, 24, 0.68);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

body[data-page="home"] .hero-home .button-primary,
body[data-page="home"] .hero-home .button-primary:visited {
  background: linear-gradient(180deg, #f1ce55, #deaa2f) !important;
  color: #4f3516 !important;
  border-color: rgba(255, 241, 177, 0.82) !important;
  box-shadow:
    0 16px 30px rgba(172, 126, 24, 0.30),
    inset 0 2px 0 rgba(255, 255, 255, 0.52) !important;
}

body[data-page="home"] .hero-home .button-primary:hover,
body[data-page="home"] .hero-home .button-primary:focus-visible {
  background: linear-gradient(180deg, #ffd95e, #efb735) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 20px 36px rgba(172, 126, 24, 0.36),
    inset 0 2px 0 rgba(255, 255, 255, 0.62) !important;
}


/* 루시팜 패치노트 카드 */
.patch-note-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
}

.patch-note-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(222, 204, 170, 0.72);
}

.patch-note-card-head h2 {
  margin: 0;
  color: #473522;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.patch-note-badge {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f4c85a;
  color: #3b2a15;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(210, 151, 32, 0.2);
}

.patch-note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.patch-note-list li {
  display: grid;
  grid-template-columns: minmax(118px, 0.26fr) 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 15px;
  border: 1px solid rgba(224, 207, 176, 0.68);
  border-radius: 17px;
  background: #fffaf0;
}

.patch-note-list strong {
  color: #9a621d;
  font-weight: 900;
}

.patch-note-list span {
  color: rgba(71, 53, 34, 0.82);
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .patch-note-card {
    padding: 18px;
  }

  .patch-note-card-head {
    display: grid;
  }

  .patch-note-badge {
    justify-self: start;
  }

  .patch-note-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}


/* 20260428k patch notes clean white */
body[data-page="patch-notes"] {
  background: #f7f7f5 !important;
}

body[data-page="patch-notes"]::before,
body[data-page="patch-notes"]::after {
  display: none !important;
}

body[data-page="patch-notes"] .page-shell {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

body[data-page="patch-notes"] .auth-page-main {
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
}

body[data-page="patch-notes"] .patch-notes-layout {
  width: 100%;
  display: grid;
  gap: 18px;
}

body[data-page="patch-notes"] .patch-notes-hero,
body[data-page="patch-notes"] .patch-note-card {
  border: 1px solid rgba(30, 30, 30, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(24, 24, 24, 0.06) !important;
}

body[data-page="patch-notes"] .patch-notes-hero {
  display: block;
  padding: 26px 28px;
}

body[data-page="patch-notes"] .patch-notes-hero h1 {
  color: #24211d !important;
}

body[data-page="patch-notes"] .patch-notes-hero p,
body[data-page="patch-notes"] .patch-note-list span {
  color: rgba(36, 33, 29, 0.72) !important;
}

body[data-page="patch-notes"] .patch-note-card-head {
  border-bottom-color: rgba(30, 30, 30, 0.09) !important;
}

body[data-page="patch-notes"] .patch-note-badge {
  background: #24211d !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body[data-page="patch-notes"] .patch-note-list li {
  border-color: rgba(30, 30, 30, 0.08) !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body[data-page="patch-notes"] .patch-note-list strong,
body[data-page="patch-notes"] .eyebrow {
  color: #6f5736 !important;
}










/* 20260613 site cleanup */
.hero-server-line-stacked {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: min(380px, 100%);
  text-align: center;
}

.hero-server-line-stacked .hero-server-chip {
  justify-content: center;
  text-align: center;
}

.patch-note-stack {
  display: grid;
  gap: 16px;
}

.patch-note-entry {
  overflow: hidden;
  padding: 0;
}

.patch-note-entry summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 22px clamp(20px, 4vw, 30px);
  cursor: pointer;
  list-style: none;
}

.patch-note-entry summary::-webkit-details-marker {
  display: none;
}

.patch-note-entry summary::after {
  content: "▼";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 232, 177, 0.85);
  color: #78511d;
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 160ms ease;
}

.patch-note-entry[open] summary::after {
  transform: rotate(180deg);
}

.patch-note-entry summary span {
  display: grid;
  gap: 4px;
}

.patch-note-entry summary strong {
  color: #b87918;
  font-size: 0.9rem;
  font-weight: 900;
}

.patch-note-entry summary em {
  color: #4e3518;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.patch-note-entry summary time {
  color: rgba(78, 53, 24, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

.patch-note-body {
  display: grid;
  gap: 18px;
  padding: 0 clamp(20px, 4vw, 30px) 28px;
  border-top: 1px solid rgba(229, 207, 166, 0.55);
}

.patch-note-body h2 {
  margin: 12px 0 0;
  color: #4e3518;
  font-size: 1.05rem;
  font-weight: 900;
}

.patch-note-preview,
.patch-note-alert {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 246, 220, 0.86);
  color: #5b421e;
  font-weight: 800;
  line-height: 1.65;
}

.patch-note-alert {
  background: rgba(255, 235, 213, 0.95);
  color: #7a3d1c;
}

@media (max-width: 720px) {
  .patch-note-entry summary {
    grid-template-columns: 1fr;
  }

  .patch-note-entry summary time {
    order: 2;
  }

  .patch-note-entry summary::after {
    position: absolute;
    right: 18px;
  }
}

/* 20260613 layout final polish */
html,
body {
  overflow-x: hidden;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #4e3518 !important;
  background: rgba(255, 247, 224, 0.92) !important;
  box-shadow:
    inset 0 0 0 1px rgba(214, 174, 82, 0.5),
    0 8px 18px rgba(148, 127, 92, 0.08) !important;
}

.site-nav > [hidden] {
  display: none !important;
}

body[data-page="home"] {
  min-height: 100svh !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed;
}

body[data-page="home"] .page-shell {
  min-height: 100svh !important;
  padding-bottom: 0 !important;
}

body[data-page="home"] main {
  display: block !important;
}

body[data-page="home"] .hero-home {
  min-height: calc(100svh - 72px) !important;
  padding: clamp(62px, 10vh, 110px) 18px clamp(90px, 16vh, 150px) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

body[data-page="home"] .hero-copy {
  gap: 24px !important;
  width: min(100%, 920px) !important;
}

body[data-page="home"] [data-online-status] {
  padding: 11px 18px !important;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem) !important;
  letter-spacing: 0.04em !important;
}

body[data-page="home"] .hero-title-brand {
  font-size: clamp(5.1rem, 15vw, 9rem) !important;
  line-height: 0.88 !important;
}

body[data-page="home"] .hero-text {
  max-width: 44rem !important;
  font-size: clamp(1.55rem, 3.5vw, 2.05rem) !important;
}

body[data-page="home"] .hero-server-line-stacked {
  width: fit-content !important;
  min-width: 0 !important;
  max-width: min(94vw, 430px) !important;
  padding: 13px 22px !important;
  gap: 5px !important;
}

body[data-page="home"] .hero-server-line-stacked .hero-server-chip {
  justify-content: center !important;
  text-align: center !important;
  font-size: clamp(1.15rem, 2.5vw, 1.42rem) !important;
  line-height: 1.25 !important;
}

body[data-page="patch-notes"] .auth-page-main {
  width: min(calc(100% - 32px), 860px) !important;
  margin: 0 auto !important;
}

body[data-page="patch-notes"] .patch-notes-layout,
body[data-page="patch-notes"] .patch-note-stack {
  width: 100% !important;
  max-width: 860px !important;
  margin: 0 auto !important;
}

body[data-page="patch-notes"] .site-footer,
body[data-page="patch-notes"] .site-footer-row {
  width: 100% !important;
  max-width: none !important;
}

/* 20260614 wiki template + nav hover fix */
.site-nav,
.site-nav-main,
.site-nav-account {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
}

.site-nav a,
.site-nav-button {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 12px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  transform: none !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-button:hover,
.site-nav-button:focus-visible,
body[data-page="guide"] .site-nav a[href="./guide.html"],
body[data-page="patch-notes"] .site-nav a[href="./patch-notes.html"],
body[data-page="charge"] .site-nav a[href="./charge.html"] {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  background: var(--color-fill-neutral-light, rgba(242, 243, 245, 0.92)) !important;
  box-shadow: none !important;
  color: #24262b !important;
  transform: none !important;
}

body[data-page="guide"] {
  background: #ffffff !important;
  color: #202124 !important;
}

body[data-page="guide"]::before,
body[data-page="guide"]::after {
  display: none !important;
}

body[data-page="guide"] .page-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}

body[data-page="guide"] .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: 60px !important;
  padding: 0 24px !important;
  border-bottom: 1px solid rgba(31, 35, 40, 0.1) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
}

body[data-page="guide"] .brand-copy span {
  color: rgba(32, 33, 36, 0.56) !important;
}

body[data-page="guide"] .wiki-main {
  display: block !important;
  width: 100% !important;
  padding: 0 0 88px !important;
  background: #ffffff !important;
}

body[data-page="guide"] .wiki-hero {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-height: 280px !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border-radius: 0 !important;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 18% 30%, rgba(255, 210, 127, 0.48), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(92, 164, 255, 0.3), transparent 30%),
    linear-gradient(135deg, #fff5d8 0%, #dff1ff 100%) !important;
  box-shadow: none !important;
}

body[data-page="guide"] .wiki-hero::before,
body[data-page="guide"] .wiki-hero::after {
  display: none !important;
}

body[data-page="guide"] .wiki-hero-copy {
  display: contents !important;
}

body[data-page="guide"] .wiki-hero-copy .eyebrow,
body[data-page="guide"] .wiki-hero-summary,
body[data-page="guide"] .hero-badges,
body[data-page="guide"] .hero-actions,
body[data-page="guide"] .play-feedback,
body[data-page="guide"] .wiki-search-head,
body[data-page="guide"] .wiki-search-tools,
body[data-page="guide"] .wiki-search-meta {
  display: none !important;
}

body[data-page="guide"] .wiki-hero h1 {
  margin: 0 0 34px !important;
  padding: 4px 2px !important;
  color: #202124 !important;
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.03em !important;
  text-align: center !important;
}

body[data-page="guide"] .wiki-search-panel {
  display: block !important;
  width: min(654px, 90vw) !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  box-shadow: none !important;
}

body[data-page="guide"] .wiki-search-box {
  display: block !important;
  width: 100% !important;
}

body[data-page="guide"] .wiki-search-box input {
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 18px 0 48px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%2373777f' d='M10 2a8 8 0 0 1 6.32 12.9l5.39 5.39a1 1 0 1 1-1.42 1.42l-5.39-5.39A8 8 0 1 1 10 2Zm0 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z'/%3E%3C/svg%3E") 16px 50% / 22px 22px no-repeat,
    rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(0, 0, 0, 0.15) !important;
  color: #202124 !important;
  font-size: 1rem !important;
}

body[data-page="guide"] .wiki-pill-strip {
  display: none !important;
}

body[data-page="guide"] .wiki-top-grid,
body[data-page="guide"] .wiki-category-section,
body[data-page="guide"] .wiki-results-section,
body[data-page="guide"] .wiki-shell {
  width: min(100% - 40px, 1180px) !important;
  margin: 0 auto !important;
}

body[data-page="guide"] .wiki-top-grid {
  display: block !important;
  padding-top: 46px !important;
}

body[data-page="guide"] .wiki-top-grid .wiki-info-card:nth-child(1),
body[data-page="guide"] .wiki-top-grid .wiki-info-card:nth-child(3) {
  display: none !important;
}

body[data-page="guide"] .wiki-top-grid .wiki-info-card:nth-child(2) {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="guide"] .wiki-top-grid .wiki-info-card:nth-child(2)::before {
  display: none !important;
}

body[data-page="guide"] .wiki-top-grid .wiki-info-card:nth-child(2) .section-label {
  display: block !important;
  margin: 0 0 20px !important;
  color: #202124 !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body[data-page="guide"] .wiki-top-grid .wiki-info-card:nth-child(2) h2 {
  display: none !important;
}

body[data-page="guide"] .wiki-popular-list {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(296px, 422px) !important;
  gap: 20px !important;
  overflow-x: auto !important;
  padding: 0 0 10px !important;
  scroll-snap-type: x mandatory !important;
}

body[data-page="guide"] .wiki-popular-card {
  position: relative !important;
  display: grid !important;
  align-content: start !important;
  gap: 10px !important;
  min-height: 318px !important;
  padding: 236px 0 0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  scroll-snap-align: start !important;
}

body[data-page="guide"] .wiki-popular-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 220px !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.75), transparent 23%),
    linear-gradient(135deg, #f5c46c, #78c5f6) !important;
}

body[data-page="guide"] .wiki-popular-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 32% 36%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(135deg, #8dd6aa, #f3d16f) !important;
}

body[data-page="guide"] .wiki-popular-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(135deg, #96b7ff, #d79dff) !important;
}

body[data-page="guide"] .wiki-popular-card:nth-child(4)::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(135deg, #ff9f95, #ffd36e) !important;
}

body[data-page="guide"] .wiki-popular-card strong {
  overflow: hidden !important;
  color: #202124 !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.025em !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

body[data-page="guide"] .wiki-popular-card span {
  overflow: hidden !important;
  display: -webkit-box !important;
  color: #73777f !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

body[data-page="guide"] .wiki-category-section {
  padding-top: 46px !important;
}

body[data-page="guide"] .wiki-category-section .section-head {
  display: block !important;
  margin: 0 0 20px !important;
}

body[data-page="guide"] .wiki-category-section .section-head .section-label,
body[data-page="guide"] .wiki-category-section .section-head > p {
  display: none !important;
}

body[data-page="guide"] .wiki-category-section h2 {
  margin: 0 !important;
  color: #202124 !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

body[data-page="guide"] .wiki-category-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body[data-page="guide"] .wiki-category-card {
  position: relative !important;
  display: grid !important;
  gap: 9px !important;
  min-height: 260px !important;
  padding: 154px 16px 18px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body[data-page="guide"] .wiki-category-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 136px !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.7), transparent 23%),
    linear-gradient(135deg, #ffe4a3, #91d8ff) !important;
}

body[data-page="guide"] .wiki-category-card:nth-child(2n)::before {
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(135deg, #b7efc5, #e7d4ff) !important;
}

body[data-page="guide"] .wiki-category-card:nth-child(3n)::before {
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(135deg, #ffc1b8, #ffe38a) !important;
}

body[data-page="guide"] .wiki-category-card-head {
  display: contents !important;
}

body[data-page="guide"] .wiki-category-card .section-label {
  display: none !important;
}

body[data-page="guide"] .wiki-category-card-head strong {
  order: 5 !important;
  color: #73777f !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

body[data-page="guide"] .wiki-category-card h3 {
  margin: 0 !important;
  color: #202124 !important;
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

body[data-page="guide"] .wiki-category-card p {
  overflow: hidden !important;
  display: -webkit-box !important;
  margin: 0 !important;
  color: #73777f !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

body[data-page="guide"] .wiki-category-preview {
  display: none !important;
}

body[data-page="guide"] .wiki-shell,
body[data-page="guide"] .wiki-results-section {
  margin-top: 46px !important;
}

body[data-page="guide"] .panel,
body[data-page="guide"] .wiki-sidebar,
body[data-page="guide"] .wiki-article-shell,
body[data-page="guide"] .wiki-results-section {
  border: 1px solid rgba(31, 35, 40, 0.08) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body[data-page="guide"] .panel::before {
  display: none !important;
}

body[data-page="guide"] .site-footer {
  width: min(100% - 40px, 1180px) !important;
  margin: 70px auto 0 !important;
  padding: 28px 0 38px !important;
  border-top: 1px solid rgba(31, 35, 40, 0.1) !important;
  color: #73777f !important;
}

@media (max-width: 920px) {
  body[data-page="guide"] .wiki-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="guide"] .site-header {
    padding: 0 16px !important;
  }

  body[data-page="guide"] .wiki-category-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-page="guide"] .wiki-popular-list {
    grid-auto-columns: minmax(278px, 84vw) !important;
  }
}

/* 20260614 clean commerce pages + home scale */
body[data-page="home"] .hero-copy {
  transform: translateY(-24px) !important;
}

body[data-page="home"] [data-online-status] {
  font-size: clamp(0.84rem, 1.68vw, 1.08rem) !important;
  padding: 9px 15px !important;
}

body[data-page="home"] .hero-title-brand {
  font-size: clamp(4.08rem, 12vw, 7.2rem) !important;
}

body[data-page="home"] .hero-text {
  font-size: clamp(1.24rem, 2.8vw, 1.64rem) !important;
}

body[data-page="home"] .hero-server-line-stacked {
  padding: 10px 17px !important;
  gap: 3px !important;
  max-width: min(92vw, 330px) !important;
}

body[data-page="home"] .hero-server-line-stacked .hero-server-chip {
  font-size: clamp(0.75rem, 1.65vw, 0.92rem) !important;
  line-height: 1.22 !important;
}

body[data-page="guide"] .wiki-shell {
  display: none !important;
}

body[data-page="charge"],
body[data-page="patch-notes"] {
  background: #ffffff !important;
  color: #202124 !important;
}

body[data-page="charge"]::before,
body[data-page="charge"]::after,
body[data-page="patch-notes"]::before,
body[data-page="patch-notes"]::after {
  display: none !important;
}

body[data-page="charge"] .page-shell,
body[data-page="patch-notes"] .page-shell {
  width: 100% !important;
  max-width: none !important;
  min-height: 100svh !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}

body[data-page="charge"] .site-header,
body[data-page="patch-notes"] .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  min-height: 60px !important;
  padding: 0 24px !important;
  border-bottom: 1px solid rgba(31, 35, 40, 0.1) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
}

body[data-page="charge"] .auth-page-main,
body[data-page="patch-notes"] .auth-page-main {
  width: min(calc(100% - 40px), 920px) !important;
  margin: 0 auto !important;
  padding: 48px 0 72px !important;
}

body[data-page="patch-notes"] .auth-page-main {
  width: min(calc(100% - 40px), 860px) !important;
}

body[data-page="charge"] .auth-single-layout,
body[data-page="patch-notes"] .auth-single-layout,
body[data-page="charge"] .charge-simple-layout,
body[data-page="patch-notes"] .patch-notes-layout {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  gap: 16px !important;
}

body[data-page="charge"] .panel,
body[data-page="patch-notes"] .panel,
body[data-page="charge"] .charge-panel,
body[data-page="patch-notes"] .patch-notes-hero,
body[data-page="patch-notes"] .patch-note-card {
  border: 1px solid rgba(31, 35, 40, 0.1) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #202124 !important;
}

body[data-page="charge"] .panel::before,
body[data-page="patch-notes"] .panel::before {
  display: none !important;
}

body[data-page="charge"] .charge-panel {
  padding: 24px !important;
}

body[data-page="patch-notes"] .patch-notes-hero {
  padding: 28px 30px !important;
}

body[data-page="patch-notes"] .patch-notes-hero h1 {
  margin: 4px 0 10px !important;
  color: #202124 !important;
  font-size: clamp(2.1rem, 5vw, 3rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.04em !important;
}

body[data-page="patch-notes"] .patch-notes-hero p {
  color: #5f6368 !important;
  line-height: 1.7 !important;
}

body[data-page="charge"] .charge-panel-head {
  display: flex !important;
  gap: 14px !important;
  align-items: flex-start !important;
  margin-bottom: 20px !important;
}

body[data-page="charge"] .charge-step-badge {
  display: inline-grid !important;
  place-items: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important;
  background: #f1f3f4 !important;
  color: #202124 !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

body[data-page="charge"] .charge-panel-head h2,
body[data-page="charge"] .charge-section-title {
  color: #202124 !important;
  font-size: 1.24rem !important;
  letter-spacing: -0.025em !important;
}

body[data-page="charge"] .charge-panel-head p,
body[data-page="charge"] .charge-inline-note,
body[data-page="charge"] #charge-package-status {
  color: #5f6368 !important;
  line-height: 1.65 !important;
}

body[data-page="charge"] .charge-input {
  border: 1px solid rgba(31, 35, 40, 0.14) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #202124 !important;
}

body[data-page="charge"] .charge-input:focus {
  border-color: #8ab4f8 !important;
  outline: 3px solid rgba(138, 180, 248, 0.24) !important;
}

body[data-page="charge"] .charge-package-grid {
  gap: 12px !important;
}

body[data-page="charge"] .charge-package-card,
body[data-page="charge"] .charge-method-card {
  border: 1px solid rgba(31, 35, 40, 0.1) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #202124 !important;
}

body[data-page="charge"] .charge-package-card:hover,
body[data-page="charge"] .charge-package-card:focus-visible,
body[data-page="charge"] .charge-package-card.is-selected,
body[data-page="charge"] .charge-package-card[data-selected="true"] {
  border-color: rgba(26, 115, 232, 0.36) !important;
  background: #f8fbff !important;
  box-shadow: none !important;
}

body[data-page="charge"] .button-primary,
body[data-page="charge"] .charge-check-button {
  border-radius: 10px !important;
  background: #1a73e8 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body[data-page="charge"] .button-secondary {
  border-radius: 10px !important;
  background: #f1f3f4 !important;
  color: #202124 !important;
  box-shadow: none !important;
}

body[data-page="patch-notes"] .patch-note-entry {
  overflow: hidden !important;
}

body[data-page="patch-notes"] .patch-note-entry summary {
  min-height: 74px !important;
  padding: 20px 24px !important;
}

body[data-page="patch-notes"] .patch-note-entry summary::after {
  background: #f1f3f4 !important;
  color: #5f6368 !important;
  box-shadow: none !important;
}

body[data-page="patch-notes"] .patch-note-entry summary strong,
body[data-page="patch-notes"] .eyebrow {
  color: #1a73e8 !important;
}

body[data-page="patch-notes"] .patch-note-entry summary em {
  color: #202124 !important;
}

body[data-page="patch-notes"] .patch-note-entry summary time,
body[data-page="patch-notes"] .patch-note-list span {
  color: #5f6368 !important;
}

body[data-page="patch-notes"] .patch-note-body {
  border-top: 1px solid rgba(31, 35, 40, 0.1) !important;
}

body[data-page="patch-notes"] .patch-note-body h2,
body[data-page="patch-notes"] .patch-note-list strong {
  color: #202124 !important;
}

body[data-page="patch-notes"] .patch-note-preview,
body[data-page="patch-notes"] .patch-note-alert,
body[data-page="patch-notes"] .patch-note-list li {
  border: 1px solid rgba(31, 35, 40, 0.08) !important;
  border-radius: 10px !important;
  background: #f8fafd !important;
  box-shadow: none !important;
}

body[data-page="patch-notes"] .patch-note-alert {
  color: #9a3412 !important;
  background: #fff7ed !important;
}

body[data-page="charge"] .site-footer,
body[data-page="patch-notes"] .site-footer {
  width: min(100% - 40px, 1180px) !important;
  margin: 0 auto !important;
  padding: 28px 0 38px !important;
  border-top: 1px solid rgba(31, 35, 40, 0.1) !important;
  color: #73777f !important;
}
