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

  :root {
    --navy:   #0C1F35;
    --navy2:  #162840;
    --brand:  #1D6FA8;
    --brand2: #1a5f92;
    --gold:   #C9A96E;
    --cream:  #F7F4EE;
    --ink:    #1a1a2e;
    --muted:  #64748B;
    --line:   #E2E8F0;
    --white:  #ffffff;
    --serif:  'Cormorant Garamond', Georgia, serif;
    --sans:   'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--ink); background: var(--white); overflow-x: hidden; }

  /* ── NAV ─────────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 72px;
    background: rgba(12,31,53,.96); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; min-height: 44px; }
  .nav-logo img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; }
  .nav-logo span { font-family: var(--serif); font-size: 17px; font-weight: 500; color: #fff; letter-spacing: .3px; }
  nav ul { list-style: none; display: flex; gap: 32px; }
  nav ul li a { font-family: var(--sans); font-size: 13.5px; color: rgba(255,255,255,.65); text-decoration: none; letter-spacing: .3px; transition: color .2s; }
  nav ul li a:hover { color: #fff; }
  .nav-cta {
    background: var(--brand); color: #fff; font-family: var(--sans);
    display: inline-flex; align-items: center; min-height: 44px;
    font-size: 13.5px; padding: 9px 20px; border-radius: 9px;
    text-decoration: none; letter-spacing: .3px; transition: background .2s;
  }
  .nav-cta:hover { background: var(--brand2); }

  /* ── HERO ─────────────────────────────────────────────────────── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    background: var(--navy);
    position: relative; overflow: hidden; padding: 120px 5vw 80px;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(29,111,168,.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; width: 100%; }
  .hero-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
  .hero-headline {
    font-family: var(--serif); font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 500; color: #fff; line-height: 1.12; margin-bottom: 24px;
  }
  .hero-headline em { font-style: italic; color: var(--gold); }
  .hero-sub { font-family: var(--sans); font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--brand); color: #fff; font-family: var(--sans);
    font-size: 14.5px; font-weight: 500; padding: 14px 28px; border-radius: 10px;
    text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--brand2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: rgba(255,255,255,.7); font-family: var(--sans);
    font-size: 14.5px; padding: 14px 28px; border-radius: 10px;
    text-decoration: none; border: 1px solid rgba(255,255,255,.2); transition: border-color .2s, color .2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }
  .hero-visual { display: grid; place-items: center; position: relative; min-width: 0; }

  /* The price is the argument, so it is set like one. */
  .hero-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
  .hero-price strong { font-family: var(--serif); font-size: 40px; font-weight: 500; color: #fff; line-height: 1; }
  .hero-price span { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.6); }
  .hero-price-note { font-family: var(--sans); font-size: 13px; color: var(--gold); margin-bottom: 30px; letter-spacing: .2px; }
  .hero-points { list-style: none; margin: 30px 0 0; display: flex; flex-direction: column; gap: 11px; }
  .hero-points li {
    font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.72);
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
  }
  .hero-points li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

  /* Hero phone. The aspect ratio is the captures' own 720/1282, so nothing is
     cropped or letterboxed. All three frames share it, which is why they
     crossfade without any object-position correction: the earlier mismatch
     was a framing difference between two capture sessions, not something to
     compensate for here. */
  .phone {
    position: relative; width: 100%; max-width: 300px; margin: 0 auto;
    aspect-ratio: 720 / 1282; background: #000;
    border-radius: 40px; padding: 8px;
    box-shadow: 0 0 0 2px #2b3f52, 0 30px 70px rgba(0,0,0,.55), 0 6px 18px rgba(0,0,0,.4);
  }
  .screen {
    position: relative; width: 100%; height: 100%;
    border-radius: 33px; overflow: hidden; background: var(--ink);
  }
  .screen img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  /* Three frames on one 12.6s loop, roughly equal time each: dashboard,
     radar, report. Crossfaded in CSS rather than shipped as a GIF, which
     caps at 256 colours and would band across the reflectivity map, the part
     that has to look authoritative.
     Radar fades out underneath an already-opaque report, so the only visible
     transition at the end is report to dashboard rather than a three-way
     blend. */
  .frame-radar, .frame-report { opacity: 0; }
  .frame-radar  { animation: swap-radar  12.6s ease-in-out infinite; }
  .frame-report { animation: swap-report 12.6s ease-in-out infinite; }
  @keyframes swap-radar {
    0%, 29%    { opacity: 0; }
    33%, 70%   { opacity: 1; }
    74%, 100%  { opacity: 0; }
  }
  @keyframes swap-report {
    0%, 62%    { opacity: 0; }
    66%, 95%   { opacity: 1; }
    99%, 100%  { opacity: 0; }
  }
  /* Pinned to the dashboard frame when motion is unwelcome. */
  @media (prefers-reduced-motion: reduce) {
    .frame-radar, .frame-report { animation: none; opacity: 0; }
  }
  /* NOAA attribution. Required, and it stays visible at every width. */
  .caption {
    margin: 18px auto 0; text-align: center; max-width: 300px;
    font-family: var(--sans); font-size: 12.5px; line-height: 1.5;
    color: rgba(255,255,255,.45);
  }

  /* ── TRUST BAR ─────────────────────────────────────────────────── */
  .trust-bar {
    background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 28px 5vw; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 10px; }
  .trust-icon { font-size: 20px; }
  .trust-text { font-family: var(--sans); font-size: 13.5px; color: var(--muted); font-weight: 500; }

  /* ── SECTIONS ─────────────────────────────────────────────────── */
  section { padding: 96px 5vw; }
  .section-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 3px; color: var(--brand); text-transform: uppercase; margin-bottom: 14px; }
  .section-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
  .section-sub { font-family: var(--sans); font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }
  .section-header { margin-bottom: 56px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-sub { margin: 0 auto; }

  /* ── HOW IT WORKS ────────────────────────────────────────────── */
  .how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
  .how-card {
    background: var(--cream); border-radius: 16px; padding: 32px 28px;
    position: relative; border: 1px solid var(--line);
  }
  .how-num {
    font-family: var(--serif); font-size: 52px; font-weight: 500; color: var(--line);
    line-height: 1; margin-bottom: 16px; display: block;
  }
  .how-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
  .how-body { font-family: var(--sans); font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* ── PLAN TIERS ──────────────────────────────────────────────
     Four tiers, each carrying its own price. The lineup is not a plan
     plus upgrades: eight visits a month with the Signature extras costs
     more than four visits with them, and that only reads as deliberate
     if all four prices are visible at once. */
  /* Explicit column counts rather than auto-fit: at ~900px auto-fit gives
     3 + 1, and a four-tier lineup that wraps one card onto its own row
     reads as three plans and an afterthought. 2 x 2 compares properly. */
  .tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
  @media (max-width: 1080px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px)  { .tier-grid { grid-template-columns: 1fr; } }
  .tier-price { display: flex; align-items: baseline; gap: 7px; margin: 2px 0 14px; }
  .tier-price strong { font-family: var(--serif); font-size: 32px; font-weight: 500; color: #fff; line-height: 1; }
  .tier-price span { font-family: var(--sans); font-size: 12.5px; color: rgba(255,255,255,.45); }
  .tier-note { font-family: var(--sans); font-size: 13.5px; color: rgba(255,255,255,.5); margin: 0 0 30px; }
  .services-secondary { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }


  /* ── SERVICES ─────────────────────────────────────────────────── */
  .services-bg { background: var(--navy); }
  .services-bg .section-title { color: #fff; }
  .services-bg .section-sub { color: rgba(255,255,255,.55); }
  .services-bg .section-eyebrow { color: var(--gold); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
  .service-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 28px 26px; transition: border-color .2s, background .2s;
  }
  .service-card:hover { border-color: rgba(29,111,168,.5); background: rgba(29,111,168,.08); }
  .service-icon { font-size: 28px; margin-bottom: 14px; display: block; }
  .service-name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 10px; }
  .service-desc { font-family: var(--sans); font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; }
  .service-features { list-style: none; margin-top: 14px; }
  .service-features li { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.45); padding: 4px 0; display: flex; gap: 8px; }
  .service-features li::before { content: '✓'; color: #4ADE80; flex-shrink: 0; }

  /* ── ABOUT ─────────────────────────────────────────────────────── */
  .about-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-wrap { display: flex; align-items: center; justify-content: center; }
  .about-img-wrap img { width: 100%; max-width: 340px; height: auto; object-fit: contain; display: block; }
  .about-img-badge {
    position: absolute; bottom: 24px; left: -20px;
    background: var(--navy); border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 16px 20px; color: #fff;
  }
  .about-img-badge .badge-num { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--gold); display: block; }
  .about-img-badge .badge-label { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
  .about-body { font-family: var(--sans); font-size: 15.5px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
  .about-sig { font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--navy); margin-top: 24px; }

  /* ── TESTIMONIALS ─────────────────────────────────────────────── */
  .testimonials-bg { background: var(--cream); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .testimonial-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px;
  }
  .testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-quote { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--navy); line-height: 1.55; margin-bottom: 20px; }
  .testimonial-author { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 500; }

  /* ── FAQ ──────────────────────────────────────────────────────── */
  .faq-wrap { max-width: 720px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    font-family: var(--serif); font-size: 19px; color: var(--navy); padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-weight: 500;
  }
  .faq-q:hover { color: var(--brand); }
  .faq-icon { font-size: 22px; color: var(--brand); flex-shrink: 0; transition: transform .25s; }
  .faq-icon.open { transform: rotate(45deg); }
  .faq-a { font-family: var(--sans); font-size: 15px; color: var(--muted); line-height: 1.75; padding-bottom: 22px; display: none; }
  .faq-a.open { display: block; }

  /* ── CONTACT ──────────────────────────────────────────────────── */
  .contact-bg { background: var(--navy); }
  .contact-bg .section-title { color: #fff; }
  .contact-bg .section-sub { color: rgba(255,255,255,.55); }
  .contact-bg .section-eyebrow { color: var(--gold); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; max-width: 1000px; margin: 0 auto; }
  .contact-info { display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; gap: 14px; align-items: flex-start; }
  .contact-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .contact-item-label { font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,.35); text-transform: uppercase; margin-bottom: 4px; }
  .contact-item-value { font-family: var(--sans); font-size: 15px; color: #fff; }
  /* The phone and email links are what someone reaches for first; at 20px
     tall they were the hardest things on the page to hit. */
  .contact-item-value a { color: var(--gold); text-decoration: none;
                          display: inline-flex; align-items: center; min-height: 44px; }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-label { font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,.4); text-transform: uppercase; }
  .form-input {
    background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 10px; padding: 13px 15px; font-family: var(--sans);
    font-size: 14.5px; color: #fff; outline: none; transition: border-color .2s;
    width: 100%;
  }
  .form-input::placeholder { color: rgba(255,255,255,.25); }
  .form-input:focus { border-color: var(--brand); }
  textarea.form-input { resize: none; min-height: 110px; }
  .form-submit {
    background: var(--brand); color: #fff; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 14.5px; font-weight: 500;
    padding: 15px 32px; border-radius: 10px; transition: background .2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--brand2); }
  .form-note { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.3); margin-top: -4px; }
  .form-input[type="date"] { color-scheme: dark; }
  .form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
  .form-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-top: 2px; }
  /* The whole label is the tap target, not just the box: 44px tall so it
     clears the Apple and WCAG minimum on a phone. */
  .form-check { display: flex; align-items: center; gap: 11px; min-height: 44px; padding: 4px 2px;
                font-family: var(--sans); font-size: 14px;
    color: rgba(255,255,255,.72); cursor: pointer; line-height: 1.3; }
  .form-check input { accent-color: var(--brand); width: 22px; height: 22px; flex-shrink: 0; cursor: pointer; }
  @media (max-width: 640px) {
    .form-row-3 { grid-template-columns: 1fr; }
    .form-checks { grid-template-columns: 1fr; }
  }

  /* ── PORTAL BANNER ───────────────────────────────────────────── */
  .portal-banner {
    background: var(--cream); border-top: 1px solid var(--line);
    padding: 56px 5vw; text-align: center;
  }
  .portal-banner h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
  .portal-banner p { font-family: var(--sans); font-size: 15px; color: var(--muted); margin-bottom: 24px; }

  /* ── FOOTER ──────────────────────────────────────────────────── */
  /* One line, centred. The nav links that used to sit here rendered below
     the legal line, which made the copyright read as their heading; the
     header carries the nav on every page and the pages are short. */
  footer {
    background: var(--navy); padding: 40px 5vw; text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer-brand { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,.5); }

  /* ── MOBILE ──────────────────────────────────────────────────── */
  @media (max-width: 768px) {
    nav ul { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    /* Nothing here touches .phone. The hero device keeps its bezel at every
       width now, and the rules that used to strip it below 900px are gone:
       it is one real capture in one real frame, not three decorative ones.
    .about-grid and .about-img-wrap went with the About rebuild; the owl is
       .about-owl and is centred and visible at every width. */
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
  }

  /* ── ADDED BY THE FOUR-PAGE SPLIT ─────────────────────────────
     Everything above this line came out of index.html's <style> block
     unchanged. Below is what the separate pages need. */

  /* Current page in the nav. Not a colour change alone: a rule under the
     label survives being read at a glance and by anyone who cannot pick
     the colour out. */
  nav ul li a.active { color: #fff; }
  nav ul li a.active::after {
    content: ''; display: block; height: 1.5px; background: var(--gold);
    margin-top: 5px; border-radius: 2px;
  }

  /* Sub-page banner. Shorter than the home hero on purpose: these pages
     are meant to be read without a scroll. */
  .page-head {
    background: var(--navy); padding: 132px 5vw 64px; text-align: center;
    position: relative; overflow: hidden;
  }
  .page-head::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(29,111,168,.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-head > * { position: relative; }
  .page-head h1 {
    font-family: var(--serif); font-size: clamp(34px, 5vw, 52px); font-weight: 500;
    color: #fff; line-height: 1.15; margin-bottom: 14px;
  }
  .page-head p {
    font-family: var(--sans); font-size: 16px; color: rgba(255,255,255,.6);
    line-height: 1.7; max-width: 560px; margin: 0 auto;
  }

  /* Plans: <details> so a card expands where it sits. Native disclosure
     rather than a modal or a jump to the form, and it stays open to a
     crawler with JavaScript off. */
  .plan-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .plan {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; overflow: hidden; transition: border-color .2s;
  }
  .plan[open] { border-color: rgba(29,111,168,.45); background: rgba(29,111,168,.07); }
  .plan > summary {
    list-style: none; cursor: pointer; padding: 22px 24px;
    display: flex; align-items: center; gap: 14px; min-height: 44px;
  }
  .plan > summary::-webkit-details-marker { display: none; }
  .plan-name { font-family: var(--serif); font-size: 21px; font-weight: 500; color: #fff; }
  .plan-tag { font-family: var(--sans); font-size: 12.5px; color: rgba(255,255,255,.45); }
  .plan-chev {
    margin-left: auto; flex-shrink: 0; width: 15px; height: 15px;
    transition: transform .25s ease; color: rgba(255,255,255,.4);
  }
  .plan[open] .plan-chev { transform: rotate(180deg); }
  .plan-body { padding: 0 24px 22px; }
  .plan-body p {
    font-family: var(--sans); font-size: 14.5px; line-height: 1.7;
    color: rgba(255,255,255,.62); margin-bottom: 12px;
  }
  .plan-body ul { list-style: none; }
  .plan-body li {
    font-family: var(--sans); font-size: 13.5px; color: rgba(255,255,255,.5);
    padding: 4px 0; display: flex; gap: 9px;
  }
  .plan-body li::before { content: '\2713'; color: var(--brand); flex-shrink: 0; }

  /* Add-ons: name and a sentence, no prices. */
  .addon-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px; max-width: 1100px; margin: 0 auto;
  }
  .addon { border-top: 1px solid var(--line); padding-top: 16px; }
  .addon h3 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 7px; }
  .addon p { font-family: var(--sans); font-size: 13.5px; line-height: 1.65; color: var(--muted); }

  /* Testimonial attribution: an owl mark and the same two words on each,
     so no card claims more than the others. */
  .testimonial-author { display: flex; align-items: center; gap: 9px; }
  .testimonial-author img {
    width: 17px; height: 17px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  }

  /* About: the owl alone and centred. The stat card that sat over it is gone. */
  .about-owl { text-align: center; margin-bottom: 40px; }
  .about-owl img { width: 168px; height: 168px; border-radius: 50%; object-fit: cover; }
  .about-prose { max-width: 720px; margin: 0 auto; }
  .about-prose .section-title, .about-prose .section-eyebrow { text-align: center; }
  .about-sig { text-align: center; }

  /* Closing call to action. One per page, always into Contact. */
  .cta-band { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 5vw; text-align: center; }
  .cta-band h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 38px); font-weight: 500; color: var(--navy); margin-bottom: 12px; }
  .cta-band p { font-family: var(--sans); font-size: 15px; color: var(--muted); margin-bottom: 26px; }

  /* Contact page: the form is the page, so it sits on its own. */
  .contact-solo { max-width: 640px; margin: 0 auto; }
  .contact-direct {
    max-width: 640px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 12px 32px;
    justify-content: center; padding-top: 26px; margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .contact-direct a {
    font-family: var(--sans); font-size: 14.5px; color: rgba(255,255,255,.75);
    text-decoration: none; display: inline-flex; align-items: center; min-height: 44px;
  }
  .contact-direct a:hover { color: #fff; }

  /* The 18-point checklist. Two columns where there is room, one on a phone.
     A real <ul>, so it reads correctly to a screen reader and to Google. */
  .checklist {
    list-style: none; max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  }
  @media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }
  .checklist li {
    display: flex; align-items: flex-start; gap: 12px;
    font-family: var(--sans); font-size: 14.5px; line-height: 1.5; color: var(--ink);
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; padding: 13px 16px;
  }
  /* The same green circular tick the portal draws on a completed visit, so
     the page and the app look like one product. */
  .check {
    width: 21px; height: 21px; border-radius: 50%; background: #DCFCE7;
    flex-shrink: 0; display: grid; place-items: center; margin-top: 1px;
  }
  .check svg { width: 12px; height: 12px; display: block; }

  /* Portal walkthrough. The frame's aspect ratio is 720/1470, read from the
     encoded file, so the poster and the video occupy exactly the same box and
     nothing reflows when playback starts. */
  .walkthrough {
    position: relative; width: 100%; max-width: 300px; margin: 0 auto;
    background: #000; border-radius: 40px; padding: 8px;
    box-shadow: 0 0 0 2px #2b3f52, 0 30px 70px rgba(0,0,0,.55), 0 6px 18px rgba(0,0,0,.4);
  }
  .walkthrough video {
    display: block; width: 100%; height: auto; aspect-ratio: 720 / 1470;
    border-radius: 33px; background: var(--ink); object-fit: cover;
  }
  /* Shown only when nothing is going to autoplay: reduced motion, or a
     browser that refused the play() call. */
  .walkthrough-play {
    position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
    padding: 11px 20px; border: none; border-radius: 999px; cursor: pointer;
    background: rgba(12,31,53,.92); color: #fff;
    font-family: var(--sans); font-size: 13.5px; letter-spacing: .2px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
  }
  .walkthrough-play svg { width: 15px; height: 15px; flex-shrink: 0; }
  .walkthrough-play[hidden] { display: none; }
