/* =============================================================================
   REGLEGBRIEF — SHARED STYLESHEET
   reglegbrief.css — v1.0 — 18 April 2026 SGT
   
   Source: extracted from <style> block of index.html (lines 14-1371 of
   index.html dated 16 Apr 2026 18:42 UTC on server).
   
   Extracted byte-identical. No visual regression.
   
   Served at: /static/css/reglegbrief.css
   Included by: base.html + index.html (direct <link>).
   
   DO NOT edit this file with styling changes unless also verified across:
     - Homepage (index.html)
     - Auth templates (register.html, login.html, email_sent.html, auth_result.html)
     - Any other templates that extend base.html
   
   ========================================================================== */

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

    /* ── Design tokens ──────────────────────────────────────── */
    :root {
      --navy:          #0F1F3D;
      --navy-deep:     #091628;
      --navy-mid:      #1B3260;
      --navy-light:    #243D6B;
      --gold:          #E8A820;
      --gold-light:    #FBF0D8;
      --gold-dim:      #C49010;
      --off-white:     #F6F7F9;
      --white:         #FFFFFF;
      --border:        #DDE2EA;
      --text-main:     #1A1A2E;
      --text-muted:    #6B7280;
      --text-subtle:   #9CA3AF;
      --sig-high:      #C0392B;
      --sig-med:       #E8A820;
      --sig-notable:   #475569;
      --green-ok:      #16A34A;
      --font-display:  'Playfair Display', Georgia, serif;
      --font-body:     'Source Serif 4', Georgia, serif;
      --font-ui:       Arial, Helvetica, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--text-main);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }

    /* ── NAVIGATION ─────────────────────────────────────────── */
    .hp-nav {
      background: var(--navy);
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 80px;
      position: sticky;
      top: 0;
      z-index: 300;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .hp-nav-brand {
      font-family: var(--font-ui);
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.01em;
      text-decoration: none;
      flex-shrink: 0;
    }
    .hp-nav-brand span { color: var(--gold); }

    .hp-nav-centre {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    /* Dropdown nav items */
    .hp-nav-item {
      position: relative;
    }

    .hp-nav-link {
      font-family: var(--font-ui);
      font-size: 13px;
      color: rgba(255,255,255,0.70);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 4px;
      transition: all 0.15s;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      white-space: nowrap;
    }
    .hp-nav-link:hover {
      color: #fff;
      background: rgba(255,255,255,0.07);
    }
    .hp-nav-link .arr {
      font-size: 9px;
      opacity: 0.5;
      transition: transform 0.15s;
    }

    /* Dropdown panel */
    .hp-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      min-width: 260px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      z-index: 400;
      padding: 8px 0;
    }
    .hp-dropdown.wide { min-width: 340px; }

    .hp-nav-item:hover .hp-dropdown { display: block; }
    .hp-nav-item:hover .hp-nav-link .arr { transform: rotate(180deg); }

    .hp-dropdown-section {
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
    }
    .hp-dropdown-section:last-child { border-bottom: none; }

    .hp-dropdown-label {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-subtle);
      padding: 6px 18px 4px;
    }

    .hp-dropdown-item {
      display: block;
      padding: 9px 18px;
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--text-main);
      text-decoration: none;
      transition: background 0.1s;
    }
    .hp-dropdown-item:hover { background: var(--off-white); }

    .hp-dropdown-item-sub {
      font-size: 11px;
      color: var(--text-subtle);
      margin-top: 2px;
    }

    .hp-nav-right {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .hp-nav-login {
      font-family: var(--font-ui);
      font-size: 13px;
      color: rgba(255,255,255,0.60);
      padding: 6px 12px;
      border-radius: 4px;
      transition: all 0.15s;
    }
    .hp-nav-login:hover { color: #fff; background: rgba(255,255,255,0.07); }

    .hp-nav-cta {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      background: var(--gold);
      padding: 7px 18px;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.15s;
      white-space: nowrap;
    }
    .hp-nav-cta:hover { background: #f0b830; }

    /* ── HERO ───────────────────────────────────────────────── */
    .hp-hero {
      background: var(--navy-deep);
      padding: 72px 80px 64px;
      position: relative;
      overflow: hidden;
    }

    .hp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    .hp-hero::after {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: var(--gold);
    }

    .hp-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hp-hero-eyebrow {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .hp-hero-headline {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.4vw, 34px);
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1.22;
      margin-bottom: 22px;
      letter-spacing: -0.01em;
    }

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

    /* The four-word promise strip */
    .hp-promise {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .hp-promise-word {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.90);
      padding: 5px 16px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .hp-promise-word:first-child { padding-left: 0; }
    .hp-promise-word:last-child { border-right: none; }
    .hp-promise-word.gold { color: var(--gold); }

    .hp-hero-sub {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,0.68);
      line-height: 1.68;
      margin-bottom: 36px;
    }

    .hp-hero-tagline {
      font-family: var(--font-display);
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 600;
      color: rgba(255,255,255,0.90);
      margin-bottom: 36px;
      font-style: italic;
      letter-spacing: 0.01em;
    }

    .hp-hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hp-btn-primary {
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 700;
      background: var(--gold);
      color: var(--navy);
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.15s, transform 0.1s;
      display: inline-block;
    }
    .hp-btn-primary:hover { background: #f0b830; transform: translateY(-1px); }

    .hp-btn-secondary {
      font-family: var(--font-ui);
      font-size: 15.5px;
      color: rgba(255,255,255,0.60);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.22);
      padding-bottom: 2px;
      transition: color 0.15s, border-color 0.15s;
    }
    .hp-btn-secondary:hover { color: rgba(255,255,255,0.90); border-color: rgba(255,255,255,0.50); }

    /* ── COUNTER STRIP ──────────────────────────────────────── */
    .hp-counters {
      background: var(--navy-mid);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0 80px;
    }

    .hp-counters-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }

    .hp-counter-item {
      padding: 28px 16px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .hp-counter-item:last-child { border-right: none; }

    .hp-counter-number {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 7px;
      letter-spacing: -0.02em;
      display: block;
    }

    .hp-counter-item.hallucination .hp-counter-number { color: #F59E0B; }

    .hp-counter-label {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.48);
      line-height: 1.4;
    }

    .hp-counter-note {
      font-family: var(--font-ui);
      font-size: 10px;
      color: rgba(255,255,255,0.25);
      margin-top: 5px;
      letter-spacing: 0.03em;
    }

    /* ── SECTION SHARED STYLES ──────────────────────────────── */
    .hp-section-label {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 14px;
    }

    .hp-section-heading {
      font-family: var(--font-display);
      font-size: clamp(26px, 3.5vw, 36px);
      font-weight: 600;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 44px;
    }

    /* ── THE PROBLEM — 4 LAYERS ─────────────────────────────── */
    .hp-problem {
      background: var(--off-white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-problem-inner { max-width: 1400px; margin: 0 auto; }

    .hp-problem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .hp-problem-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--navy);
      padding: 28px 22px;
    }

    .hp-problem-num {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
      opacity: 0.15;
      line-height: 1;
      margin-bottom: 14px;
    }

    .hp-problem-title {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }

    .hp-problem-body {
      font-family: var(--font-body);
      font-size: 15.5px;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    .hp-problem-body strong {
      color: var(--text-main);
      font-weight: 400;
    }

    /* ── FIND YOURSELF — 12 PROFILES ───────────────────────── */
    .hp-who {
      background: var(--white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-who-inner { max-width: 1400px; margin: 0 auto; }

    .hp-who-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .hp-who-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      padding: 22px 18px;
      border-radius: 2px;
      transition: border-color 0.15s, background 0.15s;
      display: block;
      text-decoration: none;
    }
    .hp-who-card:hover {
      border-color: var(--gold);
      background: var(--gold-light);
    }

    .hp-who-card-hit {
      font-family: var(--font-body);
      font-size: 15.5px;
      font-weight: 400;
      font-style: italic;
      color: var(--text-main);
      line-height: 1.55;
      margin-bottom: 14px;
    }

    .hp-who-card-type {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 8px;
    }

    .hp-who-card-link {
      font-family: var(--font-ui);
      font-size: 12px;
      color: var(--navy);
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    /* ── PRODUCT SHOWCASE ───────────────────────────────────── */
    .hp-products {
      background: var(--off-white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-products-inner { max-width: 1400px; margin: 0 auto; }

    .hp-products-stack {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 40px;
    }

    .hp-product-row {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 16px;
      align-items: stretch;
    }

    .hp-product-item {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 24px 26px;
    }

    .hp-product-tag {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .hp-product-tag.alert { color: #185FA5; }
    .hp-product-tag.summary { color: #0F6E56; }
    .hp-product-tag.brief { color: var(--navy); }
    .hp-product-tag.note { color: #993C1D; }
    .hp-product-tag.map { color: #854F0B; }
    .hp-product-tag.register { color: #A32D2D; }

    .hp-product-name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .hp-product-value {
      font-family: var(--font-body);
      font-size: 15.5px;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    .hp-product-live {
      background: var(--navy-deep);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      text-align: center;
    }

    .hp-product-live-label {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .hp-product-live-desc {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(255,255,255,0.50);
      line-height: 1.5;
    }

    .hp-product-live-link {
      display: inline-block;
      margin-top: 12px;
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 700;
      color: var(--navy);
      background: var(--gold);
      padding: 6px 14px;
      border-radius: 3px;
      text-decoration: none;
    }

    /* ── HOW IT WORKS — 3 STEPS ─────────────────────────────── */
    .hp-how {
      background: var(--white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-how-inner { max-width: 1400px; margin: 0 auto; }

    .hp-how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 44px;
      position: relative;
    }

    .hp-how-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 16%;
      right: 16%;
      height: 1px;
      background: var(--border);
      z-index: 0;
    }

    .hp-how-step {
      text-align: center;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    .hp-how-step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 3px solid var(--white);
      box-shadow: 0 0 0 1px var(--border);
    }

    .hp-how-step-title {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hp-how-step-body {
      font-family: var(--font-body);
      font-size: 15.5px;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ── BRIEF PREVIEW ──────────────────────────────────────── */
    .hp-preview {
      background: var(--off-white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-preview-inner { max-width: 1400px; margin: 0 auto; }

    .hp-preview-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      margin-top: 32px;
    }

    .hp-preview-card-top {
      background: var(--navy);
      padding: 18px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hp-preview-sig {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 3px;
    }
    .hp-preview-sig.HIGH { background: var(--sig-high); color: #fff; }
    .hp-preview-sig.MEDIUM { background: var(--sig-med); color: var(--navy); }
    .hp-preview-sig.NOTABLE { background: var(--sig-notable); color: #fff; }

    .hp-preview-meta {
      font-family: var(--font-ui);
      font-size: 12px;
      color: rgba(255,255,255,0.50);
      letter-spacing: 0.04em;
    }

    .hp-preview-auth-badge {
      margin-left: auto;
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(232,168,32,0.40);
      padding: 3px 10px;
      border-radius: 3px;
    }

    .hp-preview-card-body { padding: 28px 28px 32px; }

    .hp-preview-headline {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .hp-preview-lead {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 22px;
    }

    .hp-preview-citation {
      font-family: var(--font-ui);
      font-size: 11px;
      color: var(--text-subtle);
      letter-spacing: 0.05em;
      padding: 10px 14px;
      background: var(--off-white);
      border-left: 3px solid var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hp-preview-read-link {
      display: inline-block;
      margin-top: 20px;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.04em;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
      text-decoration: none;
      transition: color 0.15s;
    }
    .hp-preview-read-link:hover { color: var(--navy-mid); }

    .hp-preview-empty {
      text-align: center;
      padding: 48px 24px;
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 15px;
      font-style: italic;
    }

    /* ── HALLUCINATION REGISTER ─────────────────────────────── */
    .hp-register {
      background: var(--navy);
      padding: 64px 80px;
    }

    .hp-register-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .hp-register-eyebrow {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #F59E0B;
      margin-bottom: 14px;
    }

    .hp-register-heading {
      font-family: var(--font-display);
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 600;
      color: #FFFFFF;
      line-height: 1.35;
      margin-bottom: 16px;
    }

    .hp-register-body {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.60);
      line-height: 1.68;
    }

    .hp-register-body strong {
      color: rgba(255,255,255,0.85);
      font-weight: 400;
    }

    .hp-register-catch {
      margin-top: 20px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      border-left: 3px solid #F59E0B;
      padding: 14px 18px;
    }

    .hp-register-catch-label {
      font-family: var(--font-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #F59E0B;
      margin-bottom: 6px;
    }

    .hp-register-catch-text {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.55;
    }

    .hp-register-bottom {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap;
    }

    .hp-register-counter {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hp-register-num {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 700;
      color: #F59E0B;
      line-height: 1;
    }

    .hp-register-num-label {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.40);
      line-height: 1.4;
    }

    .hp-register-cta {
      display: inline-block;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      background: #F59E0B;
      padding: 11px 22px;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.03em;
      white-space: nowrap;
      transition: background 0.15s;
    }
    .hp-register-cta:hover { background: #FBBF24; }

    /* ── OUR STANDARD — 4 PILLARS ───────────────────────────── */
    .hp-standard {
      background: var(--off-white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-standard-inner { max-width: 1400px; margin: 0 auto; }

    .hp-standard-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .hp-standard-item {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 26px 22px;
    }

    .hp-standard-check {
      width: 32px;
      height: 32px;
      background: var(--navy);
      color: var(--gold);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      font-weight: 700;
    }

    .hp-standard-title {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }

    .hp-standard-body {
      font-family: var(--font-body);
      font-size: 15.5px;
      color: var(--text-muted);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ── PRACTITIONER & LEARNING ────────────────────────────── */
    .hp-community {
      background: var(--white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-community-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .hp-community-block-label {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 14px;
    }

    .hp-community-heading {
      font-family: var(--font-display);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .hp-community-body {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.68;
    }

    .hp-community-link {
      display: inline-block;
      margin-top: 18px;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.04em;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
    }

    /* ── PRICING STRIP ──────────────────────────────────────── */
    .hp-pricing {
      background: var(--off-white);
      padding: 72px 80px;
      border-bottom: 1px solid var(--border);
    }

    .hp-pricing-inner { max-width: 1400px; margin: 0 auto; }

    .hp-pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .hp-price-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 28px 24px;
    }

    .hp-price-card.featured {
      border: 2px solid var(--navy);
    }

    .hp-price-tier {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-bottom: 10px;
    }

    .hp-price-amount {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1;
    }

    .hp-price-amount span {
      font-size: 15.5px;
      color: var(--text-muted);
      font-weight: 300;
    }

    .hp-price-who {
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 300;
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
      line-height: 1.5;
    }

    .hp-price-features {
      list-style: none;
    }

    .hp-price-features li {
      font-family: var(--font-body);
      font-size: 14.5px;
      color: var(--text-muted);
      font-weight: 300;
      padding: 5px 0;
      border-bottom: 1px solid var(--off-white);
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .hp-price-features li:last-child { border-bottom: none; }

    .hp-price-features li::before {
      content: '✓';
      color: var(--green-ok);
      font-weight: 700;
      font-family: var(--font-ui);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .hp-price-cta {
      display: block;
      margin-top: 22px;
      text-align: center;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      padding: 10px;
      border: 2px solid var(--navy);
      color: var(--navy);
      text-decoration: none;
      border-radius: 3px;
      transition: all 0.15s;
    }
    .hp-price-cta:hover { background: var(--navy); color: #fff; }
    .hp-price-card.featured .hp-price-cta {
      background: var(--navy);
      color: #fff;
    }
    .hp-price-card.featured .hp-price-cta:hover { background: var(--navy-mid); }

    /* ── FINAL CTA ──────────────────────────────────────────── */
    .hp-cta-final {
      background: var(--navy-deep);
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hp-cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .hp-cta-final-inner {
      position: relative;
      z-index: 1;
      max-width: 580px;
      margin: 0 auto;
    }

    .hp-cta-final-heading {
      font-family: var(--font-display);
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.25;
    }

    .hp-cta-final-sub {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.58);
      margin-bottom: 36px;
      line-height: 1.68;
    }

    .hp-cta-final-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── FOOTER ─────────────────────────────────────────────── */
    .hp-footer {
      background: var(--navy);
      padding: 32px 80px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .hp-footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .hp-footer-brand {
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,0.70);
      margin-bottom: 6px;
    }
    .hp-footer-brand span { color: var(--gold); }

    .hp-footer-tagline {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(255,255,255,0.30);
      font-style: italic;
      margin-bottom: 4px;
    }

    .hp-footer-copy {
      font-family: var(--font-ui);
      font-size: 11px;
      color: rgba(255,255,255,0.25);
    }

    .hp-footer-cols {
      display: flex;
      gap: 48px;
    }

    .hp-footer-col-label {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.30);
      margin-bottom: 10px;
    }

    .hp-footer-links {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .hp-footer-link {
      font-family: var(--font-ui);
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      text-decoration: none;
      transition: color 0.15s;
    }
    .hp-footer-link:hover { color: rgba(255,255,255,0.80); }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hp-nav-centre { display: none; }
      .hp-problem-grid { grid-template-columns: repeat(2, 1fr); }
      .hp-who-grid { grid-template-columns: repeat(2, 1fr); }
      .hp-standard-grid { grid-template-columns: repeat(2, 1fr); }
      .hp-community-inner { grid-template-columns: 1fr; gap: 40px; }
      .hp-register-inner { grid-template-columns: 1fr; gap: 32px; }
      .hp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    }

    /* ── FLOATING SECTION PILLS ────────────────────────────── */
    .hp-pills-bar {
      position: sticky;
      top: 58px;
      z-index: 200;
      background: rgba(9,22,40,0.96);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 10px 80px;
    }

    .hp-pills-inner {
      max-width: 1040px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .hp-pill {
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      padding: 5px 14px;
      border-radius: 20px;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: all 0.18s;
      white-space: nowrap;
      cursor: pointer;
    }

    .hp-pill:hover {
      color: rgba(255,255,255,0.90);
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.22);
    }

    .hp-pill.active {
      color: var(--navy);
      background: var(--gold);
      border-color: var(--gold);
      font-weight: 700;
    }

    /* ── BACK TO TOP ────────────────────────────────────────── */
    .hp-back-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 40px;
      height: 40px;
      background: var(--navy);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: rgba(255,255,255,0.70);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s, background 0.15s;
      z-index: 500;
      text-decoration: none;
    }
    .hp-back-top.visible { opacity: 1; pointer-events: auto; }
    .hp-back-top:hover { background: var(--navy-mid); color: #fff; }

    @media (max-width: 768px) {
      .hp-pills-bar { padding: 8px 16px; }
      .hp-pills-inner { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
      .hp-pills-inner::-webkit-scrollbar { display: none; }
      .hp-nav { padding: 0 20px; }
      .hp-hero { padding: 56px 20px 52px; }
      .hp-counters { padding: 0 20px; }
      .hp-counters-inner { grid-template-columns: repeat(2, 1fr); }
      .hp-counter-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
      .hp-counter-item:nth-child(2n) { border-right: none; }
      .hp-problem, .hp-who, .hp-products, .hp-how,
      .hp-preview, .hp-register, .hp-standard,
      .hp-community, .hp-pricing, .hp-cta-final { padding: 48px 20px; }
      .hp-problem-grid { grid-template-columns: 1fr; }
      .hp-who-grid { grid-template-columns: 1fr; }
      .hp-how-steps { grid-template-columns: 1fr; gap: 32px; }
      .hp-how-steps::before { display: none; }
      .hp-standard-grid { grid-template-columns: 1fr; }
      .hp-footer { padding: 28px 80px; }
      .hp-footer-cols { flex-direction: column; gap: 28px; }
      .hp-product-row { grid-template-columns: 1fr; }
    }
