@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('/site/fonts/barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url('/site/fonts/barlow-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url('/site/fonts/barlow-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 800; font-display: swap; src: url('/site/fonts/barlow-800.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('/site/fonts/barlow-condensed-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url('/site/fonts/barlow-condensed-800.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 900; font-display: swap; src: url('/site/fonts/barlow-condensed-900.woff2') format('woff2'); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cobalt:      #16305F;
  --cobalt-lt:   #1A3E7E;
  --navy-deep:   #0F2547;
  --navy-shell:  #0B1D3A;
  --ink:         #1B2B3C;
  --muted:       #5C6B7A;
  --muted-lt:    #7E8B98;
  --border:      #ECE7DF;
  --border-dk:   #E4DFD6;
  --bg:          #FBFAF8;
  --band:        #F0EEE9;
  --accent:      #E86A1F;
  --accent-ink:  #C2540F;
  --accent-soft: #FBEADD;
  --peach:       #F6A96A;
  --peach-pale:  #F5C9A8;
  --green:       #1F8A5B;
  --hero-sub:    #C6D3E6;
  --hero-dim:    #9FB3C8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
picture { display: contents; }
::selection { background: var(--accent); color: #fff; }

:root { --display: 'Barlow Condensed', 'Barlow', sans-serif; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
[tabindex="-1"]:focus-visible { outline: none; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--cobalt); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.check { flex-shrink: 0; }

/* ── NAV ── */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,248,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; gap: 14px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand-name { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.brand-name span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; margin-left: 36px; flex: 1; }
.nav-links a { color: #46586B; font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--ink); }
.nav-signin { color: var(--ink); font-size: 15px; font-weight: 700; }
.nav-cta {
  background: var(--accent-ink); color: #fff; font-size: 15px; font-weight: 700;
  padding: 11px 20px; border-radius: 11px;
  box-shadow: 0 6px 16px rgba(232,106,31,0.28);
  transition: background 0.15s;
}
.nav-cta:hover { background: #AD490C; }

/* ── HERO ── */
.hero {
  position: relative;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #16305F 0%, #1A3E7E 60%, #1A3E7E 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,106,31,0.35), transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
  align-items: center; position: relative;
  padding-top: 72px; padding-bottom: 88px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--peach-pale);
}
.hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.03; font-weight: 900; letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--peach); }
.hero-sub { margin: 22px 0 0; font-size: 19px; line-height: 1.5; color: var(--hero-sub); max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn-accent {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 19px; font-weight: 800; padding: 16px 28px; border-radius: 13px;
  box-shadow: 0 10px 26px rgba(232,106,31,0.4);
  transition: background 0.15s;
}
.btn-accent:hover { background: var(--accent-ink); }
.btn-hero-ghost {
  display: inline-block; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-size: 19px; font-weight: 700; padding: 16px 26px; border-radius: 13px;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.14); }
.hero-ticks { display: flex; gap: 22px; margin-top: 24px; flex-wrap: wrap; font-size: 14px; color: var(--hero-dim); }
.hero-ticks span { display: flex; align-items: center; gap: 7px; }
.hero-phone-col { position: relative; display: flex; justify-content: center; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-phone {
  width: 300px; height: 610px;
  background: var(--navy-deep); border: 10px solid var(--navy-shell); border-radius: 46px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5); overflow: hidden;
  animation: floaty 6s ease-in-out infinite;
}
.hero-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
@keyframes chipIn {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-chip {
  position: absolute; bottom: 40px; left: -18px;
  background: #fff; color: var(--ink); border-radius: 15px; padding: 13px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  display: flex; align-items: center; gap: 11px;
  animation: chipIn 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.7s backwards;
}
.hero-chip .disc {
  width: 38px; height: 38px; border-radius: 50%; background: #E4F0EA;
  display: flex; align-items: center; justify-content: center;
}
.hero-chip b { display: block; font-size: 15px; font-weight: 800; }
.hero-chip small { font-size: 12.5px; color: var(--muted); }

/* ── DISPLAY TYPE ── */
.hero h1, .section-head h2, .booking-copy h2, .show-row h3, .faq > h2, .cta-final h2 {
  font-family: var(--display);
  letter-spacing: -0.005em;
}
.hero h1 { font-size: clamp(2.5rem, 5.1vw, 3.65rem); }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 2.95rem); }
.booking-copy h2 { font-size: clamp(1.9rem, 3.3vw, 2.5rem); }
.show-row h3 { font-size: clamp(1.8rem, 3.1vw, 2.3rem); }
.faq > h2 { font-size: clamp(2rem, 3.6vw, 2.65rem); }
.cta-final h2 { font-size: clamp(2.25rem, 4.7vw, 3.1rem); }

/* ── SECTION HEADERS ── */
.kicker {
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #AD490C;
}
.kicker-light { color: var(--peach); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto; }
.section-head h2 {
  margin: 12px 0 0; font-size: clamp(1.9rem, 3.6vw, 2.63rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.08;
}
.section-head p { margin: 16px 0 0; font-size: 18px; color: var(--muted); line-height: 1.5; }

/* ── FEATURES ── */
.features { padding-top: 88px; padding-bottom: 20px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; box-shadow: 0 2px 10px rgba(27,43,60,0.04);
}
.feature-card .tile {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.feature-card p { margin-top: 9px; font-size: 15.5px; color: var(--muted); line-height: 1.5; }
.tint-blue  { background: #EAF0F7; color: var(--cobalt-lt); }
.tint-peach { background: var(--accent-soft); color: var(--accent-ink); }
.tint-green { background: #E4F0EA; color: var(--green); }
.tint-sand  { background: #F3E9DF; color: #8A5A2B; }

.included-box {
  margin-top: 28px; background: var(--band); border: 1px solid var(--border-dk);
  border-radius: 18px; padding: 22px 26px;
}
.included-box .label {
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.whofor-line {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-dk);
  font-size: 15.5px; color: var(--muted); text-align: center;
}
.whofor-line b { color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--border-dk); border-radius: 100px;
  padding: 8px 15px; font-size: 14px; font-weight: 600; color: var(--ink);
}

/* ── BOOKING PAGE BAND ── */
.booking { padding-top: 56px; padding-bottom: 56px; }
.booking-card {
  background: var(--cobalt); color: #fff; border-radius: 26px; overflow: hidden;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
}
.booking-copy { padding: 52px 48px; }
.booking-copy h2 {
  margin: 12px 0 0; font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.1;
}
.booking-copy p { margin: 16px 0 0; font-size: 17.5px; color: var(--hero-sub); line-height: 1.55; }
.booking-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px; padding: 10px 15px; font-size: 14.5px; color: var(--hero-sub);
  max-width: 100%; word-break: break-all;
}
.booking-link svg { flex-shrink: 0; }
.booking-shot { display: flex; justify-content: center; align-items: center; padding: 40px; }
.booking-phone {
  width: 240px; background: var(--navy-deep);
  border: 9px solid var(--navy-shell);
  border-radius: 38px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.booking-phone img { width: 100%; display: block; }

/* ── SHOWCASE ── */
.showcase { padding-top: 20px; padding-bottom: 20px; }
.show-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding: 48px 0;
}
.show-phone-col { display: flex; justify-content: center; }
.show-phone {
  width: 258px; background: var(--navy-deep); border: 9px solid var(--navy-shell);
  border-radius: 40px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(16,37,71,0.2);
}
.show-phone img { width: 100%; display: block; }
.show-row h3 {
  margin: 12px 0 0; font-size: clamp(1.6rem, 2.8vw, 2.06rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.1;
}
.show-row > div > p { margin: 16px 0 0; font-size: 17.5px; color: var(--muted); line-height: 1.55; }
.show-points { margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.show-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; font-weight: 600; color: var(--ink); }
.show-points .disc {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* ── WHO IT'S FOR ── */

/* ── DEVICES ── */
.devices {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #16305F 0%, #1A3E7E 100%);
  color: #fff; overflow: hidden;
}
.devices-inner { padding-top: 84px; padding-bottom: 84px; }
.devices .section-head h2 { color: #fff; }
.devices .section-head p { color: var(--hero-sub); }
.devices-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 28px; margin-top: 56px; align-items: end; }
.browser-shell {
  background: var(--navy-shell); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: #12294B; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; }
.browser-url {
  flex: 1; max-width: 320px; margin: 0 auto;
  background: var(--navy-shell); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 5px 12px;
  font-size: 12px; color: var(--hero-dim); text-align: center;
}
.browser-shell img { width: 100%; display: block; }
.device-caption { font-size: 15px; font-weight: 700; color: var(--hero-sub); margin-top: 16px; text-align: center; }
.side-devices { display: flex; gap: 20px; align-items: end; justify-content: center; }
.ipad-shell { flex: 1; }
.ipad-shell .frame {
  background: var(--navy-shell); border: 10px solid var(--navy-shell);
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.ipad-shell img { width: 100%; display: block; }
.mini-phone { width: 132px; flex-shrink: 0; }
.mini-phone .frame {
  background: var(--navy-deep); border: 7px solid var(--navy-shell);
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 26px 50px rgba(0,0,0,0.45);
}
.mini-phone img { width: 100%; height: 232px; object-fit: cover; object-position: top center; display: block; }

/* ── PRICING ── */
.pricing { background: var(--band); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { padding-top: 84px; padding-bottom: 84px; }
.price-card {
  max-width: 460px; margin: 44px auto 0;
  background: var(--cobalt); color: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 24px 50px rgba(22,48,95,0.35); text-align: center;
}
.bill-toggle {
  display: inline-flex; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 100px;
  padding: 4px; gap: 2px;
}
.bill-toggle button {
  display: flex; align-items: center; gap: 7px;
  border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 800; padding: 9px 20px; border-radius: 100px;
  background: transparent; color: #B7C6DC;
  transition: background 0.15s, color 0.15s;
}
.bill-toggle button[aria-pressed="true"] { background: var(--accent); color: #fff; }
.bill-toggle .save {
  background: rgba(87,201,141,0.18); color: #57C98D;
  font-size: 11px; font-weight: 800; padding: 2px 7px; border-radius: 100px;
}
.bill-toggle button[aria-pressed="true"] .save { background: rgba(255,255,255,0.22); color: #fff; }
.trial-pill {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  background: rgba(246,169,106,0.16); color: var(--peach);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 100px;
}
.price-line { display: flex; align-items: baseline; justify-content: center; gap: 7px; margin-top: 22px; }
.price-line strong { font-size: 60px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.price-line span { font-size: 17px; color: var(--hero-dim); }
.price-sub { font-size: 15px; color: #B7C6DC; margin-top: 8px; min-height: 22px; }
.price-sub b { color: #fff; font-weight: 800; font-size: 16.5px; }
.price-cta {
  display: block; margin-top: 24px; background: var(--accent); color: #fff;
  font-size: 19px; font-weight: 800; padding: 15px; border-radius: 13px;
  box-shadow: 0 10px 24px rgba(232,106,31,0.35);
  transition: background 0.15s;
}
.price-cta:hover { background: var(--accent-ink); }
.price-points { display: flex; flex-direction: column; gap: 11px; margin-top: 24px; text-align: left; }
.price-points div { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #E8EEF6; }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; padding: 84px 28px; }
.faq h2 { text-align: center; font-size: clamp(1.8rem, 3.2vw, 2.38rem); font-weight: 900; letter-spacing: -0.02em; margin: 0 0 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--accent-ink);
  font-size: 26px; font-weight: 400; line-height: 1; flex-shrink: 0;
  transition: transform 0.15s;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--accent-ink); }
.faq-item p { font-size: 16px; color: var(--muted); line-height: 1.55; padding: 0 28px 22px 0; margin-top: -6px; }

/* ── PROOF (component ready; section commented out until real quotes exist) ── */
.proof { padding-top: 28px; padding-bottom: 28px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.proof-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; box-shadow: 0 2px 10px rgba(27,43,60,0.04);
  display: flex; flex-direction: column; gap: 16px;
}
.proof-card blockquote { font-size: 17px; line-height: 1.55; color: var(--ink); font-weight: 600; }
.proof-card blockquote::before { content: "\201C"; display: block; font-family: var(--display); font-size: 44px; line-height: 0.6; color: var(--accent); margin-bottom: 10px; }
.proof-card figcaption { font-size: 14.5px; color: var(--muted); margin-top: auto; }
.proof-card figcaption b { color: var(--ink); }

/* ── FINAL CTA ── */
.cta-final { background: linear-gradient(135deg, #E86A1F, #C2540F); color: #fff; }
.cta-final-inner { max-width: 900px; margin: 0 auto; padding: 80px 28px; text-align: center; }
.cta-final h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 900; letter-spacing: -0.025em; line-height: 1.05;
}
.cta-final p { font-size: 19px; font-weight: 700; color: #fff; margin: 18px 0 32px; }
.btn-white {
  display: inline-block; background: #fff; color: var(--accent-ink);
  font-size: 19px; font-weight: 800; padding: 16px 30px; border-radius: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.btn-white:hover { background: #FFF4EC; }

/* Apple's official badge SVG carries its own white keyline, so it sits on any
   background (navy devices band, orange final CTA) without extra chrome. */
.appstore-badge { display: inline-block; line-height: 0; }
.appstore-badge img { width: 144px; height: 48px; }
.appstore-badge:hover { opacity: 0.85; }
.store-badges { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
.devices .store-badges { margin-top: 26px; }
/* Custom Android badge — mirrors the Apple badge (black, gray keyline) but is
   deliberately NOT the Google Play badge: the app isn't on Play, it installs
   from the browser (the .js-android-install modal explains how). */
.android-badge {
  display: inline-flex; align-items: center; gap: 9px;
  height: 48px; padding: 0 15px 0 12px; box-sizing: border-box;
  background: #000; border: 1px solid #a6a6a6; border-radius: 8px; color: #fff;
}
.android-badge:hover { opacity: 0.85; }
.android-badge svg { width: 25px; height: 25px; }
.android-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.android-badge small { font-size: 10px; font-weight: 500; letter-spacing: 0.01em; }
.android-badge b { font-size: 18.5px; font-weight: 600; letter-spacing: -0.01em; }
/* Hero: smaller badges under the tick row — a quiet third path, never competing
   with the Start-free button. */
.hero-store { margin-top: 24px; justify-content: flex-start; gap: 10px; }
.hero-store .appstore-badge img { width: 120px; height: 40px; }
.hero-store .android-badge { height: 40px; padding: 0 12px 0 10px; border-radius: 7px; gap: 7px; }
.hero-store .android-badge svg { width: 20px; height: 20px; }
.hero-store .android-badge small { font-size: 8.5px; }
.hero-store .android-badge b { font-size: 15.5px; }
.cta-final-store { margin-top: 22px; }
/* Android install-instructions modal (shares the demo-modal shell). */
.ai-steps { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.ai-steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); line-height: 1.45; }
.ai-steps .n {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink);
  font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-dots { vertical-align: -2px; }
.ai-go { display: flex; align-items: center; justify-content: center; margin-top: 20px; }
.ai-play { margin: 14px 0 0; font-size: 13px; color: var(--muted-lt); text-align: center; }

/* ── FOOTER ── */
footer.site { background: var(--navy-deep); color: var(--hero-dim); }
.footer-grid {
  display: grid; grid-template-columns: 1.35fr 0.85fr 0.9fr 1.25fr 1fr; gap: 30px;
  padding-top: 52px; padding-bottom: 28px;
}
.footer-grid .brand-name { color: #fff; font-size: 19px; }
.footer-grid .brand img { width: 34px; height: 34px; border-radius: 8px; }
.footer-blurb { font-size: 14px; line-height: 1.5; margin-top: 14px; max-width: 280px; }
.footer-col-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: #9FB3C8; margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-links a { color: var(--hero-sub); }
.footer-links a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px; text-align: center;
  font-size: 13.5px; line-height: 1.6;
}
.footer-legal a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding-top: 56px; padding-bottom: 64px; }
  .hero-chip { left: 6px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-copy { padding: 40px 32px 0; }
  .show-row { grid-template-columns: 1fr; gap: 36px; padding: 36px 0; }
  .show-phone-col { order: 2 !important; }
  .show-row > div:not(.show-phone-col) { order: 1; }
  .devices-grid { grid-template-columns: 1fr; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-signin { margin-left: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-phone { width: 264px; height: 537px; }
  .hero-ctas a { flex: 1; text-align: center; }
  .booking-copy { padding: 36px 24px 0; }
  .price-card { padding: 32px 24px; }
  .price-line strong { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
}
/* ── DEMO MODAL ── */
.btn-hero-ghost { cursor: pointer; font-family: inherit; }
.demo-modal {
  margin: auto; border: none; border-radius: 20px; padding: 0;
  width: min(440px, calc(100vw - 40px));
  box-shadow: 0 24px 64px rgba(11,29,58,0.35);
}
.demo-modal::backdrop { background: rgba(11,29,58,0.55); }
.demo-inner { padding: 28px; }
.demo-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.demo-head h2 { font-size: 26px; font-weight: 900; letter-spacing: -0.02em; font-family: var(--display); }
.demo-close {
  flex: none; width: 36px; height: 36px; border: none; border-radius: 10px;
  background: var(--band); color: var(--muted); font-size: 20px; line-height: 1;
  cursor: pointer; font-family: inherit;
}
.demo-close:hover { background: var(--border); color: var(--ink); }
.demo-sub { margin-top: 8px; font-size: 15.5px; color: var(--muted); line-height: 1.5; }
.demo-form { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.demo-form label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.demo-form input, .demo-form select {
  width: 100%; height: 48px; font-size: 16px; font-family: inherit; color: var(--ink);
  padding: 0 14px; border: 1px solid var(--border-dk); border-radius: 11px; background: #fff;
}
.demo-form select { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235C6B7A' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 14px center; }
.demo-submit {
  height: 52px; border: none; border-radius: 13px; background: var(--accent); color: #fff;
  font-size: 19px; font-weight: 800; font-family: inherit; cursor: pointer;
  transition: background 0.15s;
}
.demo-submit:hover { background: var(--accent-ink); }
.demo-submit:disabled { opacity: 0.6; cursor: default; }
.demo-err { display: none; font-size: 14.5px; font-weight: 700; color: #B3261E; }
.demo-done { display: none; text-align: center; padding: 18px 0 6px; }
.demo-done .tick {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%;
  background: #E4F0EA; color: var(--green); display: flex; align-items: center; justify-content: center;
}
.demo-done h3 { font-size: 21px; font-weight: 900; }
.demo-done p { margin-top: 8px; font-size: 15.5px; color: var(--muted); line-height: 1.5; }
.demo-gotcha { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── 404 ── */
.notfound { background: var(--band); border-bottom: 1px solid var(--border); }
.notfound-inner { max-width: 700px; text-align: center; padding: 96px 28px 104px; }
.notfound-inner h1 {
  font-family: var(--display); font-weight: 900; letter-spacing: -0.01em;
  font-size: clamp(2.25rem, 5vw, 3.1rem); line-height: 1.05; margin: 10px 0 0;
}
.notfound-inner > p { font-size: 18px; color: var(--muted); margin: 16px auto 30px; max-width: 520px; }
.notfound-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.notfound-links a {
  font-size: 15px; font-weight: 700; color: var(--cobalt);
  background: #fff; border: 1px solid var(--border-dk);
  padding: 9px 16px; border-radius: 999px;
}
.notfound-links a:hover { border-color: var(--cobalt); }
.notfound-help { font-size: 15px; color: var(--muted); margin-top: 28px; }
.notfound-help a { color: var(--accent-ink); font-weight: 700; text-decoration: underline; }

/* ── SUB-PAGE HERO ── */
.subhero { background: var(--band); border-bottom: 1px solid var(--border); }
.subhero-inner { max-width: 820px; padding: 72px 28px 64px; }
.subhero h1 {
  font-family: var(--display); font-weight: 900; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 4.6vw, 3rem); line-height: 1.06; margin: 12px 0 0;
}
.subhero-sub { font-size: 19px; color: var(--muted); margin-top: 18px; max-width: 660px; }
.subhero-meta { font-size: 14px; color: var(--muted-lt); margin-top: 22px; }

/* ── GENERIC PAGE SECTION ── */
.psec { padding: 66px 0; }
.psec--band { background: var(--band); }
.psec h2 {
  font-family: var(--display); font-weight: 900; letter-spacing: -0.01em;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem); line-height: 1.1; margin-bottom: 14px;
}
.psec h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.psec p { color: var(--muted); font-size: 16.5px; max-width: 720px; }
.psec p + p { margin-top: 14px; }
.psec .lede { font-size: 18px; }

/* ── COMPARISON TABLE ── */
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 26px; }
.cmp {
  border-collapse: separate; border-spacing: 0; width: 100%; min-width: 880px;
  background: #fff; border: 1px solid var(--border-dk); border-radius: 14px; overflow: hidden;
  font-size: 15px;
}
.cmp th, .cmp td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.cmp thead th {
  background: #F7F5F1; font-size: 13px; font-weight: 800; letter-spacing: .02em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.cmp tbody th { font-weight: 700; color: var(--ink); width: 190px; }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.cmp .us { background: #FDF6F0; }
.cmp thead .us { background: var(--accent-soft); color: var(--accent-ink); }
.cmp .us strong { color: var(--accent-ink); }
.cmp small { display: block; color: var(--muted-lt); font-size: 13px; margin-top: 3px; }
.cmp-hint { font-size: 13.5px; color: var(--muted-lt); margin-top: 10px; }

.srcnote {
  margin-top: 18px; padding: 16px 18px; background: #F7F5F1;
  border: 1px solid var(--border-dk); border-radius: 12px;
  font-size: 14px; color: var(--muted); max-width: none;
}
.srcnote a { color: var(--accent-ink); text-decoration: underline; }

/* ── HONEST PROS/CONS PAIR ── */
.fair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.fair-card { background: #fff; border: 1px solid var(--border-dk); border-radius: 14px; padding: 26px 24px; }
.fair-card.them { background: #F7F9FC; border-color: #DDE5EF; }
.fair-card h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 12px; }
.fair-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fair-card li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--muted); line-height: 1.5; }
.fair-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.fair-card.them li::before { background: var(--cobalt-lt); }
.fair-card li b { color: var(--ink); font-weight: 700; }

/* ── VERDICT / WHO-ITS-FOR ── */
.verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
.verdict-card { border-radius: 14px; padding: 26px 24px; border: 1px solid var(--border-dk); background: #fff; }
.verdict-card.pick { border-color: var(--accent); border-width: 2px; background: #FFFBF7; }
.verdict-card .label {
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-lt); margin-bottom: 10px;
}
.verdict-card.pick .label { color: var(--accent-ink); }
.verdict-card p { font-size: 16px; color: var(--muted); max-width: none; }

/* ── INCLUDED LIST ── */
.incl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 26px; margin-top: 26px; }
.incl div { position: relative; padding-left: 28px; font-size: 15.5px; color: var(--ink); }
.incl div::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--green); font-weight: 800; font-size: 15px;
}

@media (max-width: 900px) {
  .fair-grid, .verdict { grid-template-columns: 1fr; }
  .incl { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .incl { grid-template-columns: 1fr; }
  .subhero-inner { padding: 52px 24px 46px; }
  .psec { padding: 48px 0; }
}

/* ── COMPARISON TABLE: links out to the deep-dive pages ── */
.cmp thead th a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.cmp thead th a:hover { color: var(--accent-ink); }
.cmp thead .us { color: var(--accent-ink); }
.cmp-more {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 18px;
  font-size: 15px;
}
.cmp-more span { font-weight: 700; color: var(--ink); }
.cmp-more a {
  font-weight: 700; color: var(--cobalt);
  background: #fff; border: 1px solid var(--border-dk); border-radius: 999px;
  padding: 8px 15px; font-size: 14.5px;
}
.cmp-more a:hover { border-color: var(--cobalt); color: var(--accent-ink); }

/* ── HOMEPAGE PRICING → FULL COMPARISON ── */
.pricing-compare {
  max-width: 560px; margin: 26px auto 0; text-align: center;
  font-size: 16px; color: var(--muted);
}
.pricing-compare a {
  color: var(--accent-ink); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.pricing-compare a:hover { color: var(--accent); }

/* ── TRADE PAGES ── */
.trade-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.trade-scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.scenario { background: #fff; border: 1px solid var(--border-dk); border-radius: 14px; padding: 24px 22px; }
.scenario .when {
  font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 9px;
}
.scenario h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.scenario p { font-size: 15px; color: var(--muted); max-width: none; }

/* Sample document (quote/invoice) rendered in HTML, not an image */
.doc {
  background: #fff; border: 1px solid var(--border-dk); border-radius: 16px;
  box-shadow: 0 18px 44px rgba(27,43,60,0.10); overflow: hidden; max-width: 560px;
}
.doc-head {
  background: var(--cobalt); color: #fff; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.doc-head b { font-size: 17px; font-weight: 800; display: block; }
.doc-head small { font-size: 13px; color: var(--hero-sub); }
.doc-head .num { text-align: right; font-size: 13px; color: var(--hero-sub); white-space: nowrap; }
.doc-to { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--muted); }
.doc-to b { color: var(--ink); font-weight: 700; }
.doc table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.doc td { padding: 11px 24px; border-bottom: 1px solid var(--border); vertical-align: top; }
.doc td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.doc tr:last-child td { border-bottom: 0; }
.doc .sum td { border-bottom: 0; padding-top: 8px; padding-bottom: 4px; color: var(--muted); }
.doc .sum.total td { padding-top: 12px; padding-bottom: 20px; color: var(--ink); font-weight: 800; font-size: 17px; }
.doc-foot {
  background: #F7F5F1; border-top: 1px solid var(--border);
  padding: 14px 24px; font-size: 13.5px; color: var(--muted);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.doc-foot .pill {
  background: #E4F0EA; color: var(--green); font-weight: 700;
  padding: 4px 10px; border-radius: 999px; font-size: 12.5px;
}
.doc-caption { font-size: 13.5px; color: var(--muted-lt); margin-top: 12px; max-width: 560px; }

@media (max-width: 900px) {
  .trade-grid { grid-template-columns: 1fr; gap: 36px; }
  .trade-scenarios { grid-template-columns: 1fr; }
}

/* Deposit row inside a sample document */
.doc .sum.deposit td {
  padding-top: 12px; padding-bottom: 16px;
  border-top: 1px dashed var(--border-dk);
  color: var(--accent-ink); font-weight: 800;
}

/* ── SCENARIO CARD ICONS ── */
.scenario-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.scenario-icon svg { width: 19px; height: 19px; }

/* ── DOCUMENT STATUS CYCLE ──
   Three stacked chips, one visible at a time. Base state shows the FIRST chip
   only, so when the global prefers-reduced-motion rule kills the animation the
   document still reads correctly instead of stacking all three. Negative delays
   phase them without needing fill-mode. */
.doc-to { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.doc-status { position: relative; width: 84px; height: 22px; flex: none; }
.doc-status span {
  position: absolute; inset: 0; opacity: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px; animation: docStatus 6s linear infinite;
}
.doc-status span:first-child { opacity: 1; }
.doc-status span:nth-child(1) { background: #EAF0F7; color: var(--cobalt-lt); animation-delay: 0s; }
.doc-status span:nth-child(2) { background: var(--accent-soft); color: var(--accent-ink); animation-delay: -4s; }
.doc-status span:nth-child(3) { background: #DCEEE3; color: var(--green); animation-delay: -2s; }
@keyframes docStatus {
  0%   { opacity: 0; transform: translateY(3px); }
  4%   { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  34%  { opacity: 0; transform: translateY(-3px); }
  100% { opacity: 0; transform: translateY(-3px); }
}

/* ── PROGRESS-PAYMENT BAR (contractors) ── */
.paybar { max-width: 560px; margin-top: 26px; }
.paybar-track {
  position: relative; height: 34px; border-radius: 10px;
  background: #E7E2D9; overflow: hidden; display: flex;
}
.paybar-seg {
  height: 100%; width: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 800; color: #fff; white-space: nowrap;
  animation: paybarFill 9s ease-in-out infinite;
}
/* Label fades in only after its segment has finished growing, otherwise it
   renders clipped mid-word ("Fina|"). Delay is inherited from the segment. */
.paybar-seg span { opacity: 0; animation: paybarLabel 9s ease-in-out infinite; animation-delay: inherit; }
@keyframes paybarLabel {
  0%, 15%   { opacity: 0; }
  24%, 80%  { opacity: 1; }
  88%, 100% { opacity: 0; }
}
.paybar-seg.s1 { background: var(--cobalt);    animation-delay: 0s;   }
.paybar-seg.s2 { background: var(--cobalt-lt); animation-delay: 1.2s; }
.paybar-seg.s3 { background: var(--green);     animation-delay: 2.4s; }
.paybar-seg.s1 { --w: 25%; }
.paybar-seg.s2 { --w: 40%; }
.paybar-seg.s3 { --w: 35%; }
@keyframes paybarFill {
  0%          { width: 0; }
  18%, 82%    { width: var(--w); }
  100%        { width: 0; }
}
.paybar-legend {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 10px; font-size: 13.5px; color: var(--muted);
}
/* Reduced motion: the global kill switch stops the fill, so show the full
   staged bar statically rather than an empty track. */
@media (prefers-reduced-motion: reduce) {
  .paybar-seg { width: var(--w) !important; }
  .paybar-seg span { opacity: 1 !important; }
}

/* ── SUB-PAGE HERO WITH ARTWORK ──
   Comparison pages keep the plain .subhero-inner; trade pages wrap it in a grid
   alongside the illustration. Art sits AFTER the text in source order so it
   falls below the h1 on a phone rather than pushing it off screen. */
.subhero-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 44px; align-items: center;
  padding: 56px 28px 56px;
}
.subhero-grid .subhero-inner { max-width: none; padding: 0; }
/* Backgrounds are flood-filled to transparent, so the art sits directly on the
   band with no rectangle. Blend modes were tried first and made it worse — the
   generated whites are not identical between images, so multiply turned the
   warmer ones into visible beige blocks. */
.subhero-art img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .subhero-grid { grid-template-columns: 1fr; gap: 24px; padding: 46px 24px 42px; }
  .subhero-art { max-width: 420px; }
}

/* ── WIDE BANNER ILLUSTRATION (below the fold, so lazy) ── */
.trade-banner { max-width: 688px; margin: 4px auto 30px; }
.trade-banner img { display: block; width: 100%; height: auto; }
