/* ══════════════════════════════════════════════════════════════════
   cyber.koscak.ai · APPLE-GRADE edition
   Structure/anatomy ports from mbp page patterns (no asset/copy copy)
   Hard adoption of koscak.ai green tokens + inter + jetbrains mono
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* koscak tokens (exact from live koscak.ai) */
  --g: #76b900;
  --g-dim: rgba(118,185,0,.12);
  --g-line: rgba(118,185,0,.25);
  --g-dark: #4a7a00;
  --g-light: #ccff44;
  --b: #4488ff;
  --red: #ff5555;
  --amber: #fbbf24;

  --bg: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #111213;
  --bg-3: #1c1c1e;
  --bg-4: #2c2c2e;

  --t1: #f5f5f7;
  --t2: rgba(245,245,247,.72);
  --t3: rgba(245,245,247,.45);
  --t4: rgba(245,245,247,.25);

  --sep: rgba(255,255,255,.24);
  --sep-soft: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.07);

  /* 8px grid */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 40px;
  --s6: 48px; --s7: 56px; --s8: 64px; --s10: 80px; --s12: 96px; --s16: 128px;

  /* section padding — large airy chapter gaps */
  --sec-y: clamp(80px, 12vw, 140px);
  --sec-x: clamp(22px, 4vw, 60px);
  --max: 1068px;

  /* easing — primary + secondary */
  --e1: cubic-bezier(.4, 0, .6, 1);
  --e2: cubic-bezier(0.28, 0.11, 0.32, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-card: 20px;
  --r-pill: 980px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-theme="light"] {
  --bg: #f5f5f7;
  --bg-1: #fbfbfd;
  --bg-2: #ffffff;
  --bg-3: #f5f5f7;
  --bg-4: #e8e8ed;
  --t1: #1d1d1f;
  --t2: rgba(29,29,31,.72);
  --t3: rgba(29,29,31,.45);
  --t4: rgba(29,29,31,.25);
  --sep: rgba(0,0,0,.15);
  --sep-soft: rgba(0,0,0,.08);
  --line: rgba(0,0,0,.1);
}

