/* ================================================================
   EOMA Landing — branded
   Brand language drawn directly from the eoma design system:
   warm paper bg, midnight-navy ink, Animo display wordmark,
   FinalSix headings, Poppins body, multi-color accent palette
   anchored by the hexagonal logomark.
   ================================================================ */

@import url("/landing/design-system/colors_and_type.css");

:root {
  /* Page tokens — re-mapped to brand palette */
  --page-bg: var(--eoma-paper); /* warm off-white */
  --page-bg-2: var(--eoma-paper-2); /* slightly cooler card tint */
  --page-fg: var(--eoma-midnight-navy); /* ink */
  --muted-1: rgba(22, 30, 51, 0.42);
  --muted-2: rgba(22, 30, 51, 0.62);
  --hairline: rgba(22, 30, 51, 0.1);
  --hairline-strong: rgba(22, 30, 51, 0.22);

  /* Accent system — multi-hue per the brand */
  --accent: var(--eoma-indigo-blue); /* navigational accent */
  --accent-deep: #2f44a0;
  --accent-soft: rgba(83, 108, 189, 0.1);

  --hue-coral: var(--eoma-coral-pink); /* #F04E4E */
  --hue-sky: var(--eoma-sky-blue); /* #68B4E6 */
  --hue-yellow: var(--eoma-sun-yellow); /* #FDDA2F */
  --hue-mint: var(--eoma-ocean-mint); /* #65CAA5 */
  --hue-indigo: var(--eoma-indigo-blue); /* #536CBD */
  --hue-salmon: var(--eoma-soft-salmon); /* #F06E5A */

  --ink: var(--eoma-midnight-navy);
  --paper: var(--eoma-paper);

  --section-clamp: clamp(40px, 5.4vw, 84px);
  --hero-clamp: clamp(48px, 7.4vw, 120px);
  --kinetic-clamp: clamp(40px, 6.2vw, 96px);

  --max-w: 1200px;
  --gutter-d: 64px;
  --gutter-m: 24px;
  --gutter: clamp(24px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: var(--page-bg);
  color: var(--page-fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ------------------------------------------------------------------
   Atoms
   ------------------------------------------------------------------ */

/* Kicker — uppercase Poppins with brand tracking */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.eyebrow.frost {
  background: rgba(253, 253, 254, 0.65);
  border-color: rgba(22, 30, 51, 0.16);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hue-coral);
}
.eyebrow.dot-mint .dot {
  background: var(--hue-mint);
}
.eyebrow.dot-sky .dot {
  background: var(--hue-sky);
}
.eyebrow.dot-yellow .dot {
  background: var(--hue-yellow);
}
.eyebrow.dot-indigo .dot {
  background: var(--hue-indigo);
}
.eyebrow.dot-salmon .dot {
  background: var(--hue-salmon);
}

/* Buttons — sharp, ink-filled, brand-typographic */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px 0 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition:
    background 140ms var(--ease-standard),
    color 140ms var(--ease-standard),
    transform 140ms var(--ease-standard);
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-ghost {
  padding: 0 24px;
  border-color: var(--hairline-strong);
}
.btn-ghost:hover {
  background: rgba(22, 30, 51, 0.05);
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: #20294a;
}
.btn-primary .badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  background: var(--paper);
  overflow: hidden;
}
.btn-primary .badge img {
  width: 22px;
  height: auto;
}
.btn-lg {
  height: 64px;
  padding: 0 32px 0 10px;
  font-size: 15px;
}
.btn-lg .badge {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.btn-lg .badge img {
  width: 28px;
}

/* Two-tone headline using FinalSix */
.h-twotone {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--section-clamp);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.h-twotone .gray {
  color: var(--muted-1);
  font-weight: 500;
}
.h-twotone .navy {
  color: var(--ink);
}
.h-twotone .accent {
  color: var(--accent);
}
.h-twotone .coral {
  color: var(--hue-coral);
}
.h-twotone .mint {
  color: var(--hue-mint);
}
.h-twotone .sky {
  color: var(--hue-sky);
}
.h-twotone .yellow {
  color: var(--hue-yellow);
}
.h-twotone .salmon {
  color: var(--hue-salmon);
}
.h-twotone .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity 600ms var(--ease-decel),
    transform 600ms var(--ease-decel);
}
.in-view .h-twotone .word {
  opacity: 1;
  transform: translateY(0);
}
.h-twotone .word:nth-child(1) {
  transition-delay: 30ms;
}
.h-twotone .word:nth-child(2) {
  transition-delay: 90ms;
}
.h-twotone .word:nth-child(3) {
  transition-delay: 150ms;
}
.h-twotone .word:nth-child(4) {
  transition-delay: 210ms;
}
.h-twotone .word:nth-child(5) {
  transition-delay: 270ms;
}
.h-twotone .word:nth-child(6) {
  transition-delay: 330ms;
}
.h-twotone .word:nth-child(7) {
  transition-delay: 390ms;
}
.h-twotone .word:nth-child(8) {
  transition-delay: 450ms;
}
.h-twotone .word:nth-child(9) {
  transition-delay: 510ms;
}
.h-twotone .word:nth-child(10) {
  transition-delay: 570ms;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 600ms var(--ease-decel),
    transform 600ms var(--ease-decel);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Body type for marketing — Poppins, slightly tighter */
p {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted-2);
}

/* ------------------------------------------------------------------
   INTRO — chrome morph; multi-color radial flares
   ------------------------------------------------------------------ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.intro.is-done {
  animation: introOut 600ms var(--ease-standard) forwards;
}
@keyframes introOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.intro-mark {
  position: relative;
  width: 200px;
  aspect-ratio: 808 / 923;
}
.intro-mark img {
  width: 100%;
  height: auto;
  animation: introPulse 3s var(--ease-standard) forwards;
  transform-origin: 50% 50%;
}
@keyframes introPulse {
  0% {
    transform: scale(0.6) rotate(-30deg);
    opacity: 0;
    filter: blur(20px);
  }
  35% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: blur(0);
  }
  70% {
    transform: scale(1.05) rotate(8deg);
    opacity: 1;
  }
  100% {
    transform: scale(2.6) rotate(0deg);
    opacity: 0;
    filter: blur(24px);
  }
}
.intro-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: blobOut 1400ms var(--ease-decel) forwards;
  animation-delay: 1.6s;
}
.intro-blob.b1 {
  width: 520px;
  height: 520px;
  left: -160px;
  top: -160px;
  background: var(--hue-coral);
}
.intro-blob.b2 {
  width: 480px;
  height: 480px;
  right: -120px;
  top: 10%;
  background: var(--hue-sky);
}
.intro-blob.b3 {
  width: 460px;
  height: 460px;
  left: 35%;
  bottom: -180px;
  background: var(--hue-yellow);
}
.intro-blob.b4 {
  width: 420px;
  height: 420px;
  right: -100px;
  bottom: -120px;
  background: var(--hue-mint);
}
.intro-blob.b5 {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: 20%;
  background: var(--hue-salmon);
}
@keyframes blobOut {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  60% {
    opacity: 0.55;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

/* ------------------------------------------------------------------
   NAV
   ------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition:
    background 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    backdrop-filter 220ms var(--ease-standard);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(248, 249, 249, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--hairline);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
}
.nav-brand .mark {
  width: 28px;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(253, 253, 254, 0.7);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(10px);
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: background 140ms var(--ease-standard);
  letter-spacing: 0.01em;
}
.nav-link:hover {
  background: rgba(22, 30, 51, 0.05);
}
.nav-link.is-home::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hue-coral);
  display: inline-block;
}
.nav-link .caret {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switcher pill (EN / TR) — used by both landing and pricing nav */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  height: 38px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  background: var(--paper);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 140ms var(--ease-standard),
    color 140ms var(--ease-standard);
}
.lang-switch:hover {
  background: rgba(22, 30, 51, 0.05);
  color: var(--ink);
}
.lang-current {
  color: var(--ink);
  font-weight: 600;
}
.lang-sep {
  opacity: 0.4;
}
.lang-other {
  opacity: 0.6;
}

