:root {
  /* Core white / black / green system */
  --bg: #ffffff;
  --bg-soft: #f5f8f5;
  --bg-section: #f3f7f3;
  --ink: #0a0d0a;
  --ink-2: #14181400;
  --black: #070a07;
  --black-2: #0d120d;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.06);
  --surface-dark: rgba(8, 12, 8, 0.9);
  --line: rgba(10, 14, 10, 0.09);
  --line-strong: rgba(10, 14, 10, 0.14);
  --line-dark: rgba(255, 255, 255, 0.1);
  --text: #0a0d0a;
  --text-soft: #5a655b;
  --text-mute: #8a948b;
  --text-light: rgba(255, 255, 255, 0.82);
  --green: #1ec85c;
  --green-bright: #27de69;
  --green-deep: #11863a;
  --green-soft: #e4faec;
  --green-glow: rgba(30, 200, 92, 0.45);
  --accent: #f4f8f4;
  --grad-green: linear-gradient(135deg, #27de69 0%, #11863a 100%);
  --container: min(1220px, calc(100vw - 48px));
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 30px 80px rgba(10, 16, 10, 0.1);
  --shadow-green: 0 24px 60px rgba(30, 200, 92, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

/* Subtle living background dot grid + aurora */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(10, 16, 10, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.theme-dark-page {
  color: #f3faf4;
  background:
    radial-gradient(circle at 80% 0%, rgba(30, 200, 92, 0.16), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(30, 200, 92, 0.08), transparent 28%),
    linear-gradient(180deg, #070a07 0%, #0b110b 100%);
}

.theme-dark-page::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.ambient {
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.8;
  pointer-events: none;
  animation: ambientFloat 14s ease-in-out infinite;
}

.ambient-a {
  top: 80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(30, 200, 92, 0.28);
}

.ambient-b {
  left: -80px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  background: rgba(39, 222, 105, 0.16);
  animation-delay: -7s;
}

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.12); }
}

@keyframes ambientFloatAlt {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 30px) scale(1.1); }
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.topbar-solid {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 45px rgba(9, 16, 10, 0.07);
}

.topbar-dark {
  margin-top: 16px;
  color: #f2fbf4;
  background: rgba(10, 16, 11, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.brand-logo {
  width: clamp(124px, 14vw, 190px);
}

.brand-logo-invert {
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
}

.topbar-dark .nav {
  color: rgba(255, 255, 255, 0.72);
}

.nav a:hover {
  color: inherit;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.topbar-solid .nav-toggle {
  background: rgba(5, 12, 6, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  background: currentColor;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.theme-dark-page .eyebrow {
  color: #7af0a4;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

.lead,
.hero-copy p,
.route-card p,
.feature-spotlight p,
.value-card span,
.statement-panel p,
.product-panel p,
.stack-card p,
.journey-card p,
.pricing-shell p,
.seat-line,
.formula-card p,
.service-card p,
.faq-card p,
.kpi-card p {
  line-height: 1.8;
  color: var(--text-soft);
}

.theme-dark-page .lead,
.theme-dark-page .hero-copy p,
.theme-dark-page .product-panel p,
.theme-dark-page .stack-card p,
.theme-dark-page .journey-card p,
.theme-dark-page .pricing-shell p,
.theme-dark-page .formula-card p,
.theme-dark-page .service-card p,
.theme-dark-page .faq-card p,
.theme-dark-page .kpi-card p {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #27de69 0%, #11863a 100%);
  box-shadow: 0 20px 40px rgba(30, 200, 92, 0.28);
}

.button-secondary {
  border-color: rgba(8, 16, 9, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.button-ghost {
  border-color: rgba(8, 16, 9, 0.1);
  background: rgba(255, 255, 255, 0.36);
}

.topbar-dark .button-secondary,
.topbar-dark .button-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.button-nav {
  min-height: 48px;
  padding: 0 18px;
}

.hero {
  display: grid;
  align-items: center;
}

.hero-immersive {
  padding: 78px 0 24px;
}

.immersive-stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(30, 200, 92, 0.16), transparent 38%),
    linear-gradient(180deg, #0a0d0a 0%, #0e140e 100%);
  box-shadow: 0 50px 130px rgba(8, 14, 8, 0.4);
}

.hero-cinematic {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  padding: 94px 0 46px;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.96;
}

.hero-copy-overlay {
  position: absolute;
  z-index: 3;
  top: 46px;
  left: 42px;
  max-width: 640px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(10, 14, 10, 0.42);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  color: #f3faf4;
}

.hero-copy-overlay h1 {
  color: #ffffff;
  max-width: 17ch;
  font-size: clamp(2.3rem, 4.3vw, 3.9rem);
  line-height: 1.08;
  padding-bottom: 0.08em;
  margin-bottom: 8px;
}

.hero-copy-overlay .lead {
  color: rgba(255, 255, 255, 0.82) !important;
}

.hero-copy-overlay .eyebrow {
  color: var(--green-bright);
}

.hero-copy-overlay .hero-tags span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 88px 0 26px;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.97;
}

.hero-actions,
.statement-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.signal-rail {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 460px;
}

.signal-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(7, 13, 7, 0.06);
}

.hero-tags span,
.mini-label,
.tag-soft {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-tags span,
.tag-soft {
  background: rgba(8, 16, 9, 0.05);
}

.mini-label {
  margin-bottom: 10px;
  color: #dfffe9;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stage,
.product-stage {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at top right, rgba(30, 200, 92, 0.22), transparent 34%),
    linear-gradient(180deg, #f7fbf8 0%, #eaf4eb 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-photo,
.product-render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  object-position: center;
}

.hero-photo-full {
  object-position: center center;
}

.product-render {
  object-position: center top;
  opacity: 0.78;
}

.hero-photo-shade,
.product-render-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 252, 248, 0.95) 0%, rgba(248, 252, 248, 0.24) 52%, rgba(248, 252, 248, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 16, 9, 0.06) 0%, rgba(8, 16, 9, 0.22) 100%);
}

.product-render-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 8, 0.82) 0%, rgba(7, 11, 8, 0.14) 58%, rgba(7, 11, 8, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 11, 8, 0.1) 0%, rgba(7, 11, 8, 0.36) 100%);
}

.immersive-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 7, 0.92) 0%, rgba(7, 10, 7, 0.55) 42%, rgba(7, 10, 7, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 10, 7, 0.2) 0%, rgba(7, 10, 7, 0.78) 100%);
}