/* ── reset ───────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.47;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--g); color: #000; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── type tokens — Apple-grade scale (values extracted from overview.css) ─ */
/* Apple uses 600 weight across the board, NOT 900. Negative ls on headlines/body. */
.t-headline-super {
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.t-section-h {
  font-size: clamp(40px, 5.5vw, 56px);
  line-height: 1.0714;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.t-tile-h {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1429;
  font-weight: 600;
  letter-spacing: 0.007em;
}
.t-tile-sub {
  font-size: 17px;
  line-height: 1.4706;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.t-body {
  font-size: 17px;
  line-height: 1.4706;
  font-weight: 400;
  letter-spacing: -0.022em;
}
.t-eyebrow {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.19;
  font-weight: 600;
  letter-spacing: 0.011em;
}
.t-caption {
  font-size: 12px;
  line-height: 1.3334;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL NAV (gnav) — 44px, glass, theme-flip on scroll
   ══════════════════════════════════════════════════════════════════ */
.gnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 44px;
  z-index: 9800;
  background: rgba(0,0,0,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: #f5f5f7;
  transition:
    color .28s var(--e2),
    background .28s var(--e2),
    border-color .28s var(--e2);
  border-bottom: 1px solid transparent;
}
.gnav[data-theme-slice="light"] {
  background: rgba(251,251,253,.72);
  color: #1d1d1f;
  border-bottom-color: rgba(0,0,0,.08);
}
.gnav[data-theme-slice="green"] {
  background: rgba(10,18,5,.78);
  border-bottom-color: rgba(118,185,0,.2);
}
.gnav__inner {
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--sec-x);
  display: flex;
  align-items: center;
  gap: 24px;
}
.gnav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.015em;
}
.gnav__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 8px var(--g);
}
.gnav__name {
  background: linear-gradient(110deg, currentColor 20%, #76b900 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gnav__links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 2px;
}
.gnav__links a {
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 400;
  color: inherit;
  opacity: 0.72;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: opacity 0.2s var(--e1);
  white-space: nowrap;
}
.gnav__links a:hover { opacity: 1; }
.gnav__right { display: flex; align-items: center; gap: 6px; }
.gnav__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: inherit;
  opacity: 0.72;
  font-size: 0.85rem;
  transition: opacity 0.2s var(--e1);
}
.gnav__icon:hover { opacity: 1; }
.gnav__buy {
  background: var(--g);
  color: #000;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: opacity .2s var(--e1), transform .15s var(--e1);
}
.gnav__buy:hover { opacity: 0.85; transform: translateY(-1px); }
@media (max-width: 833px) {
  .gnav__links { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   LOCAL NAV (lnav) — sticks under global, in-page section links
   ══════════════════════════════════════════════════════════════════ */
.lnav {
  position: sticky;
  top: 44px;
  z-index: 9700;
  background: rgba(10,10,10,.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--sep-soft);
  height: 52px;
  color: var(--t1);
  transition: color .28s var(--e2), background .28s var(--e2), border-color .28s var(--e2);
}
.lnav__inner {
  max-width: 1024px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--sec-x);
  display: flex;
  align-items: center;
  gap: 20px;
}
.lnav__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.lnav__sep { color: var(--t3); margin: 0 4px; font-weight: 400; }
.lnav__links {
  display: flex;
  flex: 1;
  gap: 2px;
  justify-content: flex-end;
  margin-right: 16px;
}
.lnav__links a {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.72;
  border-radius: 6px;
  transition: opacity .2s var(--e1), color .2s var(--e1);
}
.lnav__links a:hover { opacity: 1; color: var(--g); }
.lnav__cta {
  font-size: 0.78rem;
  color: var(--g);
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .2s var(--e1);
}
.lnav__cta:hover { opacity: 0.8; }
@media (max-width: 833px) {
  .lnav__links { display: none; }
  .lnav__cta { margin-left: auto; }
}

/* ══════════════════════════════════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════════════════════════════════ */
.sec { padding: var(--sec-y) var(--sec-x); position: relative; }
.sec + .sec { border-top: 1px solid transparent; }
.sec-head {
  max-width: 720px;
  margin: 0 auto var(--s8);
  text-align: center;
}
.sec-head__h {
  /* Apple .typography-section-header-headline — 56px/1.0714/600/-0.005em */
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.0714;
  margin-bottom: 16px;
}
.sec-head__sub {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--t2);
  line-height: 1.4;
  max-width: 560px;
  margin: 0 auto;
}

.sc-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 12px;
}
.sc-h {
  /* Apple section-header-headline spec — 56px/1.0714/600/-0.005em */
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.0714;
  margin: 0 0 16px;
  color: var(--t1);
}
.sc-h em {
  font-style: normal;
  background: linear-gradient(90deg, var(--g-dark), var(--g), var(--g-light), var(--g), var(--g-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.sc-sub {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--t2);
  max-width: 640px;
  line-height: 1.5;
  margin: 0 auto;
}
.sc-head { text-align: center; max-width: 780px; margin: 0 auto var(--s10); }

/* ══════════════════════════════════════════════════════════════════
   HERO (welcome)
   ══════════════════════════════════════════════════════════════════ */
.sec-welcome {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(140px, 18vh, 220px) var(--sec-x) clamp(56px, 8vw, 96px);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.sec-welcome__art {
  position: relative;
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  margin-bottom: 32px;
}
.sec-welcome__sigil {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.42;
  filter: sepia(1) hue-rotate(40deg) saturate(2) brightness(0.7) drop-shadow(0 0 60px rgba(118,185,0,.35));
  animation: sigilSpin 120s linear infinite;
  will-change: transform, opacity;
}
@keyframes sigilSpin { to { transform: rotate(360deg); } }
.sec-welcome__bloom {
  position: absolute; inset: -30%;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(118,185,0,.14), transparent 60%);
  pointer-events: none;
  animation: bloom 8s ease-in-out infinite alternate;
}
@keyframes bloom { 0% { transform: scale(0.95); opacity: .7; } 100% { transform: scale(1.1); opacity: 1; } }
.sec-welcome__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(68,136,255,.08), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(204,255,68,.06), transparent 50%);
  pointer-events: none;
}
.sec-welcome__copy {
  max-width: 900px;
  position: relative;
}
.sec-welcome__eyebrow {
  /* Apple .typography-eyebrow-reduced — 21px/1.19/600/+0.011em */
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.1905;
  font-weight: 600;
  letter-spacing: 0.011em;
  color: var(--g);
  margin-bottom: 16px;
  text-transform: none; /* Apple eyebrows are NOT uppercase on MBP page */
}
.sec-welcome__title {
  /* Apple .typography-headline-super — exact */
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
}
.sec-welcome__title em {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(90deg, var(--g-dark), var(--g), var(--g-light), var(--g), var(--g-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
.sec-welcome__sub {
  /* Apple .typography-body — 17px/1.4706/400/-0.022em */
  font-size: 17px;
  line-height: 1.4706;
  letter-spacing: -0.022em;
  font-weight: 400;
  color: var(--t2);
  max-width: 580px;
  margin: 0 auto 40px;
}
.sec-welcome__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.sec-welcome__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--t3);
  letter-spacing: 0.1em;
  animation: scrollBob 2.4s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── buttons ───────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g);
  color: #000;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity .2s var(--e1), transform .2s var(--e1);
  white-space: nowrap;
}
.button:hover { opacity: 0.85; transform: translateY(-2px); }
.button-secondary {
  background: transparent;
  color: var(--t1);
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 500;
  padding: 13px 26px;
}
.button-secondary:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.45);
}
.arr { display: inline-block; transition: transform .2s var(--e1); }
.button:hover .arr { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════════
   HIGHLIGHTS BAND
   ══════════════════════════════════════════════════════════════════ */
.sec-highlights {
  background: var(--bg-1);
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) { .hl-grid { grid-template-columns: 1fr; } }
.hl {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--e1), border-color .3s var(--e1);
}
.hl:hover { transform: translateY(-4px); border-color: var(--accent, var(--g)); }
.hl::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent, var(--g));
  opacity: 0.55;
}
.hl__eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent, var(--g));
  margin-bottom: 16px;
}
.hl__h {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.hl__unit {
  display: block;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--t2);
  margin-top: 4px;
  letter-spacing: 0;
}
.hl__copy {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 24px;
}
.hl__link {
  color: var(--accent, var(--g));
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: opacity .2s var(--e1);
}
.hl__link:hover { opacity: 0.7; }
.hl__link:hover .arr { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════════
   SHOWCASE (big num + product viz)
   ══════════════════════════════════════════════════════════════════ */
.sec-showcase { background: var(--bg); padding: var(--sec-y) var(--sec-x); }
.sc-stage {
  max-width: var(--max);
  margin: 0 auto var(--s10);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .sc-stage { grid-template-columns: 1fr; gap: 40px; } }
.sc-stage__num-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.sc-stage__num {
  font-family: var(--mono);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--g);
  text-shadow: 0 0 80px rgba(118,185,0,.18);
}
.sc-stage__num-sm {
  font-size: 0.42em;
  color: var(--t2);
  margin-left: 6px;
  font-weight: 500;
}
.sc-stage__num-label {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--t2);
  letter-spacing: 0.02em;
}
.sc-stage__art { width: 100%; }

