:root {
  --navy: #0B1D3B;
  --navy-ink: #061330;
  --navy-soft: #122a52;
  --amber: #F5B700;
  --amber-soft: #ffd560;
  --green: #2ea05c;
  --green-soft: #e7f5ec;
  --red: #c8442e;
  --paper: #F5F7FB;
  --sand: #E8EBF2;
  --line: #D3D8E0;
  --text: #1a1d28;
  --muted: #5c6070;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11, 29, 59, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 29, 59, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 29, 59, 0.14);
  --shadow-xl: 0 40px 120px rgba(11, 29, 59, 0.22);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --font-display: 'Excon', 'Inter', sans-serif;
  --font-body: 'Synonym', 'Inter', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  font-feature-settings: 'ss01', 'cv11';
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--amber); color: var(--navy); }

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

/* ============ TYPE ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow.muted { color: var(--muted); }
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.no-rule::before { display: none; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--navy);
}

h1.display { font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 700; }
h2.display { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 0.6rem; font-weight: 700; }
h3.display { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 700; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
  margin-top: 1rem;
  line-height: 1.55;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
}
.section--dark { background: var(--navy); color: rgba(255,255,255,0.86); }
.section--dark .display, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }

.section-head {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .lede { margin-left: auto; margin-right: auto; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 247, 251, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(211, 216, 224, 0.5);
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.nav.scrolled {
  background: rgba(245, 247, 251, 0.94);
  border-bottom-color: rgba(211, 216, 224, 0.9);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  transition: opacity 200ms var(--ease);
}
.brand:hover { opacity: 0.78; }
.brand__mark {
  width: 34px; height: 34px;
  flex-shrink: 0;
  transition: transform 600ms var(--ease-out-expo);
}
.brand:hover .brand__mark { transform: rotate(8deg); }
.nav__links {
  display: none;
  gap: 30px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out-expo);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: none !important; }
@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex !important; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  padding: 15px 24px;
  border-radius: 999px;
  transition: transform 240ms var(--ease-out-expo), box-shadow 280ms var(--ease), background 220ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 6px 0 rgba(11, 29, 59, 0.18), 0 14px 28px rgba(245, 183, 0, 0.34);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-out-expo);
}
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 rgba(11, 29, 59, 0.22), 0 20px 40px rgba(245, 183, 0, 0.46);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
}
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-ink); transform: translateY(-2px); }
.btn--sm { padding: 11px 18px; font-size: 0.86rem; min-height: 40px; }
.btn .arrow { transition: transform 320ms var(--ease-out-expo); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__mesh {
  position: absolute;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 183, 0, 0.22), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(11, 29, 59, 0.10), transparent 42%),
    radial-gradient(circle at 72% 94%, rgba(245, 183, 0, 0.14), transparent 38%),
    radial-gradient(circle at 5% 90%, rgba(11, 29, 59, 0.08), transparent 42%);
  filter: blur(40px);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2%, -1%, 0) scale(1.04); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.02); }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}
.hero__copy { min-width: 0; }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(245, 183, 0, 0.28);
  color: var(--navy);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero__pill .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.18); }
  50% { box-shadow: 0 0 0 9px rgba(245, 183, 0, 0); }
}

.hero h1 {
  margin: 1.4rem auto 0;
  max-width: 18ch;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  filter: blur(10px);
  animation: wordIn 900ms var(--ease-out-expo) forwards;
  margin: 0 0.18em 0 0;
}
.hero h1 .word.w2 { animation-delay: 90ms; }
.hero h1 .word.w3 { animation-delay: 180ms; }
.hero h1 .word.w4 { animation-delay: 270ms; }
.hero h1 .word.w5 { animation-delay: 360ms; }
.hero h1 .word.w6 { animation-delay: 450ms; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero h1 .accent { color: var(--amber); }

.hero__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--muted);
  margin: 1.6rem auto 0;
  max-width: 56ch;
  opacity: 0;
  animation: fadeUp 700ms 700ms var(--ease-out-expo) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 2.2rem auto 0;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 700ms 900ms var(--ease-out-expo) forwards;
}
.hero__meta {
  margin: 2.4rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  font-size: 0.86rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 700ms 1100ms var(--ease-out-expo) forwards;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-grid; place-items: center;
  font-size: 0.7rem; font-weight: 800;
}

/* ============ HERO SHOWCASE ============ */
.hero__showcase {
  position: relative;
  margin: 4.5rem auto 0;
  max-width: 1080px;
  opacity: 0;
  animation: fadeUp 900ms 1300ms var(--ease-out-expo) forwards;
}
.hero__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  background: var(--white);
  transform: perspective(2000px) rotateX(2deg);
  transform-origin: bottom center;
  transition: transform 600ms var(--ease-out-expo);
}
.hero__frame:hover { transform: perspective(2000px) rotateX(0deg); }
.hero__frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.hero__frame-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__frame-bar .dot:nth-child(1) { background: #ff5f57; }
.hero__frame-bar .dot:nth-child(2) { background: #febc2e; }
.hero__frame-bar .dot:nth-child(3) { background: #28c840; }
.hero__frame-bar .url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
  max-width: 320px;
  margin: 0 auto;
}
.hero__frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Floating UI cards orbiting the hero frame */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
}
.float-card.fc-1 { top: 8%; left: -3%; animation-delay: -1s; }
.float-card.fc-2 { top: 56%; right: -3%; animation-delay: -3s; animation-duration: 7s; }
.float-card.fc-3 { bottom: -4%; left: 18%; animation-delay: -5s; animation-duration: 8s; }
.float-card .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.float-card .lbl {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.float-card .val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.float-card .delta { color: var(--green); font-size: 0.72rem; font-weight: 600; }
@keyframes floatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@media (max-width: 720px) {
  .float-card { display: none; }
  .hero__frame { transform: none; }
  .hero__showcase { margin-top: 2.6rem; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--navy-soft);
  border-bottom: 1px solid var(--navy-soft);
}
.marquee__track {
  display: flex;
  gap: 56px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee__track .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ============ TRUST ROW ============ */
.trust {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.trust__inner .tag-name { color: var(--navy); font-weight: 600; }
.trust__inner .sep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
}

/* ============ PROBLEM (split layout, no 1-2-3 cards) ============ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 980px) {
  .problem-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 6rem; }
}
.problem-lead h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1; letter-spacing: -0.035em; color: var(--navy); font-weight: 700; }
.problem-lead h2 .strike { position: relative; display: inline-block; color: var(--muted); }
.problem-lead h2 .strike::after {
  content: ''; position: absolute; left: -2%; right: -2%;
  top: 50%; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 700ms 200ms var(--ease-out-expo);
}
.problem-lead h2 .strike.in::after { transform: scaleX(1); }
.problem-lead p { color: var(--muted); margin-top: 1.4rem; max-width: 38ch; font-size: 1.02rem; }

.problem-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.problem-row {
  background: var(--white);
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  transition: background 280ms var(--ease);
}
.problem-row:hover { background: var(--paper); }
.problem-row .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--amber);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.problem-row h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.problem-row p { color: var(--muted); font-size: 0.96rem; margin-bottom: 12px; }
.problem-row .answer {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--navy);
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.problem-row .answer .arrow { color: var(--amber); font-weight: 700; }

/* ============ STATS ============ */
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 5rem;
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.stat .num .suffix { color: var(--amber); }
.stat .lbl {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ============ PLATFORMS (TABBED SHOWCASE) ============ */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: all 280ms var(--ease-out-expo);
  position: relative;
  cursor: pointer;
}
.tab .tab__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  margin-right: 8px;
  letter-spacing: 0.04em;
}
.tab[aria-selected="true"] {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11,29,59,0.2);
}
.tab[aria-selected="true"] .tab__num { color: var(--amber); }
.tab:hover:not([aria-selected="true"]) { color: var(--navy); }

.tab-panels { position: relative; }
.tab-panel {
  display: none;
  animation: panelIn 600ms var(--ease-out-expo);
}
.tab-panel.active { display: grid; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel {
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 980px) {
  .tab-panel { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 48px; }
}

.panel-screen {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  background: var(--navy);
}
.panel-screen .frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.panel-screen .frame-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-screen .frame-bar .dot:nth-child(1) { background: #ff5f57; }
.panel-screen .frame-bar .dot:nth-child(2) { background: #febc2e; }
.panel-screen .frame-bar .dot:nth-child(3) { background: #28c840; }
.panel-screen .frame-bar .url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}
.panel-screen img { display: block; width: 100%; height: auto; }

/* Customer App phone mock (used in panel 1, polished bigger version) */
.phone-showcase {
  display: grid;
  place-items: center;
  padding: 60px 20px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-ink) 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.phone-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 240px at 70% 30%, rgba(245, 183, 0, 0.20), transparent 60%),
    radial-gradient(400px 200px at 20% 80%, rgba(245, 183, 0, 0.08), transparent 60%);
  pointer-events: none;
}
.phone-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  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: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.phone-mock {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  aspect-ratio: 9 / 19.5;
  background: var(--white);
  border: 9px solid var(--navy-ink);
  border-radius: 38px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-mock .notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--navy-ink);
  border-radius: 999px;
  z-index: 3;
}
.phone-mock .pscreen {
  flex: 1;
  background: var(--paper);
  padding: 38px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-mock .pgreet {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.phone-mock .pgreet small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.phone-mock .pcard {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.phone-mock .pcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(200px 100px at 80% 0%, rgba(245,183,0,0.3), transparent 60%);
}
.phone-mock .pcard .when {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.phone-mock .pcard .what {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.02em;
  position: relative;
}
.phone-mock .pcard .where { font-size: 0.72rem; opacity: 0.7; margin-top: 2px; position: relative; }
.phone-mock .plist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.phone-mock .plist li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  background: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  border: 1px solid var(--line);
}
.phone-mock .plist .name { color: var(--navy); font-weight: 500; }
.phone-mock .plist .booked {
  color: var(--green);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.phone-mock .ptab {
  display: flex;
  justify-content: space-around;
  padding: 14px 0 22px;
  background: var(--white);
  border-top: 1px solid var(--line);
  margin: 0 -18px -18px;
}
.phone-mock .ptab span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
}
.phone-mock .ptab span.active { background: var(--amber); width: 20px; border-radius: 999px; }

.panel-info { min-width: 0; }
.panel-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1.05;
}
.panel-info > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.panel-info ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.panel-info ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.96rem;
  color: var(--text);
}
.panel-info ul li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 800;
  margin-top: 2px;
}

