*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --gold: #ff9933;
  --gold-dim: #cc7a29;
  --gold-pale: rgba(255,153,51,0.12);
  --gold-glow: rgba(255,153,51,0.25);
  --white: #ffffff;
  --off-white: #f7f5f2;
  --gray-100: #f0eeeb;
  --gray-200: #e3e0dd;
  --gray-400: #b0aca8;
  --gray-600: #6b6762;
  --gray-700: #4a4744;
  --text-primary: #0a0a0a;
  --text-secondary: #4a4744;
  --font: 'Manrope', Arial, sans-serif;
  --outer-pad: clamp(24px, 8vw, 160px);
  --section-pad: clamp(60px, 8vw, 120px);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--black); }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--outer-pad);
}
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1400px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--outer-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,153,51,0.08);
  transition: background 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 28px;
  width: auto;
}
.nav-logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
.nav-logo-product {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover { background: #ffaa4d; transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

.nav-right-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 6px;
  transition: color 0.2s;
}
.lang-toggle button.active { color: var(--gold); }
.lang-toggle button:hover { color: var(--white); }
.lang-sep { color: rgba(255,255,255,0.2); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger span + span { margin-top: 6px; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 16px 0;
  transition: color 0.2s ease;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible { color: var(--gold); }
.mobile-menu .mobile-menu-cta {
  margin-top: 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-menu .mobile-menu-cta:hover { background: #ffaa4d; color: var(--black); }
.mobile-menu .mobile-lang-toggle {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.mobile-menu .mobile-lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-menu .mobile-lang-toggle button.active { color: var(--gold); }
.mobile-menu .mobile-lang-toggle button:hover { color: var(--white); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-beams-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(15px);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  animation: beamsOverlayPulse 10s ease-in-out infinite;
}
@keyframes beamsOverlayPulse {
  0%, 100% { opacity: 0.05; }
  50% { opacity: 0.15; }
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  z-index: 1;
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) var(--outer-pad);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}
.hero-lockup-name {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,153,51,0.35), 0 0 80px rgba(255,153,51,0.12);
}
.hero-lockup-rule {
  width: 56px;
  height: 2.5px;
  background: var(--gold);
  border: none;
  margin: 14px 0;
  opacity: 0.5;
  border-radius: 1px;
}
.hero-lockup-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* Typing effect */
.hero-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,22,40,0.04);
  border: 1px solid var(--paper-200);
  border-radius: 10px;
  padding: 14px 20px;
  max-width: 560px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero-prompt-icon {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.hero-prompt-text {
  font-size: 14px;
  color: var(--ink-500);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
}
.cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255,153,51,0.3);
}
.btn-primary:hover {
  background: #ffaa4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,153,51,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--paper-200);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn-secondary:hover {
  color: var(--paper-50);
  background: var(--ink-900);
  border-color: var(--ink-900);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.trust-icon { font-size: 14px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-reveal-child] {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}
[data-reveal-child].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── SECTION COMMON ── */
section { padding: var(--section-pad) var(--outer-pad); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  margin-right: 10px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 620px;
  font-weight: 400;
}

/* ── PROBLEM SECTION ── */
#problem {
  background: var(--off-white);
  padding: var(--section-pad) var(--outer-pad);
}
#problem .section-title { max-width: 700px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s ease;
}
.problem-card:hover { background: #fafaf9; }

.problem-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.problem-callout {
  margin-top: 2px;
  background: var(--black);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.problem-callout-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.problem-callout p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}
.problem-callout strong { color: var(--white); font-style: normal; }

/* ── SOLUTION SECTION ── */
#solution {
  background: var(--black);
  padding: var(--section-pad) var(--outer-pad);
}
#solution .section-title { color: var(--white); }
#solution .section-sub { color: rgba(255,255,255,0.5); }

.solution-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}

.solution-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 2px;
}
.pillar:hover {
  border-color: rgba(255,153,51,0.2);
  background: rgba(255,153,51,0.03);
}
.pillar-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.solution-visual {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.2);
}

/* ── PRODUCT MOCKUP ── */
.mockup-browser {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
}
.mockup-chrome {
  background: #1a1a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; }
.mockup-dot.y { background: #ffbd2e; }
.mockup-dot.g { background: #28c840; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-url svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.25); flex-shrink: 0; }

.mockup-app {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 380px;
}

/* Sidebar */
.mockup-sidebar {
  background: #111111;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
.mockup-sidebar-logo {
  padding: 0 18px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.mockup-sidebar-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), #e68a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.mockup-sidebar-logo span {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
}

.mockup-nav {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}
.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  cursor: default;
}
.mockup-nav-item svg { width: 15px; height: 15px; stroke-width: 1.75; }
.mockup-nav-item.active {
  background: rgba(255,153,51,0.1);
  color: var(--gold);
}
.mockup-nav-item.active svg { stroke: var(--gold); }

.mockup-sidebar-section {
  padding: 0 10px;
  margin-top: auto;
}
.mockup-sidebar-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 0 10px;
  margin-bottom: 8px;
}
.mockup-collection {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.mockup-collection-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-collection-count {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
}

/* Main chat area */
.mockup-main {
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
}
.mockup-main-header {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-main-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-main-title svg { width: 14px; height: 14px; stroke: var(--gold); }
.mockup-main-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-main-meta span { display: flex; align-items: center; gap: 4px; }
.mockup-main-meta svg { width: 11px; height: 11px; }

.mockup-chat {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.mockup-msg {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mockup-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.mockup-msg-avatar.user {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.mockup-msg-avatar.ai {
  background: linear-gradient(135deg, var(--gold), #e68a2e);
  color: #fff;
}
.mockup-msg-content {
  flex: 1;
  min-width: 0;
}
.mockup-msg-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}
.mockup-msg-name.ai-name { color: var(--gold); }
.mockup-msg-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.mockup-msg-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.mockup-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.mockup-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,153,51,0.08);
  border: 1px solid rgba(255,153,51,0.15);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 600;
}
.mockup-source-tag svg { width: 11px; height: 11px; stroke: var(--gold); }

.mockup-confidence {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 10.5px;
  color: #28c840;
  font-weight: 600;
}
.mockup-confidence svg { width: 11px; height: 11px; stroke: #28c840; }

.mockup-input-area {
  padding: 14px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mockup-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
}
.mockup-input span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.2);
  flex: 1;
}
.mockup-input-btn {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-input-btn svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2; }

@media (max-width: 768px) {
  .mockup-app { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
}

/* ── HOW IT WORKS ── */
#how-it-works {
  background: var(--off-white);
  padding: var(--section-pad) var(--outer-pad);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 60px;
  position: relative;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-200), var(--gray-200), transparent);
  z-index: 0;
}
/* Animated progress line over the static one */
.steps-track::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.steps-track.revealed::after {
  transform: scaleX(1);
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-secondary);
  transition: border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              color 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/* Gold highlight when step is revealed */
.step[data-reveal-child].revealed .step-num {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,153,51,0.08);
}
.step:hover .step-num {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,153,51,0.05);
}
.step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── USE CASES ── */
#use-cases {
  background: var(--white);
  padding: var(--section-pad) var(--outer-pad);
}

.tabs {
  display: flex;
  gap: 4px;
  margin: 48px 0 0;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}
.tab-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active {
  background: var(--white);
  color: var(--text-primary);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.use-case-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}

.uc-main {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.uc-main::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,153,51,0.1) 0%, transparent 70%);
}
.uc-query-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.uc-query {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.uc-answer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.illura-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.uc-answer {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

.uc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.uc-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background 0.2s ease;
}
.uc-card:hover { background: var(--gray-200); }
.uc-card h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.uc-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── COMPARISON TABLE ── */
#comparison {
  background: var(--black);
  padding: var(--section-pad) var(--outer-pad);
}
#comparison .section-title { color: var(--white); }
#comparison .section-sub { color: rgba(255,255,255,0.45); }

