:root {
  /* Color tokens — deep forest green with gold accent */
  --bg: oklch(0.145 0.035 150);
  --bg-2: oklch(0.185 0.035 150);
  --surface: oklch(0.21 0.035 150);
  --line: oklch(0.32 0.03 150);
  --line-soft: oklch(0.26 0.03 150);
  --fg: oklch(0.97 0.006 150);
  --fg-2: oklch(0.82 0.012 150);
  --fg-3: oklch(0.6 0.02 150);
  --fg-4: oklch(0.46 0.02 150);
  --accent: oklch(0.8 0.14 82);       /* gold */
  --accent-dim: oklch(0.54 0.11 82);
  --accent-ink: oklch(0.17 0.03 150); /* dark green text on gold */
  --warn: oklch(0.78 0.15 60);         /* amber risk */
  --warn-dim: oklch(0.5 0.13 60);
  --danger: oklch(0.7 0.18 25);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --max: 1320px;

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}

#bg-shader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.93 0 0 0 0 0.9 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

#root { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Container */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 48px);
}

/* Section base */
section {
  position: relative;
  padding: 120px 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent-dim) 20%, #fff 50%, var(--accent-dim) 80%, transparent) 1;
}
section:first-of-type { border-top: none; border-image: none; }

/* Eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Typography */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h-display {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.h-display em { font-style: normal; font-weight: 500; color: var(--accent); }
.h-section {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-section em { font-style: normal; font-weight: 500; color: var(--accent); }
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 64ch;
  text-wrap: pretty;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: oklch(0.17 0.03 150);
}
.btn-primary:hover {
  background: oklch(0.9 0.17 82);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -8px oklch(0.84 0.16 82 / 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--fg-3);
  background: var(--surface);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============ Orbital logo ============ */
.orbital-logo {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.orbital-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.orbital-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(74, 222, 128, 0.35);
  pointer-events: none;
}
.orbital-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 7px 2px rgba(74, 222, 128, 0.55);
  pointer-events: none;
  z-index: 2;
}
.orbital-dot-1 {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  animation: orbit-1 3s linear infinite;
}
.orbital-dot-2 {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  animation: orbit-1 4.8s linear infinite -1.6s;
  opacity: 0.75;
}
.orbital-dot-3 {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  animation: orbit-1 7s linear infinite -3.5s;
  opacity: 0.5;
}
@keyframes orbit-1 {
  from { transform: rotate(0deg)   translateX(36px); }
  to   { transform: rotate(360deg) translateX(36px); }
}

/* Nav right — links, phone, and CTA grouped together on the right */
.nav-right {
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-nav {
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
}
.btn-nav-short { display: none; }
.nav-link:hover { color: var(--accent); }
.nav-logo-img { height: 76px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-phone svg { color: var(--accent); flex-shrink: 0; }
.nav-phone:hover { color: var(--accent); border-color: rgba(255, 255, 255, 0.3); }
@media (max-width: 700px) {
  .nav .wrap { padding: 0 14px; }
  .nav-links { display: none; }
  .nav-logo-img { height: 40px; }
  .btn-nav { display: none; }
  .nav-phone {
    padding: 0 18px;
    border-right: none;
    background: var(--accent);
    color: oklch(0.17 0.03 150);
    height: 42px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
  }
  .nav-phone svg { color: inherit; }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, backdrop-filter 0.2s ease;
}
.nav.scrolled {
  background: oklch(0.12 0.03 150 / 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
/* On very wide screens the nav gets its own, wider container than the rest of
   the page content — otherwise it reads as a narrow island stranded in a huge
   dark bar, with the logo and CTA both floating awkwardly far from the edges. */
.nav .wrap {
  max-width: min(1680px, 94vw);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
@media (max-width: 700px) { .nav-inner { height: 64px; } }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 700px) { .nav-actions { gap: 0; } }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.brand-mark::before, .brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.brand-mark::after {
  inset: 5px;
  background: var(--accent);
  border: none;
  animation: pulse 2.4s ease-in-out infinite;
}
.brand-name { color: var(--fg); }
.brand-tag { color: var(--fg-3); }

.brand-badge {
  display: inline-flex;
  align-items: center;
}

/* ============ HERO ============ */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 24px 0;
  border-top: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.hero-subnote {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-3);
  letter-spacing: 0.01em;
}

/* Live ops console (hero right) */
.console {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: oklch(0.145 0.035 150 / 0.85);
  backdrop-filter: blur(8px);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12.5px;
  box-shadow:
    0 0 0 1px oklch(0.145 0.035 150 / 0.5),
    0 30px 80px -20px oklch(0.05 0 0 / 0.6);
}
.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.console-title {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.console-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
}
.console-status::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
.console-body {
  padding: 12px 14px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.log-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: baseline;
  opacity: 0;
  transform: translateY(6px);
  animation: log-in 0.4s ease forwards;
}
.log-row .t { color: var(--fg-4); }
.log-row .body { color: var(--fg-2); }
.log-row.ok .body { color: var(--accent); }
.log-row.warn .body { color: var(--warn); }
.log-row .tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.log-row.ok .tag { background: oklch(0.84 0.16 82 / 0.16); color: var(--accent); }
.log-row.warn .tag { background: oklch(0.78 0.15 60 / 0.18); color: var(--warn); }
.log-row.info .tag { background: var(--line-soft); color: var(--fg-2); }
@keyframes log-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Problem ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }

.p-card {
  position: relative;
  background: oklch(0.185 0.035 150 / 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 36px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.p-card:hover {
  border-color: var(--fg-3);
  transform: translateY(-2px);
}
.p-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warn), transparent);
  opacity: 0.5;
}
.p-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  position: relative;
}
.p-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.p-card p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.p-card .index {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-4);
}

