/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(168,204,230,0.3) 0%, rgba(74,111,165,0.8) 30%, rgba(168,204,230,0.7) 50%, rgba(74,111,165,0.8) 70%, rgba(168,204,230,0.3) 100%);
  z-index: 10000;
  pointer-events: none;
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
/* Ambient glows removed */
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* Mono number font — matches GT America Mono from bilt.com */
.mono-num, .hero-stat-value, .ua-rewards-amount, .conn-feat-number {
  font-family: 'Space Mono', 'GT America Mono', monospace;
}

/* ========== CSS VARIABLES ========== */
:root {
  --navy: #1C2340;
  --navy-deep: #F5F7FA;
  --navy-mid: #EDF0F5;
  --logo-blue: #3D6494;
  --logo-blue-light: #5580AB;
  --logo-blue-dim: rgba(61,100,148,0.08);
  --silver: #5A6178;
  --silver-light: #3A4055;
  --silver-bright: #1C2340;
  --gold: #E8772E;
  --flo-blue: #4A6FA5;
  --flo-blue-dim: rgba(74,111,165,0.12);
  --flo-blue-dark: #3B5C8A;
  --text-primary: #1C2340;
  --text-secondary: rgba(28,35,64,0.6);
  --text-tertiary: rgba(28,35,64,0.4);
  --surface: rgba(28,35,64,0.03);
  --surface-hover: rgba(28,35,64,0.06);
  --border: rgba(28,35,64,0.08);
  --border-accent: rgba(61,100,148,0.2);
  --max-width: 1200px;
  --section-padding: 120px;
}

/* ========== SKIP LINK ========== */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: #1C2340;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 16px;
}

/* ========== UTILITIES ========== */
[id] { scroll-margin-top: 80px; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.gradient-text,
.gradient-text-light {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #a8cce6;
  color: #a8cce6;
}
/* Heading color — navy on light bg */
.hero h1 {
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.056em;
  line-height: 0.95;
}
.section-title,
.ua-heading,
.reviews-heading {
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.056em;
  line-height: 1.1;
}
/* Stacked word-per-line (hero only) */
.hero h1 .stacked-word {
  display: block;
  overflow: visible;
}
.hero h1 .stacked-word:last-child {
  padding-bottom: 0.15em;
}
/* Hero card icon in "organized" — keep visible inside gradient-text */
.hero-card-o {
  -webkit-text-fill-color: initial;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Blur-to-clear word reveal */
.scroll-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(6px);
  transition: opacity 0.45s ease, filter 0.5s ease, transform 0.45s ease;
}
.scroll-word.visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}
/* Preserve gradient on scroll-words inside gradient-text */
.gradient-text .scroll-word,
.gradient-text-light .scroll-word {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #a8cce6;
  background-clip: unset;
  color: #a8cce6;
}

/* ========== CASH APP STACKING PARALLAX ========== */
.parallax-section {
  will-change: transform, opacity, filter;
  transform-origin: center top;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
@keyframes rotateCards {
  0% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll-reveal animation system */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.from-left { transform: translateX(-40px) translateY(0); }
.reveal.from-right { transform: translateX(40px) translateY(0); }
.reveal.scale-in { transform: scale(0.92) translateY(16px); }
.reveal.visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ========== HERO ROTATION SYSTEM ========== */
.hero-rotate-wrap {
  position: relative;
  min-height: 180px;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hero-slide.exiting {
  opacity: 0;
  transform: translateY(-14px);
}
.hero-slide h1 { margin-bottom: 14px; }
.hero-slide p {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  -webkit-text-fill-color: rgba(255,255,255,0.82);
  line-height: 1.4;
  letter-spacing: -0.016em;
  font-weight: 400;
  max-width: 440px;
}

/* Phantom-style pill indicators */
.hero-dots {
  display: none;
}
.hero-dot {
  height: 6px;
  border-radius: 100px;
  border: none;
  background: rgba(28,35,64,0.10);
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 6px;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1), background 0.3s;
}
.hero-dot.active {
  width: 36px;
  background: rgba(28,35,64,0.08);
}
.hero-dot.done {
  background: rgba(28,35,64,0.18);
}
.hero-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: #1C2340;
  border-radius: 100px;
  transition: width 0.15s linear;
}
.hero-dot.active::after {
  width: 100%;
  transition: width 5s linear;
}
.hero-dot.done::after {
  width: 100%;
  transition: none;
}
.hero-dot:hover {
  background: rgba(28,35,64,0.16);
}

/* Phone screen iframe */
.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 50px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.phone-screen iframe::-webkit-scrollbar { width: 0 !important; height: 0 !important; display: none !important; }

/* ========== TOP PROMO BANNER ========== */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #a8cce6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #0a1018;
  letter-spacing: 0.01em;
  line-height: 1;
  height: 34px;
}
.top-banner a {
  color: #0a1018;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.top-banner a:hover {
  opacity: 0.7;
}
.top-banner .banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0a1018;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 4px;
  line-height: 1;
}
.top-banner .banner-close:hover {
  opacity: 1;
}
/* Baby blue background extends behind the site-wrap rounded corners */
.banner-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #a8cce6;
  z-index: 98;
}
/* Site content wrapper — rounded top corners over the baby blue */
.site-wrap {
  position: relative;
  z-index: 100;
  margin-top: 34px;
  border-radius: 16px 16px 0 0;
  overflow: clip;
  background: #ffffff;
}
body:not(.banner-visible) .site-wrap {
  margin-top: 0;
  border-radius: 0;
}
body:not(.banner-visible) .banner-bg {
  display: none;
}

/* ========== NAV ========== */
/* ========== NAV — Hims-style inside site-wrap ========== */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0b1525;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
nav.scrolled {
  background: rgba(11,21,37,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 0 0 16px 16px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-inner > * {
  position: relative;
  z-index: 1;
}
nav.scrolled .nav-inner {
  background: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin-left: -36px;
}
.nav-logo svg {
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: #fff;
}
/* Nav pill links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
  background: none;
  border-color: rgba(255,255,255,0.15);
  border-radius: 8px;
}
/* CTA pill button inside the nav */
.nav-cta {
  display: flex;
  align-items: center;
}
.btn-primary {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0B1020;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative;
  box-shadow: 0 6px 20px -8px rgba(168,204,230,0.5), 0 2px 4px rgba(11,16,32,0.2);
}
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 15%;
  width: 70%;
  height: 12px;
  background: radial-gradient(ellipse at center, rgba(168,204,230,0.2) 0%, rgba(168,204,230,0.06) 50%, transparent 80%);
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.btn-primary:hover {
  background: #f5fafe;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(168,204,230,0.65), 0 4px 8px rgba(11,16,32,0.25);
}
.btn-ghost {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(28,35,64,0.65);
  background: transparent;
  border: 1px solid rgba(28,35,64,0.10);
  border-radius: 100px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  color: #1C2340;
  border-color: rgba(28,35,64,0.18);
  background: rgba(28,35,64,0.03);
}

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 12px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span { width: 18px; height: 1.5px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 24px 24px 0;
  overflow: visible;
  background: #0b1525;
  border-radius: 0 0 24px 24px;
}
.hero::before {
  display: none;
}
.hero::after {
  display: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { animation: fadeInUp 1s ease-out; margin-top: -200px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 10px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--flo-blue-dark), var(--flo-blue));
  animation: pulseGlow 2s ease-in-out infinite;
  position: relative;
}
.hero-badge .dot::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 3px;
  height: 2px;
  border-radius: 0.5px;
  background: rgba(28,35,64,0.3);
}
/* Inline rating stars */
.rating-stars-inline {
  display: inline-flex;
  gap: 1px;
  align-items: center;
  margin-top: -2px;
}
.hero h1 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.056em;
  margin-bottom: 24px;
  overflow: visible;
  color: #fff;
}
.hero h1 .stacked-word {
  display: block;
}
.hero h1 .gradient-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #a8cce6 !important;
  -webkit-text-fill-color: #a8cce6 !important;
}
.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
  line-height: 1.4;
  margin-bottom: 32px;
  font-weight: 400;
}
/* Download row — all in one line */
.hero-download-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
  flex-wrap: wrap;
}
.hero-download-row .btn-download,
.hero-download-row .store-btn {
  flex: 0 0 auto;
  width: auto;
}
/* Download Flo — primary CTA */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #0B1020;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 28px -10px rgba(168,204,230,0.55), 0 2px 6px rgba(11,16,32,0.25);
}
.btn-download:hover {
  background: #f5fafe;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 14px 36px -10px rgba(168,204,230,0.7), 0 4px 10px rgba(11,16,32,0.28);
}
.btn-download:active { transform: translateY(0); }
.btn-download svg { flex-shrink: 0; stroke: #0B1020 !important; }
/* QR popup — appears on click */
.qr-popup {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(28,35,64,0.12), 0 0px 0px 1px rgba(28,35,64,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
  width: 220px;
}
.qr-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.qr-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}
.qr-popup img {
  width: 160px;
  height: 160px;
  border-radius: 10px;
}
.qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.qr-popup-text {
  font-size: 12px;
  color: #1C2340;
  -webkit-text-fill-color: #1C2340;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
.qr-popup-badges {
  display: flex;
  gap: 6px;
  align-items: center;
}
.qr-popup-badge {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 3px 8px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.qr-popup-badge svg { width: 10px; height: 10px; flex-shrink: 0; }

/* Store download buttons — inline with Download Flo */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}
.store-btn svg { flex-shrink: 0; opacity: 0.75; fill: #fff; }
.store-btn svg path { fill: #fff; }
.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.store-btn-small {
  font-size: 8px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.store-btn-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  align-items: center;
}
.hero-stat { text-align: left; }
.hero-stat-value {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.9);
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* Connected cards strip */
.hero-cards-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.mini-cc {
  width: 48px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.25s ease;
}
.mini-cc:hover {
  transform: translateY(-2px);
}
/* Visa */
.mini-cc.cc-visa {
  background: linear-gradient(135deg, #1a1f71, #2e3b9e);
}
/* Mastercard */
.mini-cc.cc-mc {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
}
.mini-cc.cc-mc::before,
.mini-cc.cc-mc::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.mini-cc.cc-mc::before {
  background: #EB001B;
  left: 12px;
}
.mini-cc.cc-mc::after {
  background: #F79E1B;
  right: 12px;
  opacity: 0.85;
}
/* Capital One */
.mini-cc.cc-cap {
  background: linear-gradient(135deg, #004977, #0070ba);
}
/* Count card */
.mini-cc.cc-count {
  background: #fff;
  border: 1px solid rgba(28,35,64,0.10);
  color: #1C2340;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(28,35,64,0.06);
}
.hero-cards-label {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-left: 4px;
  line-height: 1.3;
}

/* QR Code block — bottom-right of phone */
.qr-block {
  position: absolute;
  bottom: 220px;
  right: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 5;
}
.qr-block .qr-wrap {
  position: relative;
  width: 140px;
  height: 140px;
}
.qr-block img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}
.qr-block .qr-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.qr-label {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  -webkit-text-fill-color: #000;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .qr-block { display: none; }
}

/* Hero Phone Mockup — Gemini-style iPhone 15 Pro */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeIn 1.2s ease-out 0.3s both;
  margin-bottom: -30px; /* show full phone including bottom nav */
}
.phone-mockup {
  width: 440px;
  height: 900px;
  border-radius: 66px;
  background: #F5F7FA;
  border: 2px solid rgba(168,204,230,0.35);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(168,204,230,0.15), 0 0 30px rgba(168,204,230,0.08);
  position: relative;
  overflow: hidden;
}
/* Subtle baby blue glass edge */
.phone-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 66px;
  padding: 2px;
  background: linear-gradient(165deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04) 30%, transparent 50%, rgba(255,255,255,0.03) 70%, rgba(255,255,255,0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.phone-screen {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 62px;
  background: #F4F4F4;
  overflow: hidden;
}
/* Dynamic Island — subtle */
.phone-di {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  background: rgba(28,35,64,0.08);
  border-radius: 16px;
  z-index: 5;
}
/* Status bar */
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 0;
  font-size: 10px;
  font-weight: 600;
  color: #1C2340;
}
.phone-status-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Old app UI styles removed — now rendered via iframe */
/* (see app-embed.html for all app screen styles) */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.056em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
  letter-spacing: -0.016em;
  font-weight: 400;
}

/* ========== CARD CONNECTIVITY — REDESIGNED ========== */
.connectivity {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  background: #0a1018;
  border-radius: 24px;
  margin-top: 12px;
}
.connectivity::before { display: none; }
.connectivity::after { display: none; }
.conn-redesign {
  max-width: var(--max-width);
  margin: 0 auto;
}
.conn-header { text-align: center; margin-bottom: 56px; }
.conn-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8cce6;
  margin-bottom: 16px;
}
.conn-desc {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -0.016em;
}
/* Feature list — vertical stack with animated reveal */
.conn-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.conn-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: none;
  transition: background 0.4s ease, transform 0.3s ease;
  cursor: default;
  position: relative;
}
.conn-feature-item:first-child { border-radius: 20px 20px 0 0; }
.conn-feature-item:last-child { border-radius: 0 0 20px 20px; }
.conn-feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: rgba(255,255,255,0.04);
}
.conn-feature-item:last-child::after { display: none; }
.conn-feature-item:hover {
  background: rgba(255,255,255,0.06);
}
.conn-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(168,204,230,0.08);
  border: 1px solid rgba(168,204,230,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.conn-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #a8cce6;
  stroke-width: 1.8;
  fill: none;
}
.conn-feature-text {
  flex: 1;
}
.conn-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.conn-feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.conn-feature-badge {
  font-size: 11px;
  font-weight: 600;
  color: #a8cce6;
  background: rgba(168,204,230,0.08);
  border: 1px solid rgba(168,204,230,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Stagger reveal for feature items */
.conn-feature-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.4s ease;
}
.conn-feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .connectivity { padding: 80px 16px; }
  .conn-feature-item { padding: 22px 24px; gap: 16px; }
  .conn-feature-badge { display: none; }
}
@media (max-width: 480px) {
  .connectivity { padding: 60px 12px; }
  .conn-feature-item { padding: 18px 16px; }
  .conn-feature-icon { width: 36px; height: 36px; border-radius: 10px; }
  .conn-feature-icon svg { width: 16px; height: 16px; }
}
/* Legacy — keep for grid compatibility */
.connectivity-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left side — fanned card stack */
.card-fan {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fan-card {
  position: absolute;
  width: 240px;
  height: 152px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, background 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: rgba(255,255,255,0.6);
}
.fan-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
  z-index: 10 !important;
}
/* Glass refraction on cards */
.fan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}
/* Chip detail */
.fan-card::after {
  content: '';
  position: absolute;
  width: 28px; height: 20px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  top: 20px; left: 20px;
}
.fan-card-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.fan-card-network {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.7;
  position: absolute;
  bottom: 16px; right: 20px;
  z-index: 2;
}
/* Card colors — glass iOS background + colored borders */
.fan-card:nth-child(1) { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); z-index: 1; }
.fan-card:nth-child(2) { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); z-index: 2; }
.fan-card:nth-child(3) { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); z-index: 3; }
.fan-card:nth-child(4) { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); z-index: 4; }
.fan-card:nth-child(5) { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); z-index: 5; }