.compare-table {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-row:last-child { border-bottom: none; }

.compare-header {
  background: rgba(255,255,255,0.04);
}
.compare-cell {
  padding: 18px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.compare-header .compare-cell {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.compare-header .compare-cell.illura-col {
  color: var(--gold);
  background: rgba(255,153,51,0.07);
}
.compare-cell.illura-col {
  background: rgba(255,153,51,0.04);
}
.compare-cell.feature { color: rgba(255,255,255,0.7); }
.check { color: var(--gold); font-size: 16px; font-weight: 700; }
.cross { color: rgba(255,255,255,0.2); font-size: 16px; }

/* ── PRICING ── */
#pricing {
  background: var(--off-white);
  padding: var(--section-pad) var(--outer-pad);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--black);
}
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,153,51,0.12);
  border: 1px solid rgba(255,153,51,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  width: fit-content;
}
.price-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.price-card.featured h3 { color: var(--white); }
.price-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.price-card.featured > p { color: rgba(255,255,255,0.45); }

.price-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.price-card.featured .price-features li {
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.price-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-quote {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-quote-outline {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--text-primary);
}
.btn-quote-outline:hover { border-color: var(--text-primary); }
.btn-quote-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(255,153,51,0.3);
}
.btn-quote-gold:hover {
  background: #ffaa4d;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,153,51,0.4);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 28px;
}

/* ── STATS ── */
#stats {
  background: var(--white);
  padding: var(--section-pad) var(--outer-pad);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}
.stat-prefix {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.stat-value {
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.stat-source {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
  padding: var(--section-pad) var(--outer-pad);
}

.about-tagline {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 0;
  border: none;
  text-align: center;
}
.about-tagline p {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}
.about-tagline em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--white);
  border-radius: 8px;
  padding: 12px 14px;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,153,51,0.08);
  flex-shrink: 0;
}
.service-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 1.75;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cred-card {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cred-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,153,51,0.08);
  flex-shrink: 0;
}
.cred-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.75;
}
.cred-card h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.cred-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── CONTACT ── */
#contact {
  background: var(--black);
  padding: var(--section-pad) var(--outer-pad);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(255,153,51,0.06) 0%, transparent 65%);
  pointer-events: none;
}
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.45); max-width: 500px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(255,153,51,0.08);
  border: 1px solid rgba(255,153,51,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}
.form-group select option { background: var(--black-card); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,153,51,0.4);
  background: rgba(255,153,51,0.04);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 15px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255,153,51,0.25);
  align-self: flex-start;
}
.btn-submit:hover {
  background: #ffaa4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,153,51,0.35);
}
.btn-submit:active { transform: translateY(0); }

.form-success {
  display: none;
  background: rgba(255,153,51,0.08);
  border: 1px solid rgba(255,153,51,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  padding: 56px var(--outer-pad) 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 24px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  max-width: 280px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-illura {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --outer-pad: clamp(20px, 5vw, 64px); }
  .problem-grid,
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { grid-template-columns: repeat(3, 1fr); }
  .steps-track::before,
  .steps-track::after { display: none; }
  .solution-grid,
  .about-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .use-case-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --outer-pad: 20px; }
  .nav-links { display: none; }
  .nav-right-desktop { display: none; }
  .nav-hamburger { display: flex; flex-direction: column; }
  .hero-lockup { margin-bottom: 28px; }
  .hero-lockup-name { font-size: clamp(28px, 8vw, 40px); letter-spacing: 0.14em; }
  .hero-lockup-rule { width: 40px; height: 2px; margin: 10px 0; }
  .hero-lockup-sub { font-size: 11px; letter-spacing: 0.05em; }
  .problem-grid,
  .pricing-grid,
  .credentials-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; gap: 32px; }
  .step { padding: 0; }
  .tabs { flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ════════════════════════════════════════════════════════════════════
   REDESIGN v2 — DESIGN TOKENS + TYPOGRAPHY PASS (Step 1)
   Editorial Ink palette · Fraunces / Geist / IBM Plex Mono
   ══════════════════════════════════════════════════════════════════ */
:root {
  --ink-900: #0A1628;
  --ink-800: #14233A;
  --ink-700: #1F3150;
  --ink-500: #4A5A75;
  --ink-300: #8A94A8;
  --paper-50: #FAF7F2;
  --paper-100: #F2EDE4;
  --paper-200: #E4DDD0;
  --amber-500: #E8A33D;
  --amber-600: #D48E2A;
  --amber-100: rgba(232,163,61,0.10);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Geist', 'Inter', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  --t-xs:   clamp(11px, 0.70vw, 12px);
  --t-sm:   clamp(14px, 0.90vw, 15px);
  --t-base: clamp(16px, 1.05vw, 18px);
  --t-md:   clamp(20px, 1.35vw, 24px);
  --t-lg:   clamp(28px, 2vw, 36px);
  --t-xl:   clamp(40px, 3.3vw, 60px);
  --t-2xl:  clamp(56px, 5vw, 96px);
  --t-3xl:  clamp(80px, 9vw, 168px);

  --space-5: 24px; --space-6: 32px; --space-7: 48px;
  --space-8: 64px; --space-9: 96px; --space-10: 144px;
  --section-y: clamp(96px, 11vw, 180px);

  --radius-card: 6px;
  --radius-btn:  999px;
  --shadow-card: 0 1px 0 rgba(10,22,40,0.06), 0 24px 48px -24px rgba(10,22,40,0.18);
}

body {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.003em;
}

::selection { background: var(--amber-500); color: var(--ink-900); }

/* ── Hero: ILLURA wordmark ── */
.hero-lockup-name {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber-500);
  text-shadow: 0 0 40px rgba(232,163,61,0.30), 0 0 90px rgba(232,163,61,0.08);
}
.hero-lockup-rule { background: var(--amber-500); opacity: 0.35; }

/* ── Hero: sublabel with italic "Intelligence" highlight ── */
.hero-lockup-sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.hero-lockup-sub em {
  font-family: inherit;
  font-style: italic;
  font-weight: 500;
  color: var(--amber-500);
  padding: 0 3px;
}

/* ── Hero: H1 headline ── */
.hero-headline {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink-900);
  max-width: 16ch;
}
.hero-headline em {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--amber-500);
}

/* ── Hero: supporting paragraph ── */
.hero-sub {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-500);
  letter-spacing: 0;
  max-width: 58ch;
}

/* ── Hero: typing prompt ── */
.hero-prompt-icon,
.hero-prompt-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ── CTAs ── */
.btn-primary {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--amber-500);
  color: var(--ink-900);
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 0 rgba(212,142,42,0.20);
}
.btn-primary:hover {
  background: var(--amber-600);
  box-shadow: 0 4px 18px rgba(232,163,61,0.35);
}
.btn-secondary {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-900);
  border-color: var(--ink-900);
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* ── Trust badges ── */
.trust-badge {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--ink-500);
  text-transform: uppercase;
}

/* ── Nav ── */
.nav-logo-product,
.nav-links a,
.nav-cta,
.lang-toggle,
.lang-toggle button,
.mobile-menu .mobile-menu-cta,
.mobile-menu .mobile-lang-toggle,
.mobile-menu .mobile-lang-toggle button {
  font-family: var(--font-body);
}
.nav-logo-product {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
}
.nav-cta {
  background: var(--amber-500);
  color: var(--ink-900);
  border-radius: var(--radius-btn);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--amber-600); }
.lang-toggle button.active { color: var(--amber-500); }
.mobile-menu a {
  font-family: var(--font-mono);
  font-size: clamp(20px, 4.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu .mobile-menu-cta {
  background: var(--amber-500);
  color: var(--ink-900);
  border-radius: var(--radius-btn);
  font-weight: 500;
}
.mobile-menu .mobile-lang-toggle button.active { color: var(--amber-500); }

/* ── Section eyebrows ── */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--ink-500);
}
.eyebrow::before { background: var(--amber-500); width: 16px; height: 1px; }
#solution .eyebrow,
#comparison .eyebrow,
#contact .eyebrow { color: rgba(255,255,255,0.55); }

/* ── Section titles ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 440;
  font-size: var(--t-xl);
  line-height: 1.06;
  letter-spacing: -0.028em;
}
.section-sub {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-500);
}

/* ════════════════════════════════════════════════════════════════════
   REDESIGN v2 — HERO (Step 4) · asymmetric 2-col · product UI mockup
   ══════════════════════════════════════════════════════════════════ */

