:root {
  --gold: #D9A125;
  --gold-light: #F0C34D;
  --gold-deep: #B9821A;
  --ink: #15130F;
  --ink-soft: #201C15;
  --cream: #FBF8F2;
  --cream-alt: #F3ECDA;
  --white: #FFFFFF;
  --gray: #5B564C;
  --border: #E7DFC9;
  --radius: 16px;
  --radius-lg: 26px;
  --max-width: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; zoom: 1.1; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 1.75rem; position: relative; z-index: 1; }
.accent { color: var(--gold); }
.accent-script { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--gold-deep); }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* Decorative honeycomb background */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.05;
}
.hex-field { width: 100%; height: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.brand-icon { width: 32px; height: 32px; object-fit: contain; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--ink); }
.brand-logo { height: 34px; width: auto; object-fit: contain; }
.footer-inner .brand-logo { height: 30px; }
.site-nav { display: flex; align-items: center; gap: 2rem; font-size: 0.9rem; font-weight: 600; flex: 1; justify-content: center; }
.site-nav a { text-decoration: none; color: var(--ink); opacity: 0.72; position: relative; padding: 0.25rem 0; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.2s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink); color: var(--white); text-decoration: none;
  padding: 0.6rem 1.3rem; border-radius: 999px; font-weight: 700; font-size: 0.88rem;
  flex-shrink: 0; transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 2rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  font-size: 0.98rem; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 24px -8px rgba(217,161,37,0.6); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; margin-top: 2rem; }

/* Typography */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 700;
  color: var(--gold-deep); margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-light); }
h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.08; max-width: 900px; margin: 0 auto 1.5rem;
}
h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 1.1rem;
}
h2.on-dark, .on-dark { color: var(--white); }
.on-dark-muted { color: rgba(255,255,255,0.68) !important; }
.section-head h2 { max-width: 780px; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--gray); max-width: 640px; margin: 0 auto 2.25rem; }
.section-intro { font-size: 1.08rem; color: var(--gray); max-width: 740px; margin-bottom: 2.75rem; }
.fine-print { font-size: 0.88rem; color: var(--gray); max-width: 740px; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(217,161,37,0.28) 0%, rgba(217,161,37,0) 70%);
  pointer-events: none; z-index: 0;
}
.hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Flying bees */
.bee-swarm { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bee { position: absolute; width: 56px; height: auto; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15)); }
.bee-1 { top: 18%; left: 8%; animation: fly1 16s ease-in-out infinite; }
.bee-2 { top: 55%; right: 10%; width: 40px; animation: fly2 13s ease-in-out infinite; animation-delay: -4s; }
.bee-3 { top: 20%; left: 12%; width: 48px; animation: fly1 14s ease-in-out infinite; }
@keyframes fly1 {
  0%   { transform: translate(0, 0) rotate(-4deg); }
  25%  { transform: translate(60px, -40px) rotate(6deg); }
  50%  { transform: translate(140px, 10px) rotate(-3deg); }
  75%  { transform: translate(70px, 60px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(-4deg); }
}
@keyframes fly2 {
  0%   { transform: translate(0, 0) rotate(4deg) scaleX(-1); }
  30%  { transform: translate(-80px, 30px) rotate(-6deg) scaleX(-1); }
  60%  { transform: translate(-40px, -50px) rotate(4deg) scaleX(-1); }
  100% { transform: translate(0, 0) rotate(4deg) scaleX(-1); }
}
@media (prefers-reduced-motion: reduce) {
  .bee { animation: none; }
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* Hero product mockup */
.hero-visual { width: 100%; max-width: 760px; }
.mock-window {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(21,19,15,0.35); overflow: hidden; text-align: left;
}
.mock-window-head {
  display: flex; align-items: center; gap: 0.4rem; padding: 0.9rem 1.25rem;
  background: var(--cream-alt); border-bottom: 1px solid var(--border);
}
.mock-window-head span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.mock-window-head span:nth-child(1) { background: #E8A0A0; }
.mock-window-head span:nth-child(2) { background: #EBCB8E; }
.mock-window-head span:nth-child(3) { background: #A9CBA5; }
.mock-window-head p { margin-left: 0.75rem; font-weight: 700; font-size: 0.85rem; color: var(--gray); }
.mock-window-body { padding: 1.75rem; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.mock-tile { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; }
.mock-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); margin-bottom: 0.35rem; font-weight: 700;}
.mock-value { font-weight: 700; font-size: 0.95rem; }
.mock-progress-track { height: 8px; border-radius: 999px; background: var(--cream-alt); overflow: hidden; margin-bottom: 0.6rem; }
.mock-progress-fill { width: 52%; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); border-radius: 999px; }
.mock-progress-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--gray); font-weight: 600; }

.mock-small .mock-window-body { padding: 1.5rem; }
.mock-ring-row { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.mock-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: conic-gradient(var(--gold) 0% 82%, var(--border) 82% 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative;
}
.mock-ring::before { content: ""; position: absolute; inset: 8px; background: var(--white); border-radius: 50%; }
.mock-ring span { position: relative; font-weight: 800; font-size: 0.95rem; }
.mock-chip-row { display: flex; flex-direction: column; gap: 0.6rem; }
.mock-chip { background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 0.55rem 0.9rem; font-size: 0.82rem; font-weight: 600; color: var(--gray); }

.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.kpi-tile { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem; text-align: center; }
.kpi-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-deep); }
.kpi-label { font-size: 0.78rem; color: var(--gray); font-weight: 600; margin-top: 0.2rem; }

