/* ============================================================
   Ailly — shared site styles
   Brand: Quicksand everywhere; Source Serif 4 for enterprise
   headlines only. Gradient stage: navy → deep purple.
   ============================================================ */

:root {
  --navy: #1A237E;
  --purple-deep: #311B92;
  --purple: #4A148C;
  --ink: #141A33;
  --body: #333A5C;
  --muted: #555C7A;
  --faint: #8A8FA8;
  --bg: #F6F6FA;
  --ent-navy: #141B4D;
  /* Enterprise accent — cool azure, distinct from Business gold + Personal navy */
  --ent-accent: #2F6DB0;
  --ent-accent-light: #8FBEE8;
  --biz-gold-1: #A9762A;
  --biz-gold-2: #C79A3E;
  --grad: linear-gradient(160deg, #1A237E 0%, #311B92 55%, #4A148C 100%);
  --grad-ent: linear-gradient(160deg, #141B4D 0%, #1A237E 55%, #311B92 100%);
  --shadow-card: 0 4px 18px rgba(20, 26, 77, .07);
  --shadow-card-lg: 0 6px 24px rgba(20, 26, 77, .09);
  --shadow-btn: 0 6px 18px rgba(20, 26, 77, .22);
  --radius: 18px;
  --font: ui-rounded, 'SF Pro Rounded', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

[id] { scroll-margin-top: 84px; }

a { color: var(--navy); }

/* Skip link for keyboard users */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

/* ============================== NAV ============================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 27, 77, .96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 10px;
  transition: color .15s, background .15s;
}

.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.nav-links a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .14); }

.nav-cta {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle:hover { background: rgba(255, 255, 255, .1); }
.nav-toggle .bars { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: #fff; border-radius: 2px;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(20, 27, 77, .98);
    display: none;
    padding: 8px 20px 20px;
    box-shadow: 0 18px 30px rgba(10, 12, 40, .35);
  }
  .nav-menu.open { display: block; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a { padding: 13px 12px; font-size: 16px; }
  .nav-cta { display: none; }
}

@media (min-width: 761px) {
  .nav-menu { display: flex; align-items: center; gap: 14px; }
}

/* ============================== HERO ============================== */

.hero {
  background: var(--navy);
  background-image: var(--grad);
  color: #fff;
  text-align: center;
  padding: 88px 24px 96px;
  overflow: hidden;
}

.hero.hero-ent { background: var(--ent-navy); background-image: var(--grad-ent); }

.hero-mascot { width: 108px; margin-bottom: 18px; }

.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 800px;
  margin: 0 auto 18px;
}

.hero .hero-sub {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
  margin: 0 auto;
}

.hero-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }

.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .45);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.chip-gold { border-color: var(--ent-accent); color: var(--ent-accent-light); border-radius: 4px; }

.rule-gold { width: 56px; height: 2px; background: var(--ent-accent); margin: 26px auto; border: none; }

/* Gentle float on the mascot */
.float { animation: float 5.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .float { animation: none; }
}

/* ============================== BUTTONS ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 700;
  height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-white { background: #fff; color: var(--navy); box-shadow: 0 6px 18px rgba(0, 0, 0, .25); }
.btn-white:hover { box-shadow: 0 9px 24px rgba(0, 0, 0, .3); }

.btn-ghost { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }

.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-btn); }
.btn-navy:hover { background: #232E96; box-shadow: 0 9px 24px rgba(20, 26, 77, .3); }

.btn-outline { border: 1.5px solid #C9CBE2; color: var(--navy); background: transparent; }
.btn-outline:hover { background: #EDEFFF; }

.btn-gold {
  background: linear-gradient(135deg, var(--biz-gold-1), var(--biz-gold-2));
  color: #fff;
  box-shadow: 0 6px 18px rgba(169, 118, 42, .32);
}
.btn-gold:hover { box-shadow: 0 9px 24px rgba(169, 118, 42, .4); }

/* App Store "coming soon" badge — one shared element.
   When the app goes live, swap the <span class="store-badge"> for an
   <a class="store-badge" href="APP_STORE_URL"> everywhere. */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  color: var(--navy);
  border-radius: 16px;
  height: 56px;
  padding: 0 24px 0 20px;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-top { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; opacity: .75; }
.store-badge .sb-bottom { display: block; font-size: 18px; font-weight: 700; line-height: 1.15; }

