/* Liquidation Terminal by StellarMom - marketing site */

:root {
  color-scheme: dark;

  --bg: #07090d;
  --bg-alt: #090c12;

  --text: #f3f5fa;
  --muted: rgb(226 232 255 / 0.6);
  --faint: rgb(226 232 255 / 0.38);

  --stroke: rgb(255 255 255 / 0.13);
  --stroke-soft: rgb(255 255 255 / 0.07);
  --highlight: rgb(255 255 255 / 0.24);
  --fill: rgb(255 255 255 / 0.06);
  --fill-hover: rgb(255 255 255 / 0.12);
  --sunken: rgb(0 0 0 / 0.28);

  --accent: rgb(138 180 255);
  --accent-dim: rgb(138 180 255 / 0.55);
  --gold: #fbbf24;
  --up: #34d399;
  --down: #fb7185;
  --mint: #97fce4;

  --glass: linear-gradient(150deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.03) 42%, rgb(255 255 255 / 0.05));
  --blur: blur(30px) saturate(175%);

  --radius: 20px;
  --radius-sm: 14px;
  --gutter: 16px;
  --maxw: 1240px;
  --nav-h: 60px;

  --font: 'Sora', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.005em;
  background:
    radial-gradient(1100px 760px at 8% -10%, rgb(91 108 255 / 0.2), transparent 62%),
    radial-gradient(900px 700px at 102% 6%, rgb(20 184 166 / 0.12), transparent 60%),
    radial-gradient(1000px 900px at 55% 112%, rgb(217 70 239 / 0.1), transparent 62%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img, canvas, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

p { margin: 0; }
code { font-family: ui-monospace, 'SFMono-Regular', 'Cascadia Mono', 'Consolas', monospace; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.muted { color: var(--muted); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: #11151f;
  border: 1px solid var(--stroke);
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- glass ---------- */
.panel {
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 var(--highlight),
    inset 0 -1px 0 rgb(255 255 255 / 0.04),
    0 20px 44px -18px rgb(0 0 0 / 0.7);
}

/* ---------- brand type ---------- */
.brand-name {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(95deg, #ffffff 0%, #dbe6ff 42%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-by {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--mint);
  text-shadow: 0 0 18px rgb(151 252 228 / 0.35);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: var(--fill);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn:hover { background: var(--fill-hover); text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-sm { height: 32px; padding: 0 14px; font-size: 13px; }
.btn-lg { height: 50px; padding: 0 28px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(180deg, rgb(138 180 255 / 0.32), rgb(138 180 255 / 0.16));
  border-color: var(--accent-dim);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25), 0 10px 30px -12px rgb(138 180 255 / 0.7);
}
.btn-primary:hover {
  background: linear-gradient(180deg, rgb(138 180 255 / 0.44), rgb(138 180 255 / 0.22));
}
.btn-ghost { background: var(--sunken); border-color: var(--stroke); }
.btn-ghost:hover { background: var(--fill); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(7 9 13 / 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.nav.is-stuck {
  border-bottom-color: var(--stroke-soft);
  background: rgb(7 9 13 / 0.88);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: var(--maxw);
  min-height: var(--nav-h);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  min-width: 0;
}
.nav-brand:hover { text-decoration: none; }
.nav-mark {
  flex: none;
  width: 9px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--down), rgb(251 113 133 / 0.25));
  box-shadow: 0 0 16px -2px rgb(251 113 133 / 0.8);
}
.nav-brand-text {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
}
.nav-brand-text .brand-name { font-size: 15px; white-space: nowrap; }
.nav-brand-text .brand-by { font-size: 15px; white-space: nowrap; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--fill); text-decoration: none; }
.nav-links a.is-active { color: var(--text); background: var(--fill); }

.nav-cta { flex: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--nav-h));
  padding: 64px var(--gutter) 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-canvas {
  position: absolute;
  inset: -8%;
  z-index: -2;
  width: 116%;
  height: 116%;
  filter: blur(26px) saturate(125%);
  opacity: 0.5;
  transform: translateZ(0);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(110% 80% at 50% 40%, rgb(7 9 13 / 0.35), rgb(7 9 13 / 0.86) 72%),
    linear-gradient(180deg, rgb(7 9 13 / 0.8) 0%, rgb(7 9 13 / 0.35) 35%, rgb(7 9 13 / 0.95) 100%);
}

.hero-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: var(--sunken);
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--down);
  box-shadow: 0 0 10px var(--down);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 22px;
}
.hero-title-main {
  font-size: clamp(2.1rem, 7.2vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  background: linear-gradient(95deg, #ffffff 0%, #dbe6ff 45%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title-by {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--mint);
  text-shadow: 0 0 26px rgb(151 252 228 / 0.35);
}

.hero-sub {
  max-width: 660px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.1vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.ca-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.ca-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ca-label { color: var(--gold); }
.ca-chain { color: var(--faint); }
.ca-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ca-value {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 9px 12px;
  border: 1px solid var(--stroke-soft);
  border-radius: 10px;
  background: var(--sunken);
  font-size: 12.5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  scrollbar-width: none;
}
.ca-value::-webkit-scrollbar { display: none; }
.ca-copy { flex: none; min-width: 78px; }
.ca-copy.is-copied {
  background: rgb(52 211 153 / 0.2);
  border-color: rgb(52 211 153 / 0.55);
  color: var(--up);
}
.ca-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  font-size: 12.5px;
}
.dot-sep { color: var(--faint); }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-chips li {
  padding: 5px 12px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: var(--sunken);
  color: var(--faint);
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 26px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  transform: translateX(-50%);
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: var(--muted);
  animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(13px); opacity: 0.2; }
}
@media (max-height: 700px), (max-width: 600px) {
  .hero-scroll { display: none; }
}

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section-alt {
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
  background: linear-gradient(180deg, rgb(255 255 255 / 0.015), transparent);
}

.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 4.4vw, 2.5rem);
  font-weight: 600;
}
.sec-lede {
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.group-title:first-of-type { margin-top: 0; }
.group-idx {
  padding: 3px 9px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: var(--sunken);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--stroke-soft), transparent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 14px;
}

