/* ============================================================
   MRGCALL site.css — extracted from inline <style> blocks
   so the CSP header can drop 'unsafe-inline' from style-src.
   Visually identical to pre-extraction. v1.0.11 / 12 May 2026.
   ============================================================ */

/* ── 1. Base + home-page styles (from index.php) ─────────── */
    :root {
      --navy: #080e1f;
      --navy-mid: #0d1630;
      --navy-light: #162040;
      --gold: #c8a96e;
      --gold-light: #e8c98a;
      --gold-pale: #f5e8c8;
      --red: #cc2200;
      --red-bright: #ff3311;
      --white: #f8f5ef;
      --grey: #8a9ab5;
      --grey-light: #b8c4d8;
    }

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

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to bottom, rgba(8,14,31,0.95), transparent);
      backdrop-filter: blur(2px);
    }

    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--gold);
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--red-bright);
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey-light);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 2px;
      padding: 10px 24px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      transition: all 0.3s;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      overflow: hidden;
    }

    /* Radial glow behind hero */
    .hero::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Animated rings */
    .hero-rings {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      pointer-events: none;
    }

    .ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(200,169,110,0.08);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: ringPulse 6s ease-in-out infinite;
    }

    .ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
    .ring:nth-child(2) { width: 320px; height: 320px; animation-delay: 1s; }
    .ring:nth-child(3) { width: 450px; height: 450px; animation-delay: 2s; }
    .ring:nth-child(4) { width: 580px; height: 580px; animation-delay: 3s; }

    @keyframes ringPulse {
      0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.04); }
    }

    .hero-shield {
      width: 80px;
      height: 80px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 1s ease 0.1s forwards;
    }

    .hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 1s ease 0.3s forwards;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 9vw, 112px);
      font-weight: 300;
      line-height: 0.92;
      letter-spacing: -1px;
      color: var(--white);
      margin-bottom: 8px;
      opacity: 0;
      animation: fadeUp 1s ease 0.5s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-title-sub {
      font-family: 'Cinzel', serif;
      font-size: clamp(14px, 2vw, 20px);
      font-weight: 400;
      letter-spacing: 8px;
      color: var(--grey);
      text-transform: uppercase;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 1s ease 0.7s forwards;
    }

    .hero-desc {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 300;
      font-style: italic;
      color: var(--grey-light);
      max-width: 680px;
      line-height: 1.5;
      margin-bottom: 64px;
      opacity: 0;
      animation: fadeUp 1s ease 0.9s forwards;
    }

    .hero-cta-group {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s ease 1.1s forwards;
    }

    .btn-primary {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: 3px;
      padding: 18px 48px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
      text-transform: uppercase;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red-bright);
      transform: translateX(-100%);
      transition: transform 0.3s;
    }

    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-secondary {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(200,169,110,0.3);
      padding-bottom: 2px;
      text-transform: uppercase;
      transition: border-color 0.3s;
    }

    .btn-secondary:hover { border-color: var(--gold); }

    .hero-platform-note {
      margin-top: 28px;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      font-style: normal;
      font-weight: 400;
      text-align: center;
    }

    /* Hero scroll indicator — hidden in v1.0; modern landing pages don't need scroll cues. */
    .scroll-hint {
      display: none;
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }

    .scroll-hint span {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      color: var(--grey);
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollDrop 2s ease-in-out infinite;
    }

    @keyframes scrollDrop {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ── STRIP: THREE ARCHANGELS ── */
    .archangels {
      position: relative;
      padding: 100px 60px;
      background: var(--navy-mid);
      border-top: 1px solid rgba(200,169,110,0.1);
      border-bottom: 1px solid rgba(200,169,110,0.1);
    }

    .archangels-label {
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 60px;
    }

    .archangels-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      max-width: 1100px;
      margin: 0 auto;
      background: rgba(200,169,110,0.08);
    }

    .archangel-card {
      background: var(--navy-mid);
      padding: 60px 50px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }

    .archangel-card:hover { background: var(--navy-light); }

    .archangel-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .archangel-card:hover::before { opacity: 1; }

    .archangel-initial {
      font-family: 'Cinzel', serif;
      font-size: 64px;
      font-weight: 700;
      color: rgba(200,169,110,0.12);
      line-height: 1;
      margin-bottom: 16px;
      transition: color 0.4s;
    }

    .archangel-card:hover .archangel-initial { color: rgba(200,169,110,0.22); }

    .archangel-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .archangel-saint {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-style: italic;
      color: var(--white);
      margin-bottom: 20px;
    }

    .archangel-role {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.6;
      letter-spacing: 0.3px;
    }

    .archangel-app-role {
      margin-top: 20px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gold);
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1px solid rgba(200,169,110,0.2);
      display: inline-block;
    }

    /* ── HOW IT WORKS ── */
    .how {
      padding: 120px 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 60px;
      color: var(--white);
    }

    .section-title em { font-style: italic; color: var(--gold-light); }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(200,169,110,0.06);
    }

    .step {
      background: var(--navy);
      padding: 48px 36px;
      position: relative;
    }

    .step-number {
      font-family: 'Cinzel', serif;
      font-size: 48px;
      font-weight: 700;
      color: rgba(200,169,110,0.08);
      line-height: 1;
      margin-bottom: 24px;
    }

    .step-icon {
      font-size: 32px;
      margin-bottom: 16px;
      display: block;
    }

    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px;
    }

    .step-body {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
    }

    /* Gold accent callouts inside .step-body (Step 2 native-dialler, Step 3
       sender-number, Step 4 SMS-vs-voice). Used 3× on landing page.
       Extracted from inline style="…" per the CSP-strip regression class
       documented at .hero-trust-line :1311. */
    .step-callout-gold {
      margin-top: 12px;
      font-size: 13px;
      color: var(--gold);
      border-left: 2px solid var(--gold);
      padding-left: 12px;
    }

    /* Step 3 contact-fields <ul>. Augments the .step-body ul li rule
       at the bottom of this file. */
    .step-list {
      margin-top: 10px;
      padding-left: 18px;
    }

    /* Step 3 Care Home Mode note (grey, smaller). */
    .step-note-grey {
      margin-top: 12px;
      font-size: 13px;
      color: var(--grey);
    }

    .step-time {
      margin-top: 20px;
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gold);
    }

    /* ── ACCESSIBILITY ── */
    .access {
      padding: 120px 60px;
      background: var(--navy-mid);
      border-top: 1px solid rgba(200,169,110,0.08);
    }

    .access-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }

    .access-left .section-title { margin-bottom: 24px; }

    .access-intro {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--grey-light);
      margin-bottom: 40px;
      line-height: 1.6;
    }

    /* Smaller, plainer variant used for the secondary paragraph beneath
       .access-intro (WCAG 2.2 AA roadmap note). Extracted from inline
       style="…" per the CSP-strip regression class. */
    .access-intro--small {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.8;
    }

    .access-right {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .access-item {
      background: var(--navy);
      padding: 28px 32px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      transition: background 0.3s;
      cursor: default;
    }

    .access-item:hover { background: var(--navy-light); }

    .access-icon {
      font-size: 28px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .access-text-title {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 6px;
      text-transform: uppercase;
    }

    .access-text-body {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.6;
    }

    /* ── STAT STRIP ── */
    .stats {
      padding: 80px 60px;
      background: var(--red);
      position: relative;
      overflow: hidden;
    }

    .stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.01) 0px,
        rgba(255,255,255,0.01) 1px,
        transparent 1px,
        transparent 40px
      );
    }

    .stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
      position: relative;
    }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 300;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 13px;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.7);
      line-height: 1.4;
    }

    /* Stats-strip data-source disclaimer — was an inline style="…"
       attribute pre-v1.0.11; moved to a class so a strict CSP
       (style-src 'self' without 'unsafe-inline') can't block it. */
    .stats-disclaimer {
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      margin-top: 24px;
    }

    /* ── WHO IT'S FOR ── */
    .who {
      padding: 120px 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(200,169,110,0.06);
      margin-top: 60px;
    }

    .who-card {
      background: var(--navy);
      padding: 48px 40px;
      position: relative;
    }

    .who-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(200,169,110,0.15), transparent);
    }

    .who-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      color: rgba(200,169,110,0.15);
      line-height: 1;
      margin-bottom: 16px;
    }

    .who-person {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .who-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-style: italic;
      color: var(--grey-light);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .who-detail {
      font-size: 13px;
      color: var(--grey);
      line-height: 1.6;
    }

    /* For-Care-Homes section modifiers. The /carehomes block uses a
       single full-width card containing larger body copy + a margin-top
       contact line. These modifier classes replace inline style="…"
       overrides that were silently stripped by strict CSP (style-src
       'self', no 'unsafe-inline'). Same regression class as v1.0.12's
       hero-trust-line extraction below at :1311-1337 — see that comment
       for the long-form rationale on why every visual override has to
       live in this file. */
    .who-card--full {
      grid-column: 1 / -1;
    }

    .who-text--lg {
      font-size: 17px;
      line-height: 1.7;
    }

    .who-text--lg + .who-text--lg {
      margin-top: 14px;
    }

    .who-detail--mt {
      margin-top: 18px;
    }

    /* "Example scenario" prelude labels in .who-card (3 instances on the
       landing page). Same CSP-extraction rationale as above. */
    .example-scenario-label {
      font-size: 12px;
      color: var(--grey);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* For-Care-Homes section mailto link — scoped so other mailto links
       (covered by .footer-links / .policy-section rules) are untouched. */
    #carehomes a[href^="mailto:"] {
      color: var(--gold);
      text-decoration: underline;
      transition: color 0.3s;
    }

    #carehomes a[href^="mailto:"]:hover { color: var(--gold-light); }

    /* ── CTA SECTION ── */
    .cta-section {
      padding: 140px 60px;
      text-align: center;
      background: var(--navy-mid);
      border-top: 1px solid rgba(200,169,110,0.1);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(204,34,0,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-saint {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 6px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 32px;
      position: relative;
    }

    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      max-width: 800px;
      margin: 0 auto 24px;
      position: relative;
    }

    .cta-title em { font-style: italic; color: var(--gold-light); }

    .cta-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-style: italic;
      color: var(--grey-light);
      margin-bottom: 56px;
      position: relative;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    .btn-store {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(200,169,110,0.3);
      color: var(--white);
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-store:hover {
      background: rgba(200,169,110,0.08);
      border-color: var(--gold);
    }

    .btn-store-icon { font-size: 28px; }

    .btn-store-text { text-align: left; }

    .btn-store-sub {
      font-size: 10px;
      letter-spacing: 1px;
      color: var(--grey);
      display: block;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .btn-store-name {
      font-family: 'Cinzel', serif;
      font-size: 14px;
      letter-spacing: 1px;
      color: var(--white);
    }

    /* ── ORIGIN STORY STRIP ── */
    .origin {
      padding: 80px 60px;
      border-top: 1px solid rgba(200,169,110,0.1);
    }

    .origin-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .origin-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .origin-divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(200,169,110,0.3));
    }

    .origin-divider-line:last-child {
      background: linear-gradient(to left, transparent, rgba(200,169,110,0.3));
    }

    .origin-divider-icon {
      font-size: 24px;
      color: var(--gold);
    }

    .origin-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-style: italic;
      color: var(--grey-light);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .origin-text strong {
      color: var(--gold-light);
      font-style: normal;
      font-weight: 600;
    }

    /* ── FAQ — setup guide + SEO content ── */
    /* Sits between ORIGIN and WAITLIST.  Uses native <details>/<summary>
       for accordion behaviour so no JS is required and the strict CSP
       (script-src 'self', no 'unsafe-inline') doesn't need any
       relaxation.  Design language mirrors the .access and .who
       sections: dark navy background, gold-accent rules, Cormorant
       Garamond for prose, gold-light for emphasis. */
    .faq {
      padding: 100px 60px;
      max-width: 1000px;
      margin: 0 auto;
      border-top: 1px solid rgba(200,169,110,0.1);
    }

    .faq-inner {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-intro {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--grey-light);
      line-height: 1.7;
      margin-bottom: 48px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: rgba(200,169,110,0.06);
      border-top:    1px solid rgba(200,169,110,0.15);
      border-bottom: 1px solid rgba(200,169,110,0.15);
    }

    .faq-item {
      background: var(--navy);
      transition: background 0.3s ease;
    }

    .faq-item[open] {
      background: rgba(200,169,110,0.04);
    }

    .faq-question {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: var(--white);
      padding: 22px 28px 22px 24px;
      cursor: pointer;
      list-style: none;
      position: relative;
      transition: color 0.3s ease;
    }

    /* Hide the default disclosure triangle across browsers. */
    .faq-question::-webkit-details-marker { display: none; }
    .faq-question::marker { content: ''; }

    /* Gold chevron indicator, rotates 90° when the item is open. */
    .faq-question::after {
      content: '+';
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--gold);
      transition: transform 0.3s ease;
    }

    .faq-item[open] .faq-question::after {
      content: '−';
    }

    .faq-item[open] .faq-question {
      color: var(--gold-light);
    }

    .faq-question:hover {
      color: var(--gold-light);
    }

    .faq-answer {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--grey-light);
      padding: 0 60px 24px 24px;
      margin: 0;
    }

    /* ── FOOTER ── */
    footer {
      padding: 48px 60px;
      background: #040810;
      border-top: 1px solid rgba(200,169,110,0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--gold);
    }

    .footer-logo span { color: var(--red-bright); }

    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-style: italic;
      color: var(--grey);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--grey);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.3s;
      white-space: nowrap;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-links a.footer-social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      padding: 0;
      border: 1px solid rgba(200,169,110,0.2);
      transition: all 0.3s;
    }

    .footer-links a.footer-social:hover {
      border-color: var(--gold);
      background: rgba(200,169,110,0.08);
    }

    .footer-links a.footer-social svg {
      width: 14px;
      height: 14px;
      fill: var(--grey);
      transition: fill 0.3s;
    }

    .footer-links a.footer-social:hover svg {
      fill: var(--gold);
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(138,154,181,0.5);
      width: 100%;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.04);
      padding-top: 24px;
      margin-top: 8px;
    }

    .footer-cymraeg {
      width: 100%;
      text-align: center;
      font-size: 0.7rem;
      color: #6a7280;
      margin: 0.4rem auto 0;
      line-height: 1.3;
      padding: 0 1rem;
      box-sizing: border-box;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Intersection observer fade-ins */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .archangels { padding: 60px 24px; }
      .archangels-grid { grid-template-columns: 1fr; }
      .how { padding: 80px 24px; }
      .steps { grid-template-columns: 1fr 1fr; }
      .access { padding: 80px 24px; }
      .access-inner { grid-template-columns: 1fr; gap: 48px; }
      .stats { padding: 60px 24px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .who { padding: 80px 24px; }
      .who-grid { grid-template-columns: 1fr; }
      .cta-section { padding: 100px 24px; }
      .origin { padding: 60px 24px; }
      .faq { padding: 80px 24px; }
      footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 600px) {
      .steps { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .hero-cta-group { flex-direction: column; }
      .scroll-hint { display: none; }
      .faq-question { font-size: 16px; padding: 20px 50px 20px 18px; }
      .faq-answer { font-size: 14px; padding: 0 40px 20px 18px; }
      .faq-intro { font-size: 17px; margin-bottom: 32px; }
    }

    /* ── WAITLIST FORM ── */
    .waitlist-form-wrap {
      max-width: 560px;
      margin: 0 auto;
      position: relative;
    }

    .waitlist-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .waitlist-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .waitlist-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }

    .waitlist-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--gold);
      text-transform: uppercase;
      text-align: left;
    }

    .waitlist-optional {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 10px;
      color: var(--grey);
      text-transform: none;
      letter-spacing: 0;
    }

    .waitlist-required {
      color: var(--red-bright);
    }

    .waitlist-input {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(200,169,110,0.25);
      color: var(--white);
      font-family: 'Source Sans 3', sans-serif;
      font-size: 16px;
      font-weight: 300;
      padding: 16px 20px;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      width: 100%;
    }

    .waitlist-input::placeholder { color: rgba(138,154,181,0.4); }

    .waitlist-input:focus {
      border-color: var(--gold);
      background: rgba(200,169,110,0.04);
    }

    .waitlist-input.error {
      border-color: var(--red-bright);
    }

    .waitlist-error {
      font-size: 12px;
      color: var(--red-bright);
      display: none;
      text-align: left;
    }

    .waitlist-error.visible { display: block; }

    .waitlist-btn {
      background: var(--red);
      border: none;
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 20px 48px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .waitlist-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red-bright);
      transform: translateX(-100%);
      transition: transform 0.3s;
    }

    .waitlist-btn:hover::before { transform: translateX(0); }

    .waitlist-btn span { position: relative; z-index: 1; }

    .wl-btn-icon {
      font-size: 18px;
      transition: transform 0.3s;
    }

    .waitlist-btn:hover .wl-btn-icon { transform: translateX(4px); }

    .waitlist-btn.loading .wl-btn-text::after {
      content: '...';
      animation: dots 1s steps(3, end) infinite;
    }

    @keyframes dots {
      0%, 100% { content: '.'; }
      33% { content: '..'; }
      66% { content: '...'; }
    }

    .waitlist-privacy {
      font-size: 12px;
      color: var(--grey);
      margin-top: 16px;
      letter-spacing: 0.3px;
      position: relative;
    }

    /* Success state */
    .waitlist-success {
      display: none;
      text-align: center;
      padding: 48px 40px;
      background: rgba(200,169,110,0.04);
      border: 1px solid rgba(200,169,110,0.2);
    }

    .waitlist-success.visible { display: block; }

    .waitlist-success-icon {
      font-size: 40px;
      color: var(--gold);
      margin-bottom: 20px;
      animation: spinIn 0.6s ease;
    }

    @keyframes spinIn {
      from { transform: rotate(-180deg) scale(0); opacity: 0; }
      to { transform: rotate(0) scale(1); opacity: 1; }
    }

    .waitlist-success-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 12px;
    }

    .waitlist-success-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-style: italic;
      color: var(--grey-light);
      line-height: 1.6;
    }

    /* B2B strip */
    .waitlist-b2b {
      margin-top: 64px;
      text-align: center;
    }

    .waitlist-b2b-divider {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.3), transparent);
      margin: 0 auto 24px;
    }

    .waitlist-b2b-label {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--grey);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    @media (max-width: 600px) {
      .waitlist-fields { grid-template-columns: 1fr; }
      .footer-links a { font-size: 11px; }
    }
	.step-body ul li {
  margin-bottom: 6px;
}
.hero-desc {
  margin-bottom: 40px; /* was 64px */
}
.hero-trust-line {
  margin-top: 22px;
  font-size: 13px;
  color: var(--grey);
  text-align: center;
  max-width: 600px;
}

