/* ==========================================================================
   PropSight — design system
   ========================================================================== */
:root {
  --bg: #05070d;
  --panel: rgba(14, 18, 29, 0.72);
  --panel-2: rgba(10, 13, 22, 0.96);
  --text: #f4f7ff;
  --muted: #9ba4b6;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --gold: #f3c32c;
  --gold-soft: rgba(243, 195, 44, 0.14);
  --blue: #4b86ff;
  --green: #35d07f;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  --shadow-lg: 0 40px 110px rgba(0, 0, 0, 0.55);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.44, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
p, h1, h2, h3, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(243, 195, 44, 0.28); color: #fff; }

/* ==========================================================================
   Accessibility — skip link, focus visibility, anchor offset
   ========================================================================== */
/* Skip link: visually hidden until focused, then a styled pill top-left. */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 10px 16px; border-radius: 12px;
  background: var(--panel-2); color: var(--text);
  border: 1px solid var(--gold);
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-140%);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: none; }

/* Consistent keyboard focus ring across interactive elements. Uses
   :focus-visible so it appears for keyboard/AT users but not on mouse click. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Sticky-header offset so in-page anchor targets aren't hidden behind the
   fixed header when navigated to (WCAG 2.4.11 Focus Not Obscured). */
html { scroll-padding-top: 96px; }

.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; }
.container-narrow { max-width: 820px; }

/* ==========================================================================
   Ambient background
   ========================================================================== */
.fx-particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%;
}
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5;
  animation: drift 26s ease-in-out infinite;
}
.blob-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(243,195,44,0.16), transparent 70%); top: -12%; left: -10%; }
.blob-2 { width: 680px; height: 680px; background: radial-gradient(circle, rgba(75,134,255,0.15), transparent 70%); top: 28%; right: -14%; animation-delay: 6s; animation-duration: 30s; }
.blob-3 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(53,208,127,0.09), transparent 70%); bottom: -12%; left: 28%; animation-delay: 11s; animation-duration: 34s; }
.bg-grid {
  position: absolute; inset: 0; opacity: 0.045;
  background-image:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 80%);
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(46px, -34px) scale(1.08); }
}

/* per-section ambient lighting */
.section-light {
  position: absolute; inset: -120px 0; pointer-events: none; z-index: -1;
}
.light-gold { background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(243, 195, 44, 0.07), transparent 70%); }
.light-blue { background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(75, 134, 255, 0.08), transparent 70%); }

main { position: relative; z-index: 1; }

/* ==========================================================================
   Motion primitives
   ========================================================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes loadIn {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.load-in { animation: loadIn 1s var(--ease) both; animation-delay: calc(var(--i, 0) * 110ms); }

[data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: none; }

@keyframes shimmerText {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.text-shimmer {
  background: linear-gradient(110deg, #f7dc80 20%, #fff4cf 40%, #f3c32c 55%, #f7dc80 75%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmerText 7s linear infinite;
}
.text-shimmer-lg {
  background: linear-gradient(110deg, #ffffff 15%, #f7dc80 38%, #f3c32c 50%, #f7dc80 62%, #ffffff 85%);
  background-size: 240% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmerText 8s linear infinite;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 18px 0;
  transition: padding 0.4s var(--ease);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px)); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: 12px 12px 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled { padding: 10px 0; }
.site-header.scrolled .header-inner {
  border-color: var(--line);
  background: rgba(7, 10, 17, 0.66);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.01em; transition: opacity 0.2s var(--ease); }
.brand:hover { opacity: 0.82; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong); color: var(--gold);
  box-shadow: 0 0 18px rgba(243, 195, 44, 0.14);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.site-nav { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 0.93rem; font-weight: 500; }
.site-nav a { position: relative; transition: color 0.25s var(--ease); padding: 4px 0; }
.site-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s var(--ease), left 0.3s var(--ease);
  border-radius: 2px; box-shadow: 0 0 8px rgba(243, 195, 44, 0.7);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; left: 0; }
.site-nav a.active { color: var(--gold); }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.78); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 156px 0 40px; overflow: visible; }
.hero-light {
  position: absolute; inset: -200px 0 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(ellipse 46% 42% at 72% 34%, rgba(243, 195, 44, 0.13), transparent 70%),
    radial-gradient(ellipse 40% 36% at 20% 12%, rgba(75, 134, 255, 0.12), transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 12px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  background: rgba(34, 48, 85, 0.4); border: 1px solid rgba(75, 134, 255, 0.3);
  color: #8fadff; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.74rem; font-weight: 700;
  box-shadow: 0 0 24px rgba(75, 134, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.eyebrow-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 10px var(--blue); animation: pulseDot 2.4s ease-in-out infinite;
}
h1 {
  margin-top: 24px;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.h1-line { display: block; }
.h1-accent {
  background: linear-gradient(100deg, #f8dc74 0%, #f3c32c 45%, #e89f1a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 34px rgba(243, 195, 44, 0.22));
}
.subhead { margin-top: 18px; max-width: 52ch; font-size: 1.08rem; line-height: 1.65; color: var(--muted); }
.hero-points { margin-top: 20px; display: grid; gap: 10px; color: #d7dcf0; font-size: 1rem; }
.hero-points li { position: relative; padding-left: 26px; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 0.42em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px rgba(243, 195, 44, 0.8);
}
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; scroll-margin-top: 140px; }
.hero-foot { margin-top: 16px; color: var(--muted); font-size: 0.95rem; }

/* store buttons */
.app-btn, .play-btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  min-height: 56px; padding: 0 22px; border-radius: 16px; font-weight: 700;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-label { display: flex; flex-direction: column; line-height: 1.15; text-align: left; font-size: 1rem; }
.btn-label small { font-size: 0.66rem; font-weight: 600; opacity: 0.72; letter-spacing: 0.04em; text-transform: uppercase; }
.app-btn {
  background: linear-gradient(180deg, #f8db67, #efb613);
  color: #07101b;
  box-shadow: 0 18px 44px rgba(243, 195, 44, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.app-btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.app-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 26px 60px rgba(243, 195, 44, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.app-btn:hover::after { transform: translateX(120%); }
.play-btn {
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.035); color: #e8edf9;
  backdrop-filter: blur(8px);
}
.play-btn:hover { transform: translateY(-3px) scale(1.02); border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.06); }

/* primary CTA button */
.cta-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px; border-radius: 16px; font-weight: 700; overflow: hidden;
  background: linear-gradient(180deg, #f8db67, #efb613); color: #07101b;
  box-shadow: 0 18px 44px rgba(243, 195, 44, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.cta-btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 28px 64px rgba(243, 195, 44, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.cta-btn:hover::after { transform: translateX(120%); }
.cta-btn svg { transition: transform 0.3s var(--ease); }
.cta-btn:hover svg { transform: translateX(4px); }
.cta-btn-wide { width: 100%; }
.cta-btn-lg { min-height: 62px; padding: 0 36px; font-size: 1.06rem; border-radius: 18px; }
.ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 18px; border-radius: 15px; font-weight: 700; width: 100%;
  border: 1px solid rgba(243, 195, 44, 0.32); color: #f4d66f; background: transparent;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.ghost-btn:hover {
  transform: translateY(-3px); border-color: rgba(243, 195, 44, 0.65);
  background: rgba(243, 195, 44, 0.06); box-shadow: 0 16px 38px rgba(243, 195, 44, 0.12);
}

/* status badge — non-interactive "Coming Soon" indicator (replaces waitlist CTAs) */
.status-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  border: 1px solid rgba(243, 195, 44, 0.5); color: #f9d96e; background: rgba(243, 195, 44, 0.07);
}
.status-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px var(--gold); animation: pulseDot 2.2s ease-in-out infinite;
}
.status-badge-lg { min-height: 54px; padding: 0 30px; font-size: 1.02rem; border-radius: 18px; }
.status-badge-block { width: 100%; justify-content: center; }
.form-note { margin-top: 12px; color: var(--muted); font-size: 0.86rem; }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 13px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025);
  color: #c6cddd; font-size: 0.88rem; font-weight: 600;
}
.store-badge em {
  font-style: normal; color: var(--gold); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-left: 7px;
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid rgba(243, 195, 44, 0.35); background: rgba(243, 195, 44, 0.07);
}