.chat-body { display: flex; flex-direction: column; gap: 0.75rem; }
.chat-bubble { padding: 0.8rem 1.1rem; border-radius: 16px; font-size: 0.9rem; max-width: 85%; }
.chat-user { background: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-honey { background: var(--ink); color: var(--white); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-tag { margin-top: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--gold-deep); }

/* Scroll cue */
.scroll-cue { margin-top: 3rem; display: inline-flex; }
.scroll-cue span {
  display: block; width: 22px; height: 34px; border: 2px solid var(--ink); border-radius: 999px; position: relative; opacity: 0.5;
}
.scroll-cue span::before {
  content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--ink);
  border-radius: 999px; transform: translateX(-50%); animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* Stat band */
.stat-band { background: var(--ink); padding: 2.5rem 0; }
.stat-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-band-inner div { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-band-inner strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-light); }
.stat-band-inner span { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section.alt { background: var(--cream-alt); }
.section-dark { background: var(--ink); color: var(--white); padding: 6rem 0; position: relative; }
.section-dark .card { background: var(--ink-soft); border-color: rgba(255,255,255,0.1); }
.section-dark .card p { color: rgba(255,255,255,0.65); }
.section-head { max-width: 780px; }
.section-head.centered { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.centered h2 { margin-left: auto; margin-right: auto; }
.section-intro.centered { margin-left: auto; margin-right: auto; }
.mission-section .section-head.centered { margin-bottom: 3.5rem; }

/* Compact program cards */
.compact-grid { margin-top: 1.5rem; }
.card-compact { padding: 1.4rem 1.6rem; }
.card-compact h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.card-compact p { font-size: 0.9rem; }

/* Marquee */
.marquee { overflow: hidden; margin-top: 3rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.marquee-track {
  display: flex; gap: 0.9rem; white-space: nowrap; width: max-content;
  animation: marquee 22s linear infinite; font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-deep);
}
.marquee-track span:nth-child(even) { color: var(--gray); font-weight: 500; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Platform intro bridge */
.platform-intro { padding-bottom: 3rem; }

/* Footer email */
.footer-email { font-weight: 700; text-decoration: none; color: var(--gold-deep); font-size: 0.9rem; }

/* Contact form */
.contact-form { text-align: left; margin-top: 2.5rem; }
.hp-field { position: absolute; left: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-row .form-field { margin-bottom: 0; }
.contact-form label { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.4rem; color: rgba(255,255,255,0.85); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 10px;
  padding: 0.75rem 0.9rem; font-family: inherit; font-size: 0.95rem; color: var(--white);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 0.5rem; }
.form-status { margin-top: 1rem; font-size: 0.9rem; color: var(--gold-light); min-height: 1.2rem; }

/* Topic-driven interest checkboxes */
.interests-field { display: none; margin-bottom: 1rem; }
.interests-field.is-visible { display: flex; flex-direction: column; }
.interests-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.interest-chip { display: flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 0.45rem 0.9rem 0.45rem 0.7rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.interest-chip:hover { border-color: var(--gold); }
.interest-chip input { accent-color: var(--gold); width: 15px; height: 15px; margin: 0; }
.interest-chip:has(input:checked) { background: rgba(217,161,37,0.18); border-color: var(--gold); color: var(--white); }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Contact form success modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(21,19,15,0.72); display: flex; align-items: center; justify-content: center; padding: 1.5rem; z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal-card { background: var(--cream); border-radius: var(--radius-lg); max-width: 420px; width: 100%; padding: 2.25rem 2rem; text-align: center; position: relative; transform: translateY(12px) scale(0.97); transition: transform 0.2s ease; box-shadow: 0 24px 60px rgba(21,19,15,0.35); }
.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-check { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 1.6rem; }
.modal-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.6rem; color: var(--ink); }
.modal-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.5rem; }
.modal-close { background: none; border: none; position: absolute; top: 0.9rem; right: 1rem; font-size: 1.3rem; line-height: 1; color: var(--gray); cursor: pointer; }
.modal-close:hover { color: var(--ink); }

/* Panels */
.panel-dark {
  background: var(--ink); color: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem; margin-top: 1.5rem; position: relative; overflow: hidden;
}
.panel-dark::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(217,161,37,0.5), rgba(217,161,37,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.panel-dark h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.6rem; color: var(--white); }
.panel-dark p { color: rgba(255,255,255,0.72); }
.callout-strong {
  font-weight: 700; font-size: 1.15rem; text-align: center; color: var(--white); max-width: 640px; margin: 0 auto;
}

/* Grids / Cards */
.grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.9rem; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(21,19,15,0.25); border-color: rgba(217,161,37,0.4); }
.card-icon { display: inline-block; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.75rem; }
.card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; }
.card p { color: var(--gray); font-size: 0.97rem; }
.card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold-deep); background: rgba(217,161,37,0.12); padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 0.9rem;
}
.card-list ul { margin-top: 0.5rem; padding-left: 1.1rem; color: var(--gray); font-size: 0.95rem; }
.card-list li { margin-bottom: 0.55rem; }