/* ------------------------------------------------------------------
   HERO — paper, hex grid backdrop, multi-color accent ribbon
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 160px var(--gutter) 0;
  background:
    radial-gradient(80% 60% at 50% 20%, rgba(83, 108, 189, 0.06), rgba(83, 108, 189, 0) 60%),
    var(--paper);
  overflow: hidden;
}
.hero::before {
  /* subtle hexagon grid wash */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(22, 30, 51, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-clouds {
  display: none;
}
.hero-tokens {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.token {
  position: absolute;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--paper);
  letter-spacing: -0.02em;
  animation: drift 14s ease-in-out infinite;
  /* hexagon shape */
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: 0 16px 40px rgba(22, 30, 51, 0.18);
}
.token.t1 {
  left: 5%;
  top: 26%;
  background: var(--hue-coral);
  animation-delay: 0s;
}
.token.t2 {
  right: 6%;
  top: 18%;
  background: var(--hue-sky);
  animation-delay: -3s;
  transform: scale(0.85);
}
.token.t3 {
  left: 12%;
  bottom: 8%;
  background: var(--hue-yellow);
  color: var(--ink);
  animation-delay: -7s;
  transform: scale(1.05);
}
.token.t4 {
  right: 9%;
  bottom: 14%;
  background: var(--hue-mint);
  color: var(--ink);
  animation-delay: -10s;
  transform: scale(0.92);
}
.token.t5 {
  left: 50%;
  bottom: 4%;
  background: var(--hue-salmon);
  animation-delay: -5s;
  transform: translateX(-50%) scale(0.78);
  opacity: 0.85;
}
@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 10px -14px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 64px;
}
.hero-inner .eyebrow.frost {
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display); /* <- Animo for the big moment */
  font-weight: 400;
  font-size: var(--hero-clamp);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 32px 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero-headline .l1 {
  display: block;
  color: var(--ink);
}
.hero-headline .l2 {
  display: block;
}
.hero-headline .l2 .accent {
  color: var(--hue-coral);
}
.hero-sub {
  margin: 0 auto 40px;
  max-width: 56ch;
  color: var(--muted-2);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  font-family: var(--font-body);
  font-weight: 400;
}
.hero-cta-row {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-also {
  margin-top: 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-kicker);
  text-transform: uppercase;
  color: var(--muted-1);
}