/* Hero shell — navy bg, fills viewport exactly (nav is fixed/overlay, no subtraction) */
#hero {
  background: var(--off-white);
  min-height: 100vh;     /* fallback */
  min-height: 100dvh;    /* mobile-correct */
  height: auto;
  display: flex;
  align-items: center;
  padding-top:    clamp(96px, 10vw, 120px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
/* Short-viewport (common laptops: 1366×768, 1440×900) — compress aggressively.
   Use `zoom` on the mockup to reduce BOTH visual & layout footprint. */
@media (max-height: 820px) and (min-width: 1024px) {
  #hero {
    padding-top: clamp(80px, 8vh, 96px);     /* clear 72px nav + breathing room */
    padding-bottom: 24px;
  }
  .hero-lockup { margin-bottom: 14px; }
  .hero-lockup-name { font-size: 36px !important; }
  .hero-headline { font-size: clamp(40px, 3.6vw, 60px); margin-bottom: 14px; }
  .hero-sub { font-size: 14.5px; line-height: 1.5; margin-bottom: 20px; max-width: 440px; }
  .hero-ctas { margin-bottom: 18px; }

  .hero-col-right .mockup-chat {
    zoom: 0.82;
    transform: rotate(-0.2deg);
  }
  .hero-col-right .mockup-convo { gap: 12px; }
  .hero-col-right .mockup-bubble-ai p { margin-bottom: 6px; }
}

/* Firefox fallback (Firefox historically didn't support `zoom`;
   now does, but keep a scale-fallback for older versions). */
@supports not (zoom: 1) {
  @media (max-height: 820px) and (min-width: 1024px) {
    .hero-col-right .mockup-chat {
      transform: rotate(-0.2deg) scale(0.82);
      transform-origin: top right;
      margin-bottom: -18%;
    }
  }
}

/* Kill the old beams canvas + its pulsing overlay */
.hero-beams-canvas { display: none !important; }
.hero-bg-overlay   { display: none !important; }
.hero-bg::after    { display: none; }

/* A single warm amber radial sits behind the H1 (left column area).
   Intentionally soft + low opacity — no directional beams. */
.hero-bg-radial { display: none; }
.hero-grain { display: none; }

/* Decorative knowledge-lattice behind hero left column.
   Inline SVG, ink-300 at low opacity, gentle drift + node pulse. */
.hero-lattice {
  position: absolute;
  left: -4%;
  top: 8%;
  width: 62%;
  height: 80%;
  pointer-events: none;
  overflow: visible;
}
.hero-lattice .lat-group {
  transform-origin: 50% 50%;
  animation: heroLatDrift 28s ease-in-out infinite;
}
.hero-lattice .lat-line {
  stroke: var(--ink-500);
  stroke-width: 1;
  opacity: 0.15;
  vector-effect: non-scaling-stroke;
  transform-origin: center;
  animation: heroLatLinePulse 6s ease-in-out infinite;
}
.hero-lattice .lat-line:nth-of-type(1)  { animation-delay: 0s; }
.hero-lattice .lat-line:nth-of-type(2)  { animation-delay: 0.3s; }
.hero-lattice .lat-line:nth-of-type(3)  { animation-delay: 0.7s; }
.hero-lattice .lat-line:nth-of-type(4)  { animation-delay: 1.1s; }
.hero-lattice .lat-line:nth-of-type(5)  { animation-delay: 1.5s; }
.hero-lattice .lat-line:nth-of-type(6)  { animation-delay: 1.9s; }
.hero-lattice .lat-line:nth-of-type(7)  { animation-delay: 2.3s; }
.hero-lattice .lat-line:nth-of-type(8)  { animation-delay: 2.7s; }
.hero-lattice .lat-line:nth-of-type(9)  { animation-delay: 3.1s; }
.hero-lattice .lat-line:nth-of-type(10) { animation-delay: 3.5s; }
.hero-lattice .lat-line:nth-of-type(11) { animation-delay: 3.9s; }
.hero-lattice .lat-line:nth-of-type(12) { animation-delay: 4.3s; }
.hero-lattice .lat-line:nth-of-type(13) { animation-delay: 4.7s; }
.hero-lattice .lat-line:nth-of-type(14) { animation-delay: 5.1s; }
.hero-lattice .lat-line:nth-of-type(15) { animation-delay: 0.2s; }
.hero-lattice .lat-line:nth-of-type(16) { animation-delay: 0.9s; }
.hero-lattice .lat-line:nth-of-type(17) { animation-delay: 1.7s; }
.hero-lattice .lat-line:nth-of-type(18) { animation-delay: 2.5s; }
.hero-lattice .lat-line:nth-of-type(19) { animation-delay: 3.3s; }
.hero-lattice .lat-line:nth-of-type(20) { animation-delay: 4.1s; }
.hero-lattice .lat-line:nth-of-type(21) { animation-delay: 0.6s; }
.hero-lattice .lat-line:nth-of-type(22) { animation-delay: 2.0s; }
.hero-lattice .lat-line:nth-of-type(23) { animation-delay: 3.7s; }
.hero-lattice .lat-line:nth-of-type(24) { animation-delay: 1.3s; }
.hero-lattice .lat-line:nth-of-type(25) { animation-delay: 4.9s; }

.hero-lattice .lat-node {
  fill: var(--ink-700);
  opacity: 0.32;
  transform-origin: center;
  transform-box: fill-box;
  animation: heroLatNodePulse 4.2s ease-in-out infinite;
}
.hero-lattice .lat-node:nth-of-type(1)  { animation-delay: 0s; }
.hero-lattice .lat-node:nth-of-type(2)  { animation-delay: 0.3s; }
.hero-lattice .lat-node:nth-of-type(3)  { animation-delay: 0.6s; }
.hero-lattice .lat-node:nth-of-type(4)  { animation-delay: 0.9s; }
.hero-lattice .lat-node:nth-of-type(5)  { animation-delay: 1.2s; }
.hero-lattice .lat-node:nth-of-type(6)  { animation-delay: 1.5s; }
.hero-lattice .lat-node:nth-of-type(7)  { animation-delay: 1.8s; }
.hero-lattice .lat-node:nth-of-type(8)  { animation-delay: 2.1s; }
.hero-lattice .lat-node:nth-of-type(9)  { animation-delay: 2.4s; }
.hero-lattice .lat-node:nth-of-type(10) { animation-delay: 2.7s; }
.hero-lattice .lat-node:nth-of-type(11) { animation-delay: 3.0s; }
.hero-lattice .lat-node:nth-of-type(12) { animation-delay: 3.3s; }
.hero-lattice .lat-node:nth-of-type(13) { animation-delay: 3.6s; }
.hero-lattice .lat-node:nth-of-type(14) { animation-delay: 3.9s; }
.hero-lattice .lat-node:nth-of-type(15) { animation-delay: 1.1s; }
.hero-lattice .lat-node:nth-of-type(16) { animation-delay: 2.6s; }

@keyframes heroLatDrift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(10px, -6px); }
  50%  { transform: translate(14px, 8px); }
  75%  { transform: translate(-4px, 10px); }
  100% { transform: translate(0, 0); }
}
@keyframes heroLatLinePulse {
  0%, 100% { opacity: 0.07; }
  50%      { opacity: 0.22; }
}
@keyframes heroLatNodePulse {
  0%, 100% { opacity: 0.21; transform: scale(1); }
  50%      { opacity: 0.49; transform: scale(1.4); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-lattice {
    left: -10%;
    top: 4%;
    width: 120%;
    height: 70%;
    opacity: 0.85;
  }
}
@media (max-width: 768px) {
  .hero-lattice {
    left: -20%;
    top: clamp(24px, 6vw, 64px);
    width: 140%;
    height: auto;
    aspect-ratio: 800 / 700;
    opacity: 0.75;
  }
}

/* Scroll hint — bottom of hero */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-500);
  pointer-events: none;
  z-index: 3;
  animation: heroScrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-hint .hero-scroll-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.hero-scroll-hint svg {
  opacity: 0.7;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

@media (max-width: 768px) {
  .hero-scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lattice .lat-group,
  .hero-lattice .lat-node,
  .hero-scroll-hint { animation: none !important; }
}

/* Widen the hero container for the 7/5 grid. Vertical padding is handled by #hero. */
.hero-inner {
  max-width: 1320px;
  padding-top:    0;
  padding-bottom: 0;
  padding-left:  clamp(24px, 5vw, 88px);
  padding-right: clamp(24px, 5vw, 88px);
  width: 100%;
}

/* Asymmetric grid: text left (7), product UI right (5) */
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 5vw, 88px);
  align-items: center;
}
.hero-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.hero-col-right {
  min-width: 0;
  position: relative;
}