/* ============ CAPABILITIES (alternating spotlights) ============ */
.cap-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.cap-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .cap-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
  .cap-row.flip > .cap-art { order: 2; }
}
.cap-art {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cap-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,29,59,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,29,59,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.cap-info { min-width: 0; }
.cap-info .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 10px;
}
.cap-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy);
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.05;
}
.cap-info p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.cap-info .tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.cap-info .tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 500;
  border: 1px solid var(--line);
}

/* Cap art visuals - mini illustrations */
.art-chart {
  display: flex; align-items: flex-end; gap: 10px;
  width: 100%; max-width: 260px;
  height: 160px;
  position: relative;
  z-index: 1;
}
.art-chart span {
  flex: 1;
  background: linear-gradient(180deg, var(--navy), var(--navy-soft));
  border-radius: 4px 4px 0 0;
  position: relative;
}
.art-chart span.peak { background: linear-gradient(180deg, var(--amber), #d99e00); }
.art-chart span::after {
  content: attr(data-d);
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.art-blueprint {
  position: relative; z-index: 1;
  width: 100%; max-width: 280px;
}
.art-blueprint .bp {
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  position: relative;
}
.art-blueprint .bp::before {
  content: 'BLUEPRINT';
  position: absolute;
  top: -8px; left: 12px;
  background: var(--navy);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.art-blueprint .bp h5 { font-family: var(--font-display); font-weight: 500; color: var(--navy); margin-bottom: 4px; font-size: 0.92rem; }
.art-blueprint .bp .meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); }
.art-blueprint .override {
  background: var(--amber);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  margin-left: 16px;
}

.art-sync {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%; max-width: 320px;
}
.art-sync .node {
  aspect-ratio: 1;
  background: var(--navy);
  color: var(--amber);
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.art-sync .node svg { margin-bottom: 4px; color: var(--amber); }
.art-sync .pulse {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--amber);
  animation: ringPulse 2.4s ease-out infinite;
}
.art-sync .node:nth-child(1) .pulse { animation-delay: 0s; }
.art-sync .node:nth-child(2) .pulse { animation-delay: 0.4s; }
.art-sync .node:nth-child(3) .pulse { animation-delay: 0.8s; }
@keyframes ringPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

.art-payments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%; max-width: 280px;
  position: relative; z-index: 1;
}
.art-payments .pay {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
}
.art-payments .pay .logo {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.art-payments .pay .logo svg { display: block; }
.art-payments .pay .logo.str { background: #635BFF; }
.art-payments .pay .logo.sq  { background: #000000; }
.art-payments .pay .logo.ze  { background: #19C190; }
.art-payments .pay .name { font-weight: 500; color: var(--navy); flex: 1; font-size: 0.92rem; }
.art-payments .pay .status {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
}

.art-waiver {
  position: relative; z-index: 1;
  width: 100%; max-width: 260px;
  aspect-ratio: 4/5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.art-waiver h6 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.art-waiver .lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.art-waiver .lines span {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
}
.art-waiver .lines span:nth-child(1) { width: 100%; }
.art-waiver .lines span:nth-child(2) { width: 88%; }
.art-waiver .lines span:nth-child(3) { width: 94%; }
.art-waiver .lines span:nth-child(4) { width: 70%; }
.art-waiver .lines span:nth-child(5) { width: 80%; }
.art-waiver .sig {
  background: var(--paper);
  border: 1.5px dashed var(--amber);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--navy);
  font-weight: 500;
}
.art-waiver .sig .check {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  margin-right: 6px;
  line-height: 18px;
  font-weight: 700;
}

.art-family {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.art-family .parent {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--amber);
}
.art-family .branches {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.art-family .child {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--navy);
  font-weight: 500;
  position: relative;
}
.art-family .child::before {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--amber);
}
.art-family .child .age {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: auto;
}

/* ============ INDUSTRIES (kinetic + grid) ============ */
.industries-kinetic {
  text-align: center;
  margin-bottom: 4rem;
}
.industries-kinetic h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--navy);
}
.industries-kinetic .swap {
  display: inline-block;
  position: relative;
  padding: 0 8px;
  color: var(--amber);
  min-width: 8ch;
  text-align: center;
  vertical-align: baseline;
}
.industries-kinetic .swap::before {
  content: '';
  position: absolute;
  inset: -6% 0;
  background: rgba(245, 183, 0, 0.12);
  border-radius: 8px;
  z-index: -1;
}
.industries-kinetic .swap-word {
  display: inline-block;
  animation: wordSwap 0.6s var(--ease-out-expo);
}
@keyframes wordSwap {
  0% { opacity: 0; transform: translateY(40%); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.industries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .industries { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .industries { grid-template-columns: repeat(4, 1fr); } }
.industry {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 320ms var(--ease-out-expo), border-color 280ms var(--ease), background 280ms var(--ease);
  position: relative;
  overflow: hidden;
}
.industry::after {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}
.industry:hover { transform: translateY(-4px); border-color: var(--navy); }
.industry:hover::after { opacity: 1; }
.industry .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--navy);
}
.industry h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--navy); letter-spacing: -0.015em; }
.industry p { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }
.industry .feat {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ============ COMPARE (split-screen scrolly) ============ */
.compare-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) { .compare-split { grid-template-columns: 1fr 1fr; } }
.compare-side {
  padding: 32px;
}
.compare-side--them {
  background: var(--navy-ink);
  color: rgba(255,255,255,0.78);
  border-right: 1px solid var(--navy-soft);
  position: relative;
  overflow: hidden;
}
.compare-side--them::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.compare-side--us {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.compare-side--us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(245, 183, 0, 0.08), transparent 60%);
  pointer-events: none;
}
.compare-side h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}
.compare-side--them h3 { color: rgba(255,255,255,0.5); }
.compare-side--us h3 { color: var(--amber); }
.compare-side ul { list-style: none; display: flex; flex-direction: column; gap: 22px; position: relative; }
.compare-side li {
  padding: 14px 0;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  line-height: 1.5;
}
.compare-side--them li { border-color: rgba(255,255,255,0.08); }
.compare-side--us li { border-color: var(--line); color: var(--text); }
.compare-side li:last-child { border-bottom: 0; }
.compare-side li .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  margin-top: 2px;
}
.compare-side--them li .icon { background: rgba(200,68,46,0.16); color: #ff8b75; }
.compare-side--us li .icon { background: var(--green-soft); color: var(--green); }
.compare-side li strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em; }
.compare-side--them li strong { color: var(--white); }
.compare-side--us li strong { color: var(--navy); }