/* Dashboard mockup — real EOMA app shell */
.hero-dashboard {
  position: relative;
  z-index: 3;
  margin: 56px auto -200px auto;
  max-width: 1240px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow:
    0 40px 120px -20px rgba(22, 30, 51, 0.36),
    0 16px 40px -12px rgba(22, 30, 51, 0.22);
}
.mac-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--page-bg-2);
  border-bottom: 1px solid var(--hairline);
}
.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mac-dot.r {
  background: var(--hue-coral);
}
.mac-dot.y {
  background: var(--hue-yellow);
}
.mac-dot.g {
  background: var(--hue-mint);
}
.mac-url {
  margin-left: 14px;
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
}

.dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 640px;
  align-items: stretch;
}
.dash > * {
  min-height: 100%;
}

/* Sidebar */
.dash-side {
  background: var(--page-bg-2);
  border-right: 1px solid var(--hairline);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-side-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 14px;
}
.brand-avatar {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(83, 108, 189, 0.12);
  color: var(--hue-indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
}
.brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.dash-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
  cursor: default;
}
.dash-nav.active {
  background: rgba(22, 30, 51, 0.06);
  color: var(--ink);
}
.dash-nav .ic {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted-1);
}
.dash-nav.active .ic {
  color: var(--ink);
}
.dash-side-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Main */
.dash-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dash-topbar {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.dash-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.dash-r2d2 {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-1);
  font-size: 16px;
}
.dash-content {
  padding: 24px;
  overflow: hidden;
}