/* Headline sizing overrides inside the narrower column */
.hero-lockup { margin-bottom: 22px; }
.hero-headline {
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1.05;
  max-width: 19ch;
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 460px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink-500);
  margin-bottom: 28px;
}
.hero-ctas {
  margin-bottom: 28px;
}

/* Trust row — text-only Plex Mono credential strip, middle-dot separated.
   Tuned to fit the 7-col (≈616px @ 1920) on one line; wraps below 1280. */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
@media (max-width: 1279px) {
  .hero-trust { flex-wrap: wrap; white-space: normal; row-gap: 8px; }
}
.hero-trust .trust-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 0;
  background: none;
  border: none;
  display: inline;
  line-height: 1;
}
.hero-trust .trust-badge::before { content: none; }  /* kill any legacy glyph */
.hero-trust .trust-sep {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-300);
  user-select: none;
  line-height: 1;
}
.hero-trust { gap: 8px; }

/* Quiet Malaysia footnote directly under CTAs / trust row */
.hero-footnote {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--ink-500);
  text-transform: none;
  margin: 12px 0 0;
  animation: fadeUp 0.6s 0.5s ease both;
}

/* ── Hero product UI mockup — scoped so it doesn't collide with
      the separate `.mockup-chat` used later in the page. ── */
.hero-col-right .mockup-chat {
  /* Reset older flex usage from the global .mockup-chat rule */
  flex: 0 0 auto;
  padding: 0;
  overflow: visible;
  display: block;

  background: #0F1C30;                       /* ink-800-ish surface */
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 30px 80px -30px rgba(0,0,0,0.55),
    0 8px 24px -8px rgba(0,0,0,0.45);
  transform: rotate(-0.3deg);
  position: relative;
  animation: fadeUp 0.7s 0.35s ease both;
  will-change: transform;
}
.hero-col-right .mockup-chat::after {
  /* faint amber halo behind the card, per imagery plan (2% amber glow) */
  content: '';
  position: absolute;
  inset: -40px -40px -40px -40px;
  background: radial-gradient(60% 50% at 50% 50%, rgba(232,163,61,0.10), transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}

/* Browser chrome */
.hero-col-right .mockup-chrome {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "traffic tab" "url url";
  row-gap: 10px;
  column-gap: 14px;
  align-items: center;
  padding: 12px 14px 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0) 70%);
  border-radius: 10px 10px 0 0;
}
.hero-col-right .mockup-chrome-traffic {
  grid-area: traffic;
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-col-right .mockup-chrome-traffic span {
  width: 11px; height: 11px; border-radius: 50%;
  display: inline-block;
}
.hero-col-right .mockup-chrome-traffic span:nth-child(1) { background: #FF5F57; }
.hero-col-right .mockup-chrome-traffic span:nth-child(2) { background: #FEBC2E; }
.hero-col-right .mockup-chrome-traffic span:nth-child(3) { background: #28C840; }
.hero-col-right .mockup-chrome-tab {
  grid-area: tab;
  justify-self: start;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 5px 12px 5px 12px;
  border-radius: 6px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.hero-col-right .mockup-chrome-url {
  grid-area: url;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 6px 10px;
  border-radius: 6px;
}
.hero-col-right .mockup-chrome-url svg {
  stroke: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.hero-col-right .mockup-chrome-urltext {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.78);
}
.hero-col-right .mockup-chrome-urlpath {
  color: rgba(255,255,255,0.42);
}

/* Mockup body */
.hero-col-right .mockup-body {
  padding: 16px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-col-right .mockup-bodyhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-col-right .mockup-bodyhead-left {
  display: flex; align-items: baseline; gap: 12px; min-width: 0;
}
.hero-col-right .mockup-bodyhead-right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.hero-col-right .mockup-logo {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.hero-col-right .mockup-breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  letter-spacing: -0.005em;
}
.hero-col-right .mockup-crumb-sep {
  color: rgba(255,255,255,0.22);
  margin: 0 6px;
}
.hero-col-right .mockup-indexed {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.42);
  text-transform: none;
}
.hero-col-right .mockup-user {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Conversation */
.hero-col-right .mockup-convo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2px 0 4px 0;
}
.hero-col-right .mockup-msg {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hero-col-right .mockup-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-col-right .mockup-avatar-user {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.72);
}
.hero-col-right .mockup-avatar-ai {
  background: rgba(232,163,61,0.14);
  color: var(--amber-500);
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-col-right .mockup-content { flex: 1; min-width: 0; }
.hero-col-right .mockup-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.hero-col-right .mockup-name {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-col-right .mockup-dot { color: rgba(255,255,255,0.22); }
.hero-col-right .mockup-time { font-variant-numeric: tabular-nums; }
.hero-col-right .mockup-pill {
  margin-left: 4px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: rgba(232,163,61,0.10);
  border: 1px solid rgba(232,163,61,0.22);
  padding: 2px 7px;
  border-radius: 999px;
}
.hero-col-right .mockup-bubble {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.62;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.005em;
}
.hero-col-right .mockup-bubble-user {
  color: rgba(255,255,255,0.68);
}
.hero-col-right .mockup-bubble-ai p {
  margin: 0 0 8px 0;
}
.hero-col-right .mockup-bubble-ai p:last-of-type { margin-bottom: 12px; }
.hero-col-right .mockup-bubble-ai strong {
  color: #fff;
  font-weight: 600;
}
.hero-col-right .mockup-citations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.hero-col-right .mockup-citation {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 10px 4px 8px;
  border-radius: 4px;
}
.hero-col-right .mockup-cite-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-500);
  display: inline-block;
}
.hero-col-right .mockup-cite-page {
  color: rgba(255,255,255,0.42);
}

/* Input bar */
.hero-col-right .mockup-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.hero-col-right .mockup-input:has(.is-typing) {
  border-color: rgba(232,163,61,0.35);
  background: rgba(255,255,255,0.045);
}
.hero-col-right .mockup-input-text {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.34);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 4px);
}
.hero-col-right .mockup-input-cursor {
  flex: 0 0 2px;
  width: 2px;
  min-width: 2px;
  height: 13px;
  background: var(--amber-500);
  display: inline-block;
  margin-left: -2px;
  align-self: center;
  animation: heroCursorBlink 1s step-end infinite;
}
.hero-col-right .mockup-input-kbd {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1;
}
@keyframes heroCursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Section eyebrows: typing caret ── */
.eyebrow-typer {
  display: inline;
}
.eyebrow-caret {
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: var(--amber-500);
  animation: heroCursorBlink 1s step-end infinite;
}
.eyebrow > .eyebrow-caret {
  transform: translateY(-0.12em);
}

/* ── Hero mockup: typing + streaming animation states ── */
.hero-col-right .mockup-chat.is-anim .mockup-msg {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 420ms ease, transform 420ms ease;
}
.hero-col-right .mockup-chat.is-anim .mockup-msg.is-shown {
  opacity: 1;
  transform: none;
}
.hero-col-right .mockup-input-text.is-typing {
  color: rgba(255,255,255,0.88);
}
.hero-col-right .mockup-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
}
.hero-col-right .mockup-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-500);
  opacity: 0.35;
  animation: mockupTypingDot 1.1s ease-in-out infinite;
}
.hero-col-right .mockup-typing span:nth-child(2) { animation-delay: 0.18s; }
.hero-col-right .mockup-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes mockupTypingDot {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40%           { opacity: 1;    transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-col-right .mockup-chat,
  .hero-col-right .mockup-input-cursor,
  .hero-col-right .mockup-typing span { animation: none !important; }
  .hero-col-right .mockup-chat { transform: none; }
  .hero-col-right .mockup-chat.is-anim .mockup-msg {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive — tablet & below: single column, mockup under text */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-col-right {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-col-right .mockup-chat { transform: none; }
  .hero-sub { max-width: none; }
}
@media (max-width: 640px) {
  .hero-col-right .mockup-chrome-tab { font-size: 11px; padding: 4px 10px; }
  .hero-col-right .mockup-bubble { font-size: 12.5px; }
  .hero-col-right .mockup-breadcrumb,
  .hero-col-right .mockup-indexed { font-size: 10.5px; }
}

/* ════════════════════════════════════════════════════════════════════
   REDESIGN v2 — PROBLEM SECTION (Step 5)
   Three numbered editorial blocks · no cards · Paradox pull-quote
   ══════════════════════════════════════════════════════════════════ */

#problem {
  background: var(--paper-50);
  color: var(--ink-900);
  padding-top:    clamp(96px, 11vw, 180px);
  padding-bottom: clamp(96px, 11vw, 180px);
}
#problem .container,
#problem .problem-container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left:  clamp(24px, 5vw, 88px);
  padding-right: clamp(24px, 5vw, 88px);
}

/* ── Section intro (eyebrow + H2 + lede) ── */
#problem .problem-intro { max-width: 820px; margin-bottom: clamp(80px, 8vw, 128px); }
#problem .eyebrow,
#problem .problem-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
}
#problem .section-title,
#problem .problem-section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 400;
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 0 0 28px;
  max-width: 820px;
}
#problem .section-sub,
#problem .problem-section-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0;
}