/* ============ PILOT QUOTE (animated, particles) ============ */
.quote-section {
  position: relative;
  overflow: hidden;
}
.quote-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.quote-particles .p {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.5;
  animation: particleFloat 12s linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) translateX(40px); opacity: 0; }
}

.quote-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-glyph {
  display: inline-block;
  margin-bottom: 1rem;
}
.quote-glyph svg {
  width: 56px; height: auto;
  color: var(--amber);
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2rem;
}
.quote-block blockquote .qword {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30%);
  transition: opacity 600ms var(--ease-out-expo), filter 600ms var(--ease-out-expo), transform 600ms var(--ease-out-expo);
  margin-right: 0.16em;
}
.quote-block.in blockquote .qword { opacity: 1; filter: blur(0); transform: translateY(0); }
.quote-block .who {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.quote-block .who strong { color: var(--amber); font-weight: 600; }
.quote-block .partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(245, 183, 0, 0.12);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
}
.quote-block .partner-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

/* ============ CTA / FORM ============ */
.cta-section {
  position: relative;
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(245, 183, 0, 0.14), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(11, 29, 59, 0.06), transparent 60%),
    var(--paper);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 920px) { .cta-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.cta-copy h2 { color: var(--navy); }
.cta-copy .lede { color: var(--muted); margin-bottom: 1.6rem; }
.cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 1.6rem; }
.cta-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.96rem; color: var(--text); line-height: 1.55;
}
.cta-bullets li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  margin-top: 2px;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.035em;
}
.form__sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--text);
  transition: border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
  width: 100%;
  font-size: 0.95rem;
}
.field textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 29, 59, 0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form button[type="submit"] { width: 100%; margin-top: 8px; }
.form__small { margin-top: 16px; text-align: center; font-size: 0.78rem; color: var(--muted); }
.form-success { text-align: center; padding: 30px 8px; }
.form-success .tick {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1.7rem; font-weight: 800;
  margin: 0 auto 18px;
}
.form-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.035em; }
.form-success p { color: var(--muted); }
.hidden { display: none !important; }