/* Start stacked — cards begin flat on top of each other */
.fan-card {
  transform: rotate(0deg) translateX(0) translateY(0) scale(0.95);
  opacity: 0;
  transition: none;
}

/* Scroll-driven progressive fan — controlled by JS inline styles */
.card-fan.fanning .fan-card {
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}

/* Fully fanned final state (fallback) */
.card-fan.fanned .fan-card:nth-child(1) { transform: rotate(-12deg) translateX(-80px) translateY(20px) scale(1); opacity: 1; }
.card-fan.fanned .fan-card:nth-child(2) { transform: rotate(-6deg) translateX(-30px) translateY(-10px) scale(1); opacity: 1; }
.card-fan.fanned .fan-card:nth-child(3) { transform: rotate(0deg) translateY(-20px) scale(1); opacity: 1; }
.card-fan.fanned .fan-card:nth-child(4) { transform: rotate(6deg) translateX(30px) translateY(-10px) scale(1); opacity: 1; }
.card-fan.fanned .fan-card:nth-child(5) { transform: rotate(12deg) translateX(80px) translateY(20px) scale(1); opacity: 1; }
.card-fan.fanned .fan-card { transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; }

/* Gentle float after fan-out */
.card-fan.fanned {
  animation: fanFloat 6s ease-in-out infinite;
}
@keyframes fanFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Card flip on scroll-past — Bilt-style 3D rotation */
.card-fan {
  perspective: 1200px;
}
.fan-card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.card-fan.flipping .fan-card {
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}
.card-fan.flipping {
  animation: none;
}

/* Right side — text + features */
.connectivity-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.connectivity-text .section-title {
  margin-bottom: 0;
}
.connectivity-text .section-subtitle {
  margin-bottom: 8px;
  color: rgba(28,35,64,0.5);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
}
/* Accordion features — auto-rotating */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.card-feature {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.card-feature:last-child { border-bottom: none; }
.card-feature:hover { background: rgba(255,255,255,0.03); }
.card-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}
.card-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.card-feature.active .card-feature-title {
  color: #a8cce6;
}
/* Progress bar on active item */
.card-feature-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--flo-blue);
  border-radius: 2px;
  width: 0%;
  transition: none;
}
.card-feature.active .card-feature-progress {
  animation: featureProgress 4s linear forwards;
}
@keyframes featureProgress {
  from { width: 0%; }
  to { width: 100%; }
}
/* Expandable body */
.card-feature-body {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  padding: 0;
}
.card-feature.active .card-feature-body {
  max-height: 120px;
  opacity: 1;
  padding-bottom: 14px;
}
.card-feature-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 8px;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.card-feature.active .feature-tag {
  opacity: 1;
  transform: translateY(0);
}
.card-feature.active .feature-tag:nth-child(2) { transition-delay: 0.08s; }
.card-feature.active .feature-tag:nth-child(3) { transition-delay: 0.16s; }
.feature-tag-icon {
  width: 18px;
  height: 11px;
  border-radius: 2.5px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.feature-tag-icon::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 3px;
  border-radius: 1px;
  background: rgba(255,255,255,0.3);
  top: 2px;
  left: 2px;
}
.feature-tag-icon::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  border-radius: 0.5px;
}
/* Chevron indicator */
.card-feature-chevron {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.3);
  transition: transform 0.3s, stroke 0.3s;
  flex-shrink: 0;
}
.card-feature.active .card-feature-chevron {
  transform: rotate(180deg);
  stroke: var(--flo-blue-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .connectivity-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .card-fan { height: 340px; }
  .fan-card { width: 200px; height: 128px; }
  .card-features { align-items: center; }
  .card-feature { text-align: left; }
  .connectivity-text { align-items: center; }
}
@media (max-width: 768px) {
  .connectivity { padding: 80px 16px; }
  .card-fan { height: 280px; }
  .fan-card { width: 170px; height: 108px; padding: 12px; }
  .fan-card-name { font-size: 9px; }
  .fan-card::after { width: 22px; height: 16px; top: 14px; left: 14px; }
}
@media (max-width: 480px) {
  .connectivity { padding: 60px 12px; }
  .card-fan { height: 220px; }
  .fan-card { width: 140px; height: 90px; border-radius: 12px; padding: 10px; }
  .card-fan.fanned .fan-card:nth-child(1) { transform: rotate(-10deg) translateX(-40px) translateY(14px); }
  .card-fan.fanned .fan-card:nth-child(2) { transform: rotate(-5deg) translateX(-12px) translateY(-8px); }
  .card-fan.fanned .fan-card:nth-child(4) { transform: rotate(5deg) translateX(12px) translateY(-8px); }
  .card-fan.fanned .fan-card:nth-child(5) { transform: rotate(10deg) translateX(40px) translateY(14px); }
}

/* ========== 5-STAR REVIEWS ========== */
.reviews {
  padding: 100px 24px 120px;
  background: #f5f7fa;
  background-image: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(168,204,230,0.18) 0%, transparent 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 3;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,204,230,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(28,35,64,0.55);
  margin-bottom: 12px;
  letter-spacing: normal;
  text-transform: none;
}
.reviews-heading {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: #0b1525;
  -webkit-text-fill-color: #0b1525;
  letter-spacing: -0.056em;
  line-height: 1.1;
  text-transform: none;
}
/* Carousel track */
.reviews-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f5f7fa, transparent);
}
.reviews-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #f5f7fa, transparent);
}
.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviewScroll 40s linear infinite;
  width: max-content;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* iOS glass invisible card — matches Download Flo button */