/* ── Three numbered blocks ── */
.problem-blocks {
  border-top: 1px solid var(--paper-200);
  margin-bottom: clamp(96px, 10vw, 160px);
}
.problem-block {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  padding: clamp(56px, 6vw, 88px) 0;
  border-bottom: 1px solid var(--paper-200);
}
.problem-block-visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.problem-diagram {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  color: var(--ink-900);
}
.problem-block-body { padding-top: clamp(24px, 3vw, 48px); max-width: 640px; }
.problem-block-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-weight: 400;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 20px;
}
.problem-block-text {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
}

/* Kill legacy card grid styles inside #problem */
#problem .problem-grid { all: unset; display: block; }
#problem .problem-card { all: unset; display: block; }
#problem .problem-icon { display: none; }
#problem .problem-callout,
#problem .problem-callout-icon { display: none; }

/* ── Paradox pull-quote (Variant A, approved) ── */
.problem-paradox {
  margin: 0;
  max-width: 820px;              /* ~72% of 1144px content width */
}
.problem-paradox-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 40px;
}
.problem-paradox-dash {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--amber-500);
  flex: 0 0 36px;
}
.problem-paradox-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 400;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0;
  quotes: none;
}
.problem-paradox-quote .paradox-em {
  color: var(--amber-500);
  font-style: italic;
  font-weight: 400;
}

/* ── Responsive collapse for Problem blocks ── */
@media (max-width: 900px) {
  .problem-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 56px 0;
  }
  .problem-block-visual { justify-content: flex-start; }
  .problem-diagram { max-width: 320px; }
  .problem-block-body { padding-top: 0; }
  .problem-paradox-quote { font-size: clamp(28px, 6vw, 40px); }
}

/* ════════════════════════════════════════════════════════════════════
   REDESIGN v2 — SOLUTION SECTION (Step 6)
   Three alternating rows · spot SVG diagrams · no cards
   ══════════════════════════════════════════════════════════════════ */

#solution {
  background: var(--paper-100);
  color: var(--ink-900);
  padding-top:    clamp(96px, 11vw, 180px);
  padding-bottom: clamp(96px, 11vw, 180px);
  border-top: 1px solid var(--paper-200);
}
#solution .container,
#solution .solution-container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left:  clamp(24px, 5vw, 88px);
  padding-right: clamp(24px, 5vw, 88px);
}

/* Intro block */
#solution .solution-intro { max-width: 820px; margin-bottom: clamp(96px, 10vw, 160px); }
#solution .eyebrow,
#solution .solution-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
}
#solution .section-title,
#solution .solution-section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 400;
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 0 0 28px;
}
#solution .section-sub,
#solution .solution-section-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0;
}

/* Three alternating rows */
.solution-rows { display: block; }
.solution-row {
  display: grid;
  grid-template-columns: 6fr 5fr;
  column-gap: clamp(48px, 6vw, 112px);
  align-items: center;
  padding: clamp(72px, 8vw, 128px) 0;
  border-top: 1px solid var(--paper-200);
}
.solution-row:last-child { border-bottom: 1px solid var(--paper-200); }

.solution-row[data-layout="visual-first"] .solution-row-text { order: 2; }
.solution-row[data-layout="visual-first"] .solution-row-visual { order: 1; }

.solution-row-text { max-width: 520px; }
.solution-row[data-layout="visual-first"] .solution-row-text { justify-self: end; }

.solution-row-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.solution-row-num .rule {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--amber-500);
}
.solution-row-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'wght' 400;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 20px;
}
.solution-row-text p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
}

/* Visual side: spot SVG diagram, no container */
.solution-row-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.solution-row[data-layout="text-first"] .solution-row-visual { justify-content: center; }
.solution-diagram {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  color: var(--ink-900);          /* used for currentColor strokes */
}
.solution-diagram .diagram-label,
.problem-diagram  .diagram-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--ink-500);
}
.solution-diagram .diagram-label-strong,
.problem-diagram  .diagram-label-strong { fill: var(--ink-900); font-weight: 500; }
.solution-diagram .diagram-label-amber,
.problem-diagram  .diagram-label-amber  { fill: var(--amber-500); font-weight: 500; }
.solution-diagram .diagram-stroke,
.problem-diagram  .diagram-stroke        { stroke: var(--ink-900); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.solution-diagram .diagram-stroke-thin,
.problem-diagram  .diagram-stroke-thin   { stroke: var(--ink-900); stroke-width: 1; fill: none; }
.solution-diagram .diagram-stroke-dashed,
.problem-diagram  .diagram-stroke-dashed { stroke: var(--ink-500); stroke-width: 1; fill: none; stroke-dasharray: 3 3; }
.solution-diagram .diagram-dot,
.problem-diagram  .diagram-dot           { fill: var(--amber-500); }
.solution-diagram .diagram-dot-ink,
.problem-diagram  .diagram-dot-ink       { fill: var(--ink-900); }
.solution-diagram .diagram-fill-paper,
.problem-diagram  .diagram-fill-paper    { fill: var(--paper-50); }
.solution-diagram .diagram-strike,
.problem-diagram  .diagram-strike        { stroke: var(--amber-500); stroke-width: 1.5; stroke-linecap: round; }

/* Kill legacy solution styles inside #solution */
#solution .solution-grid { all: unset; display: block; }
#solution .solution-pillars { display: none; }
#solution .solution-visual { display: none; }

/* Responsive collapse */
@media (max-width: 960px) {
  .solution-row {
    grid-template-columns: 1fr;
    row-gap: 56px;
    padding: 72px 0;
  }
  .solution-row[data-layout="visual-first"] .solution-row-text { order: unset; justify-self: start; }
  .solution-row[data-layout="visual-first"] .solution-row-visual { order: unset; }
  .solution-row-text { max-width: none; }
  .solution-diagram { max-width: 420px; }
}

/* ──────────────────────────────────────────────
   Step 7 · How It Works — editorial timeline v2
   ────────────────────────────────────────────── */
#how-it-works {
  background: var(--paper-50);
  border-top: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
}
#how-it-works .container {
  max-width: 1280px;
  padding: 0 clamp(24px, 5vw, 96px);
  margin: 0 auto;
}

#how-it-works .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: block;
  text-align: left;
  background: none;
  padding: 0;
  border: 0;
  width: auto;
  height: auto;
  margin: 0 0 24px;
}
#how-it-works .section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  max-width: 820px;
  margin: 0 0 24px;
  background: none;
  -webkit-text-fill-color: initial;
}
#how-it-works .section-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink-500);
  text-align: left;
  max-width: 680px;
  margin: 0 0 clamp(72px, 9vw, 128px);
}