/* AeoV2Hero card */
.aeo-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
}
.aeo-left {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.aeo-stat-body {
  min-width: 0;
}
.aeo-kicker {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.aeo-pct-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.aeo-pct {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.aeo-pct-sym {
  font-size: 22px;
  color: var(--muted-1);
  font-weight: 400;
}
.aeo-status {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.aeo-status.ok {
  background: rgba(101, 202, 165, 0.2);
  color: #1f7e5f;
}
.aeo-status.warn {
  background: rgba(245, 202, 113, 0.25);
  color: #8a6418;
}
.aeo-status.bad {
  background: rgba(229, 109, 77, 0.18);
  color: #9c3d26;
}

.aeo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.aeo-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.aeo-stat .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(22, 30, 51, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-1);
  font-size: 13px;
  flex-shrink: 0;
}
.aeo-stat .l {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.aeo-stat .v {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.aeo-stat .s {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 2px;
}
.delta-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.delta-pill.ok {
  background: rgba(101, 202, 165, 0.18);
  color: #1f7e5f;
}
.delta-pill.bad {
  background: rgba(229, 109, 77, 0.15);
  color: #9c3d26;
}

/* Provider breakdown */
.aeo-right {
  background: rgba(83, 108, 189, 0.04);
  border-left: 1px solid var(--hairline);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prov-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prov-row {
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  align-items: center;
  gap: 10px;
}
.prov-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prov-glyph {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.prov-glyph .brand-icon {
  width: 12px;
  height: 12px;
}

/* Generic brand-icon image — used in PlatformLogo component */
.brand-icon {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex-shrink: 0;
}

/* Logo placement next to a competitor domain in HowItWorks tiles */
.ht-comp-row-logo,
.ht-vis-cmp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border-radius: 3px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  vertical-align: -3px;
  overflow: hidden;
}
.ht-comp-row-logo .brand-icon {
  width: 11px;
  height: 11px;
}
.ht-vis-cmp-logo .brand-icon {
  width: 10px;
  height: 10px;
}
.prov-track {
  position: relative;
  height: 6px;
  background: rgba(22, 30, 51, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.prov-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  transition: width 0.9s var(--ease-standard);
}
.prov-pct {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ------------------------------------------------------------------
   KINETIC TYPOGRAPHY — Animo display, brand color rotation
   ------------------------------------------------------------------ */
.kinetic {
  position: relative;
  background: var(--paper);
  padding: clamp(120px, 16vw, 240px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}
.kinetic-stage {
  position: relative;
  height: clamp(160px, 22vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kinetic-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--kinetic-clamp);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  filter: blur(20px);
  transform: translateX(180px);
  transition:
    opacity 500ms var(--ease-standard),
    filter 500ms var(--ease-standard),
    transform 700ms var(--ease-decel);
  text-wrap: balance;
  padding: 0 var(--gutter);
}
.kinetic-line.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.kinetic-line.is-out {
  opacity: 0;
  filter: blur(20px);
  transform: translateX(-180px);
}
.kinetic-line .accent {
  color: var(--hue-coral);
}
.kinetic-line:nth-of-type(2) .accent {
  color: var(--hue-sky);
}
.kinetic-line:nth-of-type(3) .accent {
  color: var(--hue-yellow);
}
.kinetic-line:nth-of-type(4) .accent {
  color: var(--hue-mint);
}

/* ------------------------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------------------------ */
.how {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(40px, 6vw, 80px);
  background: var(--paper);
}

.how-card-shell {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px);
  color: var(--paper);
  background:
    radial-gradient(110% 80% at 0% 0%, rgba(104, 180, 230, 0.28), rgba(104, 180, 230, 0) 55%),
    radial-gradient(95% 70% at 100% 100%, rgba(240, 78, 78, 0.16), rgba(240, 78, 78, 0) 55%),
    linear-gradient(135deg, #1b2440 0%, var(--eoma-midnight-navy) 60%, #0f1626 100%);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.how-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 60% at 70% 50%, #000 0%, transparent 80%);
  opacity: 0.6;
}

.how-shell-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-right: clamp(0px, 2vw, 24px);
}
.how-shell-left .eyebrow.frost {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}
.how-shell-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 24px;
  color: var(--paper);
}
.how-shell-title .gray {
  color: rgba(255, 255, 255, 0.42);
}
.how-shell-title .navy {
  color: var(--paper);
}
.how-shell-title .accent {
  color: var(--hue-yellow);
}
.how-shell-sub {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}
.how-shell-tabs {
  margin-top: 32px;
  display: inline-flex;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px;
  align-self: flex-start;
}
.how-tab {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 220ms var(--ease-standard),
    color 220ms var(--ease-standard);
}
.how-tab:hover {
  color: rgba(255, 255, 255, 0.92);
}
.how-tab.is-active {
  background: var(--paper);
  color: var(--ink);
}
.how-tab-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: inherit;
  opacity: 0.7;
}
.how-tab.is-active .how-tab-num {
  color: var(--hue-coral);
  opacity: 1;
}
.how-tab-name {
  font-family: var(--font-heading);
}
.how-shell-foot {
  margin-top: auto;
  padding-top: 40px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 38ch;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Right side — step tiles */
.how-shell-right {
  position: relative;
  z-index: 1;
  min-height: 540px;
}
.how-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 540px;
}
.how-tile {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 280ms var(--ease-standard),
    border-color 280ms var(--ease-standard),
    transform 280ms var(--ease-standard);
}
.how-tile:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.how-tile.is-active {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.how-tile.is-active .how-tile-num {
  color: var(--hue-coral);
}
.how-tile.is-active .how-tile-label {
  color: var(--ink);
}

/* 4 tiles, equal 2x2 grid */

.how-tile-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.how-tile-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  transition: color 280ms var(--ease-standard);
}
.how-tile-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 280ms var(--ease-standard);
}
.how-tile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Tile mocks (only shown when tile is active = paper bg) */
.ht-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 320ms var(--ease-standard);
}
.how-tile.is-active .ht-mock {
  opacity: 1;
}

/* Tile 1 — Brand wizard (Website step) */
.ht-mock-1 {
  gap: 10px;
}
.ht-wiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.ht-wiz-progress span {
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: var(--hairline-strong);
}
.ht-wiz-progress span.on {
  background: var(--ink);
}
.ht-wiz-step {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.ht-wiz-q {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ht-wiz-sub {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.45;
  margin-top: 4px;
  margin-bottom: 4px;
}
.ht-wiz-input {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.ht-wiz-input.focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(22, 30, 51, 0.06);
}
.ht-wiz-input .cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  margin-left: 2px;
  background: var(--hue-coral);
  animation: caret 1s steps(2) infinite;
}
.ht-wiz-cta {
  align-self: stretch;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  padding: 11px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  margin-top: 6px;
}

/* Tile 2 — Competitor Drawer (mirrors AeoV2CompetitorDrawer.jsx) */
.ht-mock-2 {
  gap: 10px;
  padding: 16px 14px;
}
.ht-comp-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ht-comp-trophy {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(217, 169, 58, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ht-comp-htext {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.ht-comp-htitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ht-comp-hsub {
  font-size: 10.5px;
  color: var(--muted-1);
  line-height: 1.35;
}
.ht-comp-rank {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.ht-comp-rank-num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ht-comp-rank-tot {
  font-size: 11px;
  color: var(--muted-1);
}
.ht-comp-tier {
  margin-left: 4px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(217, 169, 58, 0.18);
  color: #b5882e;
}
.ht-comp-section-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-1);
  text-transform: uppercase;
  margin-top: 2px;
}
.ht-comp-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ht-comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--ink);
  font-weight: 500;
}
.ht-comp-row-name {
  font-family: var(--font-mono);
  font-size: 11px;
}
.ht-comp-row-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  font-size: 9.5px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.ht-comp-row-icon {
  font-size: 8px;
}
.ht-pos-ahead {
  background: rgba(155, 201, 94, 0.18);
  color: #5c8a35;
}
.ht-pos-even {
  background: rgba(217, 169, 58, 0.18);
  color: #a07820;
}
.ht-pos-behind {
  background: rgba(240, 78, 78, 0.16);
  color: #c53d3d;
}
.ht-comp-gaps-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-1);
  text-transform: uppercase;
  margin-top: 4px;
}
.ht-warn {
  color: #d9a93a;
  font-size: 11px;
}
.ht-comp-gaps {
  display: flex;
  flex-direction: column;
}
.ht-gap-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid rgba(22, 30, 51, 0.08);
}
.ht-gap-row:first-child {
  border-top: 0;
}
.ht-gap-sev {
  flex-shrink: 0;
  padding: 1.5px 5px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
}
.ht-sev-crit {
  background: rgba(240, 78, 78, 0.16);
  color: #c53d3d;
}
.ht-sev-not {
  background: rgba(217, 169, 58, 0.18);
  color: #a07820;
}
.ht-gap-kw {
  flex: 1;
  font-size: 11px;
  color: var(--ink);
  font-weight: 500;
}
.ht-gap-pres {
  flex-shrink: 0;
  padding: 1.5px 6px;
  font-size: 9px;
  font-weight: 500;
  border-radius: 3px;
}
.ht-gap-absent {
  background: rgba(240, 78, 78, 0.16);
  color: #c53d3d;
}
.ht-gap-weak {
  background: rgba(217, 169, 58, 0.18);
  color: #a07820;
}

/* Tile 4 — Weekly Actions (mirrors WeeklyActionsPage.jsx) */
.ht-mock-4 {
  gap: 10px;
  padding: 16px 14px;
}
.ht-act-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.ht-act-htitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ht-act-streak {
  font-size: 10.5px;
  font-weight: 500;
  color: #b5882e;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.ht-act-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.ht-act-pct {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.ht-act-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--surface-sand);
  overflow: hidden;
}
.ht-act-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 600ms var(--ease-standard);
}
.ht-act-count {
  font-size: 10.5px;
  color: var(--muted-1);
  font-variant-numeric: tabular-nums;
}
.ht-act-tabs {
  display: flex;
  align-items: center;
  gap: 3px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
}
.ht-act-tab {
  flex-shrink: 0;
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--muted-1);
}
.ht-act-tab.on {
  background: rgba(22, 30, 51, 0.08);
  color: var(--ink);
}
.ht-act-tab-c {
  margin-left: 4px;
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
}
.ht-act-list {
  display: flex;
  flex-direction: column;
}
.ht-act-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 4px;
  border-bottom: 1px solid rgba(22, 30, 51, 0.06);
}
.ht-act-row:last-child {
  border-bottom: 0;
}
.ht-act-row.done {
  opacity: 0.55;
}
.ht-act-row.done .ht-act-title {
  text-decoration: line-through;
  color: var(--muted-1);
}
.ht-act-check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(22, 30, 51, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: white;
  font-weight: 700;
}
.ht-act-check.on {
  background: #9bc95e;
  border-color: #9bc95e;
}
.ht-act-prio {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
}
.ht-prio-crit {
  background: #f04e4e;
}
.ht-prio-high {
  background: #d9a93a;
}
.ht-prio-med {
  background: rgba(22, 30, 51, 0.25);
}
.ht-act-title {
  flex: 1;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ht-act-eff {
  flex-shrink: 0;
  padding: 1.5px 5px;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  background: var(--surface-sand);
  color: var(--muted-1);
  border-radius: 3px;
}
.ht-act-cat {
  flex-shrink: 0;
  padding: 1.5px 6px;
  font-size: 9px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.ht-cat-coral {
  background: rgba(240, 78, 78, 0.16);
  color: #c53d3d;
}
.ht-cat-mint {
  background: rgba(155, 201, 94, 0.18);
  color: #5c8a35;
}
.ht-cat-indigo {
  background: rgba(95, 108, 176, 0.18);
  color: #4a56a0;
}
.ht-cat-blue {
  background: rgba(104, 180, 230, 0.18);
  color: #2f7fb8;
}
.ht-act-zap {
  flex-shrink: 0;
  font-size: 10px;
  color: #d9a93a;
}

/* Tile 3 — Visibility dashboard (mirrors VisibilityDashboard.jsx) */
.ht-mock-3 {
  gap: 10px;
}
.ht-vis-kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ht-vis-hero {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: -4px;
}
.ht-vis-pct {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.ht-vis-sym {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  color: var(--muted-1);
}
.ht-vis-delta {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 600;
  color: #5c8a35;
  background: rgba(155, 201, 94, 0.18);
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}
.ht-vis-compare {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}
.ht-vis-cmp {
  display: grid;
  grid-template-columns: 78px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 8px;
}
.ht-vis-cmp.you {
  border-color: rgba(217, 169, 58, 0.5);
  background: rgba(253, 218, 47, 0.06);
}
.ht-vis-cmp-n {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ht-vis-cmp.you .ht-vis-cmp-n {
  color: #b5882e;
  font-weight: 600;
}
.ht-vis-cmp-bar {
  display: block;
  height: 5px;
  background: rgba(22, 30, 51, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.ht-vis-cmp-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 600ms var(--ease-standard);
}
.ht-vis-cmp-v {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.ht-vis-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.ht-vis-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.ht-vis-row-logo {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ht-vis-row-logo svg {
  width: 14px;
  height: 14px;
}
.ht-vis-row-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
}
.ht-vis-row-v {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.ht-vis-row-pct {
  font-size: 11px;
  color: var(--muted-1);
  margin-left: 1px;
}

/* ------------------------------------------------------------------
   SUPPORTED PLATFORMS — Midnight navy card
   ------------------------------------------------------------------ */
.platforms {
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(40px, 6vw, 80px);
}
.platforms-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px);
  color: var(--paper);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(104, 180, 230, 0.3), rgba(104, 180, 230, 0) 55%),
    radial-gradient(100% 70% at 100% 100%, rgba(240, 78, 78, 0.18), rgba(240, 78, 78, 0) 55%),
    linear-gradient(135deg, #1b2440 0%, var(--eoma-midnight-navy) 60%, #0f1626 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
}
.platforms-left .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}
.platforms-left h2 {
  color: var(--paper);
  margin-top: 24px;
}
.platforms-left h2 .gray {
  color: rgba(255, 255, 255, 0.42);
}
.platforms-left h2 .navy {
  color: var(--paper);
}
.platforms-left h2 .accent {
  color: var(--hue-yellow);
}
.platforms-tabs {
  margin-top: 28px;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px;
}
.platforms-tabs button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 200ms var(--ease-standard),
    color 200ms var(--ease-standard);
  letter-spacing: 0.02em;
}
.platforms-tabs button.is-active {
  background: var(--paper);
  color: var(--ink);
}
.platforms-foot {
  margin-top: clamp(40px, 6vw, 80px);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36ch;
}

.platforms-right {
  position: relative;
  min-height: 540px;
  padding: 40px 0;
  overflow: visible;
}
.globe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  right: -10%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.globe canvas {
  width: 100%;
  height: 100%;
}

.platform-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin: auto;
  width: 100%;
}
.platform-grid.grid-AIModels {
  grid-template-columns: repeat(2, 1fr);
  max-width: 360px;
}
.platform-grid.grid-Social {
  grid-template-columns: repeat(3, 1fr);
  max-width: 460px;
}
.platform-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  aspect-ratio: 1.05 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--paper);
  backdrop-filter: blur(12px);
  transition: all 220ms var(--ease-standard);
  padding: 14px 10px;
  text-align: center;
}
.platform-tile.glow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.platform-tile .logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  margin-bottom: 2px;
}
.platform-tile .logo svg,
.platform-tile .logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.platform-tile .name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.platform-tile .caption {
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* ------------------------------------------------------------------
   BENTO
   ------------------------------------------------------------------ */
.bento-section {
  padding: clamp(60px, 8vw, 120px) 0;
}
.bento-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.bento-head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento-sub {
  color: var(--muted-2);
  font-size: 17px;
  max-width: 60ch;
  line-height: 1.6;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.bcard {
  position: relative;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  background: var(--paper);
}
.bcard.softblue {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(104, 180, 230, 0.18), transparent 60%), var(--paper);
}
.bcard.blue {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(104, 180, 230, 0.3), transparent 60%),
    linear-gradient(135deg, #2f44a0 0%, var(--hue-indigo) 60%, #6b83c6 100%);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
}
.bcard.frost {
  background: var(--paper);
}
.bcard.shadow {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(240, 78, 78, 0.18), transparent 60%),
    linear-gradient(180deg, #1b2440 0%, var(--ink) 100%);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.1);
}
.bcard.col4 {
  grid-column: span 1;
}
.bcard.wide58 {
  grid-column: span 2;
}
.bcard.wide42 {
  grid-column: span 1;
}
.bcard-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
}
.bcard-num::before {
  content: "[ ";
  opacity: 0.6;
}
.bcard-num::after {
  content: " ]";
  opacity: 0.6;
}
.bcard.blue .bcard-num,
.bcard.shadow .bcard-num {
  color: rgba(255, 255, 255, 0.6);
}