/* v1.0.12 — first hero tagline ("The only emergency app that speaks
   when you can't") was originally styled via an inline style="…"
   attribute on the <p>. The strict CSP introduced with the CSS
   extraction (style-src 'self', no 'unsafe-inline') strips inline
   style attributes, leaving the tagline rendered as the small-grey
   default above. Restore the intended Cormorant Garamond italic
   gold-light look via a :not(.reveal-delay-2) qualifier so only the
   first tagline gets the override; the second tagline ("Built for
   families, carers and vulnerable people across the UK", which
   carries the reveal-delay-2 class) keeps the small-grey default.
   text-align: center and max-width: 600px cascade from the base
   .hero-trust-line rule so the tagline stays centred + clamped. */
.hero-trust-line:not(.reveal-delay-2) {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
}
.hero-note {
  font-size: 12px;
  color: var(--grey);
  opacity: 0.9;
  margin-top: 12px;
  text-align: center;
}

/* ── 2. Policy-page styles (from terms/index.html) ───────── */
/* Loaded on every page; selectors are .page-* / .policy-*  */
/* which exist only in the policy/terms HTML — no effect on */
/* the home page. Duplicate :root, body, .nav-*, .footer-*  */
/* rules below are byte-identical to the base block above.   */
    :root {
      --navy: #080e1f;
      --navy-mid: #0d1630;
      --navy-light: #162040;
      --gold: #c8a96e;
      --gold-light: #e8c98a;
      --gold-pale: #f5e8c8;
      --red: #cc2200;
      --red-bright: #ff3311;
      --white: #f8f5ef;
      --grey: #8a9ab5;
      --grey-light: #b8c4d8;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to bottom, rgba(8,14,31,0.95), transparent);
      backdrop-filter: blur(2px);
    }

    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--gold);
      text-decoration: none;
    }

    .nav-logo span { color: var(--red-bright); }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey-light);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-family: 'Cinzel', serif;
      font-size: 12px;
      letter-spacing: 2px;
      padding: 10px 24px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      transition: all 0.3s;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* ── PAGE HEADER ── */
    .page-header {
      position: relative;
      padding: 160px 60px 80px;
      border-bottom: 1px solid rgba(200,169,110,0.1);
      overflow: hidden;
    }

    .page-header::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(200,169,110,0.04) 0%, transparent 65%);
      pointer-events: none;
    }

    .page-header-inner {
      max-width: 800px;
      position: relative;
      z-index: 1;
    }

    .page-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 5px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.5px;
      color: var(--white);
      margin-bottom: 24px;
    }

    .page-meta {
      font-size: 14px;
      color: var(--grey);
      letter-spacing: 0.5px;
    }

    .page-meta strong {
      color: var(--grey-light);
      font-weight: 400;
    }

    /* ── CONTENT ── */
    .policy-wrap {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 80px 60px 120px;
    }

    .policy-section {
      margin-bottom: 64px;
    }

    .policy-section:last-child {
      margin-bottom: 0;
    }

    .policy-section h2 {
      font-family: 'Cinzel', serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(200,169,110,0.15);
    }

    /* Every <h3> in a .policy-section is preceded by body copy and benefits
       from a 24px top gap so the subsection break is visually clear. Audit
       on 2026-05-21 confirmed every existing h3 already carried this
       margin-top via an inline style attribute, blocked silently by the
       strict CSP — see CLAUDE.md "Website Files" for the regression class. */
    .policy-section h3 {
      margin-top: 24px;
    }

    .policy-section p {
      font-size: 16px;
      color: var(--grey-light);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .policy-section p:last-child { margin-bottom: 0; }

    .policy-section ul {
      list-style: none;
      margin-bottom: 16px;
    }

    .policy-section ul li {
      font-size: 16px;
      color: var(--grey-light);
      line-height: 1.8;
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
    }

    .policy-section ul li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      opacity: 0.6;
    }

    .policy-section a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(200,169,110,0.3);
      transition: border-color 0.3s;
    }

    .policy-section a:hover { border-color: var(--gold); }

    .policy-section strong {
      color: var(--white);
      font-weight: 600;
    }

    /* Warning highlight — red tint for critical safety notice */
    .policy-warning {
      background: rgba(204,34,0,0.08);
      border-left: 2px solid var(--red);
      padding: 20px 24px;
      margin-bottom: 16px;
    }

    .policy-warning p {
      margin-bottom: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: #f5c0b0;
      line-height: 1.6;
    }

    /* Standard gold highlight box */
    .policy-highlight {
      background: rgba(200,169,110,0.06);
      border-left: 2px solid var(--gold);
      padding: 20px 24px;
      margin-bottom: 16px;
    }

    .policy-highlight p {
      margin-bottom: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--gold-pale);
      line-height: 1.6;
    }

    /* Subtitle paragraph immediately following the lead paragraph inside
       .policy-highlight — smaller, faded gold, top-gapped. Adjacent-
       sibling combinator scopes the rule to the SECOND <p> only; the
       first <p> keeps the .policy-highlight p look above. CSP-extracted
       from inline style="…" on the privacy-policy lead block. */
    .policy-highlight p + p {
      margin-top: 12px;
      font-size: 14px;
      color: rgba(200,169,110,0.7);
    }

    /* Indented italic example quote — used in terms Section 8 to render
       the verbatim invite SMS body. CSP-extracted from inline style. */
    .example-quote {
      margin-left: 16px;
      font-style: italic;
    }

    /* ── FOOTER ── */
    footer {
      padding: 48px 60px;
      background: #040810;
      border-top: 1px solid rgba(200,169,110,0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--gold);
    }

    .footer-logo span { color: var(--red-bright); }

    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-style: italic;
      color: var(--grey);
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--grey);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-links a[aria-current="page"] { color: var(--gold); }

    .footer-copy {
      font-size: 12px;
      color: rgba(138,154,181,0.5);
      width: 100%;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.04);
      padding-top: 24px;
      margin-top: 8px;
    }

    .footer-cymraeg {
      width: 100%;
      text-align: center;
      font-size: 0.7rem;
      color: #6a7280;
      margin: 0.4rem auto 0;
      line-height: 1.3;
      padding: 0 1rem;
      box-sizing: border-box;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .page-header { padding: 140px 24px 60px; }
      .policy-wrap { padding: 60px 24px 80px; }
      footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 600px) {
      .footer-links { flex-wrap: wrap; gap: 16px; }
    }
	.policy-section ul {
  margin-top: 12px;
}