.how-timeline {
  --num-size: clamp(36px, 3.2vw, 48px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0;
  position: relative;
  margin-top: 0;
  box-sizing: border-box;
}
.how-timeline::before {
  content: '';
  position: absolute;
  top: calc(var(--num-size) + 20px + 7px);
  left: 7px;
  right: calc(20% - 7px);
  height: 1px;
  background: var(--ink-900);
  opacity: 0.2;
  z-index: 0;
}
.how-timeline::after { content: none; display: none; }

.how-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 clamp(12px, 1.5vw, 20px) 0 0;
  position: relative;
  z-index: 1;
}
.how-step .step-num {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  display: block;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  font-size: var(--num-size);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 20px;
  padding: 0;
  box-shadow: none;
}
.how-step .step-node {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-900);
  background: var(--amber-500);
  margin: 0 0 28px;
  flex: 0 0 auto;
  box-shadow:
    0 0 0 4px rgba(232, 163, 61, 0.18),
    0 0 14px 2px rgba(232, 163, 61, 0.55);
  animation: howDotPulse 2.4s ease-in-out infinite;
}
@keyframes howDotPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(232, 163, 61, 0.16),
      0 0 12px 2px rgba(232, 163, 61, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(232, 163, 61, 0.22),
      0 0 20px 4px rgba(232, 163, 61, 0.7);
  }
}
@media (prefers-reduced-motion: reduce) {
  .how-step .step-node { animation: none; }
}
.how-step .step-label {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-transform: none;
  margin: 0 0 10px;
  padding: 0;
  background: none;
  border: 0;
}
.how-step p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
  max-width: 260px;
}
.how-timeline .step:hover .step-num {
  background: none;
  border: 0;
  color: var(--ink-900);
}
.how-timeline .step[data-reveal-child].revealed .step-num {
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--ink-900);
}

@media (max-width: 900px) {
  .how-timeline {
    grid-template-columns: 1fr;
    row-gap: 56px;
    padding-left: 40px;
  }
  .how-timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .how-step {
    padding: 0;
    display: block;
  }
  .how-step .step-num { margin-bottom: 10px; }
  .how-step .step-node {
    position: absolute;
    left: -40px;
    top: 14px;
    margin: 0;
  }
  .how-step p { max-width: 480px; }
}

/* ──────────────────────────────────────────────
   Step 8 · Use Cases — editorial tabs + product screenshot
   ────────────────────────────────────────────── */
#use-cases {
  background: var(--paper-100);
  border-top: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
}
#use-cases .container {
  max-width: 1280px;
  padding: 0 clamp(24px, 5vw, 96px);
  margin: 0 auto;
}
#use-cases .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: block;
  text-align: left;
  background: none;
  padding: 0;
  border: 0;
  width: auto;
  height: auto;
  margin: 0 0 24px;
}
#use-cases .section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  max-width: 820px;
  margin: 0 0 24px;
  background: none;
  -webkit-text-fill-color: initial;
}
#use-cases .section-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink-500);
  text-align: left;
  max-width: 680px;
  margin: 0 0 clamp(56px, 7vw, 80px);
}

/* Editorial tab bar — underline on active, no pills */
#use-cases .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 24px);
  margin: 0 0 clamp(48px, 6vw, 80px);
  background: none;
  padding: 0 0 0;
  border: 0;
  border-bottom: 1px solid var(--paper-200);
  border-radius: 0;
  width: auto;
}
#use-cases .tab-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 2px 16px;
  border-radius: 0;
  border: 0;
  background: none;
  color: var(--ink-500);
  cursor: pointer;
  position: relative;
  margin-bottom: -1px;
  transition: color 180ms ease;
  box-shadow: none;
}
#use-cases .tab-btn::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.25, 1);
}
#use-cases .tab-btn:hover { color: var(--ink-900); background: none; box-shadow: none; }
#use-cases .tab-btn.active {
  color: var(--ink-900);
  background: none;
  box-shadow: none;
  font-weight: 500;
}
#use-cases .tab-btn.active::after { transform: scaleX(1); }
#use-cases .tab-btn:focus-visible { outline: 2px solid var(--amber-500); outline-offset: 4px; }

/* Asymmetric 2-col: capabilities left, screenshot right (visual flip via order) */
#use-cases .use-case-layout {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  align-items: flex-start;
  margin-top: 0;
}
#use-cases .uc-cards {
  flex: 5;
  order: 1;
  gap: 0;
  background: none;
  padding: 0;
  margin-top: 8px;
}
#use-cases .uc-main {
  flex: 6;
  order: 2;
}

/* Capability editorial blocks (was uc-card grid) */
#use-cases .uc-card {
  background: none !important;
  border-radius: 0;
  padding: 32px 0;
  border-top: 1px solid var(--paper-200);
  transition: none;
}
#use-cases .uc-card:first-child { border-top: 0; padding-top: 0; }
#use-cases .uc-card:hover { background: none !important; }
#use-cases .uc-card h4 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 10px;
}
#use-cases .uc-card p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
  max-width: 520px;
}

/* Product screenshot — dark mockup panel */
#use-cases .uc-main {
  background: var(--ink-900);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(10, 22, 40, 0.06),
    0 24px 48px -24px rgba(10, 22, 40, 0.28);
  position: relative;
  border: 1px solid rgba(10, 22, 40, 0.08);
}
#use-cases .uc-main::before { content: none; display: none; } /* kill legacy radial */

.uc-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #14233A; /* --ink-800 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.uc-chrome-dots {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}
.uc-chrome-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.uc-chrome-dot.r { background: #FF5F57; }
.uc-chrome-dot.y { background: #FEBC2E; }
.uc-chrome-dot.g { background: #28C840; }
.uc-chrome-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.uc-chrome-url {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.uc-chrome-url svg {
  width: 11px; height: 11px;
  stroke: rgba(255, 255, 255, 0.3);
  flex: 0 0 auto;
}

.uc-body {
  padding: clamp(24px, 2.2vw, 32px) clamp(24px, 2.4vw, 36px);
}

#use-cases .uc-query-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 10px;
}
#use-cases .uc-query {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.003em;
  margin: 0 0 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#use-cases .uc-answer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-500);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
}
#use-cases .illura-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-500);
}
#use-cases .uc-answer {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.002em;
}

/* Responsive */
@media (max-width: 960px) {
  #use-cases .use-case-layout {
    flex-direction: column;
    gap: 56px;
  }
  #use-cases .uc-cards,
  #use-cases .uc-main { flex: 1 1 auto; width: 100%; }
  #use-cases .uc-cards { order: 2; }  /* screenshot first on mobile */
  #use-cases .uc-main { order: 1; }
  #use-cases .tabs {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-bottom: 2px;
    border-bottom: 0;
    background-image: linear-gradient(var(--paper-200), var(--paper-200));
    background-size: 100% 1px;
    background-position: left calc(100% - 2px);
    background-repeat: no-repeat;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #use-cases .tabs::-webkit-scrollbar { display: none; }
  #use-cases .tab-btn { flex: 0 0 auto; }
  #use-cases .tab-btn::after { bottom: 0; }
  .uc-chrome-tab { display: none; }  /* conserve chrome space */
}

/* ──────────────────────────────────────────────
   Step 9 · Comparison — editorial table v2
   ────────────────────────────────────────────── */
#comparison {
  background: var(--paper-50);
  border-top: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
}
#comparison .container {
  max-width: 1280px;
  padding: 0 clamp(24px, 5vw, 96px);
  margin: 0 auto;
}
#comparison .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: block;
  text-align: left;
  background: none;
  padding: 0;
  border: 0;
  width: auto;
  height: auto;
  margin: 0 0 24px;
}
#comparison .section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  max-width: 820px;
  margin: 0 0 24px;
  background: none;
  -webkit-text-fill-color: initial;
}
#comparison .section-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--ink-500);
  text-align: left;
  max-width: 680px;
  margin: 0 0 clamp(56px, 7vw, 80px);
}