.card {
  padding: 22px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgb(138 180 255 / 0.3); transform: translateY(-2px); }
.card h4 {
  margin-bottom: 9px;
  font-size: 1.02rem;
  font-weight: 600;
}
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.62; }
.card-wide { grid-column: 1 / -1; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.tag-row li {
  padding: 3px 10px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: var(--sunken);
  color: var(--muted);
  font-size: 11.5px;
}
.tag-row .tag-dim { color: var(--faint); border-style: dashed; }

.legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}
.legend-item { display: inline-flex; align-items: center; gap: 7px; }
.sw { width: 11px; height: 11px; border-radius: 3px; }
.sw-long { background: var(--down); box-shadow: 0 0 10px -2px var(--down); }
.sw-short { background: var(--up); box-shadow: 0 0 10px -2px var(--up); }

/* ---------- on-chain metrics ---------- */
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: var(--sunken);
  color: var(--muted);
  font-size: 12.5px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--faint);
}
.status-line.is-live .status-dot { background: var(--up); box-shadow: 0 0 10px var(--up); }
.status-line.is-pending .status-dot { background: var(--gold); box-shadow: 0 0 10px rgb(251 191 36 / 0.7); }

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.metric {
  padding: 20px;
  border-radius: var(--radius-sm);
}
.metric-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.metric-value {
  font-size: clamp(1.5rem, 3.6vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.metric-note {
  margin-top: 8px;
  color: var(--faint);
  font-size: 12px;
}

/* intentional empty state */
.metric.is-empty { border-style: dashed; border-color: var(--stroke-soft); }
.metric.is-empty .metric-value {
  color: var(--faint);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.metric.is-empty .metric-note { color: rgb(251 191 36 / 0.72); }
.metric.is-live .metric-value { color: var(--text); }
.metric.is-live .metric-note { color: var(--muted); }

.token-facts { padding: 8px 22px; border-radius: var(--radius-sm); }
.token-facts dl { margin: 0; }
.token-facts dl > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke-soft);
}
.token-facts dl > div:last-child { border-bottom: 0; }
.token-facts dt {
  flex: none;
  width: 110px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.7;
}
.token-facts dd {
  flex: 1;
  min-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 14px;
}
.plan {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--radius-sm);
}
.plan-featured {
  border-color: var(--accent-dim);
  box-shadow:
    inset 0 1px 0 var(--highlight),
    0 20px 50px -20px rgb(138 180 255 / 0.55);
}
.plan-flag {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 3px 11px;
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  background: #0d1119;
  color: var(--accent);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plan-name {
  margin-bottom: 14px;
  font-size: 1.05rem;
  font-weight: 600;
}
.plan-amount {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
}
.plan-unit {
  margin-top: 7px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.plan-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--stroke-soft);
}
.plan-list li {
  position: relative;
  padding: 11px 0 0 20px;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.55;
}
.plan-list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.75;
}

.plans-note {
  margin-top: 18px;
  padding: 15px 18px;
  border: 1px dashed rgb(251 191 36 / 0.32);
  border-radius: var(--radius-sm);
  background: rgb(251 191 36 / 0.05);
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.6;
}
.plans-note strong { color: var(--gold); font-weight: 600; }