/* ============ FAQ (two-column, sticky TOC) ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 980px) {
  .faq-grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 72px; }
}
.faq-toc { position: sticky; top: 100px; align-self: start; }
.faq-toc .eyebrow { margin-bottom: 18px; }
.faq-toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-toc ol a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  transition: color 240ms var(--ease);
}
.faq-toc ol a .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.faq-toc ol a:hover { color: var(--navy); }
.faq-toc ol a.active { color: var(--navy); }
.faq-toc ol a.active .num { color: var(--amber); }

.faq-list { display: flex; flex-direction: column; gap: 36px; }
.faq-item { scroll-margin-top: 100px; }
.faq-item .num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 8px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.faq-item p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; max-width: 56ch; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.footer__brand p { font-size: 0.92rem; max-width: 38ch; line-height: 1.55; }
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color 200ms var(--ease);
}
.footer__col a:hover { color: var(--white); }
.footer__base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer__base .blm-line {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.footer__base .blm-line strong { color: rgba(255,255,255,0.85); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 900ms var(--ease-out-expo), transform 900ms var(--ease-out-expo), filter 900ms var(--ease-out-expo);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal.delay-1 { transition-delay: 90ms; }
.reveal.delay-2 { transition-delay: 180ms; }
.reveal.delay-3 { transition-delay: 270ms; }
.reveal.delay-4 { transition-delay: 360ms; }

.magnet { display: inline-block; transition: transform 240ms var(--ease-out-expo); }

.i-24 { width: 24px; height: 24px; }
.i-20 { width: 20px; height: 20px; }
.i-18 { width: 18px; height: 18px; }
.i-32 { width: 32px; height: 32px; }

/* ============ WHITE-LABEL BRAND CYCLER (Customer App panel) ============ */
.wl-callout {
  text-align: center;
  margin-bottom: 22px;
}
.wl-callout .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(245, 183, 0, 0.14);
  border: 1px solid rgba(245, 183, 0, 0.32);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.wl-callout .label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

