:root {
  --bg: #050505;
  --panel: #0d0b08;
  --panel-soft: #14110c;
  --ink: #f5efe3;
  --muted: #b8ad98;
  --line: rgba(232, 199, 123, 0.2);
  --gold: #e8c77b;
  --cyan: #65d6e8;
  --green: #8ad7a6;
  --danger: #ffb27a;
  --max: 1180px;
  font-family: Pretendard, Inter, "Noto Sans KR", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 199, 123, 0.14), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(101, 214, 232, 0.11), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #0b0a08 54%, #050505 100%);
  color: var(--ink);
  letter-spacing: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d6ccb7;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(232, 199, 123, 0.44);
  background: linear-gradient(135deg, #f3d98f, #9a6e20);
  color: #090704;
  padding: 0 16px;
  font-weight: 900;
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(101, 214, 232, 0.32);
  color: #d8f5f8;
  padding: 0 16px;
  font-weight: 800;
}

.wrap {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  padding: clamp(72px, 10vw, 120px) 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 34px;
  align-items: end;
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
.lead,
.card,
.keyword span,
.signal-list li {
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 22px;
  font-size: 76px;
  line-height: 1.03;
  font-weight: 250;
  letter-spacing: 0;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.lead {
  max-width: 820px;
  color: #ddd2bd;
  font-size: 22px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.signal-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 17, 12, 0.92), rgba(9, 8, 6, 0.88));
  padding: 22px;
}

.signal-panel h2 {
  font-size: 24px;
  letter-spacing: 0;
}

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

.signal-list li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.signal-list b {
  color: var(--ink);
}

.section {
  padding: 78px 0;
  border-top: 1px solid rgba(232, 199, 123, 0.12);
}

.section h2 {
  max-width: 860px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
}

.section > .wrap > p {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
  min-height: 190px;
}

.card:hover {
  border-color: rgba(232, 199, 123, 0.36);
  background: rgba(232, 199, 123, 0.055);
}

.card small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.keyword-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.keyword {
  border: 1px solid rgba(232, 199, 123, 0.2);
  background: #0b0a08;
  padding: 14px;
}

.keyword b {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.keyword span {
  display: block;
  margin-top: 7px;
  color: #9fd9e2;
  font-size: 12px;
  line-height: 1.45;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card:before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--gold);
  font-size: 26px;
  font-weight: 300;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  border-left: 3px solid var(--danger);
  background: rgba(255, 178, 122, 0.08);
  color: #f3d8c2;
  padding: 16px 18px;
  line-height: 1.7;
}

.final {
  padding: 72px 0;
  border-top: 1px solid rgba(232, 199, 123, 0.14);
  background: #050505;
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232, 199, 123, 0.08), rgba(255, 255, 255, 0.02));
  padding: 28px;
}

.final-box h2 {
  margin-bottom: 10px;
  font-size: 44px;
  letter-spacing: 0;
}

.final-box p {
  color: var(--muted);
  line-height: 1.7;
}

.foot {
  padding: 28px 0;
  color: #8f8574;
  font-size: 13px;
}

.foot .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.foot-seo {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 199, 123, 0.14);
}

.foot-seo a {
  color: #b8ad98;
  font-size: 12px;
}

.foot-seo a:hover {
  color: var(--gold);
}

.foot-biz {
  margin-top: 14px;
  color: #70685a;
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 920px) {
  h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 20px;
  }

  .section h2 {
    font-size: 44px;
  }

  .final-box h2 {
    font-size: 40px;
  }

  .hero-grid,
  .final-box {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .lead {
    font-size: 18px;
  }

  .section h2 {
    font-size: 32px;
  }

  .final-box h2 {
    font-size: 30px;
  }

  .hero {
    padding-top: 54px;
  }

  .grid,
  .keyword-map {
    grid-template-columns: 1fr;
  }

  .signal-list li {
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .foot .wrap {
    flex-direction: column;
  }
}

/* === AX motion 2026-07-02 — CSS-only, reduced-motion 가드 === */
.grid .card{transition:transform .3s ease,border-color .3s ease}
.grid .card:hover{transform:perspective(700px) rotateX(2deg) translateY(-4px)}
@supports (animation-timeline: view()){
  .grid .card{animation:seoRise both;animation-timeline:view();animation-range:entry 0% entry 60%}
}
@keyframes seoRise{from{opacity:.25;transform:translateY(26px) scale(.97)}to{opacity:1;transform:none}}
.hero h1{animation:seoGold 1.7s .3s both}
@keyframes seoGold{0%{text-shadow:none}45%{text-shadow:0 0 30px rgba(232,199,123,.5)}100%{text-shadow:0 0 12px rgba(232,199,123,.14)}}
@media (prefers-reduced-motion: reduce){.grid .card,.hero h1{animation:none !important}.grid .card{transition:none}}