/* mobile nav toggle */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03);
  cursor: pointer; place-items: center; align-content: center; gap: 6px;
  transition: background 0.25s var(--ease);
}
.nav-toggle span {
  display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform 0.3s var(--ease);
}
.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(5, 7, 13, 0), rgba(5, 7, 13, 0.92) 34%);
  transform: translateY(110%); transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.mobile-cta.show { transform: none; pointer-events: auto; }

/* hero visual */
.hero-visual {
  position: relative; min-height: 740px;
  display: flex; align-items: center; justify-content: center;
  perspective: 1400px;
  container-type: inline-size;
}
.hero-halo {
  position: absolute; width: min(560px, 88cqw); height: min(560px, 88cqw); border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 195, 44, 0.16) 0%, rgba(243, 195, 44, 0.05) 42%, transparent 68%);
  filter: blur(6px);
  animation: haloPulse 7s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}
.orbit {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.orbit-a {
  width: min(520px, 84cqw); height: min(520px, 84cqw);
  border-top-color: rgba(243, 195, 44, 0.5);
  box-shadow: 0 0 60px rgba(243, 195, 44, 0.06);
  animation: spin 26s linear infinite;
}
.orbit-b {
  width: min(660px, 92cqw); height: min(660px, 92cqw);
  border-bottom-color: rgba(75, 134, 255, 0.4);
  animation: spin 40s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.phone-wrap { position: absolute; will-change: transform; }
.phone-wrap-c {
  left: 50%; top: 0; z-index: 3;
  margin-left: calc(min(296px, 37vw) / -2);
  animation: float 8s ease-in-out infinite 0.4s;
}
.phone-wrap-a { left: -2%; top: 11%; z-index: 2; animation: float 7.5s ease-in-out infinite; }
.phone-wrap-b { right: -4%; top: 15%; z-index: 1; animation: float 8.5s ease-in-out infinite 0.9s; }
.phone-wrap-c .phone { width: min(296px, 37vw); }
.phone-wrap-a .phone, .phone-wrap-b .phone { width: min(252px, 31vw); }
.phone-shadow {
  position: absolute; left: 8%; right: 8%; bottom: -44px; height: 44px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(10px);
}

/* iPhone 16 Pro frame */
.phone {
  position: relative;
  width: min(320px, 40vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 60px;
  padding: 11px;
  /* brushed titanium rail */
  background:
    linear-gradient(
      145deg,
      #b9babf 0%,
      #7d7e83 6%,
      #3f4045 14%,
      #232428 30%,
      #141518 50%,
      #101114 68%,
      #2c2d32 86%,
      #85868b 97%,
      #a2a3a8 100%
    );
  box-shadow:
    /* polished rail edge highlight */
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    inset 0 0 0 2.5px rgba(150, 152, 158, 0.28),
    inset 0 2px 3px rgba(255, 255, 255, 0.24),
    inset 0 -2px 3px rgba(255, 255, 255, 0.08),
    inset 0 -14px 26px rgba(0, 0, 0, 0.38),
    /* layered depth */
    0 60px 120px -24px rgba(0, 0, 0, 0.8),
    0 30px 60px -24px rgba(0, 0, 0, 0.65),
    0 4px 14px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease);
}
/* black bezel + screen glass edge */
.phone::before {
  content: ""; position: absolute; inset: 10px; border-radius: 50px;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 0 0 3px #000,
    0 0 0 1px rgba(0, 0, 0, 0.85);
  z-index: 0;
}
/* Dynamic Island */
.phone::after {
  content: ""; position: absolute; top: 3.52%; left: 50%; transform: translateX(-50%);
  width: 29%; height: 3.08%; border-radius: 999px;
  background:
    /* front camera lens */
    radial-gradient(circle at 77% 50%, rgba(28, 38, 58, 0.95) 0 2.6px, rgba(10, 14, 22, 0.9) 3.6px, transparent 5px),
    #030303;
  box-shadow:
    inset 0 0 1px 1px rgba(255, 255, 255, 0.05),
    inset 0 -1px 2px rgba(255, 255, 255, 0.03),
    0 0 0 3px rgba(0, 0, 0, 0.65),
    0 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 3;
}
.phone img { position: relative; z-index: 1; border-radius: 47px; }
/* titanium side buttons */
.phone-btn {
  position: absolute;
  background: linear-gradient(90deg, #2e2f33, #8a8b90 45%, #55565b 55%, #2e2f33);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.18),
    0 0 2px rgba(0, 0, 0, 0.6);
}
.btn-power { right: -2.5px; top: 26%; width: 3px; height: 12%; border-radius: 0 2.5px 2.5px 0; }
.btn-action { left: -2.5px; top: 12%; width: 3px; height: 4%; border-radius: 2.5px 0 0 2.5px; }
.btn-vol-up { left: -2.5px; top: 19%; width: 3px; height: 6.5%; border-radius: 2.5px 0 0 2.5px; }
.btn-vol-down { left: -2.5px; top: 27%; width: 3px; height: 6.5%; border-radius: 2.5px 0 0 2.5px; }
/* glass reflection */
.phone-glare {
  position: absolute; inset: 10px; border-radius: 50px; pointer-events: none; z-index: 2;
  background:
    /* diagonal window reflection */
    linear-gradient(
      108deg,
      transparent 30%,
      rgba(255, 255, 255, 0.085) 38%,
      rgba(255, 255, 255, 0.035) 45%,
      transparent 52%,
      transparent 72%,
      rgba(255, 255, 255, 0.05) 88%,
      transparent 100%
    ),
    /* top glass sheen */
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 12%),
    /* corner catch-light */
    radial-gradient(ellipse 40% 18% at 18% 2%, rgba(255, 255, 255, 0.09), transparent 70%);
}
.phone-c { transform: perspective(1300px) rotateX(1.5deg); }
.phone-a { transform: perspective(1300px) rotateY(-16deg) rotateX(2deg) rotateZ(-4deg); filter: brightness(0.82); }
.phone-b { transform: perspective(1300px) rotateY(16deg) rotateX(1deg) rotateZ(3deg); filter: brightness(0.74); }
.phone-wrap:hover .phone-c { transform: perspective(1300px) rotateX(0.5deg) scale(1.012); }
.phone-wrap:hover .phone-a { transform: perspective(1300px) rotateY(-11deg) rotateX(1deg) rotateZ(-2deg) scale(1.015); filter: brightness(0.92); }
.phone-wrap:hover .phone-b { transform: perspective(1300px) rotateY(11deg) rotateZ(1.5deg) scale(1.015); filter: brightness(0.85); }

.float-badge {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 17px; border-radius: 999px;
  background: rgba(10, 13, 22, 0.72);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.85rem; font-weight: 600; color: #e6eaf6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 4;
  animation: float 6.4s ease-in-out infinite;
  will-change: transform;
}
.float-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulseDot 2s ease-in-out infinite; }
.badge-live { top: -1%; left: 12%; z-index: 4; animation-delay: 0.3s; }

.scroll-cue { display: flex; justify-content: center; padding: 44px 0 0; }
.scroll-cue span {
  width: 26px; height: 42px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,0.16);
  position: relative;
}
.scroll-cue span::before {
  content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; border-radius: 4px;
  background: var(--gold); transform: translateX(-50%);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 7px; }
  70%, 100% { opacity: 0; top: 20px; }
}