.phone-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.phone-mock {
  /* Brand vars (default = Nova City) */
  --b-bg: var(--paper);
  --b-card: var(--navy);
  --b-card-text: #ffffff;
  --b-accent: var(--amber);
  --b-accent-dim: rgba(245, 183, 0, 0.16);
  --b-text: var(--navy);
  --b-muted: var(--muted);
  --b-line: var(--line);
  --b-list-bg: #ffffff;
  --b-font-display: var(--font-display);
  --b-display-weight: 700;
  --b-display-style: normal;
  --b-tracking: -0.025em;
  transition: --b-bg 400ms var(--ease), --b-card 400ms var(--ease), --b-accent 400ms var(--ease);
}

.phone-mock[data-brand="stride"] {
  --b-bg: #fdf3ef;
  --b-card: #5b1a36;
  --b-accent: #d8556f;
  --b-accent-dim: rgba(216, 85, 111, 0.16);
  --b-text: #2a1018;
  --b-muted: #84616d;
  --b-line: #f1d9d4;
  --b-list-bg: #ffffff;
  --b-font-display: 'Sentient', serif;
  --b-display-weight: 500;
  --b-display-style: italic;
  --b-tracking: -0.015em;
}

.phone-mock[data-brand="vertex"] {
  --b-bg: #f3efe7;
  --b-card: #1d3320;
  --b-accent: #ff5e00;
  --b-accent-dim: rgba(255, 94, 0, 0.14);
  --b-text: #1c2a1d;
  --b-muted: #5e6a5b;
  --b-line: #e1dccd;
  --b-list-bg: #ffffff;
  --b-font-display: 'Cabinet Grotesk', sans-serif;
  --b-display-weight: 700;
  --b-display-style: normal;
  --b-tracking: -0.035em;
}

.phone-mock[data-brand="lumen"] {
  --b-bg: #f4f0e7;
  --b-card: #2f3a2a;
  --b-accent: #94a37b;
  --b-accent-dim: rgba(148, 163, 123, 0.18);
  --b-text: #2e352a;
  --b-muted: #6e7565;
  --b-line: #e3ddca;
  --b-list-bg: #ffffff;
  --b-font-display: 'Boska', serif;
  --b-display-weight: 500;
  --b-display-style: normal;
  --b-tracking: -0.02em;
}

.phone-mock[data-brand="aurora"] {
  --b-bg: #fff5e0;
  --b-card: #1c2d6b;
  --b-accent: #ffae3d;
  --b-accent-dim: rgba(255, 174, 61, 0.18);
  --b-text: #1c2d6b;
  --b-muted: #6c7396;
  --b-line: #f3e6c4;
  --b-list-bg: #ffffff;
  --b-font-display: 'Tanker', sans-serif;
  --b-display-weight: 400;
  --b-display-style: normal;
  --b-tracking: -0.01em;
}

/* Phone screen overrides using brand vars */
.phone-mock .pscreen { background: var(--b-bg); transition: background 400ms var(--ease); }
.phone-mock .pgreet { color: var(--b-text); font-family: var(--b-font-display); font-weight: var(--b-display-weight); font-style: var(--b-display-style); letter-spacing: var(--b-tracking); }
.phone-mock .pgreet small { color: var(--b-muted); font-style: normal; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.16em; }
.phone-mock .pcard { background: var(--b-card); transition: background 400ms var(--ease); }
.phone-mock .pcard .when { color: var(--b-accent); font-family: var(--font-mono); font-style: normal; }
.phone-mock .pcard .what { color: var(--b-card-text); font-family: var(--b-font-display); font-weight: var(--b-display-weight); font-style: var(--b-display-style); letter-spacing: var(--b-tracking); }
.phone-mock .pcard::after { background: radial-gradient(200px 100px at 80% 0%, color-mix(in srgb, var(--b-accent) 30%, transparent), transparent 60%); }
.phone-mock .plist li { background: var(--b-list-bg); border-color: var(--b-line); transition: border-color 400ms var(--ease); }
.phone-mock .plist .name { color: var(--b-text); font-style: normal; font-family: var(--font-body); font-weight: 500; }
.phone-mock .plist .booked { color: var(--b-accent); font-style: normal; font-family: var(--font-mono); }
.phone-mock .ptab { background: var(--b-list-bg); border-color: var(--b-line); }
.phone-mock .ptab span.active { background: var(--b-accent); }

/* Brand mark inside phone */
.phone-mock .brand-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--b-line);
  transition: border-color 400ms var(--ease);
}
.phone-mock .brand-mark .bm-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--b-card);
  color: var(--b-accent);
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
.phone-mock .brand-mark .bm-name {
  font-family: var(--b-font-display);
  font-style: var(--b-display-style);
  font-weight: var(--b-display-weight);
  font-size: 0.78rem;
  color: var(--b-text);
  letter-spacing: var(--b-tracking);
  transition: color 400ms var(--ease), font-family 0ms;
}

