/* Ovaio — Glass landing page (matches dashboard / extension palette) */

:root {
  --green-deep: #2D6B4A;
  --green-mid: #3A8F62;
  --green-light: #5CB87E;
  --green-pale: #E8F5EE;
  --green-muted: #C5E6D4;
  --rose: #D4537E;
  --rose-pale: #FBEAF0;
  --sage: #2F9B6A;
  --amber: #D4920A;
  --amber-pale: #FAEEDA;
  --bg-deep: #FFFFFF;
  --bg-mid: #F7FAF8;
  --text: #1A2E24;
  --text-muted: #4F6359;
  --white: #FFFFFF;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 20px rgba(26, 46, 36, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 46, 36, 0.1);
  --shadow-lg: 0 24px 64px rgba(26, 46, 36, 0.12);
  --shadow-glow: 0 0 80px rgba(58, 143, 98, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-strong: rgba(255, 255, 255, 0.94);
  --glass-border: #E2EBE6;
  --glass-border-hover: #C5E6D4;
  --glass-shadow: 0 4px 24px rgba(26, 46, 36, 0.08);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --blur: 20px;
  --scene-orb-1: rgba(58, 143, 98, 0.14);
  --scene-orb-2: rgba(92, 184, 126, 0.12);
  --scene-orb-3: rgba(212, 83, 126, 0.08);
  --scene-mesh-1: rgba(58, 143, 98, 0.12);
  --scene-mesh-2: rgba(92, 184, 126, 0.1);
  --scene-mesh-3: rgba(45, 107, 74, 0.08);
  --scene-base: linear-gradient(165deg, #FFFFFF 0%, #F7FAF8 45%, #EEF6F1 100%);
  --scene-noise-opacity: 0.18;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Reusable glass surfaces — match dashboard (no heavy saturate; reduces scroll flicker) */
.glass-surface,
.stats,
.light,
.step,
.bento-card,
.platform-card,
.trust-card,
.faq details,
.browser-frame,
.hero-copy-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

.glass-surface-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Background (matches dashboard glass-scene) ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, var(--scene-mesh-1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, var(--scene-mesh-2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 50% 100%, var(--scene-mesh-3) 0%, transparent 55%),
    var(--scene-base);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  will-change: auto;
}

.orb-1 {
  width: 420px; height: 420px;
  background: var(--scene-orb-1);
  top: -8%; left: -5%;
}

.orb-2 {
  width: 360px; height: 360px;
  background: var(--scene-orb-2);
  top: 40%; right: -8%;
}

.orb-3 {
  width: 280px; height: 280px;
  background: var(--scene-orb-3);
  bottom: -5%; left: 30%;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: var(--scene-noise-opacity);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Reveal animations (progressive; no flash when JS disabled) ── */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

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

.reveal-delay  { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--glass-bg-strong);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(26, 46, 36, 0.1));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--text); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green-mid);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green-mid) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 16px rgba(58, 143, 98, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--green-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(58, 143, 98, 0.32);
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
}

.hero-copy-panel {
  padding: 36px 40px;
  border-radius: var(--radius-xl);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-deep);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: var(--glass-inset);
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(47, 155, 106, 0.25);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-mid);
  font-weight: 500;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
}

/* ── Signup ── */
.signup { max-width: 480px; }

.signup-glass .signup-field {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-glass .signup-field:focus-within {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(58, 143, 98, 0.12);
}

.signup-input {
  flex: 1;
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

.signup-input::placeholder { color: var(--text-muted); }
.signup-input:focus { outline: none; }

.signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: var(--green-deep);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(58, 143, 98, 0.28);
}

.signup-btn:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 143, 98, 0.32);
}

.signup-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.signup-btn svg { transition: transform 0.2s ease; }
.signup-btn:hover svg { transform: translateX(2px); }

.signup-btn-light {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.signup-btn-light:hover { background: var(--bg-mid); }

.signup-center { margin: 0 auto; max-width: 440px; }

.signup-msg {
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
  font-weight: 500;
}

.signup-msg.ok { color: var(--sage); }
.signup-msg.err { color: var(--rose); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg { color: var(--green-mid); flex-shrink: 0; }

/* ── Hero 3D scene ── */
.hero-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  perspective: 1400px;
  perspective-origin: 50% 42%;
}

.hero-scene--static .hero-scene__stage {
  transform: rotateX(4deg) rotateY(-6deg) !important;
}

.hero-scene__glow {
  position: absolute;
  width: 72%;
  height: 72%;
  left: 14%;
  top: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 143, 98, 0.22) 0%, rgba(92, 184, 126, 0.08) 45%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.hero-scene__stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 420px;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-8deg);
  will-change: transform;
}