/* ==========================================================================
   Metrics
   ========================================================================== */
.metrics { padding: 56px 0 8px; }
.metrics-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.metric {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 26px 18px; position: relative;
}
.metric:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}
.metric strong {
  color: var(--text); font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.04em;
  display: inline-flex; align-items: baseline;
}
.metric strong em { font-style: normal; color: var(--gold); margin-left: 2px; }
.metric .static-stat {
  background: linear-gradient(100deg, #f8dc74, #efb613);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.metric > span { color: var(--muted); font-size: 0.9rem; }

/* ==========================================================================
   Integrations marquee
   ========================================================================== */
.integrations { padding: 64px 0 30px; text-align: center; overflow: hidden; }
.integrations-label {
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 700; margin-bottom: 26px;
}
.marquee {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - 8px)); }
}
.integration-pill {
  padding: 15px 30px; border-radius: 999px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  color: #cfd5e6; font-weight: 700; font-size: 0.95rem; white-space: nowrap;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.integration-pill:hover {
  border-color: rgba(243, 195, 44, 0.45); color: var(--gold);
  box-shadow: 0 0 28px rgba(243, 195, 44, 0.12);
}
.marquee-books {
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 8%, black 16%, black 84%, rgba(0,0,0,0.18) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 8%, black 16%, black 84%, rgba(0,0,0,0.18) 92%, transparent 100%);
}
.marquee-books.is-dragging { cursor: grabbing; }
.marquee-track-books {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: none;
}
.book-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 202px;
  flex-shrink: 0;
  padding: 16px 20px 16px 15px;
  border-radius: 17px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(22, 27, 42, 0.85), rgba(10, 14, 24, 0.94)),
    radial-gradient(circle at top, rgba(243, 195, 44, 0.07), transparent 55%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.book-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 195, 44, 0.5);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3), 0 0 28px rgba(243, 195, 44, 0.18);
}
.book-pill-logo {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.book-pill-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.book-pill-name {
  color: #eef1fa;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
/* ==========================================================================
   Sections & headings
   ========================================================================== */
.section { position: relative; padding: 110px 0 20px; }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.kicker {
  display: inline-block; margin-bottom: 18px;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 0.76rem; font-weight: 700;
}
.kicker::before, .kicker::after {
  content: ""; display: inline-block; width: 26px; height: 1px; vertical-align: middle;
  background: linear-gradient(90deg, transparent, rgba(243, 195, 44, 0.6));
  margin: 0 12px;
}
.kicker::after { background: linear-gradient(90deg, rgba(243, 195, 44, 0.6), transparent); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); line-height: 1.04; letter-spacing: -0.045em; font-weight: 800; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.06rem; line-height: 1.7; }
.section-heading .section-sub { max-width: 52ch; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Timeline
   ========================================================================== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 26px; }
.timeline-track {
  position: absolute; top: 7px; left: 5%; right: 5%; height: 2px;
  background: rgba(255,255,255,0.07); z-index: 0; border-radius: 2px; overflow: hidden;
}
.timeline-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: 0 0 12px rgba(243, 195, 44, 0.5);
}
.timeline-step { position: relative; z-index: 1; padding: 0 6px; }
.step-ghost {
  position: absolute; top: -14px; right: 10px; z-index: -1;
  font-size: 5rem; font-weight: 800; letter-spacing: -0.06em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  user-select: none;
}
.timeline-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); margin-bottom: 26px;
  box-shadow: 0 0 0 5px rgba(5, 7, 13, 1), 0 0 0 6px rgba(243, 195, 44, 0.35), 0 0 22px rgba(243, 195, 44, 0.5);
}
.timeline-step h3 { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.timeline-step p { color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* ==========================================================================
   Sports
   ========================================================================== */
.sports-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.sport-card {
  position: relative; overflow: hidden;
  padding: 30px 18px 26px; text-align: center; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 20, 34, 0.7), rgba(10, 13, 22, 0.85));
  transition: transform 0.35s var(--ease-spring), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sport-card:hover { transform: translateY(-8px); border-color: rgba(243, 195, 44, 0.35); box-shadow: var(--shadow-lg); }
.sport-card > * { position: relative; z-index: 1; }
.sport-ico { display: block; font-size: 2.2rem; margin-bottom: 14px; transition: transform 0.35s var(--ease-spring); }
.sport-card:hover .sport-ico { transform: translateY(-4px) scale(1.15); }
.sport-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.sport-card p { color: var(--muted); font-size: 0.84rem; line-height: 1.55; }

/* ==========================================================================
   Showcase
   ========================================================================== */
.showcase { position: relative; padding: 150px 0 130px; margin-top: 40px; overflow: hidden; }
.showcase-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 52% 60% at 68% 50%, rgba(243, 195, 44, 0.16), transparent 68%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(243, 100, 30, 0.08), transparent 70%);
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 84%, transparent 100%);
}
.showcase-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
}
.showcase-copy h2 { max-width: 15ch; }
.showcase-copy .section-sub { max-width: 44ch; }
.showcase-visual { display: flex; justify-content: center; perspective: 1400px; }
.showcase-visual .phone-wrap { position: relative; }
.phone-solo { width: min(310px, 78vw); transform: rotateY(calc(var(--sy, 0) * 1deg)) rotateX(calc(var(--sx, 0) * 1deg)); will-change: transform; }
.phone-solo img { transition: opacity 0.28s var(--ease), transform 0.28s var(--ease); }