.mech {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 14px;
  margin-top: 36px;
}
.mech-item { padding: 22px; border-radius: var(--radius-sm); }
.mech-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 1rem;
  font-weight: 600;
}
.mech-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.62; }
.badge-plan {
  padding: 2px 9px;
  border: 1px solid rgb(251 191 36 / 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--radius);
}
.cta-strip h3 { margin-bottom: 6px; font-size: 1.25rem; }
.cta-strip p { font-size: 0.92rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- footer ---------- */
.footer {
  padding: 56px 0 44px;
  border-top: 1px solid var(--stroke-soft);
  background: var(--bg-alt);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--stroke-soft);
}
.footer-brand { display: flex; align-items: baseline; gap: 8px; }
.footer-brand .brand-name { font-size: 16px; }
.footer-brand .brand-by { font-size: 16px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 13.5px; }
.footer-links a:hover { color: var(--text); }

.footer-ca {
  margin: 20px 0 16px;
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.footer-ca code { color: var(--faint); }

.disclaimer {
  max-width: 860px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.7;
}
.copyright { margin-top: 18px; font-size: 12px; }

/* ---------- why / philosophy ---------- */
.taglines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  margin: 0 0 30px;
  padding: 32px 24px;
  border: 1px solid var(--stroke-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 150% at 50% 0%, rgb(138 180 255 / 0.1), transparent 68%),
    var(--sunken);
  text-align: center;
}
.tagline {
  font-size: clamp(1.35rem, 4.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  background: linear-gradient(95deg, #ffffff, #dbe6ff 55%, var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline-gold {
  background: linear-gradient(95deg, #ffffff, #ffe9b0 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline-sep {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
}
.why-note {
  margin-top: 20px;
  color: var(--faint);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 720px;
}

/* ---------- bonding curve phase (early supporter) ---------- */
.nav-hot {
  color: var(--gold) !important;
}
.nav-hot::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}
.section-early {
  padding-top: 0;
}
.early-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgb(251 191 36 / 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(130% 140% at 15% 0%, rgb(251 191 36 / 0.1), transparent 62%),
    radial-gradient(100% 120% at 90% 100%, rgb(138 180 255 / 0.08), transparent 60%),
    var(--sunken);
}
/* 한 번씩 훑고 지나가는 하이라이트. 눈에 띄되 읽기를 방해하지 않을 정도로만 */
.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgb(255 255 255 / 0.07) 45%, rgb(251 191 36 / 0.1) 55%, transparent);
  transform: skewX(-14deg);
  animation: shine-sweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine-sweep {
  0%, 62% { left: -60%; }
  100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .shine::before { animation: none; opacity: 0.45; left: -60%; }
}
.eyebrow-hot {
  color: var(--gold);
}
.early-title {
  background: linear-gradient(95deg, #ffffff, #ffe9b0 58%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.early-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.early-step {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: var(--radius);
}
.early-step h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
  font-weight: 600;
}
.early-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.early-idx {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  color: var(--faint);
  font-size: 12px;
}
/* 3번이 이 제안의 핵심이라 테두리로 시선을 잡는다 */
.early-step-key {
  border-color: rgb(251 191 36 / 0.45);
}
.early-step-key .early-idx {
  border-color: rgb(251 191 36 / 0.5);
  color: var(--gold);
}
.early-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius);
}
.early-callout h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}
.early-callout p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.9rem;
  line-height: 1.6;
}
/* 사용자를 보호하는 장치라 눈에 띄되 혜택 카드와는 구분되게 */
.early-safeguards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.early-safe {
  padding: 18px 20px;
  border-radius: var(--radius);
  border-color: var(--stroke-soft);
}
.early-safe h4 {
  margin: 0 0 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mint);
}
.early-safe p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.early-note {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--faint);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* 모노그램 자리에 실제 로고가 들어가므로 글자용 규칙을 덮는다 */
img.team-avatar {
  object-fit: cover;
  background: #000;
}

/* ---------- team ---------- */
.team-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius);
}
.team-avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, rgb(151 252 228 / 0.26), rgb(138 180 255 / 0.12) 60%, transparent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--mint);
  letter-spacing: 0.02em;
}
.team-body {
  flex: 1;
  min-width: 240px;
}
.team-name {
  margin-bottom: 3px;
  font-size: 1.5rem;
}
.team-name .brand-by { font-size: 1.5rem; }
.team-body .team-role {
  margin-bottom: 14px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.team-text p + p { margin-top: 10px; }
.team-link { margin-top: 20px; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .card, .metric, .plan, .mech-item { padding: 18px; }
  .cta-strip { padding: 22px; }
  .token-facts { padding: 6px 18px; }
  .token-facts dt { width: 100%; }
  .token-facts dd { min-width: 0; }
  .hero { padding: 48px var(--gutter) 72px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .ca-row { flex-wrap: wrap; }
  .ca-copy { width: 100%; }
}

@media (min-width: 1600px) {
  :root { --maxw: 1400px; }
}