.theme-dark-page .product-stage {
  background:
    radial-gradient(circle at top right, rgba(30, 200, 92, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 16, 0.86), rgba(7, 10, 8, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-grid,
.product-grid {
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background-image:
    linear-gradient(rgba(30, 200, 92, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 200, 92, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 30%);
}

.hero-orb,
.product-orb {
  position: absolute;
  top: 54px;
  right: 54px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 22%),
    radial-gradient(circle, rgba(30, 200, 92, 0.44), rgba(8, 16, 9, 0.02) 68%);
  filter: blur(2px);
}

.stage-panel,
.stage-float,
.product-card,
.strip-panel,
.feature-spotlight,
.value-card,
.route-card,
.statement-panel,
.product-panel,
.stack-card,
.journey-card,
.pricing-shell,
.formula-card,
.service-card,
.faq-card,
.kpi-card,
.timeline-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stage-panel,
.stage-float,
.strip-panel,
.feature-spotlight,
.value-card,
.route-card,
.statement-panel,
.product-panel,
.stack-card,
.journey-card,
.pricing-shell,
.formula-card,
.service-card,
.faq-card,
.kpi-card,
.timeline-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(10, 16, 10, 0.06);
}

.theme-dark-page .product-panel,
.theme-dark-page .stack-card,
.theme-dark-page .journey-card,
.theme-dark-page .pricing-shell,
.theme-dark-page .formula-card,
.theme-dark-page .service-card,
.theme-dark-page .faq-card,
.theme-dark-page .kpi-card,
.theme-dark-page .timeline-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stage-panel-main {
  position: absolute;
  top: 52px;
  left: 48px;
  width: min(340px, calc(100% - 80px));
  padding: 28px;
}

.stage-panel-main h2,
.product-card h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.stage-panel-main p {
  margin: 14px 0 0;
}

.stage-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-soft);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-live {
  background: #27de69;
  box-shadow: 0 0 0 8px rgba(39, 222, 105, 0.12);
}

.metric-band {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.metric-band strong,
.stage-float strong,
.value-card strong,
.kpi-card strong,
.summary-value {
  display: block;
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-size: 1.35rem;
}

.metric-band span,
.stage-float span,
.value-card span,
.kpi-card span {
  color: var(--text-soft);
}

.stage-float {
  position: absolute;
  padding: 22px;
}

.stage-float-chat {
  right: 38px;
  top: 170px;
  width: 250px;
}

.hero-route-dock {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  width: min(360px, calc(100% - 68px));
  display: grid;
  gap: 14px;
}

.dock-card,
.dock-mini-card,
.architecture-panel,
.ladder-step,
.access-panel,
.access-flow,
.access-step,
.access-note {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(9, 16, 10, 0.72);
  color: #edf9ef;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.dock-card,
.dock-mini-card,
.ladder-step,
.access-panel,
.access-step,
.access-note {
  padding: 18px;
}

.dock-card strong,
.dock-mini-card strong,
.ladder-step strong,
.access-step strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
}

.dock-card span,
.dock-mini-card span,
.ladder-step span,
.access-step p,
.access-note p {
  color: rgba(255, 255, 255, 0.74);
}

.dock-card-active {
  border-color: rgba(39, 222, 105, 0.34);
}

.dock-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stage-float-seats {
  left: 70px;
  bottom: 88px;
  width: 220px;
}

.stage-float-ai {
  right: 86px;
  bottom: 62px;
  width: 260px;
}

.strip-panel,
.statement-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px;
  margin-top: 28px;
}

.prestige-ribbon,
.experience-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  margin-top: 28px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.prestige-ribbon h2,
.experience-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.prestige-metrics,
.experience-layers {
  display: grid;
  gap: 14px;
}

.prestige-metrics div,
.layer-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.prestige-metrics strong,
.layer-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-size: 1.3rem;
}