.terminal {
  background: #000;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.7;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 40px 80px rgba(0,0,0,.7),
    0 0 60px rgba(118,185,0,.08);
}
.terminal__bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line);
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; }
.terminal__dot--r { background: #ff5f57; }
.terminal__dot--y { background: #febc2e; }
.terminal__dot--g { background: #28c840; }
.terminal__title {
  margin-left: 14px;
  font-size: 0.74rem;
  color: var(--t3);
  letter-spacing: 0.04em;
}
.terminal__body {
  padding: 20px 24px;
  max-height: 420px;
  color: var(--t2);
}
.terminal__line { white-space: pre-wrap; }
.terminal__prompt { color: var(--g); margin-right: 8px; }
.terminal__comment { color: var(--t3); font-style: italic; }
.terminal__ok { color: var(--g); margin-right: 8px; }
.terminal__warn { color: var(--amber); margin-right: 8px; }
.terminal__crit { color: var(--red); font-weight: 700; }
.terminal__cursor {
  display: inline-block;
  width: 7px; height: 1em;
  background: var(--g);
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.sc-tiles {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sep-soft);
  border: 1px solid var(--sep-soft);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 900px) { .sc-tiles { grid-template-columns: 1fr; } }
.sc-tile {
  background: var(--bg-2);
  padding: clamp(28px, 4vw, 40px);
}
.sc-tile__eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--g);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sc-tile__h {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.sc-tile__copy {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════
   DARK STAGE (ghost-hunt threats)
   ══════════════════════════════════════════════════════════════════ */
.sec-darkstage { background: var(--bg-1); }
.threats {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .threats { grid-template-columns: 1fr; } }
.threat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  transition: border-color .25s var(--e1), transform .25s var(--e1);
}
.threat:hover { border-color: var(--g); transform: translateY(-3px); }
.threat__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--g);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.threat__h {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.threat__copy {
  font-size: 0.92rem;
  color: var(--t2);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════
   PIN STAGE (ironsight scroll-pinned showcase)
   ══════════════════════════════════════════════════════════════════ */
.sec-pin { background: var(--bg); padding-top: 0; padding-bottom: var(--sec-y); }
.pin-stage {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .pin-stage { grid-template-columns: 1fr; gap: 40px; } }
.pin-stage__sticky {
  position: sticky;
  top: 120px;
  padding-top: var(--sec-y);
}
.pin-stage__vis {
  margin-top: 32px;
  width: 100%;
  max-width: 420px;
}
.pin-svg { width: 100%; height: auto; }
.pin-rail {
  padding: var(--sec-y) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 14vh, 160px);
}
.pin-step { opacity: 0.42; transition: opacity .4s var(--e1); }
.pin-step.is-active { opacity: 1; }
.pin-step__num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--g);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pin-step__h {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--t1);
}
.pin-step__copy {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.55;
  max-width: 44ch;
}

/* ══════════════════════════════════════════════════════════════════
   HYMN (report delivery)
   ══════════════════════════════════════════════════════════════════ */
.sec-hymn { background: var(--bg-1); padding: var(--sec-y) var(--sec-x); }
.hymn-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .hymn-grid { grid-template-columns: 1fr; } }
.hymn-lang {
  background: var(--bg-2);
  border: 1px solid var(--g-line);
  border-radius: var(--r-card);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
}
.hymn-lang__label {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--g);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hymn-lang__h {
  font-family: var(--mono);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 24px;
}
.hymn-lang__plus { color: var(--t3); font-weight: 400; margin: 0 8px; }
.hymn-lang__q { color: var(--g); }
.hymn-lang__copy {
  font-size: 0.95rem;
  color: var(--t2);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}