.hero-scene__ring {
  position: absolute;
  left: 50%;
  top: 46%;
  border-radius: 50%;
  border: 1px solid rgba(58, 143, 98, 0.22);
  transform-style: preserve-3d;
  pointer-events: none;
}

.hero-scene__ring--1 {
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  transform: rotateX(68deg) rotateZ(0deg);
  animation: ring-spin 24s linear infinite;
  box-shadow: 0 0 40px rgba(58, 143, 98, 0.08);
}

.hero-scene__ring--2 {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border-color: rgba(212, 83, 126, 0.18);
  transform: rotateX(72deg) rotateZ(60deg);
  animation: ring-spin-reverse 32s linear infinite;
}

.hero-scene__ring--3 {
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-color: rgba(92, 184, 126, 0.25);
  transform: rotateX(64deg) rotateZ(-30deg);
  animation: ring-spin 18s linear infinite;
}

@keyframes ring-spin {
  from { transform: rotateX(68deg) rotateZ(0deg); }
  to   { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes ring-spin-reverse {
  from { transform: rotateX(72deg) rotateZ(60deg); }
  to   { transform: rotateX(72deg) rotateZ(-300deg); }
}

.hero-scene__ova {
  position: absolute;
  left: 50%;
  top: 18%;
  width: 100px;
  height: 130px;
  margin-left: -50px;
  transform: translateZ(-40px) rotateY(15deg);
  transform-style: preserve-3d;
  pointer-events: none;
  animation: ova-float 7s ease-in-out infinite;
}

@keyframes ova-float {
  0%, 100% { transform: translateZ(-40px) rotateY(15deg) translateY(0); }
  50%       { transform: translateZ(-20px) rotateY(15deg) translateY(-12px); }
}

.hero-scene__ova-shell {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(232, 245, 238, 0.9) 55%, rgba(197, 230, 212, 0.75) 100%);
  border: 2px solid rgba(58, 143, 98, 0.35);
  box-shadow:
    inset 0 -8px 20px rgba(58, 143, 98, 0.12),
    0 16px 40px rgba(58, 143, 98, 0.18);
}

.hero-scene__ova-dot {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.hero-scene__ova-dot--1 {
  width: 18px; height: 18px;
  top: 22%; left: 42%;
  background: var(--rose);
  box-shadow: 0 0 16px rgba(212, 83, 126, 0.45);
  animation: dot-orbit 5s ease-in-out infinite;
}

.hero-scene__ova-dot--2 {
  width: 10px; height: 10px;
  top: 48%; left: 28%;
  background: var(--green-mid);
  animation: dot-orbit 6s ease-in-out infinite reverse;
}

.hero-scene__ova-dot--3 {
  width: 8px; height: 8px;
  top: 55%; left: 58%;
  background: var(--green-light);
  animation: dot-orbit 4.5s ease-in-out infinite 0.5s;
}

@keyframes dot-orbit {
  0%, 100% { transform: translate3d(0, 0, 12px); }
  50%       { transform: translate3d(6px, -8px, 24px); }
}

.hero-scene__float {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  font-size: 11px;
  font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
  transform-style: preserve-3d;
}

.hero-scene__float-icon { font-size: 1.25rem; line-height: 1; }
.hero-scene__float-label { font-size: 10px; color: var(--text-muted); font-weight: 500; }
.hero-scene__float-score {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}

.hero-scene__float--journal {
  left: -4%;
  top: 28%;
  transform: translateZ(70px) rotateY(18deg);
  animation: float-drift 6s ease-in-out infinite;
}

.hero-scene__float--cycle {
  right: -2%;
  top: 12%;
  transform: translateZ(50px) rotateY(-14deg);
  animation: float-drift 7s ease-in-out infinite 0.8s;
}

.hero-scene__float--score {
  right: 6%;
  bottom: 18%;
  transform: translateZ(90px) rotateY(-8deg);
  animation: float-drift 5.5s ease-in-out infinite 1.2s;
}

@keyframes float-drift {
  0%, 100% { transform: translateZ(70px) rotateY(18deg) translateY(0); }
  50%       { transform: translateZ(85px) rotateY(18deg) translateY(-10px); }
}

.hero-scene__float--cycle { animation-name: float-drift-cycle; }
@keyframes float-drift-cycle {
  0%, 100% { transform: translateZ(50px) rotateY(-14deg) translateY(0); }
  50%       { transform: translateZ(65px) rotateY(-14deg) translateY(-8px); }
}

.hero-scene__float--score { animation-name: float-drift-score; }
@keyframes float-drift-score {
  0%, 100% { transform: translateZ(90px) rotateY(-8deg) translateY(0); }
  50%       { transform: translateZ(105px) rotateY(-8deg) translateY(-6px); }
}

.hero-scene__device {
  position: relative;
  z-index: 2;
  transform: translateZ(100px) rotateY(-2deg);
  transform-style: preserve-3d;
}

.hero-scene__device .browser-frame {
  width: 100%;
  max-width: 400px;
  transform: none;
  box-shadow:
    var(--shadow-lg),
    var(--shadow-glow),
    0 40px 80px rgba(26, 46, 36, 0.15);
}

.hero-scene__device .float-chip-1 {
  transform: translateZ(40px) translateX(-20px);
  z-index: 3;
}

.hero-scene__device .float-chip-2 {
  transform: translateZ(55px) translateX(16px);
  z-index: 3;
}

/* ── Legacy hero visual (fallback) ── */
.hero-visual:not(.hero-scene) {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.browser-frame {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual:not(.hero-scene):hover .browser-frame {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow), var(--glass-inset);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--glass-border);
}

.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: 8px;
  font-size: 11px;
  color: var(--text-muted);
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

.browser-body { padding: 16px; }

.mock-card { position: relative; }

.mock-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--white);
  border: 1.5px solid var(--rose);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
  animation: badge-pop 0.6s var(--ease) 0.8s both;
}