.review-card {
  flex-shrink: 0;
  width: 320px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11,21,37,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(11,21,37,0.04);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11,21,37,0.08);
  border-color: rgba(168,204,230,0.4);
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-star {
  width: 14px;
  height: 14px;
  fill: var(--flo-blue);
}
.review-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(11,21,37,0.55);
  line-height: 1.6;
  letter-spacing: normal;
  flex: 1;
}
.review-text strong {
  font-weight: 500;
  color: rgba(11,21,37,0.85);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(11,21,37,0.06);
}
.review-author-name {
  font-size: 14px;
  font-weight: 400;
  color: rgba(11,21,37,0.6);
}
.review-verified {
  width: 15px;
  height: 15px;
  fill: var(--flo-blue);
  flex-shrink: 0;
}
.review-circle-check {
  margin-left: auto;
  flex-shrink: 0;
}
/* Carousel dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.reviews-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0b1525;
  opacity: 0.15;
}
.reviews-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #4A6FA5;
  opacity: 1;
}
/* Responsive */
@media (max-width: 768px) {
  .reviews { padding: 80px 16px 80px; }
  .review-card { width: 300px; padding: 24px; border-radius: 12px; }
  .review-text { font-size: 14px; }
}
@media (max-width: 480px) {
  .reviews { padding: 60px 12px 60px; }
  .review-card { width: 260px; padding: 20px; border-radius: 12px; }
  .review-text { font-size: 13px; }
}

/* ========== VIDEO SOUL SECTION ========== */
.video-soul {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 80px 24px;
  border-radius: 24px;
  margin-top: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1018;
}
.video-soul video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-soul-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(8,14,24,0.82) 0%, rgba(8,14,24,0.9) 50%, rgba(8,14,24,0.98) 100%);
  z-index: 1;
}
.video-soul-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
  margin-top: 0;
}
.video-soul-eyebrow {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.video-soul-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.056em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: none;
}
.video-soul-heading strong {
  font-weight: 700;
  color: #a8cce6;
}
/* FOCUS blur-to-clear animation */
.focus-blur-letter,
.focus-blur-logo {
  display: inline-block;
  filter: blur(18px);
  opacity: 0;
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.focus-blur-letter.focus-clear,
.focus-blur-logo.focus-clear {
  filter: blur(0px);
  opacity: 1;
}
/* Pulsing blur loop before resolve */
@keyframes focusPulseBlur {
  0% { filter: blur(18px); opacity: 0.3; }
  50% { filter: blur(8px); opacity: 0.6; }
  100% { filter: blur(18px); opacity: 0.3; }
}
.focus-blur-letter.focus-pulsing,
.focus-blur-logo.focus-pulsing {
  animation: focusPulseBlur 1.2s ease-in-out infinite;
  opacity: 1;
}
.video-soul-sub {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
  letter-spacing: -0.016em;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .video-soul { padding: 60px 16px; }
}
/* iOS glass feature cards — HIMS-inspired */
.soul-glass-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.soul-glass-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  flex: 1;
  max-width: 240px;
}
.soul-glass-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.soul-glass-icon svg {
  width: 20px;
  height: 20px;
  stroke: #a8cce6;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.soul-glass-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  -webkit-text-fill-color: rgba(255,255,255,0.7);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .soul-glass-row { flex-direction: column; align-items: center; }
  .soul-glass-card { max-width: 100%; }
}

/* ========== UNIVERSAL ACCESS SECTION (kast.xyz inspired) ========== */
.universal-access {
  padding: 100px 24px;
  background: #0b1525;
  background-image: radial-gradient(ellipse 90% 35% at 50% 0%, rgba(58,108,158,0.25) 0%, transparent 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 2;
}
.universal-access-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.ua-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255,255,255,0.55);
  -webkit-text-fill-color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.ua-heading {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  letter-spacing: -0.056em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 14px;
}
/* gradient-text-light now unified with .gradient-text above */
.ua-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.4;
  letter-spacing: -0.016em;
}
/* Card slider through logo */
.ua-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ua-logo-bubble {
  position: relative;
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(28,35,64,0.06), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(255,255,255,0.05);
  flex-shrink: 0;
  overflow: hidden;
}
.ua-logo-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  border-radius: 32px 32px 0 0;
  pointer-events: none;
}
.ua-logo-bubble::after {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(ellipse at 35% 25%, rgba(255,255,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.ua-logo-bubble svg {
  display: block;
}
.ua-center-stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ua-rewards-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  color: #a8cce6;
}
.ua-rewards-badge svg {
  color: #a8cce6;
  flex-shrink: 0;
}
.ua-rewards-amount {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #a8cce6;
  letter-spacing: -0.03em;
}
.ua-rewards-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.01em;
}
/* Card track sliding left */
.ua-card-track {
  position: absolute;
  display: flex;
  gap: 20px;
  animation: slideCards 18s linear infinite;
}
@keyframes slideCards {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-8 * (180px + 20px))); }
}
.ua-card {
  width: 180px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 4px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  color: rgba(255,255,255,0.85);
}
.ua-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}
.ua-card-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}
.ua-card-amount {
  font-family: 'Space Mono', 'GT America Mono', monospace;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #a8cce6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ua-card-amount .ua-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ua-card-amount .ua-arrow svg {
  color: #a8cce6;
}
.ua-card-source {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
/* Legacy card elements hidden */
.ua-card-logo, .ua-card-chip, .ua-card-network-badge { display: none; }
.ua-card-chip::before, .ua-card-chip::after { display: none; }
.ua-card-network-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.2);
  z-index: 2;
}
/* Fade edges */
.ua-visual::before,
.ua-visual::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 220px;
  z-index: 2;
  pointer-events: none;
}
.ua-visual::before {
  left: 0;
  background: linear-gradient(90deg, #0b1525 25%, transparent);
}
.ua-visual::after {
  right: 0;
  background: linear-gradient(270deg, #0b1525 25%, transparent);
}

/* Stats strip — clean horizontal with dividers */
.ua-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 28px 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.ua-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}
.ua-stat.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Divider between stats */
.ua-stat + .ua-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.ua-stat-value {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 200;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.03em;
  line-height: 1;
}
.ua-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .universal-access { padding: 80px 16px; }
  .ua-visual { height: 200px; }
  .ua-card { width: 150px; padding: 12px; border-radius: 12px; }
  .ua-card-amount { font-size: 16px; }
  .ua-logo-bubble { width: 90px; height: 90px; border-radius: 24px; }
  .ua-logo-bubble svg { width: 40px; height: 28px; }
  .ua-stats { padding: 20px 24px; gap: 0; flex-wrap: wrap; }
  .ua-stat-value { font-size: 20px; }
}
@media (max-width: 480px) {
  .universal-access { padding: 60px 12px; }
  .ua-stats { flex-wrap: wrap; padding: 16px; }
  .ua-stat { min-width: 45%; padding: 8px 0; }
  .ua-stat + .ua-stat::before { display: none; }
  .ua-stat-value { font-size: 18px; }
}

/* ========== TRUSTED BY PROVIDERS — DARK SECTION ========== */
.providers {
  background: #0b1220;
  background-image: radial-gradient(ellipse 80% 30% at 50% 0%, rgba(58,108,158,0.22) 0%, transparent 100%);
  border-radius: 24px;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 4;
}
.providers-inner {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.providers-inner .section-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.providers-inner .section-title .gradient-text {
  background: linear-gradient(135deg, var(--flo-blue), #7EB8D4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.providers-inner .section-subtitle {
  color: rgba(255,255,255,0.82);
  max-width: 420px;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.016em;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Logo marquee strip */
.provider-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.provider-marquee::before,
.provider-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.provider-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0b1220, transparent);
}
.provider-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0b1220, transparent);
}