.hymn-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sep-soft);
  border: 1px solid var(--sep-soft);
  border-radius: var(--r-card);
  overflow: hidden;
}
.hstat {
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 40px);
  text-align: left;
}
.hstat__num {
  font-family: var(--mono);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 8px;
}
.hstat__pct { font-size: 0.5em; color: var(--t2); font-weight: 500; }
.hstat__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--t3);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   COMPARE
   ══════════════════════════════════════════════════════════════════ */
.sec-compare { background: var(--bg); }
.spec-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sep-soft);
  border: 1px solid var(--sep-soft);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-cell {
  background: var(--bg-2);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spec-cell--us {
  background: linear-gradient(180deg, var(--g-dim) 0%, var(--bg-2) 70%);
}
.spec-cell__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--t3);
}
.spec-cell--us .spec-cell__label { color: var(--g); }
.spec-cell__num {
  font-family: var(--mono);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--t1);
}
.spec-cell--us .spec-cell__num { color: var(--g); }
.spec-cell__num-sm { font-size: 0.42em; opacity: 0.7; margin-left: 4px; }
.spec-cell__unit {
  font-size: 0.92rem;
  color: var(--t2);
}
.spec-cell__copy {
  font-size: 0.88rem;
  color: var(--t3);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════════════════════ */
.sec-team { background: var(--bg-1); }
.team-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.person {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
  transition: border-color .25s var(--e1), transform .25s var(--e1);
}
.person:hover { border-color: var(--g); transform: translateY(-3px); }
.person__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-dark), var(--g));
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 1.5rem;
  color: #000;
  letter-spacing: -0.02em;
  box-shadow: 0 0 24px rgba(118,185,0,.28);
}
.person__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.person__role {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--g);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.person__copy {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   GHOSTRIDE (final CTA, green theme slice)
   ══════════════════════════════════════════════════════════════════ */
.sec-ghostride {
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(118,185,0,.12) 0%, transparent 70%), var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gr-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.gr-h {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 8px 0 16px;
  color: var(--t1);
}
.gr-h em {
  font-style: normal;
  background: linear-gradient(90deg, var(--g-dark), var(--g), var(--g-light), var(--g), var(--g-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
.gr-sub { font-size: 1.05rem; color: var(--t2); max-width: 520px; margin: 0 auto 40px; line-height: 1.5; }
.gr-form { max-width: 640px; margin: 0 auto; }
.gr-row { display: flex; gap: 12px; flex-wrap: wrap; }
.gr-input {
  flex: 1 1 220px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--t1);
  font-family: var(--mono);
  font-size: 0.9rem;
  transition: border-color .2s var(--e1);
}
.gr-input:focus {
  outline: none;
  border-color: var(--g);
  box-shadow: 0 0 0 3px var(--g-dim);
}
.gr-input::placeholder { color: var(--t3); }
.gr-btn { flex: 1 1 220px; justify-content: center; }
.gr-hint {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--t3);
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL FOOTER
   ══════════════════════════════════════════════════════════════════ */
.gfooter {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--s10) var(--sec-x) var(--s5);
  font-size: 0.82rem;
  color: var(--t3);
}
.gfooter__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: var(--s7);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 833px) { .gfooter__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.gfooter__h {
  font-size: 0.76rem;
  color: var(--t1);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.gfooter__col ul { list-style: none; }
.gfooter__col li { padding: 5px 0; font-size: 0.78rem; line-height: 1.5; }
.gfooter__col a { color: var(--t3); transition: color .2s var(--e1); }
.gfooter__col a:hover { color: var(--t1); }
.gfooter__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: var(--s4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.72rem;
}
.gfooter__mono { font-family: var(--mono); color: var(--t4); }