.section-grid,
.route-grid,
.product-grid-layout,
.journey-grid,
.formula-grid,
.service-grid,
.faq-grid,
.kpi-grid,
.timeline-grid {
  display: grid;
  gap: 22px;
}

.section-grid,
.product-grid-layout {
  padding: 96px 0 0;
}

.feature-spotlight {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
  padding: 32px;
}

.feature-spotlight h2,
.section-intro h2,
.product-panel h2,
.pricing-shell h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.brand-card-cluster,
.value-grid {
  display: grid;
  gap: 18px;
}

.brand-card,
.value-card,
.product-card,
.stack-card,
.journey-card,
.formula-card,
.service-card,
.faq-card,
.kpi-card,
.timeline-card {
  padding: 24px;
}

.brand-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(223, 248, 229, 0.9));
  border: 1px solid rgba(8, 16, 9, 0.08);
}

.brand-card-dark {
  color: #eff9f1;
  background: linear-gradient(160deg, #071108 0%, #0d2211 100%);
}

.brand-card span {
  display: block;
  margin-top: 10px;
  color: inherit;
  opacity: 0.8;
  line-height: 1.7;
}

.symbol-mark {
  width: 72px;
  margin-bottom: 18px;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-showcase,
.pricing-zone,
.faq-zone,
.timeline-zone,
.experience-band,
.kpi-zone,
.kinetic-band {
  padding: 96px 0 0;
}

.kinetic-band {
  overflow: hidden;
}

.kinetic-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 18px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(5, 12, 6, 0.08);
}

.kinetic-track span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 16, 9, 0.05);
  white-space: nowrap;
  font-weight: 700;
}

.product-window {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: center;
  padding: 96px 0 0;
}

.product-window-copy h2,
.portal-card h2,
.pricing-hero-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.browser-shell {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  background: #09100a;
  box-shadow: 0 40px 120px rgba(2, 9, 3, 0.22);
}

.browser-topbar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
}

.browser-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.browser-image {
  display: block;
  width: 100%;
  height: auto;
}

.route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.route-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.route-timeline-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(5, 12, 6, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.route-timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 222, 105, 0.36);
}