.store-badge.on-light {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

/* ============================== SECTIONS ============================== */

main { display: block; }

.section { max-width: 1040px; margin: 0 auto; padding: 76px 24px; }
.section-tight { padding-top: 56px; padding-bottom: 56px; }
.section-narrow { max-width: 880px; }

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.kicker-gold { color: var(--biz-gold-1); }

.section h2 {
  font-size: clamp(27px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.lede {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 34px;
}

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.serif { font-family: var(--serif); font-weight: 700; }

/* ============================== CARDS & GRIDS ============================== */

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.card h3 { font-size: 17px; font-weight: 700; margin: 12px 0 7px; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.ico svg { width: 22px; height: 22px; color: var(--navy); }
.ent .ico svg { color: var(--ent-navy); }
.sec-ico svg { width: 22px; height: 22px; color: var(--biz-gold-1); }
.ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EDEFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}
.ico-gold { background: #F7EED9; }
.ico-gold svg { color: var(--biz-gold-1); }

/* Lane cards (home) */
.lane {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  padding: 30px 26px;
  text-decoration: none;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.lane:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(20, 26, 77, .13); }

.lane .lane-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.lane h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.lane p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.lane ul { list-style: none; margin: 16px 0 22px; }
.lane li { font-size: 14px; color: var(--body); padding: 5px 0 5px 24px; position: relative; }
.lane li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: var(--navy); }
.lane .lane-cta { margin-top: auto; font-weight: 700; font-size: 15px; color: var(--navy); }
.lane .lane-cta::after { content: " →"; }

.lane-business { position: relative; overflow: hidden; }
.lane-business::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--biz-gold-1), var(--biz-gold-2));
}
.lane-business .lane-tag, .lane-business li::before, .lane-business .lane-cta { color: var(--biz-gold-1); }