/* ── 3. Visited-link colour — v1.0.11 fix ──────────────────────
   Browser default :visited is purple, which clashes with the
   brand gold palette. Live testing reported that the inline
   privacy-policy / terms-of-use links in the waitlist disclaimer
   reverted to default purple after first click. This block aligns
   every visited link with its unvisited colour:
     - Global `a:visited { color: inherit }` catches any future
       link without needing per-element rules.
     - Per-context overrides set the explicit brand colour where
       the parent paragraph doesn't carry the link colour, so the
       :visited rule has something concrete to match.
   Hover states are left untouched — preserving the existing
   border-only hover on .policy-section a and the gold hover on
   .footer-links a. */
a:visited { color: inherit; }

.waitlist-privacy a,
.waitlist-privacy a:visited {
  color: var(--gold);
}

.waitlist-privacy a:hover {
  color: var(--gold-light);
}

.policy-section a:visited {
  color: var(--gold);
}

.footer-links a:visited {
  color: var(--grey);
}

/* Brand-logo gold/red preserved across :visited state — the global
   a:visited { color: inherit } rule above has higher specificity
   (0,1,1) than .nav-logo (0,1,0), which would otherwise revert the
   nav-logo's MRG portion to inherited body white after first click.
   The :visited pseudo-class on .nav-logo brings specificity to
   (0,2,0), winning back. The descendant <span> never matches
   :visited (the pseudo-class doesn't reach children), so its red
   rule applies normally — included here defensively in case any
   future global :visited descendant rule is added. */