.provider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.provider-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeScrollVert {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Individual provider logo pill */
.provider-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0.85;
  transition: opacity 0.3s, background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.provider-logo:hover {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}
.provider-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.provider-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.provider-logo-icon svg {
  width: 36px;
  height: 24px;
  display: block;
}
.provider-logo-name {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
}

/* Provider brand colors — real card aesthetics */
/* Provider brand colors handled by inline SVGs */

@media (max-width: 768px) {
  .providers { border-radius: 24px; padding: 80px 16px 48px; }
  .providers-inner { margin-bottom: 48px; }
  .provider-marquee::before, .provider-marquee::after { width: 60px; }
}
@media (max-width: 480px) {
  .providers { border-radius: 20px; padding: 60px 12px 36px; }
}

/* ========== CREDIT CARD ICON SYSTEM ========== */
/* Base card icon — a mini credit card shape with chip + accent */
.card-icon {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
/* Sizes */
.card-icon.ci-xs { width: 22px; height: 14px; border-radius: 3px; }
.card-icon.ci-sm { width: 28px; height: 18px; border-radius: 3.5px; }
.card-icon.ci-md { width: 36px; height: 23px; border-radius: 4px; }
.card-icon.ci-lg { width: 44px; height: 28px; border-radius: 5px; }
.card-icon.ci-xl { width: 52px; height: 33px; border-radius: 6px; }

/* Inner chip element */
.card-icon .ci-chip {
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 1.5px;
  border: 0.5px solid rgba(28,35,64,0.12);
  background: rgba(212,175,55,0.18);
}
.card-icon.ci-xs .ci-chip { width: 6px; height: 4px; top: 2px; left: 2px; border-radius: 1px; }
.card-icon.ci-sm .ci-chip { width: 8px; height: 5px; }
.card-icon.ci-md .ci-chip { width: 10px; height: 7px; }
.card-icon.ci-lg .ci-chip { width: 12px; height: 8px; top: 4px; left: 4px; }
.card-icon.ci-xl .ci-chip { width: 14px; height: 10px; top: 5px; left: 5px; border-radius: 2px; }

/* Accent line at bottom */
.card-icon .ci-line {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  height: 1px;
  border-radius: 1px;
  background: rgba(28,35,64,0.12);
}
.card-icon.ci-xs .ci-line { bottom: 2px; left: 2px; right: 2px; }
.card-icon.ci-lg .ci-line, .card-icon.ci-xl .ci-line { bottom: 4px; left: 4px; right: 4px; height: 1.5px; }

/* Accent dot (top right) */
.card-icon .ci-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
}
.card-icon.ci-xs .ci-dot { width: 3px; height: 3px; top: 2px; right: 2px; }
.card-icon.ci-sm .ci-dot { width: 4px; height: 4px; top: 2.5px; right: 2.5px; }
.card-icon.ci-md .ci-dot { width: 5px; height: 5px; top: 3px; right: 3px; }
.card-icon.ci-lg .ci-dot { width: 6px; height: 6px; top: 3.5px; right: 3.5px; }
.card-icon.ci-xl .ci-dot { width: 7px; height: 7px; top: 4px; right: 4px; }

/* Card gradient themes */
.card-icon.ci-green { background: linear-gradient(135deg, #1a2d4a, #3D6494); }
.card-icon.ci-green .ci-chip { background: rgba(28,35,64,0.2); }
.card-icon.ci-green .ci-line { background: rgba(28,35,64,0.18); }

.card-icon.ci-blue { background: linear-gradient(135deg, #1a2660, #2e45a0); }
.card-icon.ci-blue .ci-chip { background: rgba(28,35,64,0.12); }
.card-icon.ci-blue .ci-line { background: rgba(79,142,247,0.4); }

.card-icon.ci-navy { background: linear-gradient(135deg, #1C2340, #2a3a6d); }
.card-icon.ci-navy .ci-chip { background: rgba(212,175,55,0.2); }
.card-icon.ci-navy .ci-line { background: rgba(28,35,64,0.10); }

.card-icon.ci-dark { background: linear-gradient(135deg, #2a2a2a, #5a5a5a); }
.card-icon.ci-dark .ci-dot { background: radial-gradient(#f0d060, #d4af37); }
.card-icon.ci-dark .ci-chip { background: rgba(212,175,55,0.2); }

.card-icon.ci-gold { background: linear-gradient(135deg, #8B6914, #C49B2A); }
.card-icon.ci-gold .ci-chip { background: rgba(28,35,64,0.2); }
.card-icon.ci-gold .ci-line { background: rgba(28,35,64,0.25); }

.card-icon.ci-purple { background: linear-gradient(135deg, #162842, #3D6494); }
.card-icon.ci-purple .ci-chip { background: rgba(28,35,64,0.12); }
.card-icon.ci-purple .ci-line { background: rgba(28,35,64,0.15); }

.card-icon.ci-orange { background: linear-gradient(135deg, #2a3552, #3D5A8A); }
.card-icon.ci-orange .ci-chip { background: rgba(28,35,64,0.12); }
.card-icon.ci-orange .ci-dot { background: var(--silver); opacity: 0.4; }

.card-icon.ci-red { background: linear-gradient(135deg, #1a2440, #253660); }
.card-icon.ci-red .ci-chip { background: rgba(28,35,64,0.12); }
.card-icon.ci-red .ci-line { background: rgba(28,35,64,0.12); }

.card-icon.ci-light { background: linear-gradient(135deg, #e8e8ea, #f5f5f7); border: 0.5px solid rgba(0,0,0,0.08); }
.card-icon.ci-light .ci-chip { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.08); }
.card-icon.ci-light .ci-line { background: rgba(0,0,0,0.06); }

.card-icon.ci-steel { background: linear-gradient(135deg, #3D6494, #172035); }
.card-icon.ci-steel .ci-chip { background: rgba(28,35,64,0.12); }
.card-icon.ci-steel .ci-line { background: rgba(28,35,64,0.18); }

/* Card icon inside tinted container */
.ci-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.ci-wrap-sm { width: 32px; height: 32px; border-radius: 8px; }
.ci-wrap-md { width: 36px; height: 36px; }
.ci-wrap-lg { width: 44px; height: 44px; border-radius: 12px; }

/* ========== HOW FLO STACKS UP — COMPARISON SECTION ========== */
.comparison {
  background: #0b1525;
  background-image: radial-gradient(ellipse 80% 35% at 50% 0%, rgba(58,108,158,0.22) 0%, transparent 100%);
  border-radius: 24px;
  padding: 100px 24px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.comparison-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.comparison-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comparison-text h2 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.056em;
  text-transform: none;
  color: #fff;
}
.comparison-text p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.016em;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
}
.comp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 0 24px;
  height: 52px;
  background: transparent;
  color: #a8cce6;
  border: 1px solid rgba(168,204,230,0.4);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.4s;
  width: fit-content;
  position: relative;
  box-shadow: 0 0 12px rgba(168,204,230,0.15), inset 0 0 12px rgba(168,204,230,0.05);
  animation: ctaGlare 3s ease-in-out infinite;
}
@keyframes ctaGlare {
  0%, 100% { box-shadow: 0 0 12px rgba(168,204,230,0.15), inset 0 0 12px rgba(168,204,230,0.05); }
  50% { box-shadow: 0 0 20px rgba(168,204,230,0.3), inset 0 0 16px rgba(168,204,230,0.08); }
}
.comp-cta:hover {
  background: rgba(168,204,230,0.1);
  color: #fff;
  box-shadow: 0 0 24px rgba(168,204,230,0.35), inset 0 0 16px rgba(168,204,230,0.1);
}
.comp-cta-cards {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 28px;
  height: 20px;
  flex-shrink: 0;
}
.comp-cta-card {
  position: absolute;
  width: 18px;
  height: 12px;
  border-radius: 2.5px;
  border: 1px solid #a8cce6;
  background: rgba(168,204,230,0.08);
}
.comp-cta-card:nth-child(1) {
  left: 0;
  top: 4px;
  z-index: 1;
}
.comp-cta-card:nth-child(2) {
  left: 5px;
  top: 2px;
  z-index: 2;
  opacity: 0.7;
}
.comp-cta-card:nth-child(3) {
  left: 10px;
  top: 0;
  z-index: 3;
  animation: cardStack 2s ease-in-out infinite;
}
@keyframes cardStack {
  0%, 100% { transform: translate(0, 0); opacity: 1; }
  40% { transform: translate(3px, -3px); opacity: 0.6; }
  50% { transform: translate(-10px, 6px); opacity: 0; }
  51% { transform: translate(-14px, -4px); opacity: 0; }
  70% { transform: translate(0, 0); opacity: 1; }
}
.comparison-card {
  background: linear-gradient(160deg, rgba(168,204,230,0.18) 0%, rgba(168,204,230,0.08) 100%);
  border-radius: 24px;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  border: 1px solid rgba(168,204,230,0.1);
}
.comp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.comp-col-flo {
  background: rgba(168,204,230,0.1);
  border: 1px solid rgba(168,204,230,0.18);
  border-radius: 20px;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}
.comp-col-other {
  padding: 32px 20px;
}
.comp-col-header {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: -0.01em;
}
.comp-col-other .comp-col-header {
  color: rgba(255,255,255,0.5);
}
.comp-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}
.comp-row:last-child {
  margin-bottom: 0;
}
.comp-row-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.comp-col-other .comp-row-label {
  color: rgba(255,255,255,0.5);
}
.comp-icon-check {
  width: 38px;
  height: 26px;
  border-radius: 5px;
  background: #a8cce6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comp-icon-check svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #0b1525;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comp-icon-minus {
  width: 38px;
  height: 26px;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comp-icon-minus svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255,255,255,0.3);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.comparison-footnotes {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comparison-footnotes span {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .comparison-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .comparison-text { text-align: center; align-items: center; }
  .comparison-text p { max-width: 100%; }
  .comparison-text .comp-cta, .sub-tracker-text .comp-cta { margin: 0 auto; }
}
@media (max-width: 480px) {
  .comparison { padding: 60px 16px; }
  .comparison-card { padding: 24px 12px; }
  .comp-col-flo { padding: 24px 12px; }
  .comp-col-other { padding: 24px 12px; }
  .comp-col-header { font-size: 15px; }
  .comp-row-label { font-size: 12px; }
}

/* ========== SUBSCRIPTION TRACKER — ROCKET MONEY STYLE ========== */
.sub-tracker {
  max-width: var(--max-width);
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sub-tracker-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-comp-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  gap: 0;
}
.sub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sub-card-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.sub-card-header span {
  font-size: 12px;
  font-weight: 600;
  color: #a8cce6;
}
.sub-card-total {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sub-card-total .amount {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  font-family: 'Space Mono', monospace;
}
.sub-card-total .label {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.sub-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.sub-card-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sub-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.sub-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-card-info {
  flex: 1;
  min-width: 0;
}
.sub-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.sub-card-date {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.sub-card-price {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Mono', monospace;
  text-align: right;
  white-space: nowrap;
}
.sub-card-toggle {
  width: 34px;
  height: 20px;
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
}
.sub-card-toggle.active {
  background: #a8cce6;
}
.sub-card-toggle.active::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}
.sub-card-toggle.inactive {
  background: rgba(255,255,255,0.12);
}
.sub-card-toggle.inactive::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.sub-tracker-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sub-tracker-text h2, .sub-tracker-text .sub-tracker-heading {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.056em;
  text-transform: none;
  color: #fff;
}
.sub-tracker-text p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.016em;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
}
.sub-saved {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(168,204,230,0.1);
  border: 1px solid rgba(168,204,230,0.15);
  border-radius: 12px;
  margin-top: 4px;
  width: fit-content;
}
.sub-saved-amount {
  font-size: 32px;
  font-weight: 400;
  color: #a8cce6;
  letter-spacing: -0.03em;
  font-family: 'Space Mono', 'GT America Mono', monospace;
}
.sub-saved-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
@media (max-width: 900px) {
  .sub-tracker {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sub-tracker-text { text-align: center; align-items: center; }
}
@media (max-width: 480px) {
  .sub-saved-amount { font-size: 24px; }
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: #0b1220;
  background-image: radial-gradient(ellipse 80% 30% at 50% 0%, rgba(58,108,158,0.22) 0%, transparent 100%);
  border-radius: 24px;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 4;
}
.how-it-works .section-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.how-it-works .section-subtitle {
  color: rgba(255,255,255,0.82);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.how-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--flo-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.how-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(168,204,230,0.3);
  background: rgba(255,255,255,0.05);
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(168,204,230,0.2), rgba(168,204,230,0.08));
  border: 1px solid rgba(168,204,230,0.25);
  color: var(--flo-blue);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}
.how-step p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
}
@media (max-width: 768px) {
  .how-it-works { padding: 80px 16px 60px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
}

/* ========== SECURITY PILLARS ========== */
.security-pillars {
  background: #0b1220;
  background-image: radial-gradient(ellipse 80% 30% at 50% 0%, rgba(58,108,158,0.18) 0%, transparent 100%);
  border-radius: 24px;
  padding: 100px 24px 100px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 4;
}
.security-pillars .section-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.security-pillars .section-subtitle {
  color: rgba(255,255,255,0.82);
}
.security-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.security-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.security-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,204,230,0.3);
}
.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168,204,230,0.15), rgba(168,204,230,0.04));
  border: 1px solid rgba(168,204,230,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.security-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.security-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.58);
}
@media (max-width: 900px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .security-grid { grid-template-columns: 1fr; } }

/* ========== PRICING ========== */
.pricing {
  background: #0b1220;
  background-image: radial-gradient(ellipse 80% 30% at 50% 0%, rgba(58,108,158,0.18) 0%, transparent 100%);
  border-radius: 24px;
  padding: 100px 24px 100px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 4;
}
.pricing .section-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pricing .section-subtitle { color: rgba(255,255,255,0.82); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,204,230,0.3);
}
.pricing-card-featured {
  background: linear-gradient(180deg, rgba(168,204,230,0.10) 0%, rgba(168,204,230,0.02) 100%);
  border-color: rgba(168,204,230,0.35);
  box-shadow: 0 20px 60px -20px rgba(168,204,230,0.25);
}
.pricing-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #a8cce6;
  color: #0b1220;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8cce6;
  margin-bottom: 14px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.pricing-amount {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-period {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.pricing-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
  min-height: 42px;
}
.pricing-tagline strong { color: #fff; font-weight: 700; }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-features li strong { color: #fff; font-weight: 600; }
.pricing-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(168,204,230,0.15);
  color: #a8cce6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.pricing-cta-primary {
  background: #a8cce6;
  color: #0b1220;
}
.pricing-cta-primary:hover {
  transform: translateY(-1px);
  background: #c0dced;
}
.pricing-cta-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.pricing-cta-secondary:hover {
  border-color: rgba(168,204,230,0.5);
  background: rgba(168,204,230,0.06);
}
.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 32px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-amount { font-size: 44px; }
  .pricing-tagline { min-height: 0; }
}

/* ========== FAQ ========== */
.faq {
  background: #0b1220;
  background-image: radial-gradient(ellipse 80% 30% at 50% 0%, rgba(58,108,158,0.18) 0%, transparent 100%);
  border-radius: 24px;
  padding: 100px 24px 100px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  z-index: 4;
}
.faq .section-title {
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(168,204,230,0.28);
  background: rgba(255,255,255,0.05);
}
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.5);
}
.faq-item[open] .faq-chev { transform: rotate(45deg); color: var(--flo-blue); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
@media (max-width: 768px) {
  .faq { padding: 70px 16px 70px; }
  .faq-item summary { font-size: 15px; padding: 18px 20px; }
  .faq-body { padding: 0 20px 18px; font-size: 14px; }
}

/* ========== APP STORE BADGES ========== */
.store-badges {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 16px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  min-width: 170px;
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(168,204,230,0.5);
  background: #0a0a0a;
}
.store-badge-icon { flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge-top { font-size: 10px; font-weight: 500; opacity: 0.78; letter-spacing: 0.02em; }
.store-badge-bottom { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-top: 2px; }

/* ========== FOOTER ========== */
footer {
  padding: 60px 24px;
  position: relative;
  z-index: 10;
  background: #0a1018;
  background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(58,108,158,0.12) 0%, transparent 100%);
  border-radius: 24px;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-weight: 400;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-width);
  margin: -40px auto 0;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer-giant-logo {
  max-width: 100%;
  margin: 80px auto -20px;
  text-align: center;
  overflow: hidden;
  line-height: 0.82;
}
.footer-giant-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.04);
  display: block;
  white-space: nowrap;
  user-select: none;
  -webkit-text-fill-color: rgba(255,255,255,0.04);
}
.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-right: auto;
  line-height: 1;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s ease;
}
.footer-social a:hover {
  color: #fff;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
footer .logo-wordmark { color: #fff; }
footer .nav-logo svg path { fill: rgba(255,255,255,0.8); }

/* ========== DOWNLOAD APP (in footer) ========== */
.footer-download-row {
  max-width: var(--max-width);
  margin: 48px auto 0;
  display: flex;
  justify-content: flex-end;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 260px;
  font-weight: 400;
}
.footer-slogan {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  margin-top: -40px;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
}
.footer-download-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.footer-download-inline .qr-wrap {
  position: relative;
  flex-shrink: 0;
}
.footer-download-inline .qr-wrap img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}
.footer-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-download-buttons .store-btn {
  padding: 6px 10px;
  gap: 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.footer-download-buttons .store-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.footer-download-buttons .store-btn-name {
  font-size: 11px;
  line-height: 1;
}
.footer-download-buttons .store-btn-small {
  font-size: 7px;
  line-height: 1;
}
.download-card {
  background: rgba(74,111,165,0.08);
  border: 1px solid rgba(74,111,165,0.15);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 30px;
}
.download-qr {
  flex-shrink: 0;
}
.download-qr img {
  width: 114px;
  height: 114px;
  border-radius: 10px;
}
.download-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.download-title {
  font-size: 26px;
  font-weight: 500;
  color: #a8cce6;
  letter-spacing: -0.01em;
}
.download-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}
.download-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Dark variant of store buttons for footer */
.store-btn-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.store-btn-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.store-btn-dark .store-btn-small {
  color: rgba(255,255,255,0.5);
}
.store-btn-dark .store-btn-name {
  color: rgba(255,255,255,0.9);
}
.store-btn-dark svg { opacity: 0.85; }

/* ========== EDGE GLARE LINES ========== */
.edge-glare {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
}
.edge-glare-top {
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(74,111,165,0.0) 20%, rgba(74,111,165,0.5) 50%, rgba(74,111,165,0.0) 80%, transparent 100%);
  animation: glareSlideH 6s ease-in-out infinite;
}
.edge-glare-bottom {
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(74,111,165,0.0) 25%, rgba(74,111,165,0.3) 50%, rgba(74,111,165,0.0) 75%, transparent 100%);
  animation: glareSlideH 8s ease-in-out infinite reverse;
}
.edge-glare-left {
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(74,111,165,0.0) 20%, rgba(74,111,165,0.35) 50%, rgba(74,111,165,0.0) 80%, transparent 100%);
  animation: glareSlideV 7s ease-in-out infinite;
}
.edge-glare-right {
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(74,111,165,0.0) 25%, rgba(74,111,165,0.35) 50%, rgba(74,111,165,0.0) 75%, transparent 100%);
  animation: glareSlideV 7s ease-in-out infinite reverse;
}
@keyframes glareSlideH {
  0% { opacity: 0.3; background-position: -100% 0; }
  50% { opacity: 1; }
  100% { opacity: 0.3; background-position: 200% 0; }
}
@keyframes glareSlideV {
  0% { opacity: 0.3; background-position: 0 -100%; }
  50% { opacity: 1; }
  100% { opacity: 0.3; background-position: 0 200%; }
}

/* ========== GRAIN OVERLAY (KAST-style) ========== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1180px) and (min-width: 901px) {
  .hero-inner { gap: 40px; }
  .phone-mockup { width: 360px; height: 740px; border-radius: 54px; }
  .hero-visual { margin-bottom: -20px; }
  .hero h1, .hero-slide h1 { font-size: clamp(36px, 5vw, 54px); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-slide p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; align-items: center; }
  .hero-stats { justify-content: center; }
  .hero-cards-strip { justify-content: center; }
  .hero-dots { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-download-inline { flex-direction: column; align-items: flex-start; }
  .hero-actions { align-items: stretch; }
  .btn-cta { text-align: center; }
  .auth-options { justify-content: center; }
  .store-buttons { justify-content: center; }
  .phone-mockup { width: 360px; height: 740px; border-radius: 58px; }
  .hero-visual { margin-bottom: -20px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 480px) {
  :root { --section-padding: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-download-inline { flex-direction: column; align-items: flex-start; }
  .footer-download-buttons { flex-direction: row; }
  .phone-mockup { width: 280px; height: 580px; border-radius: 48px; }
  .hero-visual { margin-bottom: -15px; }
}

/* ========== MOBILE OPTIMIZATION — COMPREHENSIVE ========== */
html, body { overflow-x: hidden; max-width: 100vw; }

/* ========== HERO — MOBILE RESTRUCTURE ========== */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 90px 20px 40px;
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    align-items: start;
  }
  .hero-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }
  .hero-visual {
    order: 2;
    margin-bottom: 0;
    margin-top: 8px;
    width: 100%;
  }
  .hero-badge {
    margin-bottom: 14px;
    font-size: 13px;
    justify-content: center;
  }
  .hero-rotate-wrap {
    width: 100%;
  }
  .hero h1, .hero-slide h1 {
    font-size: clamp(30px, 7.5vw, 44px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 16px !important;
    text-align: center;
    word-spacing: normal;
  }
  .hero h1 .stacked-word, .hero-slide h1 .stacked-word {
    display: inline !important;
    margin: 0 !important;
  }
  .hero h1 .stacked-word + .stacked-word::before,
  .hero-slide h1 .stacked-word + .stacked-word::before {
    content: ' ';
    white-space: pre;
  }
  .hero h1 .stacked-word[style*="flex"],
  .hero-slide h1 .stacked-word[style*="flex"] {
    display: inline !important;
  }
  .hero h1 .stacked-word svg.hero-card-o,
  .hero-slide h1 .stacked-word svg.hero-card-o {
    width: 0.7em !important;
    height: 0.55em !important;
    top: 0.05em !important;
    margin: 0 0.02em 0 0 !important;
  }
  .hero p, .hero-slide p {
    font-size: 16px !important;
    line-height: 1.5 !important;
    max-width: 440px !important;
    margin: 0 auto 24px !important;
    color: rgba(255,255,255,0.72) !important;
  }
  .hero-dots {
    justify-content: center;
    margin-bottom: 24px;
  }
  .hero-download-row {
    flex-direction: row;
    width: 100%;
    max-width: 280px;
    gap: 8px;
    margin: 0 auto 28px;
    align-items: center;
    justify-content: center;
  }
  .hero-download-row .btn-download,
  .hero-download-row .store-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
    box-sizing: border-box;
    min-width: 0;
  }
  .hero-download-row .store-btn { padding: 10px 12px; }
  .btn-download svg, .store-btn svg { width: 16px; height: 16px; }
  .btn-download { font-size: 13px; }
  .store-btn-small { font-size: 8px; }
  .store-btn-name { font-size: 13px; }
  .qr-popup { display: none !important; }
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px !important;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .hero-stat { text-align: center; }
  .hero-stat-value {
    font-size: 18px !important;
    justify-content: center;
    font-weight: 500;
  }
  .hero-stat-value svg { width: 12px !important; height: 12px !important; }
  .hero-stat-label {
    font-size: 10px !important;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
  .hero-cards-strip { justify-content: center; margin-top: 16px; }
  .qr-block { display: none !important; }

  /* Phone mockup */
  .phone-mockup {
    width: min(62vw, 280px) !important;
    height: auto !important;
    aspect-ratio: 440 / 900;
    border-radius: 12% / 6% !important;
    margin: 0 auto;
    border-width: 1px !important;
  }
  .phone-screen {
    top: 2px !important;
    left: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    border-radius: 11% / 5.5% !important;
  }
  .phone-screen iframe {
    border-radius: 11% / 5.5% !important;
  }
}

@media (max-width: 480px) {
  .hero { padding: 72px 16px 24px; }
  .hero-inner { gap: 24px !important; }
  .hero h1, .hero-slide h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.12 !important;
    padding: 0 4px;
  }
  .hero p, .hero-slide p { font-size: 15px !important; }
  .hero-badge { font-size: 12px; margin-bottom: 10px; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px !important;
    max-width: 280px;
  }
  .hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
  }
  .hero-stat-value { font-size: 16px !important; }
  .hero-stat-label { text-align: right; }
  .phone-mockup { width: min(68vw, 260px) !important; border-width: 1px !important; }
  .hero-rotate-wrap { min-height: auto !important; }
}

@media (max-width: 900px) {
  .sub-tracker { grid-template-columns: 1fr !important; gap: 40px !important; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 768px) {
  /* Section padding normalization */
  .how-it-works, .security-pillars, .faq, .providers, .reviews, .comparison,
  .video-soul, .universal-access, .connectivity, .card-connectivity, .sub-tracker-section {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 20px;
  }
  .how-it-works { padding-top: 72px; padding-bottom: 60px; }
  .security-pillars { padding-top: 72px; padding-bottom: 72px; }
  .faq { padding-top: 72px; padding-bottom: 72px; }

  /* Hero */
  .hero-content { margin-top: 0 !important; }
  .hero h1, .hero-slide h1 { font-size: clamp(36px, 8vw, 56px) !important; }
  .hero p, .hero-slide p { font-size: 16px !important; }
  .qr-block { display: none !important; }

  /* Universal Access fade edges */
  .ua-visual::before, .ua-visual::after { width: 80px !important; }
  .ua-stats { padding: 22px 20px !important; gap: 16px !important; }

  /* Providers marquee */
  .provider-track { gap: 32px !important; }
  .provider-marquee::before, .provider-marquee::after { width: 60px !important; }

  /* FAQ */
  .faq-item summary { font-size: 15px; padding: 18px 18px; }
  .faq-body { padding: 0 18px 18px; font-size: 14px; }

  /* Section titles */
  .section-title { font-size: clamp(28px, 6vw, 44px) !important; line-height: 1.15 !important; }
  .section-subtitle { font-size: 16px !important; }

  /* How-it-works */
  .how-step { padding: 24px 20px; }
  .how-step h3 { font-size: 19px; }

  /* Security */
  .security-card { padding: 22px 18px; }

  /* Store badges */
  .store-badges { flex-direction: row; width: 100%; align-items: stretch; }
  .store-badge { flex: 1 1 0; justify-content: center; min-width: 0; padding: 10px 12px; gap: 8px; }

  /* Comparison */
  .comparison-inner { gap: 40px !important; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr !important; gap: 32px; text-align: left; padding-left: 4px; padding-right: 4px; }
  .footer-giant-logo { margin-top: 40px; }
  .footer-giant-logo span { font-size: clamp(72px, 22vw, 180px) !important; }

  /* Top banner */
  .top-banner { font-size: 12px; padding: 8px 12px; }

  /* Nav */
  nav .logo, nav .nav-logo { flex-shrink: 1; min-width: 0; }

  /* Legal modal */
  .legal-modal { width: 94%; padding: 32px 20px !important; }

  /* Ensure images/videos don't overflow */
  img, video, iframe { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
  .security-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px !important; }
  .how-it-works, .security-pillars, .faq { padding-left: 12px; padding-right: 12px; border-radius: 16px; }
  .how-step, .security-card, .faq-item { border-radius: 14px; }
  .hero h1, .hero-slide h1 { font-size: clamp(30px, 9vw, 44px) !important; }
  .hero-stats { gap: 16px !important; }
  .phone-mockup { width: min(88vw, 280px) !important; height: auto !important; aspect-ratio: 280 / 580; border-width: 1px !important; }
  .provider-logo { padding: 0 8px; }
  .provider-logo-name { font-size: 13px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .store-badge { padding: 10px 16px; }
  .store-badge-bottom { font-size: 15px; }
}

/* ========== LEGAL MODAL ========== */
.legal-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.legal-modal-overlay.open {
  display: flex;
}
.legal-modal {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: #1C2340;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.legal-modal-close:hover {
  background: rgba(0,0,0,0.12);
}
.legal-modal h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1C2340;
  -webkit-text-fill-color: #1C2340;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.legal-modal .legal-updated {
  font-size: 13px;
  color: rgba(28,35,64,0.5);
  -webkit-text-fill-color: rgba(28,35,64,0.5);
  margin-bottom: 28px;
}
.legal-modal h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1C2340;
  -webkit-text-fill-color: #1C2340;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-modal p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3f50;
  -webkit-text-fill-color: #3a3f50;
  margin-bottom: 12px;
}
.legal-modal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-modal ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3f50;
  -webkit-text-fill-color: #3a3f50;
  margin-bottom: 4px;
}
.legal-modal a {
  color: #4A6FA5;
  -webkit-text-fill-color: #4A6FA5;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .legal-modal { padding: 32px 20px; }
  .legal-modal h2 { font-size: 22px; }
}

/* ========== RESPONSIVE POLISH — tablet/small-screen hero ========== */
@media (max-width: 760px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px 28px;
  }
  .hero-cards-strip {
    flex-wrap: wrap;
    gap: 6px;
    row-gap: 8px;
  }
  .hero-cards-label {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
  .hero-download-row {
    width: 100%;
  }
  .hero-download-row .store-btn {
    flex: 1 1 160px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reviews-track { animation: none !important; }
  .card-fan.fanned { animation: none !important; }
  .hero-badge .dot { animation: none !important; }
  .parallax-section {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .scroll-word {
    opacity: 1 !important;
    filter: none !important;
  }
  .edge-glare { display: none !important; }
}

/* ========== DESIGN REFINEMENTS — v2 ========== */

/* Nav links visible on desktop */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: 4px;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    padding: 8px 14px;
    border-radius: 100px;
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
  }
  .nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
}
/* Mobile nav drawer */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 16px;
    background: rgba(11,21,37,0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 10px;
    gap: 2px;
    min-width: 180px;
    z-index: 100;
  }
  .nav-links.open li { list-style: none; width: 100%; }
  .nav-links.open a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    padding: 12px 16px;
    min-height: 44px;
    border-radius: 8px;
    text-decoration: none;
  }
  .nav-links.open a:hover { background: rgba(255,255,255,0.08); color: #fff; }
}

/* Hero gradient fade into next section */
.hero::after {
  display: block !important;
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(245,247,250,0.35) 70%, rgba(245,247,250,0.7) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 24px 24px;
}

/* Strengthen pricing hierarchy */
@media (min-width: 901px) {
  .pricing-card-featured {
    transform: scale(1.04);
    z-index: 2;
    background: linear-gradient(180deg, rgba(168,204,230,0.16) 0%, rgba(168,204,230,0.04) 100%) !important;
    border-color: rgba(168,204,230,0.5) !important;
    box-shadow:
      0 28px 80px -24px rgba(168,204,230,0.45),
      0 0 0 1px rgba(168,204,230,0.25),
      inset 0 1px 0 rgba(255,255,255,0.08) !important;
  }
  .pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(168,204,230,0.6), rgba(168,204,230,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  .pricing-card-featured:hover { transform: scale(1.04) translateY(-4px); }
  .pricing-grid { align-items: center; }
  .pricing-card:not(.pricing-card-featured) {
    opacity: 0.92;
  }
  .pricing-card:not(.pricing-card-featured):hover { opacity: 1; }
}

/* Warm sand accent used sparingly */
:root { --accent-warm: #E8C9A0; --accent-warm-soft: rgba(232,201,160,0.14); }
.pricing-card-featured .pricing-ribbon {
  background: linear-gradient(135deg, #a8cce6 0%, #E8C9A0 100%);
  box-shadow: 0 4px 14px -4px rgba(232,201,160,0.5);
}
.pricing-card-featured .pricing-amount {
  background: linear-gradient(135deg, #fff 0%, #E8C9A0 120%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review-stars .review-star { fill: #E8C9A0; }

/* Feature-split heading weight variation */
.feature-split-text h2 em { letter-spacing: -0.025em; }

/* Trust row */
.trust-row {
  background: #0b1220;
  padding: 40px 24px;
  border-radius: 0;
  margin-top: -24px;
  position: relative;
  z-index: 3;
}
.trust-row-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 44px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-item svg { flex-shrink: 0; opacity: 0.85; }
.trust-item strong { color: #fff; font-weight: 600; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 700px) {
  .trust-row-inner { gap: 18px 24px; }
  .trust-divider { display: none; }
  .trust-item { font-size: 12px; }
}

/* Asymmetric feature row — optional variant */
.feature-split {
  background: #0b1220;
  color: #fff;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.feature-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.feature-split-text h2 em {
  font-style: normal;
  font-weight: 300;
  color: #a8cce6;
}
.feature-split-text p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 28px;
}
.feature-split-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(168,204,230,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(232,201,160,0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-split-chip {
  position: absolute;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
  animation: floatChip 6s ease-in-out infinite;
}
.feature-split-chip strong { color: #a8cce6; font-weight: 700; }
.feature-split-chip.fc-1 { top: 18%; left: 10%; animation-delay: 0s; }
.feature-split-chip.fc-2 { top: 44%; right: 8%; animation-delay: 1.5s; }
.feature-split-chip.fc-3 { bottom: 20%; left: 18%; animation-delay: 3s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.feature-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: #fff;
  color: #0b1220;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.feature-split-cta:hover { transform: translateY(-2px); }
@media (max-width: 900px) {
  .feature-split { padding: 80px 20px; }
  .feature-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-split-visual { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ========== VISUALLY HIDDEN UTILITY ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== SMS CONSENT SECTION ========== */
.sms-section {
  padding: 100px 24px;
  background: #0d1627;
  background-image:
    radial-gradient(ellipse 70% 40% at 0% 50%, rgba(58,108,158,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 100% 60%, rgba(168,204,230,0.08) 0%, transparent 60%);
  border-radius: 24px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.sms-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sms-content { max-width: 540px; }
.sms-subtitle {
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.65;
  margin: 20px 0 36px;
  max-width: 480px;
}
.sms-form { display: flex; flex-direction: column; gap: 16px; }
.sms-input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.sms-phone-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,204,230,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-text-fill-color: #fff;
}
.sms-phone-input::placeholder { color: rgba(255,255,255,0.35); -webkit-text-fill-color: rgba(255,255,255,0.35); }
.sms-phone-input:focus {
  border-color: rgba(168,204,230,0.55);
  background: rgba(255,255,255,0.09);
}
.sms-submit-btn {
  background: #a8cce6;
  color: #0d1627;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
  -webkit-text-fill-color: #0d1627;
}
.sms-submit-btn:hover:not(:disabled) { background: #bdd9ee; transform: translateY(-1px); }
.sms-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.sms-consent-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sms-consent-checkbox {
  flex-shrink: 0;
  margin-top: 2px;
  width: 17px;
  height: 17px;
  accent-color: #a8cce6;
  cursor: pointer;
}
.sms-consent-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  -webkit-text-fill-color: rgba(255,255,255,0.55);
  cursor: pointer;
}
.sms-consent-link {
  color: #a8cce6;
  -webkit-text-fill-color: #a8cce6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sms-consent-link:hover { color: #bdd9ee; -webkit-text-fill-color: #bdd9ee; }
.sms-status {
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}
.sms-status--success {
  background: rgba(168,204,230,0.12);
  border: 1px solid rgba(168,204,230,0.3);
  color: #a8cce6;
  -webkit-text-fill-color: #a8cce6;
}
.sms-status--error {
  background: rgba(255,80,60,0.1);
  border: 1px solid rgba(255,80,60,0.3);
  color: #ff8070;
  -webkit-text-fill-color: #ff8070;
}
.sms-fine-print {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  -webkit-text-fill-color: rgba(255,255,255,0.32);
  margin-top: 8px;
}
/* SMS phone chat preview */
.sms-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sms-phone-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,204,230,0.14);
  border-radius: 24px;
  padding: 28px 24px;
  max-width: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.sms-bubble {
  border-radius: 18px;
  padding: 14px 16px;
  position: relative;
  max-width: 90%;
}
.sms-bubble--received {
  background: rgba(168,204,230,0.12);
  border: 1px solid rgba(168,204,230,0.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sms-bubble--inbound {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.sms-sender {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #a8cce6;
  -webkit-text-fill-color: #a8cce6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sms-bubble p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  -webkit-text-fill-color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin: 0;
}
.sms-link-preview {
  color: #a8cce6 !important;
  -webkit-text-fill-color: #a8cce6 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sms-time {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  -webkit-text-fill-color: rgba(255,255,255,0.35);
  margin-top: 6px;
  text-align: right;
}
@media (max-width: 900px) {
  .sms-inner { grid-template-columns: 1fr; gap: 48px; }
  .sms-visual { display: none; }
  .sms-content { max-width: 100%; }
  .sms-input-row { flex-direction: column; }
  .sms-submit-btn { width: 100%; padding: 16px; font-size: 16px; }
}

/* ========== SMS CONSENT CHECKLIST MODAL ========== */
.consent-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,12,24,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.consent-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.consent-modal {
  background: #111827;
  border: 1px solid rgba(168,204,230,0.18);
  border-radius: 20px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.consent-modal-overlay.open .consent-modal {
  transform: translateY(0) scale(1);
}
.consent-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.consent-modal-close:hover { background: rgba(255,255,255,0.13); color: #fff; }
.consent-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.consent-modal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(168,204,230,0.1);
  border: 1px solid rgba(168,204,230,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consent-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}
.consent-modal-phone-display {
  font-size: 13px;
  color: rgba(168,204,230,0.85);
  -webkit-text-fill-color: rgba(168,204,230,0.85);
  font-family: 'Space Mono', monospace;
}
.consent-modal-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  -webkit-text-fill-color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* Checklist items */
.consent-checklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  border: 1px solid transparent;
}
.consent-item:hover { background: rgba(255,255,255,0.04); }
.consent-item:has(.consent-check:checked) {
  background: rgba(168,204,230,0.07);
  border-color: rgba(168,204,230,0.18);
}
.consent-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.consent-item-box {
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}
.consent-item-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2.5px solid #0d1627;
  border-bottom: 2.5px solid #0d1627;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.consent-item:has(.consent-check:checked) .consent-item-box {
  background: #a8cce6;
  border-color: #a8cce6;
}
.consent-item:has(.consent-check:checked) .consent-item-box::after {
  opacity: 1;
}
.consent-item-box:focus-within {
  outline: 2px solid #a8cce6;
  outline-offset: 2px;
}
.consent-item-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  -webkit-text-fill-color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.consent-item-text strong {
  display: block;
  color: rgba(255,255,255,0.92);
  -webkit-text-fill-color: rgba(255,255,255,0.92);
  font-weight: 600;
  margin-bottom: 2px;
}
/* Progress bar */
.consent-modal-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.consent-progress-bar {
  height: 100%;
  background: #a8cce6;
  border-radius: 100px;
  width: 0%;
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
}
.consent-progress-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  -webkit-text-fill-color: rgba(255,255,255,0.35);
  text-align: right;
  margin-bottom: 20px;
}
/* Confirm button */
.consent-confirm-btn {
  width: 100%;
  padding: 15px 24px;
  border-radius: 12px;
  border: none;
  background: rgba(168,204,230,0.15);
  color: rgba(255,255,255,0.35);
  -webkit-text-fill-color: rgba(255,255,255,0.35);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: not-allowed;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  letter-spacing: -0.01em;
}
.consent-confirm-btn.ready {
  background: #a8cce6;
  color: #0d1627;
  -webkit-text-fill-color: #0d1627;
  cursor: pointer;
}
.consent-confirm-btn.ready:hover { background: #bdd9ee; transform: translateY(-1px); }
.consent-modal-fine-print {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  -webkit-text-fill-color: rgba(255,255,255,0.28);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .consent-modal { padding: 24px 18px; border-radius: 16px; }
  .consent-modal-title { font-size: 18px; }
}

/* ============================================================
   VIBRANT EDITORIAL THEME — WalletFlo redesign
   Warm pink-mauve base, deep navy ink, acid-yellow accent.
   Overrides the dark-navy site defaults set above.
   ============================================================ */

/* ---- Updated design tokens ---- */
:root {
  --vibrant-bg: #ece5f4;
  --vibrant-navy: #1c2348;
  --vibrant-blue: #2f4a8a;
  --vibrant-gold: #f2c235;
  --vibrant-surface: rgba(255, 255, 255, 0.60);
  --vibrant-border: rgba(28, 35, 72, 0.10);
  --vibrant-muted: rgba(28, 35, 72, 0.60);

  /* Remap legacy tokens to vibrant palette */
  --flo-blue: #2f4a8a;
  --flo-blue-dark: #1e3370;
  --gold: #f2c235;
}

/* ---- Body: warm editorial gradient + grain ---- */
body {
  background: var(--vibrant-bg);
  background-image:
    radial-gradient(120vmax 90vmax at 80% -10%, rgba(232, 155, 176, 0.55), transparent 55%),
    radial-gradient(120vmax 90vmax at 0% 110%, rgba(139, 122, 184, 0.52), transparent 55%),
    linear-gradient(180deg, #ccd6f0 0%, #e7d4e6 52%, #f1d9e1 100%);
  background-attachment: fixed;
  color: var(--vibrant-navy);
}

/* Risograph grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Edge glare removed on vibrant theme (part of dark treatment) */
.edge-glare { display: none; }

/* ---- Site wrap ---- */
.site-wrap {
  background: transparent;
}

/* ---- Top banner ---- */
.top-banner {
  background: rgba(242, 194, 53, 0.85);
  color: #1c2348;
  backdrop-filter: blur(12px);
}
.top-banner a { color: #1c2348; }
.top-banner .banner-close { color: #1c2348; }
.banner-bg { background: rgba(242, 194, 53, 0.70); }

/* ---- Navigation ---- */
nav {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(28, 35, 72, 0.08);
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 0;
}
.logo-wordmark { color: #1c2348; }
.nav-logo svg rect:first-child { fill: rgba(28, 35, 72, 0.85) !important; }
.nav-logo svg rect:nth-child(2) { fill: rgba(255,255,255,0.55) !important; }
.nav-logo svg rect:nth-child(3) { fill: rgba(242,194,53,0.90) !important; }
.nav-links a { color: rgba(28, 35, 72, 0.68); }
.nav-links a:hover {
  color: #1c2348;
  border-color: rgba(28, 35, 72, 0.16);
}
.nav-toggle span { background: #1c2348; }
.btn-primary {
  background: #1c2348;
  color: #fff;
  border-color: #1c2348;
  box-shadow: 0 4px 16px rgba(28, 35, 72, 0.20);
}
.btn-primary:hover {
  background: #2f4a8a;
  box-shadow: 0 8px 24px rgba(47, 74, 138, 0.28);
}

/* ---- Hero section ---- */
.hero {
  background: transparent;
  border-radius: 0;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: #1c2348;
  -webkit-text-fill-color: #1c2348;
}
.hero h1 .gradient-text {
  color: #2f4a8a !important;
  -webkit-text-fill-color: #2f4a8a !important;
}
.hero-slide p {
  color: rgba(28, 35, 72, 0.72);
  -webkit-text-fill-color: rgba(28, 35, 72, 0.72);
}
.hero p {
  color: rgba(28, 35, 72, 0.68);
}
.hero-badge {
  color: rgba(28, 35, 72, 0.60);
}
.hero-stat-label {
  color: rgba(28, 35, 72, 0.55);
}
.hero-dot {
  background: rgba(28, 35, 72, 0.12);
}
.hero-dot.active {
  background: rgba(28, 35, 72, 0.08);
}
.hero-dot::after {
  background: #1c2348;
}

/* ---- Section headings ---- */
.section-title, .ua-heading, .video-soul-heading,
.comparison-text h2, .reviews-heading {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: #1c2348;
  -webkit-text-fill-color: #1c2348;
}
.gradient-text, .gradient-text-light {
  color: #2f4a8a;
  -webkit-text-fill-color: #2f4a8a;
}

/* ---- Section backgrounds: light frosted panels on gradient ---- */
.reviews {
  background: rgba(255, 255, 255, 0.50);
  background-image: none;
  border: 1px solid rgba(28, 35, 72, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.reviews-heading { color: #1c2348; -webkit-text-fill-color: #1c2348; }
.reviews-label { color: rgba(28, 35, 72, 0.55); }

.universal-access {
  background: rgba(255, 255, 255, 0.46);
  background-image: none;
  border: 1px solid rgba(28, 35, 72, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ua-label { color: rgba(28, 35, 72, 0.60); -webkit-text-fill-color: rgba(28, 35, 72, 0.60); }
.ua-heading { color: #1c2348; -webkit-text-fill-color: #1c2348; }
.ua-subtitle { color: rgba(28, 35, 72, 0.72); }
.ua-rewards-amount { color: var(--vibrant-gold); -webkit-text-fill-color: var(--vibrant-gold); }

.video-soul {
  background: rgba(28, 35, 72, 0.84);
  background-image: none;
}
.video-soul-overlay {
  background: linear-gradient(180deg, rgba(28,35,72,0.72) 0%, rgba(28,35,72,0.88) 60%, rgba(28,35,72,0.96) 100%);
}
.video-soul-heading { color: #fff; -webkit-text-fill-color: #fff; }
.video-soul-eyebrow { color: rgba(255,255,255,0.55); -webkit-text-fill-color: rgba(255,255,255,0.55); }

.comparison {
  background: rgba(28, 35, 72, 0.88);
  background-image: none;
}
.comparison-text h2 { color: #fff; -webkit-text-fill-color: #fff; }
.comparison-text p { color: rgba(255,255,255,0.80); }

/* ---- Connectivity / card fan section ---- */
.section-label,
.connectivity .section-label {
  color: rgba(28, 35, 72, 0.60);
  -webkit-text-fill-color: rgba(28, 35, 72, 0.60);
}
.connectivity {
  background: transparent;
}
.conn-feat-number { color: #2f4a8a; -webkit-text-fill-color: #2f4a8a; }
.conn-feat-title { color: #1c2348; }
.conn-feat-desc { color: rgba(28, 35, 72, 0.62); }

/* ---- Pricing ---- */
.pricing {
  background: transparent;
}
.pricing .section-title { color: #1c2348; -webkit-text-fill-color: #1c2348; }
.plan-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(28, 35, 72, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 32px rgba(28, 35, 72, 0.07);
}
.plan-card.featured {
  background: #1c2348;
  border-color: #1c2348;
}
.plan-name { color: #1c2348; }
.plan-price { color: #1c2348; }
.plan-price .amount { color: #1c2348; }
.plan-desc { color: rgba(28, 35, 72, 0.65); }
.plan-feature { color: rgba(28, 35, 72, 0.72); }
.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured .plan-price .amount,
.plan-card.featured .plan-desc,
.plan-card.featured .plan-feature { color: #fff; }

.plan-cta {
  background: #2f4a8a;
  color: #fff;
}
.plan-cta:hover { background: #1c2348; }
.plan-card.featured .plan-cta {
  background: var(--vibrant-gold);
  color: #1c2348;
}

/* ---- CTA / get-app section ---- */
.get-app {
  background: transparent;
}
.get-app .section-title { color: #1c2348; -webkit-text-fill-color: #1c2348; }
.get-app .section-sub { color: rgba(28, 35, 72, 0.65); }

/* ---- FAQ section ---- */
.faq {
  background: transparent;
}
.faq-title { color: #1c2348; }
.faq-item {
  border-color: rgba(28, 35, 72, 0.10);
}
.faq-question {
  color: #1c2348;
}
.faq-answer {
  color: rgba(28, 35, 72, 0.68);
}

/* ---- Review cards ---- */
.review-card {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(28, 35, 72, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.review-text { color: #1c2348; }
.review-author { color: rgba(28, 35, 72, 0.60); }

/* ---- Comparison table ---- */
.comp-feature-label { color: rgba(255,255,255,0.72); }
.comp-check { color: var(--vibrant-gold); }

/* ---- Footer ---- */
footer {
  background: rgba(28, 35, 72, 0.94);
  color: rgba(255,255,255,0.68);
}
footer a { color: rgba(255,255,255,0.55); }
footer a:hover { color: #fff; }
.footer-logo .logo-wordmark { color: #fff; }

/* ============================================================
   Calculator pages — vibrant editorial design system
   Matches the Artwork_Application_04.jpg direction:
   warm pink-mauve base, white frosted-glass panels, navy ink,
   acid-yellow accent for best-result highlights, grain texture.
   ============================================================ */

/* ---- Page base — warm editorial gradient background ---- */
body {
  background: #ece5f4;
  background-image:
    radial-gradient(120vmax 90vmax at 80% -10%, rgba(232, 155, 176, 0.55), transparent 55%),
    radial-gradient(120vmax 90vmax at 0% 110%, rgba(139, 122, 184, 0.52), transparent 55%),
    linear-gradient(180deg, #ccd6f0 0%, #e7d4e6 52%, #f1d9e1 100%);
  background-attachment: fixed;
  color: #1c2348;
}

/* Risograph grain — same as the main site */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.calc-page {
  padding: 140px 0 100px;
  min-height: 70vh;
}
.calc-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Eyebrow & headings ---- */
.calc-eyebrow {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f4a8a;
  margin-bottom: 14px;
}
.calc-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  font-weight: 600;
  color: #1c2348;
  margin: 0 0 18px;
}
.calc-title .accent {
  color: #2f4a8a;
}
.calc-lede {
  color: rgba(28, 35, 72, 0.68);
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 0 36px;
}

/* ---- Frosted-glass card panels ---- */
.calc-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(28, 35, 72, 0.10);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.80) inset,
    0 20px 56px rgba(28, 35, 72, 0.08);
}
.calc-card + .calc-card {
  margin-top: 20px;
}

/* ---- Form controls ---- */
.calc-form {
  display: grid;
  gap: 18px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.calc-field label {
  font-size: 14px;
  font-weight: 600;
  color: #1c2348;
}
.calc-field .hint {
  font-size: 12px;
  color: rgba(28, 35, 72, 0.55);
}
.calc-input,
.calc-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.70);
  border: 1.5px solid rgba(28, 35, 72, 0.14);
  border-radius: 12px;
  color: #1c2348;
  font-size: 16px;
  font-family: inherit;
  padding: 13px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-input:focus,
.calc-select:focus {
  outline: none;
  border-color: #2f4a8a;
  box-shadow: 0 0 0 3px rgba(47, 74, 138, 0.12);
}
.calc-select option {
  background: #fff;
  color: #1c2348;
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) {
  .calc-grid { grid-template-columns: 1fr; }
}
.calc-input-money {
  position: relative;
}
.calc-input-money::before {
  content: '$';
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(28, 35, 72, 0.40);
  font-family: 'Space Mono', monospace;
  pointer-events: none;
}
.calc-input-money .calc-input {
  padding-left: 26px;
}

/* ---- Primary button ---- */
.calc-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  background: #1c2348;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  padding: 14px 28px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(28, 35, 72, 0.20);
}
.calc-btn:hover {
  transform: translateY(-1px);
  background: #2f4a8a;
  box-shadow: 0 8px 24px rgba(47, 74, 138, 0.28);
}
.calc-btn:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* ---- Results ---- */
.calc-results {
  margin-top: 28px;
}
.calc-results[hidden] {
  display: none;
}
.calc-result-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.calc-result-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1c2348;
  margin: 0;
}
.calc-rows {
  display: grid;
  gap: 10px;
}
.calc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(28, 35, 72, 0.09);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.15s;
}
.calc-row.is-best {
  border-color: #f2c235;
  background: rgba(242, 194, 53, 0.10);
  box-shadow: 0 0 0 1px rgba(242, 194, 53, 0.35);
}
.calc-rank {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(28, 35, 72, 0.38);
  width: 22px;
  text-align: center;
}
.calc-row-name {
  font-weight: 600;
  color: #1c2348;
  font-size: 15px;
}
.calc-row-sub {
  font-size: 12px;
  color: rgba(28, 35, 72, 0.55);
  margin-top: 2px;
}
.calc-row-value {
  text-align: right;
}
.calc-row-value .big {
  font-family: 'Space Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: #1c2348;
}
.calc-row.is-best .calc-row-value .big {
  color: #1a5c2a;
}
.calc-row-value .small {
  font-size: 12px;
  color: rgba(28, 35, 72, 0.52);
}

/* Gold "Best" badge */
.calc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c2348;
  background: #f2c235;
  border-radius: 6px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---- Notices & alerts ---- */
.calc-notice {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(28, 35, 72, 0.68);
  background: rgba(255, 255, 255, 0.50);
  border: 1px dashed rgba(28, 35, 72, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
}
.calc-error {
  color: #c0392b;
}

/* ---- App CTA row ---- */
.calc-cta-row {
  margin-top: 30px;
  text-align: center;
}
.calc-cta-row p {
  color: rgba(28, 35, 72, 0.68);
  margin-bottom: 14px;
  font-size: 15px;
}

/* ---- App conversion strip (appears after results) ---- */
.calc-app-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(28, 35, 72, 0.10);
  box-shadow: 0 -4px 24px rgba(28, 35, 72, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.calc-app-strip.is-visible {
  transform: translateY(0);
}
.calc-app-strip.is-dismissed {
  display: none;
}
.calc-strip-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-strip-coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2c235;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.calc-strip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1c2348;
}
.calc-strip-text span {
  font-size: 12px;
  color: rgba(28, 35, 72, 0.60);
}
.calc-strip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-strip-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  background: #1c2348;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  padding: 9px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.calc-strip-cta:hover { background: #2f4a8a; }
.calc-strip-dismiss {
  appearance: none;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(28, 35, 72, 0.45);
  font-size: 18px;
  line-height: 1;
  padding: 4px 6px;
}
@media (max-width: 600px) {
  .calc-app-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .calc-strip-actions { width: 100%; }
  .calc-strip-cta { flex: 1; text-align: center; }
}

/* ---- Spend profile saved indicator ---- */
.spend-profile-saved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1a5c2a;
  background: rgba(242, 194, 53, 0.18);
  border: 1px solid rgba(242, 194, 53, 0.45);
  border-radius: 100px;
  padding: 4px 10px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.spend-profile-saved.is-visible {
  opacity: 1;
}

/* ---- SEO prose ---- */
.calc-prose {
  margin-top: 64px;
  color: rgba(28, 35, 72, 0.72);
  line-height: 1.72;
}
.calc-prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: #1c2348;
  font-size: 26px;
  font-weight: 600;
  margin: 36px 0 12px;
}
.calc-prose h3 {
  color: #1c2348;
  font-size: 17px;
  font-weight: 600;
  margin: 22px 0 6px;
}
.calc-prose a {
  color: #2f4a8a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.calc-faq details {
  border-bottom: 1px solid rgba(28, 35, 72, 0.10);
  padding: 16px 0;
}
.calc-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #1c2348;
  list-style: none;
}
.calc-faq summary::-webkit-details-marker { display: none; }
.calc-faq p {
  margin-top: 10px;
  color: rgba(28, 35, 72, 0.70);
}

/* ---- Inter-calculator hub grid ---- */
.calc-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .calc-hub-grid { grid-template-columns: 1fr; }
}
.calc-hub-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.60);
  border: 1.5px solid rgba(28, 35, 72, 0.10);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.16s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 16px rgba(28, 35, 72, 0.06);
}
.calc-hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 74, 138, 0.40);
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 8px 28px rgba(28, 35, 72, 0.12);
}
.calc-hub-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: #1c2348;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}
.calc-hub-card p {
  color: rgba(28, 35, 72, 0.64);
  font-size: 14px;
  line-height: 1.58;
  margin: 0;
}
.calc-hub-card .arrow {
  color: #2f4a8a;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  margin-top: 14px;
  display: inline-block;
  font-weight: 700;
}
.calc-hub-card.is-featured {
  border-color: #f2c235;
  background: rgba(242, 194, 53, 0.08);
  grid-column: 1 / -1;
}
.calc-hub-card.is-featured h2 {
  font-size: 22px;
}