.lane-enterprise { background: var(--ent-navy); }
.lane-enterprise h3 { color: #fff; }
.lane-enterprise p { color: rgba(255, 255, 255, .82); }
.lane-enterprise li { color: rgba(255, 255, 255, .88); }
.lane-enterprise .lane-tag, .lane-enterprise li::before, .lane-enterprise .lane-cta { color: var(--ent-accent-light); }

/* ============================== STEPS ============================== */

.steps { counter-reset: s; display: grid; gap: 14px; }

.step {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 21px 20px;
  box-shadow: 0 3px 14px rgba(20, 26, 77, .06);
}
.step::before {
  counter-increment: s;
  content: counter(s);
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.steps-gold .step::before { background: linear-gradient(135deg, var(--biz-gold-1), var(--biz-gold-2)); }

/* Launch path (business) — vertical timeline, horizontal on wide screens */
.path { counter-reset: p; list-style: none; display: grid; gap: 16px; }
.path li {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 22px 66px;
  box-shadow: var(--shadow-card);
}
.path li::before {
  counter-increment: p;
  content: counter(p);
  position: absolute;
  left: 18px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--biz-gold-1), var(--biz-gold-2));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.path p { font-size: 14px; line-height: 1.55; color: var(--muted); }

@media (min-width: 860px) {
  .path { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .path li { padding: 62px 18px 22px; text-align: center; }
  .path li::before { left: 50%; transform: translateX(-50%); top: 16px; }
  .path li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    left: calc(50% + 26px);
    width: calc(100% - 38px);
    height: 2px;
    background: linear-gradient(90deg, var(--biz-gold-2), #E8D9B8);
  }
}

/* ============================== DARK IMPACT BLOCK ============================== */

.impact {
  background: var(--ent-navy);
  color: #fff;
  border-radius: 22px;
  padding: 36px 34px;
}
.impact b {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 700;
  color: var(--ent-accent-light);
  display: block;
  margin-bottom: 10px;
}
.impact p { color: rgba(255, 255, 255, .88); font-size: 14.5px; line-height: 1.6; max-width: 680px; }
.impact ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.impact li { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.92); padding-left: 24px; position: relative; font-weight: 600; }
.impact li::before { content: "✓"; position: absolute; left: 0; color: var(--ent-accent-light); font-weight: 700; }

/* ============================== PRICING ============================== */

.plan {
  background: #fff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--shadow-card-lg);
  display: flex;
  flex-direction: column;
}
.plan .plan-lane { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.plan h3 { font-size: 21px; font-weight: 700; margin-bottom: 4px; }
.plan .plan-note { font-size: 13.5px; color: var(--faint); margin-top: 2px; }
.plan .n { font-size: 40px; font-weight: 700; color: var(--navy); margin-top: 14px; line-height: 1; }
.plan .n small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan .per { font-size: 13.5px; color: var(--muted); margin-top: 7px; line-height: 1.5; }
.plan ul { list-style: none; margin: 20px 0 24px; }
.plan li { font-size: 14.5px; padding: 6px 0 6px 26px; position: relative; color: var(--body); line-height: 1.5; }
.plan li::before { content: "✓"; position: absolute; left: 2px; color: #2E7D32; font-weight: 700; }
.plan .btn { margin-top: auto; }

.plan-business .plan-lane { color: var(--biz-gold-1); }
.plan-business .n { color: var(--biz-gold-1); }

.plan-enterprise { background: var(--ent-navy); color: #fff; }
.plan-enterprise .plan-lane { color: var(--ent-accent-light); }
.plan-enterprise h3 { font-family: var(--serif); }
.plan-enterprise .plan-note { color: rgba(255, 255, 255, .65); }
/* Match the other two plans' price font — side by side, prices should be
   visually comparable (the serif reads as inconsistent). Gold accent stays. */
.plan-enterprise .n { color: var(--ent-accent-light); }
.plan-enterprise .n small { color: rgba(255, 255, 255, .75); }
.plan-enterprise .per { color: rgba(255, 255, 255, .75); }
.plan-enterprise li { color: rgba(255, 255, 255, .9); }
.plan-enterprise li::before { color: var(--ent-accent-light); }

.finePrint { font-size: 12.5px; color: var(--faint); margin-top: 10px; line-height: 1.55; }

/* Keep the plan CTAs on one line across cards: reserve equal fine-print height
   when the plans sit side by side, so a shorter note doesn't drop its button. */
@media (min-width: 700px) {
  /* Reserve equal heights so the price, feature list, and CTA all line up
     across cards regardless of how long each plan's copy runs. */
  .plan .plan-note { min-height: 34px; }
  .plan .per { min-height: 96px; }
  .plan .finePrint { min-height: 58px; }
}

/* ============================== SECURITY ROWS ============================== */

.sec-row { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 16px; }
.sec-row .sec-ico { font-size: 21px; flex: none; margin-top: 1px; }
.sec-row p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.sec-row b { color: var(--ink); }

/* ============================== FAQ ============================== */

.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 0 22px;
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 28px 19px 0;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: 15px; line-height: 1.65; color: var(--muted); padding-bottom: 20px; }
.faq details p + p { margin-top: -8px; }

/* ============================== CLOSING CTA BAND ============================== */

.cta-band {
  background: var(--navy);
  background-image: var(--grad);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}
.cta-band.cta-ent { background: var(--ent-navy); background-image: var(--grad-ent); }
.cta-band h2 { font-size: clamp(24px, 3.8vw, 34px); font-weight: 700; margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: rgba(255, 255, 255, .85); max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }

/* ============================== LEGAL / PROSE PAGES ============================== */

.prose { max-width: 720px; margin: 0 auto; padding: 44px 24px 76px; }
.prose h2 { font-size: 17.5px; font-weight: 700; color: var(--navy); margin: 28px 0 8px; }
.prose p { font-size: 15px; line-height: 1.7; color: var(--body); }
.prose .updated { font-size: 13px; color: var(--faint); margin-bottom: 4px; }

.page-hero { padding: 52px 24px 56px; }
.page-hero h1 { font-size: clamp(28px, 4.5vw, 38px); }

/* ============================== FOOTER ============================== */

.footer { background: var(--ent-navy); color: rgba(255, 255, 255, .75); padding: 56px 24px 30px; }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand img { width: 64px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 260px; }

.footer h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer a { color: rgba(255, 255, 255, .75); text-decoration: none; font-size: 14.5px; }
.footer a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* ============================== MISC ============================== */

.quote-card { background: #fff; border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-card); }
.quote-card blockquote { font-size: 15.5px; line-height: 1.65; color: var(--body); }
.quote-card blockquote::before { content: "“"; color: var(--navy); font-size: 34px; line-height: 0; vertical-align: -10px; margin-right: 2px; font-weight: 700; }
.quote-card figcaption { margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--faint); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: #EDEFFF; color: var(--navy); font-size: 13.5px; font-weight: 700; padding: 8px 15px; border-radius: 99px; }
.pill-gold-bg { background: #F7EED9; color: var(--biz-gold-1); }

/* Score ring — small visual used on personal page */
.ring {
  width: 128px; height: 128px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(#fff calc(var(--p) * 1%), rgba(255, 255, 255, .22) 0);
  position: relative;
}
.ring::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #2A1F7E; }
.ring b { position: relative; font-size: 38px; font-weight: 700; color: #fff; }


/* ============================== APP SCREENSHOTS ============================== */

.phone {
  display: inline-block;
  border-radius: 38px;
  padding: 10px;
  background: #10142E;
  box-shadow: 0 24px 48px rgba(10, 14, 40, .35), inset 0 0 0 1.5px rgba(255, 255, 255, .12);
}
.phone img {
  display: block;
  width: 100%;
  border-radius: 30px;
}
.hero-phone {
  width: min(300px, 74vw);
  margin: 40px auto -110px;
  transform: rotate(-2deg);
}
.hero-phone:hover { transform: rotate(0deg); }
.phone { transition: transform .35s ease; }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  align-items: start;
}
.shot { text-align: center; }
.shot .phone { width: 100%; max-width: 240px; }
.shot figcaption {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 12px;
}
@media (max-width: 700px) {
  .shots { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-phone { margin-bottom: -80px; }
}

/* Space below a hero that a phone overlaps into */
.after-hero { padding-top: 150px; }
@media (max-width: 700px) { .after-hero { padding-top: 120px; } }

/* Three-jobs strip in the hero */
.jobs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.jobs span, .jobs a {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px;
  padding: 10px 18px;
  transition: background .15s ease;
}
.jobs a:hover { background: rgba(255, 255, 255, .22); }
.jobs span {
  font-size: 13.5px; font-weight: 700; color: #fff;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px; padding: 10px 18px;
}

/* ============================== SCROLL REVEAL ==============================
   Progressive enhancement: the hidden state only exists once site.js adds
   `reveal-ready` to <html>. No JS (or reduced-motion) => nothing is hidden,
   content is always fully visible. site.js tags targets with [data-reveal]. */
[data-reveal] {
  transition: opacity .7s cubic-bezier(.16, .84, .44, 1),
              transform .7s cubic-bezier(.16, .84, .44, 1);
  will-change: opacity, transform;
}
html.reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); }
html.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================== CHAPTERS (home lanes) ==============================
   One umbrella hero, then each lane gets its own full-width cinematic chapter:
   a distinct color world, one headline, one line, one visual, one CTA. */
.chapter { padding: 96px 24px; overflow: hidden; }
.chapter-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 880px) {
  .chapter-inner { grid-template-columns: 1.05fr .95fr; gap: 72px; }
  /* Reversed chapters put the copy on the right, media on the left */
  .chapter-reverse .chapter-copy { order: 2; }
}

.chapter-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.chapter h2 {
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.chapter-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
}
.chapter-cta {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-decoration: none;
}
.chapter-cta::after { content: " \2192"; display: inline-block; transition: transform .18s ease; }
.chapter-cta:hover::after { transform: translateX(4px); }

.chapter-media { display: flex; justify-content: center; }
.chapter-media .phone { width: min(300px, 74vw); }

/* Personal — clean & warm */
.chapter-personal { background: #fff; }

/* Business — soft gold world */
.chapter-business { background: #FBF6EC; }
.chapter-business .chapter-kicker,
.chapter-business .chapter-cta { color: var(--biz-gold-1); }

/* Enterprise — dark, authoritative stage */
.chapter-enterprise { background: var(--ent-navy); background-image: var(--grad-ent); color: #fff; }
.chapter-enterprise .chapter-lede { color: rgba(255, 255, 255, .82); }
.chapter-enterprise .chapter-kicker,
.chapter-enterprise .chapter-cta { color: var(--ent-accent-light); }

/* Alternating soft-tint chapter for rhythm on single-lane pages */
.chapter-alt { background: #EFF1FA; }

/* Bigger, more cinematic headline for lane pages */
.chapter-xl h2 { font-size: clamp(34px, 5.4vw, 56px); line-height: 1.04; }

/* Soft glow behind device shots so they lift off the page */
.chapter-media { position: relative; }
.chapter-media .phone { position: relative; z-index: 1; }
.chapter-media::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 360px; height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 92, 200, .20), transparent 66%);
  z-index: 0;
  pointer-events: none;
}
.chapter-business .chapter-media::before { background: radial-gradient(circle, rgba(201, 163, 74, .22), transparent 66%); }
.chapter-enterprise .chapter-media::before { background: radial-gradient(circle, rgba(143, 190, 232, .26), transparent 66%); }

/* ============================== STAGE — full-bleed stat / statement ============================== */
.stage {
  background: var(--navy);
  background-image: var(--grad);
  color: #fff;
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
}
.stage.stage-ent { background: var(--ent-navy); background-image: var(--grad-ent); }
.stage.stage-biz { background: #8A5E1E; background-image: linear-gradient(160deg, #6E4A15 0%, #A9762A 55%, #C79A3E 100%); }
.stage .stage-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255, 255, 255, .7); margin-bottom: 18px;
}
.stage .stage-num {
  font-size: clamp(84px, 17vw, 180px);
  font-weight: 700; line-height: .88; letter-spacing: -.04em;
  margin: 0 0 6px;
}
.stage h2 {
  font-size: clamp(30px, 4.6vw, 46px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.08; margin-bottom: 16px;
}
.stage p { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, .82); max-width: 560px; margin: 0 auto; }