.nav-logo:visited {
  color: var(--gold);
}

.nav-logo:visited span {
  color: var(--red-bright);
}

/* ── 4. Utility — visually-hidden ───────────────────────────────
   Standard accessibility/SEO pattern. Hides content visually while
   keeping it in the DOM for screen readers and search crawlers.
   Used on the home hero <h1> to add keyword-rich text without
   altering the visible design. Identical to the GOV.UK / BBC
   .visually-hidden / .sr-only convention.

   Defensive (v1.0.11 — was rendering at full hero-title size in
   live testing because the hero-title font-size: clamp(56px, 9vw,
   112px) propagates to children via inheritance and some UAs may
   not honour `clip: rect(0 0 0 0)` on inline elements until
   computed display becomes block).  Combines THREE independent
   hiding mechanisms so the content disappears regardless of which
   rule any UA prioritises:

     1. width/height clamped to 1px + overflow:hidden + display:block
        — bounded box, content clipped at the edge.
     2. position:absolute + left:-10000px — moves off-screen
        irrespective of any clip behaviour.
     3. clip + clip-path — legacy + modern clipping for belt-and-braces.

   The selector is doubled (.visually-hidden, .hero-title
   .visually-hidden) so it wins specificity inside the H1 against
   any future hero-title descendant rule. */
.visually-hidden,
.hero-title .visually-hidden {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  display: block !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