/* ============ Solution ============ */
.solution-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .solution-head { grid-template-columns: 1fr; gap: 32px; } }

.steps {
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 100px 240px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
  position: relative;
  transition: background 0.3s ease;
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step:hover { background: oklch(0.185 0.035 150 / 0.4); }
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.step p {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 900px) {
  .step { grid-template-columns: 60px 1fr; }
  .step h3 { grid-column: 2; margin-bottom: 8px; }
  .step p { grid-column: 2; }
  .step-num { padding-top: 12px; }
}

/* ============ How It Works (live SMS) ============ */
.hiw {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  margin-top: 80px;
  align-items: start;
}
@media (max-width: 980px) { .hiw { grid-template-columns: 1fr; gap: 56px; } }

.hiw-steps {
  display: grid;
  gap: 14px;
}
.hiw-step {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 22px 24px;
  background: oklch(0.185 0.035 150 / 0.5);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.hiw-step.active {
  border-color: var(--accent);
  background: oklch(0.84 0.16 82 / 0.05);
  box-shadow: 0 0 0 1px oklch(0.84 0.16 82 / 0.2);
}
.hiw-step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-4);
  padding-top: 2px;
}
.hiw-step.active .hiw-step-num { color: var(--accent); }
.hiw-step p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--fg-2);
}
.hiw-step.active p { color: var(--fg); }

/* Phone mockup */
.phone {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 14px;
  background: var(--bg-2);
  box-shadow: 0 40px 80px -20px oklch(0.05 0 0 / 0.6);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 6px;
  background: var(--bg);
  border-radius: 4px;
  z-index: 2;
}
.phone-screen {
  background: oklch(0.115 0.035 150);
  border-radius: 22px;
  padding: 50px 16px 24px;
  height: 680px;
  position: relative;
  overflow: hidden;
}
.phone-header {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 18px;
}
.phone-header .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.phone-header .sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.msgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation: msg-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.msg.them {
  align-self: flex-start;
  background: var(--bg-2);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}