@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.85) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.mock-badge-logo {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--green-deep);
  align-self: flex-start;
}

.mock-badge-score {
  font-family: var(--serif);
  line-height: 1;
  margin: 2px 0;
}

.score-num { font-size: 22px; font-weight: 700; color: var(--rose); }
.score-denom { font-size: 12px; color: var(--text-muted); }

.mock-badge-label {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}

.mock-recipe-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  padding-right: 80px;
}

.mock-ings {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mock-ings li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-mid);
  overflow: hidden;
  position: relative;
}

.ing-bar {
  width: 3px;
  border-radius: 2px;
  align-self: stretch;
  flex-shrink: 0;
}

.mock-ings li.red   .ing-bar { background: var(--rose); }
.mock-ings li.amber .ing-bar { background: var(--amber); }
.mock-ings li.green .ing-bar { background: var(--sage); }

.mock-ings li.red   { background: var(--rose-pale); }
.mock-ings li.amber { background: var(--amber-pale); }
.mock-ings li.green { background: var(--green-pale); }

.mock-ings li strong { display: block; font-weight: 600; }
.mock-ings li span { display: block; font-size: 11px; color: var(--text-muted); margin-top: 1px; }

.float-chip {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.float-chip-1 { top: 10%; left: -20px; color: var(--green-deep); }
.float-chip-2 { bottom: 15%; right: -24px; color: var(--sage); }

/* ── Stats ── */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.stats:hover {
  border-color: var(--glass-border-hover);
}

.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 8px 20px;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(45, 107, 74, 0.12);
  flex-shrink: 0;
}