.route-card {
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 200, 92, 0.34);
}

.route-step {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.product-shell {
  padding-bottom: 90px;
}

.architecture-zone,
.access-shell {
  padding-bottom: 90px;
}

.architecture-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 30px;
}

.architecture-panel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.architecture-ladder {
  display: grid;
  gap: 14px;
}

.product-grid-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.product-panel {
  padding: 32px;
}

.stack-list,
.timeline-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.stack-card-top,
.timeline-head,
.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-stage {
  min-height: 560px;
}

.product-card {
  position: absolute;
  backdrop-filter: blur(16px);
}

.product-card-primary {
  top: 52px;
  left: 40px;
  width: min(350px, calc(100% - 80px));
}

.product-card-secondary {
  top: 256px;
  right: 34px;
  width: 240px;
}

.product-card-tertiary {
  bottom: 34px;
  left: 64px;
  width: 260px;
}

.journey-shell,
.pricing-main {
  padding-bottom: 90px;
}

.access-hero {
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 92px 0 46px;
}

.access-panel {
  padding: 34px;
}

.access-panel h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.access-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.access-chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.access-flow {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  overflow: hidden;
}

.access-flow-line {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 56px;
  width: 2px;
  background: linear-gradient(180deg, rgba(39, 222, 105, 0.9), rgba(39, 222, 105, 0.1));
}

.access-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}

.access-step strong {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #27de69 0%, #11863a 100%);
  color: #ffffff;
}

.access-step h3 {
  margin-bottom: 8px;
}

.access-step-live {
  border-color: rgba(39, 222, 105, 0.34);
}

.access-note {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.access-gallery {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
  padding-top: 36px;
}

.portal-card {
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.portal-card-dark {
  color: #eefaf0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #071108 0%, #102116 100%);
}

.portal-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.portal-card-light {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(8, 16, 9, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.portal-metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(8, 16, 9, 0.05);
}

.portal-metric strong,
.pricing-pillars strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-size: 1.25rem;
}

.journey-grid {
  grid-template-columns: 0.96fr 1.04fr;
  padding-top: 70px;
}

.journey-column,
.pricing-column {
  display: grid;
  gap: 22px;
}

.journey-card-header,
.pricing-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.journey-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(30, 200, 92, 0.28), transparent 28%),
    linear-gradient(160deg, #071108 0%, #112116 100%);
  box-shadow: var(--shadow);
}

.journey-visual::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 200, 92, 0.46), rgba(30, 200, 92, 0) 70%);
  filter: blur(8px);
}

.journey-visual-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  height: 100%;
  padding: 28px;
  color: #effaf1;
}

.journey-visual-overlay h2 {
  margin: 6px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.journey-visual-overlay p {
  color: rgba(255, 255, 255, 0.78);
}

.journey-step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #27de69 0%, #11863a 100%);
  font-weight: 800;
}

.mock-form {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-weight: 700;
}

.field-group input,
.field-group select {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(8, 16, 9, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-chip-row,
.benefit-list,
.formula-list,
.service-bullet-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip-row span,
.benefit-list span,
.formula-list span,
.service-bullet-list span,
.faq-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 16, 9, 0.05);
  font-size: 0.88rem;
}

.journey-mini-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.journey-mini-timeline div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 16, 9, 0.04);
  text-align: center;
}

.journey-mini-timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
}

.theme-dark-page .service-chip-row span,
.theme-dark-page .benefit-list span,
.theme-dark-page .formula-list span,
.theme-dark-page .service-bullet-list span,
.theme-dark-page .faq-list span {
  background: rgba(255, 255, 255, 0.06);
}