.tab-switch { display: flex; gap: 14px; margin-top: 32px; }
.tab-btn {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  border: 1px solid var(--line); background: rgba(255,255,255,0.035); color: var(--muted);
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tab-btn:hover { transform: translateY(-3px); color: var(--text); border-color: var(--line-strong); }
.tab-btn.active {
  background: linear-gradient(180deg, #f8db67, #efb613);
  color: #0a0d16; border-color: transparent;
  box-shadow: 0 16px 36px rgba(243, 195, 44, 0.35);
  transform: scale(1.08);
}
.tab-caption { margin-top: 20px; color: var(--text); font-weight: 700; font-size: 1.02rem; }
.tab-progress { display: flex; gap: 8px; margin-top: 14px; }
.tab-progress span {
  height: 3px; width: 38px; border-radius: 999px; background: rgba(255,255,255,0.12);
  overflow: hidden; position: relative;
}
.tab-progress span.active::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--gold); transform-origin: left;
  animation: tabProgress 4.5s linear forwards;
}
@keyframes tabProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ==========================================================================
   Feature tour
   ========================================================================== */
.tour-section { overflow: hidden; }
.tour-ribbon-bleed {
  width: var(--vw, 100vw);
  margin-left: calc(50% - (var(--vw, 100vw) / 2));
  overflow: hidden;
  margin-top: 8px;
}
.tour-carousel-shell { position: relative; padding: 16px 0 30px; }
.tour-carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 190px 0 18px;
  cursor: grab;
  user-select: none;
  touch-action: pan-x pan-y;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 4%, black 12%, black 92%, rgba(0,0,0,0.3) 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 4%, black 12%, black 92%, rgba(0,0,0,0.3) 98%, transparent 100%);
}
.tour-carousel::-webkit-scrollbar { display: none; }
.tour-carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.tour-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 max(24px, calc((var(--vw, 100vw) - var(--max)) / 2 + 24px));
}
.tour-card {
  position: relative;
  flex: 0 0 min(80vw, 820px);
  width: min(80vw, 820px);
  height: 480px;
  border-radius: 30px;
  overflow: visible;
  scroll-snap-align: center;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.tour-card-gold {
  background:
    radial-gradient(ellipse 80% 60% at 20% 15%, rgba(243, 195, 44, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(24, 21, 10, 0.92), rgba(10, 13, 22, 0.96));
}
.tour-card-blue {
  background:
    radial-gradient(ellipse 80% 60% at 20% 15%, rgba(75, 134, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(12, 17, 30, 0.94), rgba(9, 12, 20, 0.96));
}
.tour-card-green {
  background:
    radial-gradient(ellipse 80% 60% at 20% 15%, rgba(53, 208, 127, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(10, 20, 16, 0.94), rgba(9, 12, 20, 0.96));
}
.tour-card-copy {
  position: absolute; z-index: 2; left: 44px; right: 46%; top: 50%; transform: translateY(-50%);
}
.tour-tag {
  display: inline-block; margin-bottom: 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.tour-card-gold .tour-tag { color: rgba(243, 195, 44, 0.85); }
.tour-card-blue .tour-tag { color: rgba(120, 162, 255, 0.9); }
.tour-card-green .tour-tag { color: rgba(97, 218, 154, 0.9); }
.tour-card h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.3rem); line-height: 1.12; letter-spacing: -0.03em; font-weight: 800;
  margin-bottom: 16px;
}
.tour-card h3 em { font-style: normal; }
.tour-card-gold h3 em { color: var(--gold); }
.tour-card-blue h3 em { color: #7da2ff; }
.tour-card-green h3 em { color: #5be0a0; }
.tour-card p { color: var(--muted); line-height: 1.65; font-size: 1.06rem; max-width: 33ch; }
.tour-card-phone {
  position: absolute; z-index: 1; right: 38.6px; bottom: -2px;
}
.tour-card-phone::before {
  content: "";
  position: absolute;
  left: 10%; right: 6%; bottom: 2px; height: 32px;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(0, 0, 0, 0.55), transparent 75%);
  filter: blur(9px);
  pointer-events: none;
}
.tour-card-phone .phone-solo { width: min(300px, 42vw); }
.tour-card-phone .phone-shadow {
  position: absolute; left: 10%; right: 10%; bottom: -14px; height: 30px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(8px);
}
.tour-pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.tour-pip {
  position: relative;
  appearance: none; border: none; padding: 0; margin: 0;
  width: 30px; height: 4px; border-radius: 999px;
  background: rgba(244, 247, 255, 0.18);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
/* Expand the tap/click target to ~24px tall without growing the visible
   pill, so the hit area meets the WCAG 2.5.8 minimum without a design change. */
.tour-pip::before {
  content: ""; position: absolute; inset: -10px 0;
}
.tour-pip:hover { background: rgba(244, 247, 255, 0.32); }
.tour-pip:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.tour-pip.is-active {
  background: var(--gold);
}

/* ==========================================================================
   Real proof
   ========================================================================== */
.real-proof-section { overflow: hidden; }
.proof-ribbon-bleed {
  width: var(--vw, 100vw);
  margin-left: calc(50% - (var(--vw, 100vw) / 2));
  overflow: hidden;
}
.proof-carousel-shell {
  position: relative;
  padding: 30px 0 6px;
}
.proof-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 7%, black 14%, black 86%, rgba(0,0,0,0.22) 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.22) 7%, black 14%, black 86%, rgba(0,0,0,0.22) 93%, transparent 100%);
}
.proof-carousel.is-dragging { cursor: grabbing; }
.proof-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.proof-card {
  position: relative;
  flex: 0 0 var(--card-width, 340px);
  width: var(--card-width, 340px);
  border-radius: 22px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 24, 37, 0.94), rgba(10, 14, 24, 0.92)),
    radial-gradient(circle at top, rgba(243, 195, 44, 0.06), transparent 52%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  overflow: hidden;
  transition: border-color 180ms linear, box-shadow 180ms linear, transform 180ms linear;
}
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.08), transparent 32%, transparent 68%, rgba(243,195,44,0.05));
  pointer-events: none;
}
.proof-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.proof-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
.proof-card:hover {
  border-color: rgba(243, 195, 44, 0.28);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28), 0 0 24px rgba(243, 195, 44, 0.12);
  transform: translateY(-3px);
}