/* ── Traffic lights ── */
.lights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.light {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.light:hover:not([data-tilt]) {
  transform: translateY(-4px);
}
.light[data-tilt]:hover,
.light:hover {
  box-shadow: var(--shadow-md), var(--glass-inset);
  border-color: var(--glass-border-hover);
}

.light-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.light strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.light p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.light-red   { border-top: 3px solid var(--rose); }
.light-amber { border-top: 3px solid var(--amber); }
.light-green { border-top: 3px solid var(--sage); }

/* ── Sites strip ── */
.sites-strip {
  text-align: center;
  padding: 40px 0 64px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 16px;
}

.sites-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sites-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.sites-logos span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.sites-logos span:hover { opacity: 1; color: var(--green-deep); }

/* ── E-E-A-T trust grid ── */
.section-trust {
  background: transparent;
  border-top: 1px solid var(--glass-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--glass-inset);
  border-color: var(--glass-border-hover);
}

.trust-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Sections ── */
.section { padding: 96px 0; }

.section-alt {
  background: linear-gradient(180deg, rgba(238, 237, 254, 0.35) 0%, transparent 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head-left { text-align: left; margin-bottom: 40px; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-eyebrow-light { color: rgba(255, 255, 255, 0.7); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.step:hover:not([data-tilt]) {
  transform: translateY(-6px);
}
.step[data-tilt]:hover,
.step:hover {
  box-shadow: var(--shadow-md), var(--glass-inset);
  border-color: var(--glass-border-hover);
}

.step:hover::before { transform: scaleX(1); }

.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-deep);
}

.step-icon svg { width: 22px; height: 22px; }

.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Bento grid ── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover:not([data-tilt]) {
  transform: translateY(-4px);
}
.bento-card[data-tilt]:hover,
.bento-card:hover {
  box-shadow: var(--shadow-md), var(--glass-inset);
  border-color: var(--glass-border-hover);
}

.bento-large { grid-column: span 2; }

.bento-wide { grid-column: span 2; }

.bento-icon { font-size: 28px; margin-bottom: 14px; }
.bento-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.bento-visual {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.mini-score {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  background: var(--green-pale);
  border: 1px solid rgba(29, 158, 117, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
}

.mini-score span { font-size: 22px; font-weight: 700; }

/* ── FAQ ── */
#faq .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.faq { display: flex; flex-direction: column; gap: 10px; }

.faq details {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq details[open] {
  box-shadow: var(--shadow-md), var(--glass-inset);
  border-color: var(--glass-border-hover);
}

.faq summary {
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  padding: 20px 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
  user-select: none;
}

.faq summary:hover { color: var(--green-deep); }

.faq summary::after {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%237F77DD' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  transition: transform 0.3s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 24px 20px;
}

/* ── CTA ── */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(45, 107, 74, 0.96) 0%, rgba(58, 143, 98, 0.94) 50%, rgba(47, 155, 106, 0.92) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta .signup-glass .signup-field {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
}

.cta .signup-input { color: #fff; }
.cta .signup-input::placeholder { color: rgba(255, 255, 255, 0.55); }
.cta .signup-msg.ok { color: #b8f5dc; }
.cta .signup-msg.err { color: #ffd0df; }

/* ── Pricing ── */
.section-pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(245, 250, 247, 0.9) 100%);
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.pricing-plans--home {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-plan {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 26, 20, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(14, 26, 20, 0.06);
}

.pricing-plan--pro {
  border-color: rgba(60, 52, 137, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(237, 234, 255, 0.75) 100%);
}

.pricing-plan__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0;
}

.pricing-plan__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.pricing-plan__price {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin: 4px 0 0;
  color: var(--text);
}

.pricing-plan__detail {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.pricing-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.pricing-plan__features--compact li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

.pricing-plan__features li {
  line-height: 1.5;
}

.pricing-plan__cta {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.pricing-plan__link {
  font-size: 13px;
  color: var(--brand);
  text-align: center;
}

.pricing-plan__browser-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.pricing-plan__note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.pricing-legal {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-legal a {
  color: var(--brand);
}

.pricing-page .pricing-plans {
  margin: 32px 0;
}

.pricing-page .pricing-plan__features li {
  margin-bottom: 10px;
}

/* ── Featured listings (before footer) ── */
.platform-listings-band {
  border-top: 1px solid rgba(14, 26, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 250, 247, 0.95) 100%);
}

.platform-listings-section {
  padding: 56px 0 48px;
}

.platform-listings-section__title {
  margin-top: 8px;
  margin-bottom: 8px;
}

.platform-listings-section__subtitle {
  max-width: 52ch;
  margin-bottom: 28px;
}

.listing-slider {
  position: relative;
  margin: 0 -8px;
}

.listing-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 8px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.listing-slider__slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  min-width: min(280px, 78vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  justify-content: flex-start;
}

.listing-embed-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.listing-embed-slot:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.listing-embed-slot__html {
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-embed-slot__html img {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  height: auto;
}

.listing-embed-slot__html iframe {
  max-width: 100%;
  border: 0;
}

/* ── Footer ── */
.footer {
  background: rgba(14, 26, 20, 0.92);
  color: #fff;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.footer .logo-wordmark {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--green-light); margin-top: 8px; font-size: 15px; }

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

.footer-links-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.footer-links-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal, .footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-scene { order: -1; min-height: 380px; }
  .hero-scene__stage { max-width: 340px; min-height: 360px; }
  .hero-scene__ring { display: none; }
  .hero-scene__ova { transform: translateZ(-20px) scale(0.85); top: 8%; }
  .hero-scene__float--journal { left: 0; top: 22%; transform: translateZ(40px); }
  .hero-scene__float--cycle { right: 0; top: 8%; transform: translateZ(30px); }
  .hero-scene__float--score { right: 4%; bottom: 22%; transform: translateZ(50px); }
  .hero-scene__device { transform: translateZ(60px); }
  .hero-scene__device .browser-frame { max-width: 340px; }
  .float-chip-1 { left: 0; }
  .float-chip-2 { right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .pricing-plans { grid-template-columns: 1fr; }
  #faq .container { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .stats { gap: 16px; }
  .stat { min-width: calc(50% - 8px); }
}

@media (max-width: 720px) {
  :root { --nav-h: 72px; }
  .logo-img { height: 40px; max-width: 180px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--glass-bg-strong);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 28px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }

  .nav-toggle { display: flex; }
  .lights { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .signup-glass .signup-field { flex-direction: column; border-radius: var(--radius-md); }
  .signup-btn { justify-content: center; width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── Stats 3D ── */
.stats-3d {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.15s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-scene__stage { transform: none !important; }
  .hero-scene__ring,
  .hero-scene__ova,
  .hero-scene__float { animation: none !important; }
  .stats-3d { transform: none !important; }
}

/* ── Platform launch (2026) ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.hero-ctas-center { justify-content: center; }

.browser-install-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0 8px;
}

.browser-install-row--hero { margin-top: 8px; margin-bottom: 4px; }

.browser-install-row--center { justify-content: center; }

.browser-install-row--compact { margin: 0; }

.browser-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.btn-browser {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border, rgba(26, 23, 48, 0.12));
  background: #fff;
  color: var(--text, #1a1730);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(26, 23, 48, 0.06));
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-browser:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md, 0 8px 24px rgba(26, 23, 48, 0.1));
}

.btn-browser--chrome:hover { border-color: rgba(66, 133, 244, 0.35); }

.btn-browser--firefox:hover { border-color: rgba(255, 113, 57, 0.45); }

.btn-browser--sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-browser--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow: none;
}

.btn-browser--on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.browser-install-row--light .btn-browser--on-dark .browser-icon {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-hero:hover { transform: translateY(-1px); }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff !important;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus-visible {
  color: #fff !important;
}

.btn-hero-ghost {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--green-deep) !important;
  box-shadow: var(--glass-inset);
}

.btn-hero-ghost:hover,
.btn-hero-ghost:focus-visible {
  color: var(--green-deep) !important;
  border-color: var(--green-mid);
}

.btn-hero-light {
  background: #fff;
  color: var(--green-deep) !important;
}

.btn-hero-light:hover,
.btn-hero-light:focus-visible {
  color: var(--green-deep) !important;
}

.btn-hero-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.btn-hero-ghost-light:hover,
.btn-hero-ghost-light:focus-visible {
  color: #fff !important;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link-muted {
  color: var(--text-muted) !important;
  font-weight: 500 !important;
}

.section-lead {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.platform-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

.platform-card:hover:not([data-tilt]) {
  transform: translateY(-3px);
}
.platform-card[data-tilt]:hover,
.platform-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-md), var(--glass-inset);
}

.platform-icon { font-size: 28px; display: block; margin-bottom: 12px; }

.platform-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}

.platform-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.platform-cta {
  text-align: center;
  margin-top: 40px;
}

.platform-cta-note {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.platform-cta-note a {
  color: var(--green-mid);
  font-weight: 600;
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-copy-panel { padding: 28px 24px; }
  .btn-hero { width: 100%; }
}

/* Dashboard dark theme must not wash out marketing CTAs */
[data-theme='dark'] .marketing-site {
  --bg-deep: #FFFFFF;
  --bg-mid: #F7FAF8;
  --text: #1A2E24;
  --text-muted: #4F6359;
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-strong: rgba(255, 255, 255, 0.94);
  --glass-border: #E2EBE6;
  color: #1A2E24;
}

.marketing-site a.btn-hero,
.marketing-site button.btn-hero {
  text-decoration: none;
}

.marketing-site .btn-hero-primary,
.marketing-site .btn-hero-primary:hover,
.marketing-site .btn-hero-primary:focus-visible,
.marketing-site .nav-cta,
.marketing-site .nav-cta:hover,
.marketing-site .btn-hero-ghost-light,
.marketing-site .btn-hero-ghost-light:hover {
  color: #fff !important;
}

.marketing-site .btn-hero-ghost-light:hover {
  color: #fff !important;
}

.marketing-site .seo-cta .btn-hero-primary,
.marketing-site .seo-cta .btn-hero-primary:hover,
.marketing-site .pricing-plan .btn-hero-primary,
.marketing-site .pricing-plan .btn-hero-primary:hover,
.marketing-site .page-wrap .btn-hero-primary,
.marketing-site .page-wrap .btn-hero-primary:hover,
.marketing-site button.btn-hero-primary,
.marketing-site button.btn-hero-primary:hover {
  color: #fff !important;
}