/* Table */
#comparison .compare-table {
  margin-top: 0;
  border: 0;
  border-top: 1px solid var(--paper-200);
  border-radius: 0;
  overflow: visible;
}
#comparison .compare-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--paper-200);
  background: none;
  min-height: 72px;
}
#comparison .compare-row:last-child { border-bottom: 1px solid var(--paper-200); }
#comparison .compare-header { background: none; }

#comparison .compare-cell {
  padding: 20px clamp(16px, 1.5vw, 24px);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.5;
  display: flex;
  align-items: center;
  background: none;
}
#comparison .compare-cell.illura-col,
#comparison .compare-header .compare-cell.illura-col {
  background: none;
  justify-content: center;
  text-align: center;
}
#comparison .compare-row:not(.compare-header) .compare-cell:nth-child(3) {
  justify-content: center;
  text-align: center;
}

/* Header row */
#comparison .compare-header .compare-cell {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding-top: 18px;
  padding-bottom: 18px;
  min-height: 56px;
}
#comparison .compare-header .compare-cell.illura-col {
  color: var(--ink-900);
}

/* Feature column — Fraunces editorial */
#comparison .compare-row:not(.compare-header) .compare-cell.feature {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

/* Amber serif check + ink-300 serif cross (zero copy change, typography only) */
#comparison .check {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-size: 26px;
  line-height: 1;
  color: var(--amber-500);
  font-weight: 400;
  background: none;
}
#comparison .cross {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-300);
  font-weight: 400;
  background: none;
}

@media (max-width: 720px) {
  #comparison .compare-row { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); }
  #comparison .compare-cell { padding: 16px 10px; }
  #comparison .compare-row:not(.compare-header) .compare-cell.feature { font-size: 15px; }
  #comparison .compare-header .compare-cell { font-size: 10px; }
}

/* ── Step 10 — Pricing editorial ── */
#pricing {
  background: var(--paper-100);
  border-top: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
}
#pricing .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
  text-align: left;
  background: none;
}
#pricing .section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
  font-size: clamp(40px, 3.3vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
}
#pricing .section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  text-align: left;
  margin: 0 0 80px;
  max-width: 640px;
}

#pricing .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  background: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 0;
  align-items: stretch;
}

#pricing .price-card {
  background: var(--paper-50);
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 6px;
  padding: 40px 32px 40px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
#pricing .price-card h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-bottom: 12px;
}
#pricing .price-card > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-500);
  margin-bottom: 28px;
}
#pricing .price-features {
  list-style: none;
  padding: 22px 0 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  border-top: 1px solid var(--paper-200);
}
#pricing .price-features li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-900);
  padding: 0 0 0 20px;
  border: 0;
  position: relative;
  display: block;
  gap: 0;
  background: none;
}
#pricing .price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--ink-300);
  color: transparent;
  font-size: 0;
  margin: 0;
  font-weight: 400;
}

/* Featured tier — dark, lifted, 2-col feature split */
#pricing .price-card.featured {
  background: var(--ink-900);
  color: var(--paper-50);
  border: 0;
  border-radius: 6px;
  padding: 56px 44px 40px;
  margin-top: 0;
  box-shadow:
    0 1px 0 rgba(10, 22, 40, 0.06),
    0 32px 64px -24px rgba(10, 22, 40, 0.28);
  position: relative;
}
#pricing .price-card.featured .price-badge {
  position: absolute;
  top: -14px;
  left: 44px;
  background: var(--amber-500);
  border: 0;
  color: var(--ink-900);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  line-height: 1;
  margin: 0;
  width: auto;
}
#pricing .price-card.featured h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--paper-50);
  margin-bottom: 14px;
}
#pricing .price-card.featured > p {
  color: rgba(250, 247, 242, 0.65);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 560px;
}
#pricing .price-card.featured .price-features {
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid rgba(250, 247, 242, 0.12);
  display: block;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 28px;
  margin-bottom: 40px;
}
#pricing .price-card.featured .price-features li {
  break-inside: avoid;
  color: rgba(250, 247, 242, 0.88);
  margin-bottom: 14px;
  padding-left: 20px;
  display: block;
}
#pricing .price-card.featured .price-features li:last-child { margin-bottom: 0; }
#pricing .price-card.featured .price-features li::before {
  background: var(--amber-500);
}

/* CTAs — align to same bottom line */
#pricing .btn-quote {
  margin-top: auto;
  align-self: flex-start;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: background 180ms ease-out, transform 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
  box-shadow: none;
}
#pricing .btn-quote-outline {
  background: transparent;
  border: 1px solid var(--ink-900);
  color: var(--ink-900);
}
#pricing .btn-quote-outline:hover {
  background: var(--ink-900);
  color: var(--paper-50);
  border-color: var(--ink-900);
  transform: none;
  box-shadow: none;
}
#pricing .btn-quote-gold {
  background: var(--amber-500);
  color: var(--ink-900);
  border: 0;
  box-shadow: none;
}
#pricing .btn-quote-gold:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
  box-shadow: none;
}

#pricing .pricing-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  text-align: left;
  margin-top: 56px;
}

@media (max-width: 1024px) {
  #pricing .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #pricing .price-card { margin-top: 0; }
  #pricing .price-card.featured {
    order: -1;
    padding: 48px 32px 40px;
  }
  #pricing .price-card.featured .price-badge { left: 32px; }
  #pricing .price-card.featured .price-features {
    column-count: 1;
    column-rule: 0;
  }
}

/* ── Step 11 — Stats/Momentum editorial figures ── */
#stats {
  background: var(--paper-50);
  border-top: 1px solid var(--paper-200);
  border-bottom: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
}
#stats .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
  text-align: left;
  background: none;
}
#stats .section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
  font-size: clamp(40px, 3.3vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
}
#stats .section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  text-align: left;
  margin: 0 0 80px;
  max-width: 720px;
}

#stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: none;
  border: 0;
  border-top: 1px solid var(--paper-200);
  border-bottom: 1px solid var(--paper-200);
  border-radius: 0;
  overflow: visible;
  margin-top: 0;
}
#stats .stat-card {
  background: none;
  padding: 56px 32px 56px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 1px solid var(--paper-200);
  min-height: 320px;
}
#stats .stat-card:first-child {
  border-left: 0;
  padding-left: 0;
}
#stats .stat-card:last-child { padding-right: 0; }

#stats .stat-prefix {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0;
  display: block;
}
#stats .stat-value {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
  font-size: clamp(52px, 6vw, 104px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
#stats .stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-900);
  margin: 0;
  max-width: 240px;
}
#stats .stat-source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: auto;
}

@media (max-width: 1024px) {
  #stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #stats .stat-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--paper-200);
  }
  #stats .stat-card:nth-child(4) {
    border-top: 1px solid var(--paper-200);
  }
  #stats .stat-card { min-height: 260px; }
}
@media (max-width: 640px) {
  #stats .stats-grid { grid-template-columns: 1fr; }
  #stats .stat-card {
    border-left: 0 !important;
    padding: 40px 0;
  }
  #stats .stat-card:not(:first-child) {
    border-top: 1px solid var(--paper-200);
  }
}

/* ── Step 12 — About editorial ── */
#about {
  background: var(--paper-100);
  border-top: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
}
#about .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
  text-align: left;
  background: none;
}
#about .section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
  font-size: clamp(40px, 3.3vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  margin: 0 0 56px;
  font-weight: 400;
}

/* Pull-quote tagline */
#about .about-tagline {
  margin: 0 0 96px;
  padding: 0;
  border: 0;
  background: none;
  max-width: 1040px;
  quotes: none;
}
#about .about-tagline::before,
#about .about-tagline::after { content: none; }
#about .about-tagline p {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 400;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0;
}
#about .about-tagline em {
  font-style: italic;
  color: var(--amber-500);
  font-weight: 400;
}

/* About grid → single-column stack */
#about .about-grid {
  display: block;
  gap: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}
#about .about-text {
  background: none;
  padding: 0;
  margin-bottom: 96px;
  border: 0;
}
#about .about-text > p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 760px;
  margin-bottom: 20px;
}
#about .about-text > p:nth-of-type(2) {
  margin-bottom: 64px;
}