.pricing-main .page-hero {
  padding-bottom: 18px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.pricing-shell {
  padding: 30px;
}

.pricing-hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(30, 200, 92, 0.08));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.pricing-pillars {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.pricing-pillars div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-pillars span {
  color: rgba(255, 255, 255, 0.72);
}

.summary-card {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.seat-control {
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.seat-control-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.seat-control-top h3 {
  font-size: 1.4rem;
}

.seat-counter {
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-size: 1.3rem;
}

.seat-range {
  width: 100%;
  margin-top: 18px;
  accent-color: #27de69;
}

.seat-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.summary-label {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-canvas {
  position: relative;
  overflow: hidden;
}

.pricing-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(30, 200, 92, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.formula-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card.active-service {
  border-color: rgba(39, 222, 105, 0.4);
  box-shadow: 0 28px 70px rgba(30, 200, 92, 0.12);
}

.service-card {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.service-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.service-base {
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-size: 2rem;
}

.service-note {
  color: rgba(255, 255, 255, 0.78);
}

.faq-grid,
.kpi-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kpi-card {
  min-height: 180px;
}

.timeline-zone {
  padding-bottom: 90px;
}

.footer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 60px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-panel p {
  max-width: 420px;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.timeline-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-dark-page .timeline-card strong {
  color: #82f5ac;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-cinematic,
  .product-window,
  .access-hero,
  .product-grid-layout,
  .journey-grid,
  .pricing-layout,
  .feature-spotlight,
  .architecture-panel,
  .access-gallery {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .faq-grid,
  .kpi-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .formula-grid,
  .service-grid,
  .value-grid,
  .strip-panel,
  .statement-panel,
  .prestige-ribbon,
  .experience-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .product-stage {
    min-height: 560px;
  }

  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar {
    top: 10px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: min(300px, 88vw);
    padding: 18px;
    border-radius: 24px;
    background: inherit;
    border: 1px solid currentColor;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .topbar-solid .nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(8, 16, 9, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-copy-overlay {
    top: 18px;
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .immersive-stage {
    min-height: 920px;
  }

  .hero-route-dock {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .dock-mini-grid {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .route-timeline,
  .faq-grid,
  .kpi-grid,
  .timeline-grid,
  .service-grid,
  .value-grid,
  .inline-fields,
  .journey-mini-timeline {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .product-stage {
    min-height: 620px;
  }

  .stage-panel-main,
  .product-card-primary {
    left: 20px;
    width: calc(100% - 40px);
  }

  .stage-float-chat,
  .stage-float-ai,
  .product-card-secondary,
  .product-card-tertiary {
    right: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .stage-float-chat {
    top: 274px;
  }

  .stage-float-seats {
    left: 20px;
    bottom: 146px;
    width: calc(100% - 40px);
  }

  .stage-float-ai {
    bottom: 34px;
  }

  .product-card-secondary {
    top: 274px;
  }

  .product-card-tertiary {
    bottom: 34px;
  }

  .access-flow-line {
    left: 42px;
  }

  .access-step {
    grid-template-columns: 46px 1fr;
  }

  .footer-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 100vw - 24px);
  }

  .hero-cinematic,
  .page-hero {
    padding-top: 72px;
  }

  .stage-panel,
  .stage-float,
  .strip-panel,
  .feature-spotlight,
  .value-card,
  .route-card,
  .statement-panel,
  .product-panel,
  .stack-card,
  .journey-card,
  .pricing-shell,
  .formula-card,
  .service-card,
  .faq-card,
  .kpi-card,
  .timeline-card {
    padding: 22px;
  }
}

/* ============================================================
   CINEMATIC LAYER — motion, glow, new sections (white/black/green)
   ============================================================ */

/* --- Reduced motion safety --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Clean up washed-out surfaces to crisp white --- */
.prestige-ribbon,
.experience-panel,
.route-timeline-card {
  background: #ffffff;
}

.brand-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--green-soft) 100%);
}

/* --- Header polish --- */
.topbar-solid {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 14, 10, 0.06);
  box-shadow: 0 16px 40px rgba(10, 16, 10, 0.08);
}
.brand-logo {
  width: clamp(120px, 13vw, 168px);
  transition: transform 0.3s var(--ease-spring);
}
.brand:hover .brand-logo {
  transform: scale(1.04);
}
.nav { gap: 26px; }
/* animated underline on text nav links */
.nav a:not(.button) {
  position: relative;
  padding: 4px 2px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.32s var(--ease-out);
}
.nav a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.topbar-solid .nav a:not(.button):hover { color: var(--ink); }
.topbar-dark .nav a:not(.button):hover { color: #ffffff; }

/* --- Topbar shrink on scroll --- */
.topbar {
  transition: padding 0.3s var(--ease-out), background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.topbar-scrolled.topbar-solid {
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(10, 16, 10, 0.1);
}
.topbar-scrolled.topbar-dark {
  padding: 9px 16px;
  background: rgba(8, 12, 8, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #27de69, #11863a);
  box-shadow: 0 0 16px var(--green-glow);
  z-index: 100;
  pointer-events: none;
}

/* --- Custom cursor glow (desktop only, injected by JS) --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 222, 105, 0.5), rgba(39, 222, 105, 0) 70%);
  pointer-events: none;
  z-index: 90;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: multiply;
  will-change: transform;
}
.theme-dark-page .cursor-glow {
  mix-blend-mode: screen;
}
.cursor-glow.is-hot {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, rgba(39, 222, 105, 0.32), rgba(39, 222, 105, 0) 70%);
}
@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* --- Page intro fade --- */
body {
  animation: pageIn 0.8s var(--ease-out) both;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Keyframe library --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatySlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(39, 222, 105, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(39, 222, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 222, 105, 0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
@keyframes flowDash {
  to { stroke-dashoffset: -28; }
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 26px) scale(1.12); }
}

/* --- Reveal system (JS adds .in-view) --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="blur"] { filter: blur(14px); }
[data-reveal].in-view {
  opacity: 1;
  transform: none;
  filter: none;
}
/* staggered children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-stagger].in-view > * {
  opacity: 1;
  transform: none;
}
[data-stagger].in-view > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: 0.13s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: 0.21s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: 0.29s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: 0.37s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: 0.45s; }
[data-stagger].in-view > *:nth-child(7) { transition-delay: 0.53s; }
[data-stagger].in-view > *:nth-child(8) { transition-delay: 0.61s; }

/* Upgrade the legacy .reveal to feel cinematic too */
.reveal {
  transform: translateY(40px) scale(0.985);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  transform: none;
}

/* --- Hero headline word reveal (clip-free, no descender cut) --- */
.word-reveal .word {
  display: inline-block;
}
.word-reveal .word > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: wordUp 0.7s var(--ease-out) forwards;
}
@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Gradient text accent --- */
.grad-text {
  background: linear-gradient(120deg, #27de69, #0a8f44 55%, #0a0d0a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.theme-dark-page .grad-text {
  background: linear-gradient(120deg, #6bf29b, #27de69);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Buttons: shine sweep + glow --- */
.button {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-out), border-color 0.2s;
}
.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease-out);
}
.button-primary:hover::after {
  left: 140%;
}
.button-primary:hover {
  box-shadow: 0 26px 56px rgba(30, 200, 92, 0.42);
}
.button-primary:active,
.button-secondary:active,
.button-ghost:active {
  transform: translateY(0) scale(0.97);
}

/* --- Card hover lift + glow for grids --- */
.value-card,
.kpi-card,
.timeline-card,
.stack-card,
.formula-card,
.faq-card,
.brand-card,
.layer-card,
.portal-metric,
.prestige-metrics div,
.dock-mini-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s;
}
.value-card:hover,
.kpi-card:hover,
.timeline-card:hover,
.stack-card:hover,
.formula-card:hover,
.faq-card:hover,
.brand-card:hover,
.layer-card:hover,
.portal-metric:hover,
.prestige-metrics div:hover,
.dock-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 200, 92, 0.4);
  box-shadow: 0 30px 70px rgba(30, 200, 92, 0.14);
}

/* glowing top edge that appears on hover */
.value-card,
.kpi-card,
.timeline-card,
.service-card {
  position: relative;
  overflow: hidden;
}
.value-card::before,
.kpi-card::before,
.timeline-card::before,
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27de69, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.value-card:hover::before,
.kpi-card:hover::before,
.timeline-card:hover::before,
.service-card:hover::before {
  transform: translateX(100%);
}

/* --- Working marquee (kinetic band) --- */
.kinetic-band { mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.kinetic-track {
  width: max-content;
  padding: 8px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: marquee 26s linear infinite;
}
.kinetic-band:hover .kinetic-track {
  animation-play-state: paused;
}
.kinetic-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kinetic-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

/* --- Hero orb drift --- */
.hero-orb,
.product-orb {
  animation: orbDrift 12s ease-in-out infinite;
}

/* --- Hero floating chips --- */
.stage-float-chat,
.stage-float-seats,
.stage-float-ai {
  animation: floaty 6s ease-in-out infinite;
}
.stage-float-seats { animation-delay: -2s; }
.stage-float-ai { animation-delay: -4s; }

/* dark glass for hero floats over dark stage */
.stage-float {
  background: rgba(10, 14, 10, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #f2faf4;
  backdrop-filter: blur(18px);
}
.stage-float p { color: rgba(255, 255, 255, 0.78) !important; }

/* live status dot pulse */
.dot-live {
  animation: pulseRing 2.4s ease-out infinite;
}

/* ============================================================
   NEW SECTIONS
   ============================================================ */

/* --- Stats / counters band --- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 200, 92, 0.2), transparent 45%),
    linear-gradient(160deg, #0a0d0a 0%, #0d130d 100%);
  color: #f2faf4;
  box-shadow: 0 40px 100px rgba(8, 14, 8, 0.32);
}
.stat-cell {
  display: grid;
  gap: 6px;
  text-align: left;
  position: relative;
  padding-left: 18px;
}
.stat-cell + .stat-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-value {
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #ffffff, #7af0a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

/* --- How It Works flow --- */
.flow-zone { padding: 110px 0 0; }
.flow-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.flow-node {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 26px 18px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  margin: 0 9px;
  box-shadow: 0 16px 40px rgba(10, 16, 10, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.flow-node.flow-on {
  transform: translateY(-8px);
  border-color: rgba(30, 200, 92, 0.5);
  box-shadow: 0 28px 60px rgba(30, 200, 92, 0.2);
}
.flow-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease-spring), background 0.3s, color 0.3s;
}
.flow-node.flow-on .flow-icon {
  background: var(--grad-green);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 12px 26px rgba(30, 200, 92, 0.4);
}
.flow-node strong {
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-size: 1.05rem;
}
.flow-node span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}
.flow-node::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 800;
  font-size: 1.3rem;
  opacity: 0.5;
  z-index: 2;
}
.flow-node:last-child::after { display: none; }

/* --- Industry solutions grid --- */
.industry-zone { padding: 110px 0 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.industry-card {
  position: relative;
  padding: 26px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 200, 92, 0.4);
  box-shadow: var(--shadow-green);
}
.industry-card .ind-emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}
.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.industry-card p { color: var(--text-soft); font-size: 0.86rem; line-height: 1.55; }
.industry-card .soon-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
}

/* --- Testimonials --- */
.testi-zone { padding: 110px 0 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.testi-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(10, 16, 10, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(30, 200, 92, 0.12);
}
.testi-stars { color: #27de69; letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testi-card blockquote {
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  background: var(--grad-green);
}
.testi-person strong { display: block; font-size: 0.96rem; }
.testi-person span { color: var(--text-soft); font-size: 0.85rem; }

/* --- Dark CTA band --- */
.cta-band {
  position: relative;
  overflow: hidden;
  margin-top: 110px;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: #f2faf4;
  background:
    radial-gradient(circle at 20% 0%, rgba(30, 200, 92, 0.3), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(30, 200, 92, 0.18), transparent 40%),
    linear-gradient(160deg, #070a07 0%, #0d130d 100%);
  box-shadow: 0 50px 120px rgba(8, 14, 8, 0.4);
}
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  max-width: 16ch;
  margin: 0 auto 14px;
}
.cta-band p {
  max-width: 52ch;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78) !important;
}
.cta-band .hero-actions { justify-content: center; }
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}

/* --- Section heading helper --- */
.section-head-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.section-head-center h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section-head-center .eyebrow { justify-content: center; }
.section-head-center p { margin-top: 14px; }

/* Marquee logos row */
.logo-strip {
  display: flex;
  gap: 54px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
  opacity: 0.7;
}
.logo-strip span {
  font-family: "Plus Jakarta Sans", "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text-mute);
  white-space: nowrap;
}
.logo-band {
  overflow: hidden;
  margin-top: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

/* --- Access page: premium dark metric cards (replaces washed grey) --- */
.theme-dark-page .portal-card-light {
  background: linear-gradient(160deg, rgba(22, 32, 23, 0.7), rgba(11, 17, 11, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.theme-dark-page .portal-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.35s var(--ease-out), border-color 0.3s, background 0.3s;
}
.theme-dark-page .portal-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 222, 105, 0.4);
  background: rgba(39, 222, 105, 0.07);
}
.theme-dark-page .portal-metric strong {
  color: var(--green-bright);
  font-size: 1.5rem;
}
.theme-dark-page .portal-metric span {
  color: rgba(255, 255, 255, 0.66);
}

/* --- Feature cards grid (Key Features) --- */
.features-zone { padding: 110px 0 0; }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.feature-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(10, 16, 10, 0.05);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(30, 200, 92, 0.4);
  box-shadow: 0 32px 70px rgba(30, 200, 92, 0.14);
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(30, 200, 92, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover::after { opacity: 1; }
.feat-ico {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-deep);
  transition: transform 0.4s var(--ease-spring), background 0.3s, color 0.3s;
}
.feature-card:hover .feat-ico {
  background: var(--grad-green);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.feat-ico svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.12rem; letter-spacing: -0.02em; }
.feature-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }

@media (max-width: 1100px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-cards { grid-template-columns: 1fr; }
}

/* --- Footer polish (works on light + dark pages) --- */
.footer-panel {
  margin-top: 48px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.footer-links a {
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green-deep);
}
.theme-dark-page .footer-panel {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.theme-dark-page .footer-panel p {
  color: rgba(255, 255, 255, 0.58);
}
.theme-dark-page .footer-links a {
  color: rgba(255, 255, 255, 0.72);
}
.theme-dark-page .footer-links a:hover {
  color: #ffffff;
}

/* --- Legal / document pages --- */
.legal-hero {
  padding: 120px 0 28px;
}
.legal-hero .eyebrow { color: var(--green-deep); }
.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.legal-updated {
  margin-top: 16px;
  color: var(--text-mute);
  font-size: 0.92rem;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 52px;
  padding: 36px 0 100px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(10, 16, 10, 0.05);
}
.legal-toc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.legal-toc a {
  color: var(--text-soft);
  padding: 5px 0;
  border-radius: 6px;
  transition: color 0.2s, padding-left 0.2s;
}
.legal-toc a:hover {
  color: var(--green-deep);
  padding-left: 6px;
}
.legal-content {
  max-width: 760px;
}
.legal-content > section {
  padding-top: 32px;
  scroll-margin-top: 100px;
}
.legal-content > section:first-child { padding-top: 0; }
.legal-content h2 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 1.08rem;
  margin: 20px 0 8px;
}
.legal-content p {
  color: var(--text-soft);
  line-height: 1.85;
  margin: 0 0 14px;
}
.legal-content ul {
  color: var(--text-soft);
  line-height: 1.8;
  padding-left: 20px;
  margin: 0 0 16px;
}
.legal-content li { margin-bottom: 7px; }
.legal-content a:not(.button) {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-note {
  margin: 10px 0 0;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(30, 200, 92, 0.28);
  background: var(--green-soft);
  color: #0c3b22;
  font-size: 0.9rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 18px; }
  .legal-toc { position: static; }
}

/* --- Magnetic wrap helper --- */
[data-magnetic] {
  transition: transform 0.3s var(--ease-out);
  will-change: transform;
}

/* --- Tilt smoothing --- */
[data-tilt] {
  transition: transform 0.2s var(--ease-out);
  transform-style: preserve-3d;
}

/* --- Responsive for new sections --- */
@media (max-width: 1100px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .flow-track { grid-template-columns: 1fr; gap: 14px; }
  .flow-node { margin: 0; }
  .flow-node::after {
    content: "↓";
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%);
  }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats-band { grid-template-columns: 1fr; padding: 28px; }
  .stat-cell { padding-left: 0; }
  .stat-cell + .stat-cell::before { display: none; }
  .industry-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
}