.msg.you {
  align-self: flex-end;
  background: var(--accent);
  color: oklch(0.17 0.03 150);
  border-bottom-right-radius: 4px;
}
.msg.system {
  align-self: center;
  background: transparent;
  border: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 6px 12px;
  border-radius: 8px;
}
.msg.warn {
  align-self: center;
  background: oklch(0.78 0.15 60 / 0.12);
  border: 1px solid oklch(0.78 0.15 60 / 0.4);
  color: var(--warn);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 8px;
  max-width: 90%;
  text-align: center;
}
.msg .time {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.5;
  margin-top: 2px;
}
.typing {
  align-self: flex-start;
  background: var(--bg-2);
  padding: 12px 14px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.typing span {
  width: 6px; height: 6px;
  background: var(--fg-3);
  border-radius: 50%;
  animation: typing 1.2s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes msg-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Results ============ */
.results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .results { grid-template-columns: 1fr; gap: 40px; } }

.big-num {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
  background: linear-gradient(180deg, var(--fg) 0%, var(--fg-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.big-num-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}
.results p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
}

.quote {
  margin-top: 80px;
  padding: 48px 56px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: oklch(0.185 0.035 150 / 0.5);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
}
.quote-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--fg);
  max-width: 60ch;
  padding-left: 56px;
}
.quote-author {
  margin-top: 24px;
  padding-left: 56px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .quote { padding: 36px 24px; }
  .quote::before { left: 16px; }
  .quote-body, .quote-author { padding-left: 0; }
}

/* ============ Who For ============ */
.whofor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 64px;
}
@media (max-width: 800px) { .whofor-grid { grid-template-columns: 1fr; } }

.wfor-col {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 40px;
  background: oklch(0.185 0.035 150 / 0.5);
}
.wfor-col.yes { border-color: oklch(0.84 0.16 82 / 0.35); }
.wfor-col h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
}
.wfor-col.yes h3 { color: var(--accent); }
.wfor-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.wfor-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg-2);
}
.wfor-col li .mark {
  margin-top: 4px;
  width: 16px; height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============ Services ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px 36px;
  background: oklch(0.185 0.035 150 / 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
}
.svc-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, oklch(0.84 0.16 82 / 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.svc-card:hover::after { opacity: 1; }
.svc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.svc-name {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.svc-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.svc-note {
  margin-top: 56px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  border-top: 1px solid var(--line);
  padding-top: 40px;
  max-width: 72ch;
  font-weight: 400;
}
.svc-glyph {
  width: 100%;
  height: 130px;
  margin-bottom: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* ============ Pricing two-card layout ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 40px 40px;
  background: oklch(0.185 0.035 150 / 0.5);
  position: relative;
}
.pricing-card-featured {
  border-color: oklch(0.84 0.16 82 / 0.5);
  background: oklch(0.84 0.16 82 / 0.04);
  box-shadow: 0 0 0 1px oklch(0.84 0.16 82 / 0.15), 0 24px 60px -12px oklch(0.84 0.16 82 / 0.12);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: oklch(0.17 0.03 150);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

.pricing-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-2);
  margin-bottom: 14px;
}

.pricing-price {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 10px;
}
.pricing-price sup {
  font-size: 0.38em;
  vertical-align: super;
  letter-spacing: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--fg-2);
}
.pricing-price span {
  font-family: var(--sans);
  font-size: 0.25em;
  color: var(--fg-3);
  letter-spacing: 0;
  font-weight: 400;
}
.pricing-price-custom {
  font-size: clamp(48px, 7vw, 72px);
}

.pricing-sub {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 13px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg-2);
}
.pricing-features li::before {
  content: '';
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  background: oklch(0.84 0.16 82 / 0.1);
}

.pricing-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 500;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pricing-btn-primary {
  background: var(--accent);
  color: oklch(0.17 0.03 150);
}
.pricing-btn-primary:hover {
  background: oklch(0.9 0.17 82);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -6px oklch(0.84 0.16 82 / 0.35);
}
.pricing-btn-secondary {
  background: var(--fg);
  color: var(--bg);
}
.pricing-btn-secondary:hover {
  background: oklch(0.86 0.012 150);
  transform: translateY(-1px);
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-box {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  background: oklch(0.185 0.035 150 / 0.5);
}
.faq-box-q {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.35;
}
.faq-box-a {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-2);
}