/* ==========================================================================
   Comparison
   ========================================================================== */
.compare {
  --us-col: 230px; --them-col: 230px;
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 20, 34, 0.55), rgba(10, 13, 22, 0.75));
  backdrop-filter: blur(8px);
}
.compare-us-col {
  position: absolute; top: -26px; bottom: -26px; right: var(--them-col); width: var(--us-col);
  border-radius: 20px; pointer-events: none; z-index: 0;
  border: 1px solid rgba(243, 195, 44, 0.4);
  background:
    radial-gradient(ellipse 120% 40% at 50% 0%, rgba(243, 195, 44, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(24, 21, 8, 0.92), rgba(14, 12, 6, 0.94));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 70px rgba(243, 195, 44, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.compare-row {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr var(--us-col) var(--them-col);
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.compare-feature { padding: 19px 30px; font-weight: 600; font-size: 0.99rem; color: #dde2f0; }
.compare-feature .feat-ico {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 34px; height: 34px; margin-right: 14px; border-radius: 11px;
  color: var(--gold);
  border: 1px solid rgba(243, 195, 44, 0.22);
  background: rgba(243, 195, 44, 0.06);
}
.compare-pricing .compare-feature { display: flex; align-items: center; }
.compare-cell { display: flex; align-items: center; justify-content: center; padding: 19px 12px; }
.compare-head { padding: 26px 0 10px; }
.compare-head .compare-cell { flex-direction: column; gap: 4px; padding-bottom: 8px; }
.compare-head strong { font-size: 1.04rem; letter-spacing: -0.01em; margin-top: 8px; }
.compare-head span { color: var(--muted); font-size: 0.8rem; }
.compare-cell-us.compare-cell strong { color: var(--text); }
.compare-head .compare-cell-us span { color: rgba(243, 195, 44, 0.85); }
.compare-logo {
  width: 40px; height: 40px; border-radius: 12px; display: block; overflow: hidden;
  border: 1px solid rgba(243, 195, 44, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 24px rgba(243, 195, 44, 0.18);
}
.compare-logo img { width: 100%; height: 100%; object-fit: cover; }
.them-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted); background: rgba(255, 255, 255, 0.03);
  font-size: 1rem;
}
.tick {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 800;
}
.tick-gold {
  background: linear-gradient(180deg, #f8db67, #efb613); color: #0a0d16;
  box-shadow: 0 6px 18px rgba(243, 195, 44, 0.35);
}
.tick-dim { background: rgba(255, 255, 255, 0.07); color: rgba(244, 247, 255, 0.5); }
.tick-no { background: rgba(255, 255, 255, 0.04); color: rgba(155, 164, 182, 0.68); border: 1px solid var(--line); }
.compare-foot { text-align: center; color: var(--muted); margin-top: 46px; font-size: 0.95rem; }
.col-mini {
  display: none; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}
.compare-cell-us .col-mini { color: rgba(243, 195, 44, 0.85); }

/* ==========================================================================
   Pricing (value comparison) — premium redesign
   ========================================================================== */
.pricing-section { padding-top: 90px; padding-bottom: 40px; }
.pricing-section .section-heading { margin-bottom: 40px; }

/* larger, more dominant table */
.compare-pricing {
  --us-col: 300px; --them-col: 240px;
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(17, 22, 37, 0.6), rgba(9, 12, 20, 0.82));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.compare-pricing .compare-row {
  grid-template-columns: 1fr var(--us-col) var(--them-col);
}
.compare-pricing .compare-feature { padding: 26px 34px; font-size: 1.06rem; }
.compare-pricing .compare-cell { padding: 26px 12px; }
.compare-pricing .compare-row + .compare-row { border-top-color: rgba(255, 255, 255, 0.06); }

/* highlighted PropSight column — luminous gold glass */
.compare-pricing .compare-us-col {
  top: -46px; bottom: -20px;
  border-radius: 26px;
  border: 1px solid rgba(243, 195, 44, 0.55);
  background:
    radial-gradient(ellipse 90% 34% at 50% 4%, rgba(243, 195, 44, 0.34), transparent 62%),
    radial-gradient(ellipse 120% 26% at 50% 50%, rgba(243, 195, 44, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(46, 38, 12, 0.96), rgba(24, 20, 8, 0.9) 45%, rgba(16, 13, 6, 0.92));
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.6),
    0 0 90px rgba(243, 195, 44, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 60px rgba(243, 195, 44, 0.06);
  overflow: hidden;
}
/* breathing central bloom */
.compare-pricing .compare-us-col::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 50% 44%, rgba(248, 219, 103, 0.22), transparent 68%);
  animation: goldBreathe 5.5s ease-in-out infinite;
}
/* slow shimmer sweep */
.compare-pricing .compare-us-col::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 246, 214, 0.12) 50%, transparent 62%);
  background-size: 260% 100%;
  animation: goldSweep 7s linear infinite;
}
@keyframes goldBreathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes goldSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -160% 0; }
}