.bcard-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 12px 0 6px;
  color: inherit;
}
.bcard-cap {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-2);
  margin: 0;
  max-width: 36ch;
}
.bcard.blue .bcard-cap,
.bcard.shadow .bcard-cap {
  color: rgba(255, 255, 255, 0.78);
}

.bcard-art {
  margin-top: auto;
  padding-top: 22px;
}

/* Card 1 — toggle */
.toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  font-size: 14px;
  font-weight: 500;
  transition: all 380ms var(--ease-standard);
  color: var(--ink);
}
.toggle-pill.done {
  background: var(--hue-mint);
  color: var(--ink);
  border-color: var(--hue-mint);
}
.toggle-pill .spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(83, 108, 189, 0.3);
  border-top-color: var(--hue-indigo);
  animation: spin 0.8s linear infinite;
}
.toggle-pill.done .spinner {
  display: none;
}
.toggle-pill .check {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--hue-mint);
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.toggle-pill.done .check {
  display: flex;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Card 2 — count up */
.b2-v {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.b2-d {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Card 3 — live */
.b3-l {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.b3-l::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hue-coral);
  box-shadow: 0 0 0 0 rgba(240, 78, 78, 0.5);
  animation: pulseDot 1.6s var(--ease-standard) infinite;
}
.b3-v {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.b2-pct {
  font-size: 24px;
  opacity: 0.65;
  margin-left: 2px;
  font-weight: 400;
}
.b5-pct {
  font-size: 18px;
  opacity: 0.55;
  margin-left: 2px;
  font-weight: 400;
}
.b3-meta {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
}
.b3-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(83, 108, 189, 0.16);
  margin-top: 14px;
  overflow: hidden;
}
.b3-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--hue-coral), var(--hue-yellow), var(--hue-mint));
  width: 64%;
  border-radius: 999px;
}