/* ============ Contact tiles ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 32px;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: oklch(0.185 0.035 150 / 0.5);
  transition: all 0.3s ease;
  color: inherit;
}
.contact-tile:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: oklch(0.84 0.16 82 / 0.05);
}
.contact-tile-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.contact-tile-value {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.contact-tile .arrow { color: var(--accent); margin-top: 4px; }

/* ============ Final CTA ============ */
.fcta {
  text-align: center;
  padding-bottom: 0;
}
.fcta .h-section {
  margin: 0 auto 24px;
  max-width: 18ch;
}
.fcta .lead {
  margin: 0 auto 40px;
  text-align: center;
}
.cal-embed-wrap {
  margin-top: 80px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.cal-embed-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
}
.cal-fallback {
  padding: 24px 32px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--line-soft);
}
.cal-fallback a { color: var(--accent); }

/* ============ Contact Form ============ */
.contact-form-wrap {
  max-width: 880px;
  margin: 40px auto 0;
  background: oklch(0.185 0.035 150 / 0.5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
}
@media (max-width: 600px) { .contact-form-wrap { padding: 28px 20px; } }

.contact-form-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .contact-form-row { grid-template-columns: 1fr; } }

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.contact-form-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg-4);
  font-size: 10px;
}

.contact-form-field input,
.contact-form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
  width: 100%;
}
.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder { color: var(--fg-4); }

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.84 0.16 82 / 0.12);
}

.contact-form-topics {
  display: flex;
  gap: 12px;
}

.contact-form-topic {
  flex: 1;
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--fg-3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.contact-form-topic:hover {
  border-color: var(--accent-dim);
  color: var(--fg);
}
.contact-form-topic.active {
  border-color: var(--accent);
  color: var(--accent);
  background: oklch(0.84 0.16 82 / 0.07);
}

.contact-form-submit {
  align-self: flex-start;
  font-size: 15px;
  height: 48px;
  padding: 0 28px;
  margin-top: 4px;
}
.contact-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form-error {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--danger);
  letter-spacing: 0.04em;
  margin: 0;
}

.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0 8px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.contact-form-success p { margin: 0; color: var(--fg-2); }