/* header: logo, name, trial, big price */
.compare-pricing .compare-head { padding: 34px 0 16px; }
.compare-pricing .compare-head .compare-cell-us { padding-bottom: 22px; gap: 6px; }
.compare-pricing .compare-head .compare-logo {
  width: 52px; height: 52px; border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 32px rgba(243, 195, 44, 0.3);
}
.compare-pricing .compare-head strong { font-size: 1.2rem; margin-top: 12px; }
.compare-pricing .compare-head .compare-cell-them strong { color: #eef1f8; }
.compare-pricing .compare-head .them-mark { width: 40px; height: 40px; border-radius: 12px; }

.compare-pricing .compare-cell-us .compare-trial {
  margin-top: 12px;
  display: inline-flex; padding: 6px 14px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #0a0d16; -webkit-text-fill-color: #0a0d16;
  background: linear-gradient(180deg, #f8db67, #efb613);
  box-shadow: 0 8px 22px rgba(243, 195, 44, 0.3);
}
/* hero-scale price */
.compare-pricing .compare-price {
  margin-top: 14px; line-height: 1;
  font-size: clamp(2.8rem, 4.6vw, 4rem); font-weight: 800; letter-spacing: -0.045em;
  background: linear-gradient(180deg, #fdeaa4 0%, #f3c32c 55%, #e2961b 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 20px rgba(243, 195, 44, 0.28));
}
.compare-pricing .compare-price em {
  display: block; margin-top: 8px;
  font-style: normal; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(243, 195, 44, 0.75);
  -webkit-text-fill-color: rgba(243, 195, 44, 0.75);
}
.compare-pricing .compare-price-dim {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  background: none; -webkit-text-fill-color: #c7cbd6; color: #c7cbd6; filter: none;
}
.compare-pricing .compare-price-dim em { color: var(--muted); -webkit-text-fill-color: var(--muted); }

/* ticks: cream discs with gold check pop on the gold column */
.compare-pricing .compare-cell-us .tick {
  width: 38px; height: 38px;
  background: linear-gradient(180deg, #fff6dc, #f4d778);
  color: #a9750d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 18px rgba(248, 219, 103, 0.45);
}
.compare-pricing .compare-cell-them .tick { width: 32px; height: 32px; }

/* CTA connected to the table */
.pricing-cta { text-align: center; margin-top: 40px; }
.pricing-cta .cta-btn-lg { min-width: 260px; }
.pricing-foot {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 20px; color: var(--muted); font-size: 0.92rem;
}
.pricing-foot .foot-logo {
  width: 18px; height: 18px; border-radius: 5px; object-fit: cover;
  border: 1px solid rgba(75, 134, 255, 0.35);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 20, 34, 0.6), rgba(10, 13, 22, 0.75));
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  overflow: hidden;
}
.faq-list details:hover, .faq-list details[open] { border-color: rgba(243, 195, 44, 0.3); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-weight: 700; list-style: none; padding: 20px 22px; font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px;
  transition: transform 0.35s var(--ease);
}
.faq-plus::before { left: 0; right: 0; top: 7px; height: 2px; }
.faq-plus::after { top: 0; bottom: 0; left: 7px; width: 2px; }
details[open] .faq-plus::after { transform: scaleY(0); }
details[open] .faq-plus::before { transform: rotate(180deg); }
.faq-body { padding: 0 22px; }
.faq-body p { color: var(--muted); line-height: 1.7; padding-bottom: 20px; max-width: 68ch; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: 150px 24px 160px; margin-top: 60px;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 50% 55%, rgba(243, 195, 44, 0.16), transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(243, 195, 44, 0.06), transparent 70%);
}
.cta-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.cta-rings span {
  position: absolute; border-radius: 50%; border: 1px solid rgba(243, 195, 44, 0.14);
  animation: ctaRing 6s ease-out infinite;
}
.cta-rings span:nth-child(1) { width: 340px; height: 340px; }
.cta-rings span:nth-child(2) { width: 340px; height: 340px; animation-delay: 2s; }
.cta-rings span:nth-child(3) { width: 340px; height: 340px; animation-delay: 4s; }
@keyframes ctaRing {
  0% { transform: scale(0.9); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}
.final-cta h2 { font-size: clamp(2.8rem, 6.4vw, 5rem); letter-spacing: -0.05em; }
.final-cta .section-sub { margin: 20px auto 38px; max-width: 44ch; }
.final-cta .kicker { margin-bottom: 4px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer-new {
  position: relative; overflow: hidden;
  padding: 110px 0 40px; margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-glow {
  position: absolute; left: 50%; bottom: -340px; transform: translateX(-50%);
  width: 1100px; height: 620px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(243, 195, 44, 0.1) 0%, rgba(243, 195, 44, 0.03) 45%, transparent 70%);
  filter: blur(20px);
}
.footer-top {
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 72px; align-items: start;
  position: relative; z-index: 1;
}
.footer-brand p { color: var(--muted); line-height: 1.7; margin-top: 18px; font-size: 0.98rem; }
.footer-brand .brand { font-size: 1.1rem; }
.footer-brand .status-badge { margin-top: 28px; }
.form-note-footer { margin-top: 10px; font-size: 0.8rem; }

.footer-cols {
  display: grid; grid-template-columns: repeat(5, auto); gap: 40px; justify-content: space-between;
}
.footer-col { display: grid; align-content: start; gap: 13px; }
.footer-col h3 {
  color: var(--text); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
}
.footer-col a {
  color: var(--muted); font-size: 0.94rem; width: fit-content; position: relative;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-col a:hover { color: var(--gold); transform: translateX(3px); }

.footer-wordmark {
  margin: 90px 0 30px; text-align: center;
  font-size: clamp(4rem, 14vw, 12.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.012) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  user-select: none; pointer-events: none;
  position: relative; z-index: 0;
}
.footer-bottom {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer-bottom > span { color: var(--muted); font-size: 0.88rem; }
.footer-disclaimer {
  color: var(--muted); font-size: 0.78rem; line-height: 1.7; max-width: 78ch;
}

/* ==========================================================================
   Legal / content subpages (privacy, terms, support)
   ========================================================================== */
.page-shell { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; padding: 14px 0 30px; }
.content-page .site-header {
  position: sticky; top: 14px; padding: 0; margin-bottom: 6px;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 20px;
  padding: 16px 22px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(8, 11, 18, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
}
.content-page .site-nav { justify-content: flex-end; }
.content-page .legal-page { padding: 44px 0 20px; max-width: 760px; }
.legal-page h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 10px; letter-spacing: -0.045em; }
.last-updated { color: var(--muted); }
.legal-card {
  padding: 26px; margin-top: 16px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.legal-card h2 { font-size: 1.3rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.legal-card p { color: var(--muted); line-height: 1.7; }
.legal-card a { color: var(--gold); }

/* Long-form legal layout with table of contents */
.legal-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 40px;
  align-items: start; padding: 44px 0 40px;
}
.legal-toc {
  position: sticky; top: 104px;
  padding: 20px 18px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: rgba(13, 17, 28, 0.55);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}
.legal-toc h2 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.legal-toc ol { list-style: none; display: grid; gap: 2px; }
.legal-toc a {
  display: block; padding: 6px 10px; border-radius: 9px;
  color: var(--muted); font-size: 0.86rem; line-height: 1.4;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.legal-toc a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.legal-toc a.is-current { color: var(--gold); background: rgba(243, 195, 44, 0.08); }
.legal-body { max-width: 720px; min-width: 0; }
.legal-body h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom: 10px; letter-spacing: -0.045em; }
.legal-intro { color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 62ch; }
.legal-section {
  margin-top: 22px; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(20, 25, 40, 0.6), rgba(11, 15, 25, 0.72));
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  scroll-margin-top: 110px;
}
.legal-section h2 {
  font-size: 1.28rem; letter-spacing: -0.02em; margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal-section h2 .sec-num {
  color: var(--gold); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.legal-section h3 { font-size: 1rem; margin: 18px 0 8px; letter-spacing: -0.01em; }
.legal-section p { color: var(--muted); line-height: 1.75; margin-top: 10px; }
.legal-section p:first-of-type { margin-top: 0; }
.legal-section ul { margin: 10px 0 0 2px; display: grid; gap: 8px; list-style: none; }
.legal-section ul li {
  position: relative; padding-left: 22px; color: var(--muted); line-height: 1.65;
}
.legal-section ul li::before {
  content: ""; position: absolute; left: 2px; top: 0.58em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); opacity: 0.75;
}
.legal-section a { color: var(--gold); }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-footnote {
  margin-top: 26px; padding: 20px 24px; border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 195, 44, 0.2);
  background: rgba(243, 195, 44, 0.05);
  color: var(--muted); line-height: 1.7; font-size: 0.92rem;
}
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-toc { position: static; }
  .legal-section { padding: 22px 18px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .hero { padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { min-height: 640px; }
  .showcase-inner { grid-template-columns: 1fr; text-align: center; }
  .showcase-copy h2, .showcase-copy .section-sub { margin-left: auto; margin-right: auto; }
  .tab-switch, .tab-progress { justify-content: center; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 44px 30px; }
  .timeline-track { display: none; }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .compare { --us-col: 170px; --them-col: 160px; }
  .compare-pricing { --us-col: 210px; --them-col: 180px; }
  .compare-pricing .compare-feature { padding: 22px 26px; font-size: 1rem; }
  .compare-pricing .compare-cell { padding: 22px 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 36px; justify-content: start; }
}
@media (max-width: 760px) {
  .container { width: calc(100% - 36px); }
  .site-header { padding: 10px 0; }
  .header-inner {
    grid-template-columns: auto 1fr auto auto; gap: 10px;
    padding: 8px 8px 8px 14px; position: relative;
  }
  .nav-toggle { display: grid; }
  .status-badge { padding: 10px 14px; font-size: 0.86rem; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    display: grid; grid-template-columns: 1fr; gap: 2px; justify-items: stretch; text-align: left;
    padding: 14px;
    border-radius: 22px; border: 1px solid var(--line);
    background: rgba(7, 10, 17, 0.94);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
  }
  .site-nav a { padding: 12px 12px; border-radius: 12px; font-size: 1rem; }
  .site-nav a:hover { background: rgba(255, 255, 255, 0.04); }
  .site-nav a::after { display: none; }
  .menu-open .site-nav { opacity: 1; pointer-events: auto; visibility: visible; transform: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s; }
  .mobile-cta { display: block; }
  .site-footer-new { padding-bottom: 110px; }
  .hero { padding-top: 118px; }
  h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-visual { min-height: 520px; }
  .phone-wrap-c { margin-left: calc(min(224px, 58vw) / -2); }
  .phone-wrap-c .phone { width: min(224px, 58vw); }
  .phone-wrap-a .phone, .phone-wrap-b .phone { width: min(164px, 42vw); }
  .phone-wrap-a { left: -6%; top: 12%; }
  .phone-wrap-b { right: -7%; top: 16%; }
  .badge-live { left: 4%; }
  .orbit-a { width: min(340px, 84cqw); height: min(340px, 84cqw); }
  .orbit-b { width: min(440px, 92cqw); height: min(440px, 92cqw); }
  .hero-halo { width: min(360px, 88cqw); height: min(360px, 88cqw); }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(odd)::before { display: none; }
  .section { padding: 84px 0 16px; }
  .timeline { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { padding: 90px 0 80px; }
  .final-cta { padding: 100px 18px; }
  .tour-carousel {
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 4%, black 14%, black 86%, rgba(0,0,0,0.12) 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 4%, black 14%, black 86%, rgba(0,0,0,0.12) 96%, transparent 100%);
  }
  .tour-track { gap: 16px; }
  .tour-card {
    flex-basis: min(84vw, 340px);
    width: min(84vw, 340px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 24px 28px;
  }
  .tour-card-copy {
    position: static; transform: none;
    max-width: none; margin-bottom: 24px;
  }
  .tour-card p { max-width: 34ch; margin: 0 auto; }
  .tour-card-phone { position: static; transform: none; }
  .tour-card-phone .phone-solo { width: min(190px, 50vw); margin: 0 auto; }
  .proof-carousel {
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 4%, black 14%, black 86%, rgba(0,0,0,0.12) 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 4%, black 14%, black 86%, rgba(0,0,0,0.12) 96%, transparent 100%);
  }
  .proof-carousel-track { gap: 14px; }
  .proof-card {
    flex-basis: min(82vw, 340px);
    width: min(82vw, 340px);
  }
  .proof-card-media { min-height: 420px; height: 420px; }
  .proof-card img { width: 92%; height: 92%; }
  .book-pill { min-width: 176px; padding: 13px 17px 13px 12px; gap: 11px; }
  .book-pill-logo { width: 40px; height: 40px; }
  .book-pill-name { font-size: 0.86rem; }
  .compare { --us-col: 76px; --them-col: 66px; }
  .compare-us-col { top: -14px; bottom: -14px; border-radius: 14px; }
  .compare-feature { padding: 16px 16px; font-size: 0.86rem; }
  .compare-cell { padding: 16px 6px; }
  .compare-head strong, .compare-head span { display: none; }
  .compare-head .compare-logo { display: block; }
  .compare-head .them-mark { display: grid; }
  .col-mini { display: block; }
  .compare-feature .feat-ico { display: none; }
  .compare-pricing { --us-col: 132px; --them-col: 106px; }
  .compare-pricing .compare-feature { padding: 15px 14px; font-size: 0.84rem; }
  .compare-pricing .compare-cell { padding: 15px 6px; }
  .compare-pricing .compare-us-col { top: -16px; bottom: -14px; border-radius: 18px; }
  .compare-pricing .compare-head { padding: 22px 0 12px; }
  .compare-pricing .compare-head .compare-logo { width: 42px; height: 42px; border-radius: 12px; }
  .compare-pricing .compare-head strong,
  .compare-pricing .compare-head .compare-price { display: block; }
  .compare-pricing .compare-head .compare-trial { display: inline-flex; }
  .compare-pricing .compare-head strong { font-size: 0.9rem; margin-top: 8px; }
  .compare-pricing .compare-cell-us .compare-trial { font-size: 0.5rem; padding: 4px 8px; letter-spacing: 0.05em; margin-top: 8px; }
  .compare-pricing .compare-price { font-size: 1.6rem; margin-top: 8px; }
  .compare-pricing .compare-price-dim { font-size: 1.4rem; }
  .compare-pricing .compare-price em { display: block; margin-left: 0; font-size: 0.6rem; }
  .compare-pricing .compare-cell-us .tick { width: 28px; height: 28px; }
  .compare-pricing .compare-cell-them .tick { width: 26px; height: 26px; }
  .compare-head .compare-cell { padding-bottom: 14px; }
  .tick { width: 26px; height: 26px; font-size: 0.74rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-wordmark { margin: 60px 0 24px; }
  .scroll-cue { display: none; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .load-in { animation: none; }
  .fx-particles { display: none; }
}