/* Brand chip selector */
.brand-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  cursor: pointer;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}
.brand-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-1px);
}
.brand-chip.active {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.brand-chip .swatch {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
@media (max-width: 540px) {
  .brand-chip { padding: 8px 12px; font-size: 0.68rem; }
}

/* Auto-cycle progress bar */
.brand-progress {
  position: relative;
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}
.brand-progress__bar {
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(0);
}
.brand-progress.running .brand-progress__bar {
  animation: bpFill 4s linear infinite;
}
@keyframes bpFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ===== Real screenshot overlay for Nova City brand ===== */
.phone-mock .phone-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #080c18;
  display: none;
  z-index: 2;
  border-radius: 28px;
}
.phone-mock[data-brand="nova"] .phone-real { display: block; }
.phone-mock[data-brand="nova"] .pscreen { visibility: hidden; }
.phone-mock[data-brand="nova"] .notch { z-index: 3; }

/* ============ BESPOKE PER-BRAND PHONE SCREENS ============ */
.phone-screen {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  padding: 38px 14px 14px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
}
.phone-mock[data-brand="stride"] .ps-stride { display: flex; }
.phone-mock[data-brand="vertex"] .ps-vertex { display: flex; }
.phone-mock[data-brand="lumen"]  .ps-lumen  { display: flex; }
.phone-mock[data-brand="aurora"] .ps-aurora { display: flex; }

/* Hide generic pscreen content for bespoke brands (Nova handled separately) */
.phone-mock[data-brand="stride"] .pscreen,
.phone-mock[data-brand="vertex"] .pscreen,
.phone-mock[data-brand="lumen"]  .pscreen,
.phone-mock[data-brand="aurora"] .pscreen { display: none; }

/* Common header inside each bespoke screen */
.phone-screen .psh {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 10px;
  margin-bottom: 4px;
}
.phone-screen .psh-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.phone-screen .psh-name {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

/* ===== STRIDE DANCE ===== */
.ps-stride {
  background: linear-gradient(180deg, #fef5f0 0%, #fbe6dd 100%);
  color: #2a1018;
  font-family: 'Synonym', sans-serif;
}
.ps-stride .psh { border-bottom: 1px solid rgba(91, 26, 54, 0.12); }
.ps-stride .psh-mark { background: #5b1a36; color: #fdf3ef; }
.ps-stride .psh-name { font-family: 'Sentient', serif; font-style: italic; font-weight: 500; color: #5b1a36; }
.ps-stride .ps-hero {
  margin-top: 10px;
  background: linear-gradient(140deg, #5b1a36 0%, #c43d61 100%);
  color: #fdf3ef;
  padding: 16px 14px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.ps-stride .ps-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; height: 100%;
  background: radial-gradient(circle, rgba(253, 243, 239, 0.25), transparent 60%);
}
.ps-stride .ps-hero .ps-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 243, 239, 0.7);
  font-weight: 500;
}
.ps-stride .ps-hero h4 {
  font-family: 'Sentient', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  margin: 4px 0 2px;
}
.ps-stride .ps-hero p { font-size: 0.66rem; opacity: 0.78; }
.ps-stride .ps-section {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #84616d;
  font-weight: 500;
  margin: 14px 4px 8px;
}
.ps-stride .ps-sched { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ps-stride .ps-sched li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(91, 26, 54, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
}
.ps-stride .ps-sched .t {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #84616d;
  font-weight: 500;
  text-align: center;
}
.ps-stride .ps-sched .t strong { display: block; font-family: 'Sentient', serif; font-style: italic; font-weight: 500; font-size: 0.94rem; color: #5b1a36; letter-spacing: -0.02em; }
.ps-stride .ps-sched .i strong { display: block; font-family: 'Sentient', serif; font-style: italic; font-weight: 500; font-size: 0.86rem; color: #2a1018; letter-spacing: -0.015em; }
.ps-stride .ps-sched .i span { display: block; font-family: var(--font-mono); font-size: 0.58rem; color: #84616d; letter-spacing: 0.06em; margin-top: 1px; }

/* ===== VERTEX CLIMBING ===== */
.ps-vertex {
  background: #f3efe7;
  color: #1c2a1d;
  font-family: 'Cabinet Grotesk', sans-serif;
}
.ps-vertex .psh { border-bottom: 1px solid rgba(29, 51, 32, 0.1); }
.ps-vertex .psh-mark { background: #1d3320; color: #ff5e00; }
.ps-vertex .psh-name { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; color: #1d3320; letter-spacing: -0.025em; }
.ps-vertex .ps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0 4px;
}
.ps-vertex .ps-stats div {
  background: #fff;
  border: 1px solid rgba(29, 51, 32, 0.08);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.ps-vertex .ps-stats strong { display: block; font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 1.15rem; color: #1d3320; letter-spacing: -0.04em; }
.ps-vertex .ps-stats span { display: block; font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase; color: #5e6a5b; margin-top: 2px; }
.ps-vertex .ps-section {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5e6a5b;
  font-weight: 500;
  margin: 14px 4px 8px;
}
.ps-vertex .ps-walls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}
.ps-vertex .wall {
  background: #1d3320;
  color: #f3efe7;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.ps-vertex .wall .grade {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  align-self: flex-start;
  color: #1d3320;
}
.ps-vertex .grade.g { background: #a8d6a4; }
.ps-vertex .grade.a { background: #ffae3d; }
.ps-vertex .grade.r { background: #ff5e00; color: #fff; }
.ps-vertex .grade.p { background: #c5b4ee; }
.ps-vertex .wall strong { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 0.86rem; letter-spacing: -0.02em; }
.ps-vertex .wall span { font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.06em; opacity: 0.7; }
.ps-vertex .ps-cta {
  background: #ff5e00;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

/* ===== LUMEN YOGA ===== */
.ps-lumen {
  background: linear-gradient(180deg, #f4f0e7 0%, #ebe4d3 100%);
  color: #2e352a;
  font-family: 'Synonym', sans-serif;
  padding: 38px 16px 14px;
}
.ps-lumen .psh { border-bottom: 1px solid rgba(46, 53, 42, 0.1); justify-content: center; }
.ps-lumen .psh-mark { background: #2f3a2a; color: #94a37b; }
.ps-lumen .psh-name { font-family: 'Boska', serif; font-weight: 500; color: #2f3a2a; letter-spacing: -0.01em; }
.ps-lumen .ps-quote {
  text-align: center;
  font-family: 'Boska', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.94rem;
  color: #6e7565;
  margin: 22px 0 18px;
  letter-spacing: -0.01em;
}
.ps-lumen .ps-spot {
  background: #fff;
  border: 1px solid rgba(46, 53, 42, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ps-lumen .ps-orb {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b9c79f 0%, #7d8c63 70%, #5a6849 100%);
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(148, 163, 123, 0.12), 0 0 0 16px rgba(148, 163, 123, 0.06);
  animation: orbBreath 5s ease-in-out infinite;
}
@keyframes orbBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.ps-lumen .ps-spot .ps-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a37b;
  font-weight: 500;
}
.ps-lumen .ps-spot h4 {
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #2f3a2a;
  margin: 6px 0 4px;
}
.ps-lumen .ps-spot .ps-meta { font-size: 0.7rem; color: #6e7565; }
.ps-lumen .ps-cta {
  background: #2f3a2a;
  color: #f4f0e7;
  border: 0;
  border-radius: 999px;
  padding: 11px;
  font-family: 'Boska', serif;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  margin: 14px 0 0;
}
.ps-lumen .ps-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
}
.ps-lumen .ps-week span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a37b;
  padding: 8px 0;
  border-radius: 6px;
}
.ps-lumen .ps-week .on { background: #2f3a2a; color: #f4f0e7; }

/* ===== AURORA KIDS ===== */
.ps-aurora {
  background: linear-gradient(180deg, #fff5e0 0%, #ffe4b3 100%);
  color: #1c2d6b;
  font-family: 'Synonym', sans-serif;
}
.ps-aurora .psh { border-bottom: 1px solid rgba(28, 45, 107, 0.1); }
.ps-aurora .psh-mark { background: #1c2d6b; color: #ffae3d; }
.ps-aurora .psh-name { font-family: 'Tanker', serif; font-weight: 400; color: #1c2d6b; letter-spacing: 0; font-size: 0.86rem; }
.ps-aurora .ps-greet {
  font-family: 'Tanker', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #1c2d6b;
  margin: 14px 4px 12px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.ps-aurora .ps-greet em {
  font-style: normal;
  background: #ffae3d;
  color: #1c2d6b;
  padding: 0 6px;
  border-radius: 4px;
  display: inline-block;
}
.ps-aurora .ps-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.ps-aurora .tile {
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(28, 45, 107, 0.08);
}
.ps-aurora .tile.c1 { background: #FFE5C2; }
.ps-aurora .tile.c2 { background: #D5E4FF; }
.ps-aurora .tile.c3 { background: #FFE0D5; }
.ps-aurora .tile.c4 { background: #D7EDD0; }
.ps-aurora .tile .emoji { font-size: 1.4rem; line-height: 1; margin-bottom: 4px; }
.ps-aurora .tile strong {
  font-family: 'Tanker', serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: #1c2d6b;
  letter-spacing: 0;
}
.ps-aurora .tile em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #6c7396;
  font-weight: 500;
}
.ps-aurora .ps-badges {
  background: #1c2d6b;
  color: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ps-aurora .ps-badges .lbl {
  font-family: 'Tanker', serif;
  font-weight: 400;
  font-size: 0.84rem;
  color: #ffae3d;
  letter-spacing: 0;
}
.ps-aurora .ps-badges .row { display: flex; gap: 4px; }
.ps-aurora .ps-badges .b {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  display: grid; place-items: center;
  font-size: 0.78rem;
}
.ps-aurora .ps-badges .b.on {
  background: #ffae3d;
  color: #1c2d6b;
  font-weight: 700;
}

/* Default tag pill on payment name */
.art-payments .pay .name .default-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--amber);
  color: var(--navy);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
/* ========================================================================
   MOBILE FIXES (audit punch list)
   ======================================================================== */

/* ---- Fix 1: Hamburger toggle + overlay menu ---- */
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  margin-left: 4px;
  transition: background 200ms var(--ease);
}
.nav__toggle:hover { background: rgba(11, 29, 59, 0.06); }
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 320ms var(--ease-out-expo), opacity 220ms var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 880px) {
  .nav__toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(245, 247, 251, 0.98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out-expo);
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__inner {
  padding: 96px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 540px;
  margin: 0 auto;
}
.mm-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2rem);
  letter-spacing: -0.025em;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  transition: padding 280ms var(--ease-out-expo), color 200ms var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open .mm-link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 480ms var(--ease-out-expo), transform 480ms var(--ease-out-expo);
}
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: 120ms; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: 180ms; }
.mobile-menu.open .mm-link:nth-child(4) { transition-delay: 240ms; }
.mobile-menu.open .mm-link:nth-child(5) { transition-delay: 300ms; }
.mobile-menu.open .mm-cta { transition-delay: 380ms; }
.mm-link:hover, .mm-link:active { padding-left: 12px; color: var(--amber); }
.mm-link .mm-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
  transform: translateY(-3px);
}
.mm-cta {
  margin-top: 32px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open .mm-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 480ms 380ms var(--ease-out-expo), transform 480ms 380ms var(--ease-out-expo);
}
.mm-foot {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}
.mm-foot strong { color: var(--navy); font-weight: 600; }
body.menu-open { overflow: hidden; }

/* ---- Fix 2: FAQ accordion on mobile ---- */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > .num,
.faq-item summary > h4 { width: 100%; }
.faq-toggle {
  display: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out-expo), background 200ms var(--ease);
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--amber); }
.faq-body { padding-top: 4px; }

@media (min-width: 980px) {
  /* Desktop: details/summary acts open by default, no toggle, full content visible */
  .faq-item { display: block; }
  .faq-item summary { display: contents; }
  .faq-item .faq-body { display: block; padding-top: 0; }
  .faq-toggle { display: none !important; }
}
@media (max-width: 979px) {
  .faq-toc { display: none; }
  .faq-grid { gap: 0; }
  .faq-list { gap: 0; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 0;
    scroll-margin-top: 100px;
  }
  .faq-item summary {
    padding: 22px 0;
    align-items: center;
    flex-wrap: nowrap;
  }
  .faq-item summary > div:first-child,
  .faq-item summary > h4 {
    width: auto;
    flex: 1;
  }
  .faq-item summary > .num { display: none; }
  .faq-item summary > h4 { margin: 0; font-size: 1.1rem; }
  .faq-toggle { display: inline-flex; }
  .faq-item[open] .faq-body { padding-bottom: 22px; }
  .faq-item[open] {
    animation: faqExpand 360ms var(--ease-out-expo);
  }
  @keyframes faqExpand {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ---- Fix 3: Industries kinetic headline tightening on mobile ---- */
@media (max-width: 720px) {
  .industries-kinetic h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
  }
  .industries-kinetic .swap {
    min-width: 0;
    padding: 0 6px;
  }
  .industries-kinetic .swap-word {
    display: inline-block;
  }
}

/* ---- Fix 4: Brand chips horizontal scroll on mobile ---- */
@media (max-width: 720px) {
  .brand-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    max-width: 100%;
    width: 100%;
    padding: 4px 28px;
    margin-left: -28px;
    margin-right: -28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  }
  .brand-chips::-webkit-scrollbar { display: none; }
  .brand-chip {
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

/* ---- Fix 5: Footer link padding for touch targets ---- */
.footer__col a {
  padding: 12px 0;
  margin-bottom: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ---- Fix 6: Customer panel chip-row container ---- */
.phone-showcase .brand-chips {
  margin-top: 8px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 720px) {
  .phone-showcase .brand-chips {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.brand-progress { margin-top: 10px; }

/* BLM footer link styling */
.footer__base .blm-line a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.footer__base .blm-line a:hover { color: var(--amber); border-color: var(--amber); }
.mm-foot a {
  color: var(--navy);
  border-bottom: 1px solid rgba(11,29,59,0.2);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.mm-foot a:hover { color: var(--amber); border-color: var(--amber); }

/* ============ COUNCIL FIX SUPPORT STYLES ============ */

/* Mid-page CTA section */
.midcta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.midcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(245,183,0,0.18), transparent 60%),
    radial-gradient(700px 280px at 0% 100%, rgba(245,183,0,0.10), transparent 60%);
  pointer-events: none;
}
.midcta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .midcta__inner { grid-template-columns: 1fr auto; gap: 48px; }
}
.midcta__copy .eyebrow { color: var(--amber); margin-bottom: 12px; }
.midcta__copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.midcta__copy p { color: rgba(255,255,255,0.75); font-size: 0.98rem; max-width: 56ch; }

/* Form status (aria-live) */
.form__status {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  min-height: 0;
  transition: color 200ms var(--ease);
}
.form__status[data-kind="error"] { color: var(--red); }
.form__status[data-kind="pending"] { color: var(--navy); }
.form__status:empty { display: none; }

/* Brand cycle controls (pause + progress in one row) */
.brand-cycle-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.brand-pause {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.brand-pause:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.brand-pause .bp-icon {
  width: 12px; height: 12px;
  background: var(--amber);
  display: inline-block;
  clip-path: polygon(20% 0, 40% 0, 40% 100%, 20% 100%, 60% 0, 80% 0, 80% 100%, 60% 100%);
  transition: clip-path 200ms var(--ease);
}
.brand-pause.paused .bp-icon {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* CTA proof partner block */
.cta-proof {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.cta-proof__partner { display: flex; flex-direction: column; gap: 4px; }
.cta-proof__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.cta-proof__partner strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.cta-proof__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer legal disclosure line */
.footer__legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* iOS form input zoom prevention */
@media (max-width: 720px) {
  .field input, .field select, .field textarea {
    font-size: 16px;
  }
}

/* hero__meta em italics for emphasis word "your" */
.hero__meta em { font-style: italic; color: var(--navy); font-weight: 600; }
.section--dark .hero__meta em { color: var(--amber); }

/* Compare section: restore dark "the big players" panel */
.compare-side--them {
  background: var(--navy-ink);
  color: rgba(255,255,255,0.78);
}
.compare-side--them h3 { color: rgba(255,255,255,0.5); }
.compare-side--them li strong { color: var(--white); }
.compare-side--them li { border-color: rgba(255,255,255,0.08); }
.compare-side--them li .icon { background: rgba(200,68,46,0.16); color: #ff8b75; }