/* Split layout */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; }
.split-reverse { grid-template-columns: 1fr 1.1fr; }
.split-reverse .split-text { order: 2; }
.split-reverse .split-visual { order: 1; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feature-list li { padding-left: 1.6rem; position: relative; color: var(--gray); }
.feature-list li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.feature-list strong { color: var(--ink); }
.pill-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.75rem; }
.pill { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.85rem; font-weight: 700; }

/* Timeline (value model) */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 22px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, rgba(217,161,37,0.1), rgba(217,161,37,0.6), rgba(217,161,37,0.1));
}
.timeline-node { position: relative; }
.timeline-dot {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 800; font-size: 0.85rem;
  margin-bottom: 1.25rem; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--ink);
}
.timeline-node h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--white); }
.flow-sub { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; }
.timeline-node p:last-child { color: rgba(255,255,255,0.78); font-size: 0.98rem; }

/* Pipeline */
.pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.pipeline-step { background: var(--ink-soft); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.6rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 800; font-size: 0.85rem; margin-bottom: 0.9rem;
}
.pipeline-step h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--white); }
.pipeline-step p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* Growth scale */
.scale { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem 2.5rem; margin-bottom: 2.5rem; }
.scale-track { display: flex; align-items: center; justify-content: space-between; position: relative; margin-bottom: 0.9rem; }
.scale-track::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--border); transform: translateY(-50%); z-index: 0; }
.scale-node { width: 18px; height: 18px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); position: relative; z-index: 1; }
.scale-node.filled { background: var(--gold); }
.scale-labels { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; color: var(--gray); }

/* Journey bar */
.journey-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.journey-phase { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; border-top: 4px solid var(--gold); }
.journey-months { display: inline-block; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-deep); margin-bottom: 0.6rem; }
.journey-phase h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.journey-phase p { color: var(--gray); font-size: 0.95rem; }

/* Trust grid */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.trust-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.trust-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.75rem; }
.trust-see { font-size: 0.92rem; color: var(--ink); margin-bottom: 0.6rem; }
.trust-protect { font-size: 0.92rem; color: var(--gray); }

/* Compare list */
.compare-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1rem; }
.compare-row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.6rem;
}
.compare-before { color: var(--gray); font-size: 0.95rem; }
.compare-after { font-weight: 700; font-size: 0.95rem; }
.compare-arrow { color: var(--gold); font-weight: 700; font-size: 1.2rem; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; padding: 7rem 0; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band .panel-lede { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 0.75rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 0; position: relative; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-inner .brand { pointer-events: none; }
.footer-inner p { font-size: 0.85rem; color: var(--gray); }

/* Responsive */
@media (max-width: 900px) {
  .split, .split-reverse { grid-template-columns: 1fr; }
  .split-reverse .split-text, .split-reverse .split-visual { order: initial; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pipeline, .timeline, .journey-bar { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .grid-3, .grid-2, .pipeline, .timeline, .journey-bar { grid-template-columns: 1fr; }
  .mock-row { grid-template-columns: 1fr; }
  .panel-dark { padding: 2rem; }
  .scale { padding: 1.5rem; }
  .scale-labels { font-size: 0.68rem; }
  .compare-row { grid-template-columns: 1fr; text-align: left; }
  .compare-arrow { display: none; }
  .kpi-grid { grid-template-columns: 1fr; }
  .bee { display: none; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}