/* ============ Footer ============ */
.foot {
  border-top: 1px solid var(--line-soft);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.foot span { cursor: text; user-select: all; }
.foot span:hover { color: var(--fg); }
@media (max-width: 700px) {
  .foot { flex-direction: column; gap: 8px; text-align: center; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Section markers */
.section-mark {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#automations,
#pricing,
#faq,
#cta { padding-top: 72px; }

/* Hide overflow on mobile-ish */
@media (max-width: 600px) {
  section { padding: 80px 0; }
  #automations,
  #pricing,
  #faq,
  #cta { padding-top: 48px; }
}

/* ============ 3-up sign grid ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ============ Site showcase grid ============ */
.site-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 800px) { .site-grid { grid-template-columns: 1fr; } }

.site-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: oklch(0.185 0.035 150 / 0.5);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.site-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.site-card img {
  width: 100%;
  aspect-ratio: 1000 / 613;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line-soft);
}
.site-card-body { padding: 20px 24px 24px; }
.site-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.site-visit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.site-visit svg { transition: transform 0.25s ease; }
.site-card:hover .site-visit svg { transform: translate(2px, -2px); }

/* ============ Hero video ============ */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #000;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-video-play svg { margin-left: 3px; }
.hero-video-play:hover { transform: translate(-50%, -50%) scale(1.06); background: oklch(0.9 0.15 82); }

/* ============ Trailhead pricing signs (real trail-sign colors on dark cards) ============ */
.sign {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: oklch(0.185 0.035 150 / 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 48px -16px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sign:hover { transform: translateY(-3px); border-color: var(--accent-dim); box-shadow: 0 28px 60px -16px rgba(0, 0, 0, 0.55); }
.sign-top {
  padding: 20px 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sign-top.green { background: #1e7a34; }
.sign-top.blue { background: #1d5fa6; }
.sign-top.black { background: #171717; }
.sign-top .mark {
  width: 28px;
  height: 28px;
  flex: none;
  background: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-top .rating {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.sign-top h3 { color: #fff; font-size: 19px; margin-top: 2px; font-family: var(--serif); font-weight: 400; }
.sign-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.sign-price {
  font-family: var(--serif);
  font-size: 34px;
  margin-bottom: 4px;
  color: var(--fg);
}
.sign-price span { font-family: var(--sans); font-size: 13px; color: var(--fg-3); font-weight: 400; }
.sign-desc { color: var(--fg-2); font-size: 14px; margin: 8px 0 20px; }
.sign-specs { list-style: none; margin: 0; padding: 0; font-size: 13.5px; }
.sign-specs li {
  padding: 9px 0;
  border-top: 1px dashed var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.sign-specs li:first-child { border-top: none; }
.sign-specs li span:first-child { color: var(--fg-3); }
.sign-specs li span:last-child { font-family: var(--mono); font-weight: 500; color: var(--fg); text-align: right; }
.sign-example {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--accent);
  transition: color 0.2s ease;
}
.sign-example:hover { color: #fff; }
.sign-example .arrow { color: inherit; }
.sign-shot {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.sign-shot:hover { border-color: var(--accent-dim); opacity: 0.9; }

.tier-grid-simple { margin-top: 44px; }
.sign-simple .sign-top { gap: 14px; }
.sign-simple .sign-top h3 { margin-top: 0; }
.sign-simple .sign-body { padding: 22px 24px 24px; }
.sign-simple .sign-desc { margin: 8px 0 0; }

.included-strip {
  margin-top: 32px;
  background: oklch(0.185 0.035 150 / 0.5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) { .included-strip { grid-template-columns: 1fr; } }
.included-strip .flat-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.included-strip .flat-price {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--fg);
  display: block;
  margin-top: 6px;
}
.included-strip .flat-price span { font-family: var(--sans); font-size: 15px; color: var(--fg-3); }
.included-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--fg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.included-strip li::before { content: "— "; color: var(--accent); }
.addon-line {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--fg-3);
  border-top: 1px dashed var(--line-soft);
  padding-top: 18px;
}
.addon-line b { color: var(--fg); }

/* ============ Design approach ============ */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  background: oklch(0.185 0.035 150 / 0.5);
}
.approach-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.approach-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 12px 0 10px;
}
.approach-card p { color: var(--fg-2); font-size: 14.5px; margin: 0; }

/* ============ Trail-size picker (demo form) ============ */
.trail-pick { display: flex; gap: 10px; flex-wrap: wrap; }
.trail-pick label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 10px 16px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--fg-2);
  background: var(--bg);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.trail-pick label:hover { border-color: var(--accent-dim); color: var(--fg); }
.trail-pick input { width: auto; accent-color: var(--accent); }

/* ============ Shuffle hero (video background + rotating headline) ============ */
.sh-hero {
  position: relative;
  margin-top: -96px;
  height: calc(78svh + 96px);
  min-height: calc(520px + 96px);
  overflow: hidden;
  background: var(--bg);
}
@media (max-width: 700px) {
  .sh-hero {
    margin-top: -64px;
    height: calc(86svh + 64px);
    min-height: calc(480px + 64px);
  }
}
.sh-slides { position: absolute; inset: 0; }
.sh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.sh-slide.active { opacity: 1; }
.sh-poster, .sh-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sh-video {
  opacity: 0;
  transition: opacity 1s ease;
}
.sh-video.ready { opacity: 1; }
.sh-poster {
  transition: transform 7s linear;
  transform: scale(1.06);
}
.sh-slide.active .sh-poster { transform: scale(1); }

.sh-veil {
  position: absolute; inset: 0;
  background: oklch(0.145 0.035 150 / 0.12);
  pointer-events: none;
}
.sh-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, oklch(0.09 0.02 150 / 0) 40%, oklch(0.09 0.02 150 / 0.3) 100%),
    linear-gradient(to bottom, oklch(0.09 0.02 150 / 0.28) 0%, oklch(0.09 0.02 150 / 0) 30%);
  pointer-events: none;
}
.sh-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(to bottom, oklch(0.145 0.035 150 / 0) 0%, oklch(0.145 0.035 150 / 0.4) 55%, var(--bg) 100%);
  pointer-events: none;
}

/* ============ Thin bridge strip between hero and rest of page ============ */
.sh-bridge {
  position: relative;
  z-index: 6;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.sh-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 32px;
}
.sh-bridge-item {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--fg-3);
  white-space: nowrap;
}
.sh-bridge-item strong {
  color: var(--accent);
  font-weight: 600;
}
.sh-bridge-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .sh-bridge-inner { gap: 12px; padding: 14px 20px; }
  .sh-bridge-sep { display: none; }
  .sh-bridge-item { width: 100%; text-align: center; }
}

.sh-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  z-index: 4;
  animation: sh-bounce 1.8s ease-in-out infinite;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.sh-scroll-cue:hover { color: #fff; }
.sh-scroll-cue span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 700px) { .sh-scroll-cue { bottom: 56px; } }
@keyframes sh-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.sh-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px 8vh;
  z-index: 3;
}
.sh-lines { position: relative; height: 5.6em; width: min(92vw, 960px); }
@media (min-width: 700px) { .sh-lines { height: 3.2em; } }
.sh-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 1.1s ease;
}
.sh-line > span {
  display: inline;
  font-family: var(--serif);
  font-weight: 400;
  color: #fff;
  font-size: clamp(26px, 4vw, 53px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.sh-line.in { opacity: 1; transform: translateY(0); }
.sh-line.out { opacity: 0; transform: translateY(-24px); transition: opacity 0.55s ease, transform 0.7s ease; }
.sh-line em { font-style: italic; color: var(--accent); }

.sh-sub {
  margin-top: 26px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 56ch;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.sh-cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.sh-dots {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 4;
}
.sh-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  padding: 0; cursor: pointer;
}
.sh-dots button.on { background: var(--accent); border-color: var(--accent); transform: scale(1.15); }

/* ============ Why-it-matters showcase (browser mockup + reasons) ============ */
.why-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
@media (max-width: 900px) { .why-showcase { grid-template-columns: 1fr; gap: 48px; } }

.why-mock {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 40px 90px -24px rgba(0, 0, 0, 0.65);
  transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why-mock:hover {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) scale(1.015);
}
@media (max-width: 900px) {
  .why-mock { transform: none; }
  .why-mock:hover { transform: none; }
}

.why-mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  background: oklch(0.115 0.035 150);
  border-bottom: 1px solid var(--line-soft);
}
.why-mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.why-mock-dot.red { background: #ff5f57; }
.why-mock-dot.yellow { background: #febc2e; }
.why-mock-dot.green { background: #28c840; }
.why-mock-url {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-4);
  background: oklch(0.185 0.035 150);
  padding: 4px 14px;
  border-radius: 999px;
}

.why-mock-body { padding: 28px 26px 32px; }
.why-mock-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}
.why-mock-logo { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); flex-shrink: 0; }
.why-mock-navline { width: 34px; height: 6px; border-radius: 3px; background: var(--line); }
.why-mock-cta { margin-left: auto; width: 62px; height: 20px; border-radius: 999px; background: var(--accent); opacity: 0.9; }

.why-mock-hero { margin-bottom: 30px; }
.why-mock-line {
  display: block;
  height: 15px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.why-mock-line.l1 { width: 82%; background: linear-gradient(90deg, var(--fg), var(--fg-3)); }
.why-mock-line.l2 { width: 58%; background: var(--accent); opacity: 0.85; }
.why-mock-btn { display: block; margin-top: 20px; width: 128px; height: 32px; border-radius: 999px; background: var(--accent); }

.why-mock-cards { display: flex; gap: 12px; }
.why-mock-cards span { flex: 1; height: 56px; border-radius: 8px; background: var(--line-soft); }

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.why-reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-reason-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-reason h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 6px;
}
.why-reason p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}