/* Card 4 — feed */
.b4-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.b4-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--page-bg-2);
  border: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink);
}
.b4-row .l {
  display: flex;
  align-items: center;
  gap: 10px;
}
.b4-row .logo-chip {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(22, 30, 51, 0.06);
}
.b4-row .logo-chip svg,
.b4-row .logo-chip img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.b4-row .v {
  color: #1f7e5f;
  font-weight: 500;
}
.b4-more {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--hue-coral);
  font-weight: 500;
}

/* Card 5 — spotlight */
.b5-tag {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
}
.b5-tag .l {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.b5-tag .v {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.b5-tag .d {
  font-size: 12px;
  color: var(--hue-coral);
  font-weight: 500;
  margin-top: 4px;
}
.b5-spot {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(
    50% 50% at 50% 100%,
    rgba(255, 219, 73, 0.35),
    rgba(255, 219, 73, 0) 60%
  );
  pointer-events: none;
}

/* ------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------ */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(80px, 10vw, 140px) 0;
}
.faq-head {
  text-align: center;
  margin: 0 auto clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q .toggle {
  width: 32px;
  height: 32px;
  background: rgba(22, 30, 51, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  flex: 0 0 32px;
  transition:
    background 220ms var(--ease-standard),
    transform 350ms var(--ease-standard),
    color 220ms var(--ease-standard);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.faq-item.is-open .faq-q .toggle {
  background: var(--hue-coral);
  color: var(--paper);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-standard);
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.65;
}
.faq-a-inner {
  padding: 0 8px 28px;
  max-width: 64ch;
}

/* ------------------------------------------------------------------
   FINAL CTA + footer — Animo wordmark, multi-color flares
   ------------------------------------------------------------------ */
.final {
  position: relative;
  margin: 0 var(--gutter) var(--gutter);
  border-radius: 36px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  min-height: 720px;
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--hairline);
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 40% at 5% 10%, rgba(240, 78, 78, 0.18), transparent 60%),
    radial-gradient(55% 40% at 95% 0%, rgba(104, 180, 230, 0.18), transparent 60%),
    radial-gradient(55% 40% at 100% 100%, rgba(101, 202, 165, 0.18), transparent 60%),
    radial-gradient(55% 40% at 0% 100%, rgba(255, 219, 73, 0.2), transparent 60%);
  pointer-events: none;
}
.final-clouds {
  display: none;
}
.final::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 65%;
  aspect-ratio: 808 / 923;
  background: url("/landing/design-system/assets/eoma-logo.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.final-tokens {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.final-tokens .token {
  left: auto;
}
.final-tokens .token.t1 {
  right: 30%;
  top: 14%;
}
.final-tokens .token.t2 {
  right: 8%;
  top: 30%;
}
.final-tokens .token.t3 {
  right: 18%;
  top: 54%;
  transform: scale(0.85);
}
.final-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.final-cta {
  max-width: 22ch;
}
.final-cta .eyebrow.frost {
  margin-bottom: 28px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 32px 0;
  color: var(--ink);
  text-wrap: balance;
}
.final-cta h2 .gray {
  color: var(--muted-1);
  font-weight: 400;
}
.final-cta h2 .accent {
  color: var(--hue-coral);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-content: start;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: color 140ms var(--ease-standard);
}
.footer-col a:hover {
  color: var(--hue-coral);
}

.final-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(64px, 8vw, 120px);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.socials {
  display: flex;
  gap: 8px;
}
.social-pill {
  width: 38px;
  height: 38px;
  background: rgba(22, 30, 51, 0.05);
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition:
    background 220ms var(--ease-standard),
    color 220ms var(--ease-standard);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.social-pill:nth-child(1):hover {
  background: var(--hue-coral);
  color: var(--paper);
  border-color: transparent;
}
.social-pill:nth-child(2):hover {
  background: var(--hue-sky);
  color: var(--paper);
  border-color: transparent;
}
.social-pill:nth-child(3):hover {
  background: var(--hue-yellow);
  color: var(--ink);
  border-color: transparent;
}
.social-pill:nth-child(4):hover {
  background: var(--hue-mint);
  color: var(--ink);
  border-color: transparent;
}

/* Tweaks panel font baseline */
[data-edit-panel] {
  font-family: var(--font-body);
}

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .platforms-card {
    grid-template-columns: 1fr;
  }
  .how-card-shell {
    grid-template-columns: 1fr;
  }
  .how-tiles {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bcard.wide58,
  .bcard.wide42 {
    grid-column: span 2;
  }
  .dash {
    grid-template-columns: 1fr;
  }
  .dash-side {
    display: none;
  }
  .aeo-card {
    grid-template-columns: 1fr;
  }
  .aeo-right {
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }
  .aeo-left {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .aeo-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-mid .step-anchor {
    height: auto;
    padding: 40px 0;
  }
  .how-card {
    position: relative;
    top: 0;
  }
  .how-left,
  .how-right {
    position: relative;
    top: 0;
    padding: 0;
  }
  .final-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bcard.wide58,
  .bcard.wide42 {
    grid-column: auto;
  }
  .aeo-stats {
    grid-template-columns: 1fr;
  }
  .aeo-pct {
    font-size: 48px;
  }
  .nav-actions .btn-ghost {
    display: none;
  }
  .platform-grid.grid-AIModels {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-grid.grid-Social {
    grid-template-columns: repeat(3, 1fr);
  }
  .final {
    margin: 0 12px 12px;
  }
  .dash-table .row {
    grid-template-columns: 1.2fr 1fr 1fr;
    font-size: 12px;
  }
  .dash-table .row > *:nth-child(4),
  .dash-table .row > *:nth-child(5) {
    display: none;
  }
}