/* Services list → 2-col editorial */
#about .services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin-top: 0;
  border-top: 1px solid var(--paper-200);
  background: none;
  padding: 0;
}
#about .services-list .service-item {
  background: none;
  padding: 22px 28px 22px 0;
  border: 0;
  border-bottom: 1px solid var(--paper-200);
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-900);
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.005em;
  border-radius: 0;
  box-shadow: none;
  min-height: auto;
  text-align: left;
  line-height: 1.3;
}
#about .services-list .service-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--paper-200);
}
#about .services-list .service-item:nth-child(even) {
  padding-left: 32px;
}
#about .services-list .service-icon {
  display: none;
}
#about .services-list .service-item::before {
  content: "";
  width: 8px; height: 1px;
  background: var(--ink-300);
  flex-shrink: 0;
}

/* Credentials row → horizontal 4-col */
#about .credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: none;
  border: 0;
  border-top: 1px solid var(--paper-200);
  border-bottom: 1px solid var(--paper-200);
  border-radius: 0;
  overflow: visible;
  margin-top: 0;
  padding: 0;
}
#about .credentials-grid .cred-card {
  background: none;
  padding: 56px 28px;
  text-align: left;
  border: 0;
  border-left: 1px solid var(--paper-200);
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
#about .credentials-grid .cred-card:first-child {
  border-left: 0;
  padding-left: 0;
}
#about .credentials-grid .cred-card:last-child {
  padding-right: 0;
}
#about .credentials-grid .cred-icon {
  display: none;
}
#about .credentials-grid .cred-card h4 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0;
}
#about .credentials-grid .cred-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  #about .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about .credentials-grid .cred-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--paper-200);
  }
  #about .credentials-grid .cred-card:nth-child(4) {
    border-top: 1px solid var(--paper-200);
  }
  #about .credentials-grid .cred-card { min-height: 200px; }
}
@media (max-width: 720px) {
  #about .services-list {
    grid-template-columns: 1fr;
    max-width: none;
  }
  #about .services-list .service-item,
  #about .services-list .service-item:nth-child(odd),
  #about .services-list .service-item:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
    border-left: 0;
  }
  #about .credentials-grid { grid-template-columns: 1fr; }
  #about .credentials-grid .cred-card {
    border-left: 0;
    padding: 36px 0;
    min-height: auto;
  }
  #about .credentials-grid .cred-card:not(:first-child) {
    border-top: 1px solid var(--paper-200);
  }
}

/* ── Step 13 — Contact editorial ── */
#contact {
  background: var(--paper-50);
  border-top: 1px solid var(--paper-200);
  padding: clamp(96px, 11vw, 180px) 0;
  color: var(--ink-900);
}
#contact::before { display: none; content: none; }

#contact .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 28px;
  text-align: left;
  background: none;
}
#contact .section-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 400;
  font-size: clamp(40px, 3.3vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-align: left;
  margin: 0 0 20px;
  font-weight: 400;
}
#contact .section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  text-align: left;
  margin: 0 0 80px;
  max-width: 720px;
}

#contact .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* Contact info — stacked editorial lines */
#contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--paper-200);
}
#contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--paper-200);
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
}
#contact .contact-item > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
  width: 100%;
}
#contact .contact-item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0;
  background: none;
  padding: 0;
}
#contact .contact-item-value {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 400;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink-900);
  margin: 0;
}

/* Form — underline-only fields */
#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: none;
  border: 0;
  padding: 0;
}
#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
#contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
}
#contact .form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: none;
  padding: 0;
}
#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-900);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-900);
  border-radius: 0;
  padding: 10px 0 12px;
  box-shadow: none;
  transition: border-color 180ms ease-out;
  width: 100%;
}
#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder {
  color: var(--ink-300);
  opacity: 1;
}
#contact .form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230A1628' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
#contact .form-group select option {
  background: var(--paper-50);
  color: var(--ink-900);
}
#contact .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
#contact .form-group input:hover,
#contact .form-group select:hover,
#contact .form-group textarea:hover {
  border-bottom-color: var(--ink-500);
  background: none;
}
#contact .form-group input:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
  outline: 0;
  border-bottom-color: var(--amber-500);
  border-bottom-width: 2px;
  padding-bottom: 11px;
  background: none;
}

#contact .btn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  background: var(--amber-500);
  color: var(--ink-900);
  border: 0;
  box-shadow: none;
  transition: background 180ms ease-out, transform 180ms ease-out;
}
#contact .btn-submit:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
  box-shadow: none;
}
#contact .btn-submit:active { transform: translateY(0); }

#contact .form-success {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-900);
  background: rgba(232, 163, 61, 0.12);
  border: 0;
  border-left: 2px solid var(--amber-500);
  border-radius: 0;
  padding: 18px 20px;
  margin-top: 4px;
}

@media (max-width: 960px) {
  #contact .contact-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
@media (max-width: 640px) {
  #contact .contact-item > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  #contact .form-row { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────────────────────────────────────────
   STEP 14 — FOOTER (minimal editorial)
   ───────────────────────────────────────────── */
footer {
  background: var(--ink-900);
  color: rgba(250, 247, 242, 0.7);
  padding: clamp(56px, 6vw, 88px) var(--outer-pad) 28px;
  border-top: 0;
}
footer > .container,
footer > .container--wide {
  max-width: 1280px;
  padding: 0;
  margin: 0 auto;
}
footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(40px, 4vw, 72px);
  padding-bottom: 40px;
}
footer .footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
footer .footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.45);
  max-width: 340px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
footer .footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 22px;
}
footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  transition: color 180ms ease-out;
  letter-spacing: 0;
}
footer .footer-col a:hover {
  color: var(--paper-50);
  text-decoration: underline;
  text-decoration-color: var(--amber-500);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
footer .footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
footer .footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.4);
  margin: 0;
  text-transform: none;
}
footer .footer-illura-word {
  color: var(--amber-500);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 4px;
}
@media (max-width: 960px) {
  footer .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  footer .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────
   STEP 15 — MICRO-DETAILS PASS
   ───────────────────────────────────────────── */

/* Nav: align with footer palette (navy ink-900 at 85%, not pure black) */
nav {
  background: rgba(10, 22, 40, 0.85);
  border-bottom: 1px solid rgba(232, 163, 61, 0.10);
}

/* Text selection — warm amber on ink */
::selection {
  background: var(--amber-500);
  color: var(--ink-900);
}
::-moz-selection {
  background: var(--amber-500);
  color: var(--ink-900);
}

/* Scrollbar — minimal */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 22, 40, 0.28) transparent;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(10, 22, 40, 0.24);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 22, 40, 0.40);
  background-clip: padding-box;
  border: 2px solid transparent;
}

/* Focus rings — visible amber outline on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 2px;
}
#contact .form-group input:focus-visible,
#contact .form-group select:focus-visible,
#contact .form-group textarea:focus-visible {
  outline: 0;
}

/* Tabular numerals — stats, prices, timestamps, numeric callouts */
.stat-value,
.price,
.price-amount,
.mockup-time,
.mockup-meta,
.mockup-chrome-urltext,
.mockup-indexed,
.compare-cell,
.market-stats,
time,
.num {
  font-variant-numeric: tabular-nums;
}

/* Grain overlay — 2% fractal noise on ink-900 sections only */
.hero,
#comparison,
footer {
  position: relative;
}
.hero::after,
footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.hero > *,
footer > * { position: relative; z-index: 2; }

/* Anchor links inside body copy — amber underline with offset */
section p a,
.problem-block p a,
.solution-copy a,
#contact .contact-intro a {
  color: var(--ink-900);
  text-decoration: underline;
  text-decoration-color: var(--amber-500);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color 180ms ease-out;
}
section p a:hover,
.problem-block p a:hover,
.solution-copy a:hover {
  text-decoration-color: var(--amber-600);
}

/* Reduced motion — disable count-up translation, reveals, cursor blink, hover lifts */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-reveal-parent] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .mockup-input-cursor {
    animation: none !important;
    opacity: 1;
  }
}

