
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    /* Static landing — visible to bots, AI crawlers, no-JS users; hidden once JS runs */
    :root {
      --navy: #091A3D;
      --navy-deep: #060F24;
      --navy-mid: #0D275C;
      --teal: #289D8F;
      --teal-light: #34C4B2;
      --mint: #73F4BF;
      --mint-glow: rgba(115,244,191,0.10);
      --teal-glow: rgba(40,157,143,0.12);
      --teal-glow-strong: rgba(40,157,143,0.25);
      --gold: #C9A96E;
      --gold-light: #E2C992;
      --white: #FFFFFF;
      --off-white: #F7F8FA;
      --light-gray: #E4E7EC;
      --faint-gray: #F0F2F5;
      --text-dark: #1A1D26;
      --text-mid: #5A6072;
      --text-light: #8B90A0;
      --border: #E0E3EA;
      --success: #30B87A;
      --warning: #D97706;
      --danger: #DC2626;
      --radius: 20px;
    }
    body { font-family: 'Open Sans', sans-serif; background: var(--off-white); color: var(--text-dark); line-height: 1.7; font-weight: 300; overflow-x: hidden; }
    h1, h2, h3 { font-family: 'Prata', serif; font-weight: 400; letter-spacing: -0.02em; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }

    /* ========== NAV (Sticky bar — 21st.dev simple-header direction) ========== */
    .nav {
      position: sticky; top: 0; z-index: 50;
      width: 100%;
      background: rgba(247,248,250,0.85);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    }
    .nav.scrolled {
      background: rgba(247,248,250,0.95);
      border-bottom-color: rgba(228,231,236,0.6);
    }
    .nav-inner {
      max-width: 1220px; margin: 0 auto;
      padding: 0 36px;
      display: flex; align-items: center; justify-content: space-between;
      height: 84px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 14px;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-size: 19px; font-weight: 700; letter-spacing: -0.02em;
      color: var(--navy);
      cursor: pointer; white-space: nowrap;
      background: none; border: none; padding: 0;
    }
    .nav-logo-mark {
      width: 36px; height: 36px;
      display: grid; place-items: center;
      color: var(--teal);
      flex-shrink: 0;
    }
    .nav-logo-img {
      height: 52px; width: 52px;
      display: block; flex-shrink: 0;
      object-fit: contain;
      border-radius: 10px;
    }
    .nav-logo-text em { font-style: normal; color: var(--teal); font-weight: 700; }
    .nav-links { display: flex; gap: 6px; align-items: center; }
    .nav-link {
      padding: 11px 18px; border-radius: 10px;
      font-size: 15px; font-weight: 500;
      color: var(--text-mid);
      background: none; border: none; cursor: pointer;
      font-family: 'Open Sans', sans-serif;
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
      letter-spacing: 0; text-transform: none;
    }
    .nav-link:hover { color: var(--navy); background: rgba(11,18,32,0.04); }
    .nav-link.outline {
      padding: 12px 22px; border-radius: 10px;
      font-size: 15px; font-weight: 600;
      color: var(--navy); background: transparent;
      border: 1px solid rgba(11,18,32,0.14);
      margin-left: 6px;
    }
    .nav-link.outline:hover { background: rgba(11,18,32,0.04); border-color: rgba(11,18,32,0.22); }
    .nav-link.cta {
      padding: 12px 22px; border-radius: 10px;
      font-size: 15px; font-weight: 600;
      color: #FFFFFF; background: var(--navy);
      border: 1px solid var(--navy);
      text-transform: none; letter-spacing: 0;
      transition: all 0.2s;
    }
    .nav-link.cta:hover {
      background: var(--teal); border-color: var(--teal);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(40,157,143,0.25);
    }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      text-align: center;
      padding: 160px 40px 120px;
      position: relative; background: var(--off-white);
      overflow: hidden;
    }
    /* Ambient orbs */
    .hero-orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .hero-orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(40,157,143,0.12), transparent 70%);
      top: -200px; right: -100px;
    }
    .hero-orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(115,244,191,0.08), transparent 70%);
      bottom: -100px; left: -100px;
      animation-delay: -4s;
    }
    .hero-orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(201,169,110,0.06), transparent 70%);
      top: 30%; left: 10%;
      animation-delay: -2s;
    }
    @keyframes micPulse {
      0%, 100% { box-shadow: 0 0 0 4px rgba(220,53,69,0.18); }
      50%      { box-shadow: 0 0 0 8px rgba(220,53,69,0.05); }
    }
    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(20px, -30px) scale(1.05); }
      66% { transform: translate(-15px, 15px) scale(0.97); }
    }
    /* Grid pattern overlay */
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      opacity: 0.03;
      background-image:
        linear-gradient(var(--navy) 1px, transparent 1px),
        linear-gradient(90deg, var(--navy) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
      -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
    }
    .hero-canvas {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
    }
    /* Particle canvas for non-hero sections */
    .section-canvas {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
    }
    .hero > *:not(.hero-canvas):not(.hero-orb):not(.hero-orb-1):not(.hero-orb-2):not(.hero-orb-3):not(.hero-grid):not(.hero-scroll) { position: relative; z-index: 1; }
    .hero h1 {
      font-family: 'Prata', serif;
      font-size: clamp(44px, 6.5vw, 82px);
      line-height: 1.05;
      letter-spacing: -0.035em;
      color: var(--navy);
      max-width: 900px;
      position: relative;
      opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
    }
    .hero h1 em {
      font-family: 'Playfair Display', serif; font-style: italic;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      margin-top: 28px;
      font-size: 18px; color: var(--text-mid);
      max-width: 540px;
      font-weight: 300; line-height: 1.85;
      opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(228,231,236,0.6);
      border-radius: 100px;
      padding: 9px 22px 9px 14px;
      font-size: 13px; color: var(--text-mid);
      font-weight: 500;
      margin-bottom: 44px;
      opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }
    .hero-badge .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--success);
      animation: pulse 2s infinite;
      box-shadow: 0 0 8px rgba(48,184,122,0.4);
    }
    .hero-actions {
      margin-top: 48px;
      display: flex; gap: 16px;
      opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
    }
    .hero-stats {
      margin-top: 80px;
      display: flex; gap: 1px;
      background: var(--light-gray);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
      opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
    }
    .hero-stat {
      text-align: center;
      padding: 28px 40px;
      background: var(--white);
      min-width: 140px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .hero-stat:hover { background: var(--faint-gray); transform: translateY(-2px); }
    .hero-stat .val {
      font-family: 'Prata', serif;
      font-size: 32px; color: var(--navy);
      letter-spacing: -0.03em;
    }
    .hero-stat .lbl {
      font-size: 11px; color: var(--text-light);
      text-transform: uppercase; letter-spacing: 0.15em;
      margin-top: 4px; font-weight: 600;
    }
    .hero-scroll {
      position: absolute; bottom: 40px;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
    }
    .scroll-mouse {
      width: 24px; height: 38px;
      border: 2px solid var(--light-gray);
      border-radius: 12px; position: relative;
    }
    .scroll-mouse::after {
      content: ''; position: absolute; top: 6px; left: 50%;
      transform: translateX(-50%);
      width: 3px; height: 8px; background: var(--teal);
      border-radius: 2px;
      animation: scrollDot 1.8s ease-in-out infinite;
    }
    @keyframes scrollDot { 0% { top: 6px; opacity: 1; } 100% { top: 22px; opacity: 0; } }
    .scroll-text {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--text-light); font-weight: 600;
    }
    /* Legacy scroll line (kept for compat) */
    .scroll-line {
      width: 1px; height: 44px; background: var(--light-gray);
      position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 100%; height: 100%; background: var(--teal);
      animation: scrollPulse 2s infinite;
    }
    /* Scroll progress bar */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; z-index: 1000;
      background: linear-gradient(90deg, var(--teal), var(--mint));
      width: 0%; transition: width 0.1s linear;
    }

    /* ========== BUTTONS ========== */
    .btn-primary, .btn {
      padding: 17px 42px; border-radius: 100px;
      font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
      text-decoration: none; border: none; cursor: pointer;
      font-family: 'Open Sans', sans-serif;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      position: relative; overflow: hidden;
    }
    .btn-primary, .btn.btn-primary {
      background: var(--navy); color: var(--white);
    }
    .btn-primary:hover, .btn.btn-primary:hover {
      background: var(--teal); transform: translateY(-3px);
      box-shadow: 0 20px 60px rgba(40,157,143,0.3);
    }
    .btn-secondary, .btn-outline, .btn.btn-outline {
      background: transparent;
      border: 1.5px solid var(--light-gray);
      color: var(--navy);
      padding: 17px 42px; border-radius: 100px;
      font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
      text-decoration: none; cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); font-family: 'Open Sans', sans-serif;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    }
    .btn-secondary:hover, .btn-outline:hover, .btn.btn-outline:hover { border-color: var(--navy); background: rgba(9,26,61,0.03); transform: translateY(-2px); }
    .btn-accent, .btn.btn-accent { background: var(--teal); color: var(--white); border: none; }
    .btn-accent:hover, .btn.btn-accent:hover { background: var(--teal-light); transform: translateY(-3px); box-shadow: 0 20px 50px var(--teal-glow-strong); }
    .btn-success, .btn.btn-success { background: var(--success); color: white; border: none; }
    .btn-danger, .btn.btn-danger { background: var(--danger); color: white; border: none; }
    .btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
    .btn-group { display: flex; gap: 12px; margin-top: 24px; }

    /* ========== SECTIONS ========== */
    .section { padding: 80px 0; }
    .section-title {
      text-align: center;
      font-family: 'Prata', serif;
      font-size: clamp(28px, 3.2vw, 42px);
      letter-spacing: -0.02em;
      margin-bottom: 12px; color: var(--navy);
    }
    .section-subtitle { text-align: center; color: var(--text-mid); font-size: 17px; margin-bottom: 48px; font-weight: 300; line-height: 1.7; }
    .section-label {
      font-size: 11px; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--teal);
      font-weight: 700; margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before {
      content: ''; width: 32px; height: 1.5px;
      background: linear-gradient(90deg, var(--teal), transparent);
    }
    .section-label.centered { justify-content: center; text-align: center; }

    /* ========== CARDS ========== */
    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      border: 1px solid var(--light-gray);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .card:hover { box-shadow: 0 24px 64px rgba(9,26,61,0.06); }
    .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }

    /* ========== BENTO GRID ========== */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .bento-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 20px;
      padding: 40px;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative; overflow: hidden;
      cursor: pointer;
    }
    .bento-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--teal-glow), transparent 60%);
      opacity: 0; transition: opacity 0.5s; pointer-events: none;
    }
    .bento-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(9,26,61,0.08), 0 0 0 1px rgba(40,157,143,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
      border-color: rgba(40,157,143,0.3);
    }
    .bento-card:hover::after { opacity: 1; }
    .bento-card.span-2 { grid-column: span 2; }
    .bento-icon {
      width: 50px; height: 50px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 22px;
    }
    .bento-icon.teal { background: var(--teal-glow); }
    .bento-icon.navy { background: rgba(9,26,61,0.06); }
    .bento-icon.mint { background: var(--mint-glow); }
    .bento-card h3 { font-family: 'Playfair Display', serif; font-size: 21px; letter-spacing: -0.01em; margin-bottom: 10px; color: var(--navy); }
    .bento-card p { color: var(--text-mid); font-size: 14px; line-height: 1.85; font-weight: 300; }

    /* Process flow */
    .process-flow { display: flex; gap: 0; margin-top: 28px; align-items: center; }
    .pf-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
    .pf-dot {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--off-white); border: 1.5px solid var(--light-gray);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Prata', serif;
      font-size: 16px; color: var(--navy);
      margin-bottom: 10px; transition: all 0.3s;
    }
    .pf-step:hover .pf-dot { background: var(--teal); border-color: var(--teal); color: var(--white); }
    .pf-label { font-size: 12px; color: var(--text-mid); letter-spacing: 0.04em; font-weight: 500; }
    .pf-line { flex: 0 0 40px; height: 1px; background: var(--light-gray); margin-bottom: 30px; }

    /* ========== TRUST BAR ========== */
    .trust-bar {
      background: var(--navy); color: var(--off-white);
      padding: 100px 56px;
      position: relative; overflow: hidden;
    }
    .trust-bar::before {
      content: ''; position: absolute;
      top: -50%; right: -20%; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(40,157,143,0.08), transparent 60%);
      pointer-events: none;
    }
    .trust-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .trust-left h2 {
      font-size: clamp(28px, 3vw, 40px); color: var(--white);
      letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 20px;
    }
    .trust-left h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--mint); }
    .trust-left p { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.85; font-weight: 300; }
    .trust-stats-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; background: rgba(255,255,255,0.06);
      border-radius: 20px; overflow: hidden;
    }
    .trust-stat {
      padding: 40px 32px; background: var(--navy);
      text-align: center; transition: background 0.4s;
    }
    .trust-stat:hover { background: rgba(255,255,255,0.03); }
    .trust-stat .num {
      font-family: 'Prata', serif;
      font-size: 48px; letter-spacing: -0.03em;
      background: linear-gradient(135deg, var(--mint), var(--teal-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .trust-stat .desc {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.15em;
      text-transform: uppercase; font-weight: 600;
      margin-top: 6px;
    }

    /* ========== PRICING ========== */
    .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .pr-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 24px; padding: 48px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .pr-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.06);
      border-color: transparent;
    }
    .pr-card.featured { border-color: var(--teal); }
    .pr-card.featured::before {
      content: '';
      position: absolute; top: 0; left: 40px; right: 40px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--teal), var(--mint), transparent);
      border-radius: 0 0 2px 2px;
    }
    .pr-tag {
      display: inline-block;
      background: var(--teal-glow); color: var(--teal);
      padding: 5px 14px; border-radius: 100px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 24px;
    }

    /* Legacy pricing card styles (for PricingPage component) */
    .pricing-card { text-align: center; padding: 40px 32px; position: relative; transition: transform 0.3s; border-radius: 24px; }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,0.06); }
    .pricing-card.featured { border: 2px solid var(--teal); }
    .pricing-card.featured::before {
      content: '';
      position: absolute; top: 0; left: 40px; right: 40px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--teal), var(--mint), transparent);
    }
    .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); padding: 5px 20px; border-radius: 100px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
    .pricing-amount { font-family: 'Prata', serif; font-size: 52px; color: var(--navy); margin: 16px 0; letter-spacing: -0.03em; }
    .pricing-amount span { font-size: 18px; font-weight: 300; color: var(--text-mid); font-family: 'Open Sans', sans-serif; }
    .pricing-features { list-style: none; margin: 24px 0; text-align: left; }
    .pricing-features li { padding: 11px 0; border-bottom: 1px solid var(--faint-gray); font-size: 14px; color: var(--text-mid); display: flex; gap: 12px; align-items: center; }
    .pricing-features li::before { content: '\2713'; color: var(--teal); font-weight: 700; }

    /* ========== FINAL CTA ========== */
    .final-cta {
      padding: 160px 56px; text-align: center; position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(40,157,143,0.06) 0%, rgba(115,244,191,0.03) 40%, transparent 65%);
      pointer-events: none;
      animation: ctaPulse 6s ease-in-out infinite;
    }
    @keyframes ctaPulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
    }
    .final-cta h2 {
      font-family: 'Prata', serif;
      font-size: clamp(36px, 5vw, 64px);
      letter-spacing: -0.03em; line-height: 1.1;
      max-width: 720px; margin: 0 auto; position: relative;
      color: var(--navy);
    }
    .final-cta h2 em {
      font-family: 'Playfair Display', serif; font-style: italic;
      background: linear-gradient(135deg, var(--teal), var(--mint));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .final-cta p {
      color: var(--text-mid); font-size: 17px;
      max-width: 480px; margin: 24px auto 48px;
      font-weight: 300; line-height: 1.85; position: relative;
    }

    /* ========== FORMS ========== */
    .form-group { margin-bottom: 20px; }
    .form-label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 14px; color: var(--navy); }
    .form-sublabel { font-weight: 400; color: var(--text-mid); font-size: 13px; }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 14px 18px;
      border: 1px solid var(--light-gray);
      border-radius: 14px; font-size: 15px;
      font-family: 'Open Sans', sans-serif;
      transition: all 0.3s; background: white;
      color: var(--navy);
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none; border-color: var(--teal);
      box-shadow: 0 0 0 3px var(--teal-glow);
    }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    /* Inline "this box needs you" message. Deliberately loud: bold, with a red badge, because
       a thin grey-red line of 13px text is invisible to the people actually filling this out. */
    .form-error { color: var(--danger); font-size: 13.5px; margin-top: 6px; font-weight: 600; line-height: 1.45; display: flex; align-items: flex-start; gap: 7px; }
    .form-error::before { content: '!'; flex-shrink: 0; width: 17px; height: 17px; margin-top: 1px; border-radius: 50%; background: var(--danger); color: #fff; font-size: 11px; font-weight: 700; line-height: 17px; text-align: center; }
    .required { color: var(--danger); }

    /* ========== STEPPER (Intake) ========== */
    .stepper { display: flex; justify-content: center; margin-bottom: 40px; gap: 0; }
    .step { display: flex; align-items: center; gap: 0; }
    .step-circle { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; border: 1.5px solid var(--light-gray); color: var(--text-mid); background: white; transition: all 0.3s; font-family: 'Prata', serif; }
    .step.active .step-circle { background: var(--navy); color: var(--off-white); border-color: var(--navy); }
    .step.completed .step-circle { background: var(--success); color: white; border-color: var(--success); }
    .step-label { font-size: 12px; font-weight: 500; color: var(--text-mid); margin-top: 6px; text-align: center; max-width: 80px; }
    .step.active .step-label { color: var(--navy); font-weight: 600; }
    .step.completed .step-label { color: var(--success); }
    .step-line { width: 60px; height: 1px; background: var(--light-gray); margin: 0 4px; margin-bottom: 20px; }
    .step-line.completed { background: var(--success); }
    .step-wrapper { display: flex; flex-direction: column; align-items: center; }

    /* ========== DASHBOARD ========== */
    .dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
    .stat-card { background: white; padding: 28px; border-radius: var(--radius); border: 1px solid var(--light-gray); transition: all 0.3s; }
    .stat-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.04); }
    .stat-value { font-family: 'Prata', serif; font-size: 36px; color: var(--navy); letter-spacing: -0.03em; }
    .stat-label { font-size: 12px; color: var(--text-mid); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
    .stat-change { font-size: 12px; margin-top: 4px; }
    .stat-change.up { color: var(--success); }

    /* ========== TABLE ========== */
    .table-wrap { overflow-x: auto; }
    table { width: 100%; border-collapse: collapse; }
    th { text-align: left; padding: 14px 16px; background: var(--faint-gray); font-size: 11px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.1em; }
    td { padding: 14px 16px; border-bottom: 1px solid var(--faint-gray); font-size: 14px; }
    tr:hover td { background: rgba(184,149,106,0.03); }

    /* ========== BADGES ========== */
    .badge { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
    .badge-pending { background: #FEF3C7; color: #92400E; }
    .badge-review { background: var(--teal-glow); color: var(--teal); }
    .badge-complete { background: rgba(90,138,94,0.1); color: var(--success); }
    .badge-filed { background: rgba(26,26,26,0.06); color: var(--navy-deep); }

    /* ========== MISC COMPONENTS ========== */
    .video-card { display: flex; gap: 20px; padding: 20px; align-items: center; }
    .video-thumb { width: 160px; height: 90px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 32px; flex-shrink: 0; cursor: pointer; }
    .video-info h4 { margin-bottom: 4px; }
    .video-status { font-size: 13px; }
    .progress-bar { width: 100%; height: 8px; background: var(--light-gray); border-radius: 4px; overflow: hidden; margin-top: 8px; }
    .progress-fill { height: 100%; background: var(--success); border-radius: 4px; transition: width 0.5s; }
    .alert { padding: 16px 20px; border-radius: 14px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }
    .alert-info { background: var(--teal-glow); border: 1px solid var(--teal-light); }
    .alert-success { background: rgba(90,138,94,0.06); border: 1px solid rgba(90,138,94,0.15); }
    .alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; }
    .alert-icon { font-size: 20px; flex-shrink: 0; }
    .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,26,26,0.5); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 200; }
    .modal { background: white; border-radius: var(--radius); padding: 40px; max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; }
    .modal h2 { margin-bottom: 16px; }
    .payment-form { max-width: 500px; margin: 0 auto; }
    .card-element { padding: 14px; border: 1px solid var(--light-gray); border-radius: 14px; background: white; }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--navy-deep);
      color: rgba(255,255,255,0.35);
      padding: 64px 56px 36px;
    }
    .footer a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; font-size: 14px; }
    .footer a:hover { color: var(--mint); }
    .footer-col h4 {
      color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.15em;
      text-transform: uppercase; font-weight: 700; margin-bottom: 20px;
      font-family: 'Open Sans', sans-serif;
    }

    /* ========== NOTIFICATION BELL ========== */
    .notif-bell { position: relative; cursor: pointer; background: none; border: none; color: var(--text-mid); font-size: 20px; padding: 8px; transition: color 0.3s; }
    .notif-bell:hover { color: var(--navy); }
    .notif-bell .notif-count { position: absolute; top: 2px; right: 2px; background: var(--danger); color: white; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

    /* ========== FAQ (Accordion) ========== */
    .faq-item {
      border-bottom: 1px solid var(--light-gray);
      overflow: hidden;
    }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 28px 0; cursor: pointer; transition: color 0.3s;
      background: none; border: none; width: 100%;
      text-align: left; font-family: 'Open Sans', sans-serif;
    }
    .faq-question:hover h3 { color: var(--teal); }
    .faq-item h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--navy); transition: color 0.3s; pointer-events: none; margin-bottom: 0; }
    .faq-toggle {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--faint-gray);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0; pointer-events: none;
      font-size: 18px; color: var(--navy); font-weight: 300;
    }
    .faq-item.open .faq-toggle { background: var(--teal); color: var(--white); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p { padding: 0 0 28px; color: var(--text-mid); font-weight: 300; line-height: 1.85; font-size: 15px; }
    /* Legacy FAQ styles for non-accordion use */
    .faq-item-legacy {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: 16px; padding: 28px 32px;
      margin-bottom: 12px; transition: all 0.3s;
    }
    .faq-item-legacy:hover { border-color: var(--teal-light); }
    .faq-item-legacy p { color: var(--text-mid); font-weight: 300; line-height: 1.8; }

    /* ========== ANIMATIONS ========== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollPulse {
      0% { top: -100%; }
      100% { top: 100%; }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .fade-in { animation: fadeIn 0.4s ease-out; }
    .loading-spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: white; animation: spin 0.8s ease-in-out infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }

    .reveal {
      opacity: 0; transform: translateY(48px);
      transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0; transform: translateX(-60px);
      transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0; transform: translateX(60px);
      transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .reveal-scale {
      opacity: 0; transform: scale(0.92);
      transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }
    /* Stagger children */
    .stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
    .stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
    .stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
    .stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
    .stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
    .stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }

    /* ========== SKIP TO CONTENT ========== */
    .skip-link {
      position: absolute; top: -100px; left: 16px;
      background: var(--navy); color: var(--white); padding: 12px 24px;
      border-radius: 100px; font-size: 14px; font-weight: 600;
      z-index: 200; text-decoration: none; transition: top 0.2s;
    }
    .skip-link:focus { top: 16px; }

    /* ========== HAMBURGER MENU ========== */
    /* Mobile menu toggle button — morphing SVG (21st.dev MenuToggle pattern) */
    .menu-toggle-btn {
      display: none;
      width: 40px; height: 40px; padding: 0;
      background: transparent;
      border: 1px solid rgba(11,18,32,0.12);
      border-radius: 10px;
      cursor: pointer;
      align-items: center; justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      position: relative; z-index: 110;
    }
    .menu-toggle-btn:hover { background: rgba(11,18,32,0.04); border-color: rgba(11,18,32,0.18); }
    .menu-toggle-svg {
      width: 22px; height: 22px;
      fill: none; stroke: var(--navy);
      stroke-width: 2.5;
      stroke-linecap: round; stroke-linejoin: round;
      transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
    }
    .menu-toggle-btn.open .menu-toggle-svg { transform: rotate(-45deg); }
    .menu-toggle-svg .path-morph {
      transition: stroke-dasharray 0.6s cubic-bezier(0.22,1,0.36,1),
                  stroke-dashoffset 0.6s cubic-bezier(0.22,1,0.36,1);
      stroke-dasharray: 12 63;
    }
    .menu-toggle-btn.open .menu-toggle-svg .path-morph {
      stroke-dasharray: 20 300;
      stroke-dashoffset: -32.42px;
    }
    /* Mobile sheet — slides in from left (matches Sheet side="left" in 21st.dev simple-header) */
    .mobile-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
      z-index: 99; opacity: 0;
      transition: opacity 0.3s;
    }
    .mobile-overlay.show { display: block; opacity: 1; }
    .mobile-menu {
      position: fixed; top: 0; left: -340px;
      width: 320px; max-width: 80vw;
      height: 100vh; height: 100dvh; /* dvh so pinned items aren't hidden behind mobile browser chrome */
      overflow-y: auto;
      background: rgba(247,248,250,0.95);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      z-index: 100;
      padding: 80px 20px 24px;
      transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 8px 0 30px rgba(0,0,0,0.1);
      display: flex; flex-direction: column; gap: 4px;
      border-right: 1px solid rgba(228,231,236,0.5);
    }
    .mobile-menu.open { left: 0; }
    .mobile-menu-link {
      display: block; width: 100%;
      padding: 12px 16px; border-radius: 10px;
      font-size: 14px; font-weight: 500; color: var(--text-mid);
      background: none; border: none; text-align: left; cursor: pointer;
      font-family: 'Open Sans', sans-serif;
      transition: background 0.2s, color 0.2s;
    }
    .mobile-menu-link:hover { background: rgba(11,18,32,0.04); color: var(--navy); }
    .mobile-menu-footer {
      margin-top: auto;
      padding-top: 16px; border-top: 1px solid rgba(228,231,236,0.5);
      display: flex; flex-direction: column; gap: 8px;
    }
    .mobile-menu-link.outline {
      border: 1px solid rgba(11,18,32,0.12);
      color: var(--navy); font-weight: 600;
      text-align: center;
    }
    .mobile-menu-link.cta-mobile {
      background: var(--navy); color: var(--white);
      text-align: center; border-radius: 10px;
      font-weight: 600;
    }
    .mobile-menu-link.cta-mobile:hover { background: var(--teal); color: var(--white); }
    /* Guest account actions — placed directly under the nav links (not pinned to the very
       bottom) so signing in is immediately visible and easy to reach. */
    .mobile-menu-account {
      margin-top: 12px; padding-top: 16px;
      border-top: 1px solid rgba(228,231,236,0.6);
      display: flex; flex-direction: column; gap: 10px;
    }
    .mobile-menu-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-light);
      padding: 0 16px; margin-bottom: 2px;
    }
    .mobile-menu-account .mobile-menu-link { padding: 14px 16px; font-size: 15px; }

    /* ========== LOADING SKELETON ========== */
    @keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
    .skeleton {
      background: linear-gradient(90deg, var(--faint-gray) 25%, var(--light-gray) 50%, var(--faint-gray) 75%);
      background-size: 800px 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 8px;
    }
    .skeleton-text { height: 14px; margin-bottom: 10px; width: 80%; }
    .skeleton-title { height: 28px; margin-bottom: 16px; width: 60%; }
    .skeleton-card { height: 120px; border-radius: var(--radius); margin-bottom: 16px; }
    .skeleton-stat { height: 80px; border-radius: var(--radius); }
    .skeleton-row { height: 48px; margin-bottom: 8px; border-radius: 8px; }

    /* ========== PASSWORD STRENGTH ========== */
    .pw-strength-bar { height: 4px; border-radius: 4px; background: var(--light-gray); margin-top: 6px; overflow: hidden; }
    .pw-strength-fill { height: 100%; border-radius: 4px; transition: all 0.3s; }
    .pw-strength-fill.weak { width: 25%; background: var(--danger); }
    .pw-strength-fill.fair { width: 50%; background: var(--warning); }
    .pw-strength-fill.good { width: 75%; background: var(--teal); }
    .pw-strength-fill.strong { width: 100%; background: var(--success); }
    .pw-strength-label { font-size: 11px; margin-top: 4px; font-weight: 500; }

    /* ========== FORM VALIDATION STATES ========== */
    .form-input.valid, .form-select.valid { border-color: var(--success); }
    .field-check { font-size: 13px; margin-top: 3px; color: var(--success); }

    /* ---------- "Fix this box" validation, built for very low computer literacy ----------
       When a form refuses to move on, three things have to happen or the user is simply stuck:
       the unfinished box must be unmissable, the page must carry them to it, and the message
       must still be on screen when they get there. These styles do the first part. */
    .form-input.invalid, .form-select.invalid, .form-textarea.invalid {
      border: 2px solid var(--danger); background: #FFF6F6;
    }
    /* Red halo we flash around a box when we jump the user to it, so their eye lands on the
       right one instead of scanning a page of identical rectangles. */
    @keyframes fixPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
      25%, 75% { box-shadow: 0 0 0 7px rgba(220,38,38,0.30); }
    }
    .fix-pulse { animation: fixPulse 1.5s ease-in-out 2; border-radius: 12px; }

    /* Checklist banner at the top of a form after a failed attempt: names every box that is
       still empty, in plain English, and each name is clickable. */
    .fix-banner { background: #FFF6F6; border: 2px solid var(--danger); border-radius: 14px; padding: 20px 22px; margin-bottom: 22px; scroll-margin-top: 110px; }
    .fix-banner-title { display: flex; align-items: center; gap: 11px; color: var(--danger); font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
    .fix-banner-badge { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--danger); color: #fff; font-size: 17px; font-weight: 700; line-height: 28px; text-align: center; }
    .fix-banner-sub { color: var(--text-mid); font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
    .fix-banner ol { margin: 0; padding-left: 24px; }
    .fix-banner li { margin-bottom: 9px; font-size: 15px; line-height: 1.5; color: var(--text-mid); }
    .fix-banner li button { background: none; border: none; padding: 0; font: inherit; font-weight: 700; color: var(--danger); text-decoration: underline; cursor: pointer; text-align: left; }
    .fix-banner li button:hover { color: #A81B1B; }

    /* Nav bar holds 7 items; below ~1080px they overflow the brand, so hand off
       to the drawer early. (Drawer itself is a 320px panel — fine at tablet widths.) */
    @media (max-width: 1080px) {
      .nav-links { display: none; }
      .menu-toggle-btn { display: inline-flex; }
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      .nav-inner { padding: 0 20px; height: 70px; }
      .nav-logo-img { height: 42px; width: 42px; }
      .nav-logo { font-size: 17px; gap: 12px; }
      .nav-links { display: none; }
      .menu-toggle-btn { display: inline-flex; }
      .hero { padding: 140px 24px 80px; min-height: auto; }
      .hero h1 { font-size: 34px; }
      .hero-sub { font-size: 16px; }
      .hero-stats { flex-direction: column; gap: 1px; width: 100%; max-width: 300px; }
      .hero-stat { min-width: 0; }
      .hero-actions { flex-direction: column; align-items: center; width: 100%; }
      .hero-actions .btn-primary, .hero-actions .btn-outline, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
      .bento-grid { grid-template-columns: 1fr; }
      .bento-card.span-2 { grid-column: span 1; }
      .process-flow { flex-wrap: wrap; gap: 8px; }
      .pf-line { display: none; }
      .trust-bar { padding: 60px 24px; }
      .trust-inner { grid-template-columns: 1fr; gap: 48px; }
      .trust-stats-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .final-cta { padding: 100px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .dash-stats { grid-template-columns: repeat(2, 1fr); }
      .section { padding: 60px 0; }
      .card { padding: 24px; }
      .card-grid { grid-template-columns: 1fr; }
      .pricing-amount { font-size: 36px; }
      .modal { padding: 24px; max-width: 95%; }
      .btn-group { flex-direction: column; }
      .table-wrap { font-size: 13px; }
      .table-wrap td, .table-wrap th { padding: 10px 8px; }
      .footer { padding: 48px 24px 28px; }
      .footer > div > div:first-child { grid-template-columns: 1fr !important; gap: 32px !important; }
      .stepper { flex-wrap: wrap; }
      .step-line { width: 20px; }
      .step-wrapper { min-width: 50px; }
      .step-label { font-size: 10px; max-width: 60px; }
      .section-label { justify-content: center; }
    }
    @media (max-width: 480px) {
      .hero { padding: 120px 20px 60px; }
      .hero h1 { font-size: 28px; }
      .hero-stats { max-width: 100%; }
      .dash-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
      .stat-card { padding: 16px; }
      .stat-value { font-size: 24px; }
    }
    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1; transform: none;
      }
    }

    /* ================================================================ */
    /* ============ HOMEPAGE V2 (Finpay-direction redesign) ============ */
    /* ============ All styles scoped under .hp to avoid       ======== */
    /* ============ conflicts with the rest of the application ======== */
    /* ================================================================ */
    .hp {
      font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      line-height: 1.6;
      font-weight: 400;
      --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
      --hp-radius: 20px;
      --hp-card: #FFFFFF;
      --hp-border: #E6E8EE;
      --hp-border-soft: #EFF1F5;
      --hp-ink: #0B1220;
      --hp-text-mid: #5A6072;
      --hp-text-light: #8B90A0;
      --hp-teal-deep: #0E4E47;
      --hp-shadow-card: 0 1px 2px rgba(11,18,32,0.04), 0 8px 24px rgba(11,18,32,0.04);
      --hp-shadow-lift: 0 8px 32px rgba(11,18,32,0.08);
      --hp-shadow-float: 0 24px 60px rgba(9,26,61,0.18);
    }
    .hp h1, .hp h2, .hp h3, .hp h4 {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      letter-spacing: -0.02em;
      color: var(--hp-ink);
      font-weight: 700;
      line-height: 1.1;
    }
    .hp-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
    .hp-eyebrow {
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--hp-teal-deep);
      margin-bottom: 14px;
    }
    .hp-section-title {
      font-size: clamp(28px, 3.4vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--hp-ink);
      margin-bottom: 14px;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    }
    .hp-section-sub {
      font-size: 15px; line-height: 1.7; color: var(--hp-text-mid);
      max-width: 560px;
    }
    .hp-card-surface {
      background: var(--hp-card);
      border-radius: var(--hp-radius);
      border: 1px solid var(--hp-border-soft);
      box-shadow: var(--hp-shadow-card);
    }
    .hp-btn-primary {
      padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
      color: #FFFFFF; background: var(--hp-teal-deep);
      border: 1px solid var(--hp-teal-deep);
      transition: all 0.2s var(--hp-ease);
      cursor: pointer;
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Open Sans', sans-serif;
    }
    .hp-btn-primary:hover {
      background: var(--hp-ink); border-color: var(--hp-ink);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(11,18,32,0.18);
    }
    .hp-btn-primary svg { transition: transform 0.25s var(--hp-ease); }
    .hp-btn-primary:hover svg { transform: translate(2px, -2px); }

    /* ---------- HERO ---------- */
    .hp-hero { padding: 64px 0 80px; position: relative; }
    .hp-hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(to right, rgba(9,26,61,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(9,26,61,0.04) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
      pointer-events: none;
    }
    .hp-hero-inner {
      max-width: 1180px; margin: 0 auto; padding: 0 32px;
      position: relative;
    }
    .hp-hero-headline { margin-bottom: 36px; max-width: 1100px; }
    .hp-hero-grid {
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
      align-items: start;
    }
    .hp-hero h1 {
      font-size: clamp(38px, 5vw, 60px);
      line-height: 1.08;
      letter-spacing: -0.035em;
      font-weight: 700;
      color: var(--hp-ink);
      margin-bottom: 0;
    }
    .hp-hero h1 .hp-accent { color: var(--hp-teal-deep); }
    .hp-hero-sub {
      font-size: 15px; line-height: 1.7;
      color: var(--hp-text-mid);
      max-width: 460px;
      margin-bottom: 28px;
    }
    .hp-hero-form {
      display: flex; gap: 8px;
      background: #FFFFFF;
      border: 1px solid var(--hp-border);
      border-radius: 12px;
      padding: 6px;
      max-width: 440px;
      box-shadow: var(--hp-shadow-card);
      margin-bottom: 24px;
    }
    .hp-hero-form input {
      flex: 1; border: none; outline: none; background: transparent;
      padding: 10px 12px; font-size: 14px; font-family: 'Open Sans', sans-serif;
      color: var(--hp-ink);
    }
    .hp-hero-form input::placeholder { color: var(--hp-text-light); }
    .hp-hero-form button {
      background: var(--hp-teal-deep); color: #FFFFFF;
      border: none; border-radius: 8px;
      padding: 10px 18px; font-size: 14px; font-weight: 600;
      cursor: pointer; font-family: 'Open Sans', sans-serif;
      display: inline-flex; align-items: center; gap: 6px;
      transition: all 0.2s var(--hp-ease);
    }
    .hp-hero-form button:hover { background: var(--hp-ink); }
    .hp-hero-trust {
      display: flex; align-items: center; gap: 24px;
      flex-wrap: wrap;
      color: var(--hp-text-light);
      font-size: 12.5px; font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .hp-hero-trust .hp-item { display: inline-flex; align-items: center; gap: 8px; }
    .hp-hero-trust .hp-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--hp-border); }
    .hp-stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }

    .hp-card-wrap { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; perspective: 1200px; }
    .hp-case-card {
      background: #FFFFFF; border-radius: 18px;
      padding: 22px;
      box-shadow: var(--hp-shadow-float);
      width: 100%; max-width: 380px;
      border: 1px solid var(--hp-border-soft);
      transform: rotate(-1.5deg) translateY(-12px);
      transition: transform 0.5s var(--hp-ease);
      position: relative; z-index: 2;
    }
    .hp-case-card:hover { transform: rotate(0deg) translateY(-18px); }
    .hp-case-card-header {
      display: flex; justify-content: space-between; align-items: flex-start;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--hp-border-soft);
      margin-bottom: 16px;
    }
    .hp-case-id { font-size: 11px; color: var(--hp-text-light); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
    .hp-case-name { font-size: 15px; font-weight: 700; color: var(--hp-ink); font-family: 'Plus Jakarta Sans', sans-serif; }
    .hp-badge {
      font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
      padding: 5px 10px; border-radius: 100px;
      background: rgba(40,157,143,0.12); color: var(--hp-teal-deep);
      display: inline-flex; align-items: center; gap: 5px;
    }
    .hp-live-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
      box-shadow: 0 0 0 0 rgba(40,157,143,0.6);
      animation: hp-pulse 2s infinite;
    }
    @keyframes hp-pulse {
      0% { box-shadow: 0 0 0 0 rgba(40,157,143,0.6); }
      70% { box-shadow: 0 0 0 8px rgba(40,157,143,0); }
      100% { box-shadow: 0 0 0 0 rgba(40,157,143,0); }
    }
    .hp-case-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; font-size: 13px;
    }
    .hp-case-row + .hp-case-row { border-top: 1px solid var(--hp-border-soft); }
    .hp-case-row .hp-label { color: var(--hp-text-mid); }
    .hp-case-row .hp-value { color: var(--hp-ink); font-weight: 600; }
    .hp-case-progress {
      margin-top: 14px; padding: 14px;
      background: var(--off-white); border-radius: 12px;
    }
    .hp-case-progress-label {
      display: flex; justify-content: space-between;
      font-size: 11px; font-weight: 600; color: var(--hp-text-mid);
      letter-spacing: 0.04em; text-transform: uppercase;
      margin-bottom: 8px;
    }
    .hp-case-progress-bar {
      height: 6px; background: var(--hp-border); border-radius: 100px; overflow: hidden;
    }
    .hp-case-progress-fill {
      height: 100%; width: 60%;
      background: linear-gradient(90deg, var(--teal), var(--mint));
      border-radius: 100px;
    }

    .hp-mini-card {
      position: absolute;
      background: #FFFFFF; border-radius: 14px;
      padding: 14px 16px;
      box-shadow: var(--hp-shadow-lift);
      border: 1px solid var(--hp-border-soft);
      display: flex; align-items: center; gap: 12px;
      font-size: 12.5px; z-index: 1;
    }
    .hp-mini-card .hp-mini-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--hp-ink); color: var(--mint);
      display: grid; place-items: center;
    }
    .hp-mini-card .hp-mini-label { color: var(--hp-text-mid); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; margin-bottom: 2px; }
    .hp-mini-card .hp-mini-value { color: var(--hp-ink); font-weight: 700; font-size: 13.5px; font-family: 'Plus Jakarta Sans', sans-serif; }
    .hp-mini-attorney { top: 80%; left: -16px; transform: rotate(-3deg); }
    .hp-mini-hearing { top: 8%; right: -8px; transform: rotate(3deg); }

    /* ---------- FEATURE CARD ---------- */
    .hp-feature-section { padding: 40px 0 24px; }
    .hp-feature-card {
      padding: 56px 56px 48px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    }
    .hp-feature-grid {
      grid-column: 1 / -1;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
      margin-top: 12px;
    }
    .hp-feature-item .hp-feat-icon {
      width: 40px; height: 40px;
      display: grid; place-items: center;
      background: var(--off-white);
      border-radius: 10px;
      color: var(--hp-teal-deep);
      margin-bottom: 16px;
    }
    .hp-feature-item h4 { font-size: 17px; margin-bottom: 8px; color: var(--hp-ink); }
    .hp-feature-item p { font-size: 13.5px; color: var(--hp-text-mid); line-height: 1.7; }

    /* ---------- WHY US ---------- */
    .hp-whyus { padding: 64px 0 24px; }
    .hp-whyus-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
    .hp-whyus-head .hp-eyebrow { display: block; margin-bottom: 12px; }
    .hp-whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .hp-whyus-card {
      padding: 36px 36px 32px;
      min-height: 220px;
      display: flex; flex-direction: column; justify-content: space-between;
      transition: transform 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease);
    }
    .hp-whyus-card:hover { transform: translateY(-3px); box-shadow: var(--hp-shadow-lift); }
    .hp-whyus-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(64px, 7vw, 96px);
      font-weight: 700; line-height: 0.95;
      letter-spacing: -0.04em;
      color: var(--hp-teal-deep);
      margin-bottom: 8px;
    }
    .hp-whyus-number .hp-plus { color: var(--teal); }
    .hp-whyus-label { font-size: 15px; font-weight: 600; color: var(--hp-ink); margin-bottom: 4px; }
    .hp-whyus-desc { font-size: 13.5px; color: var(--hp-text-mid); line-height: 1.6; }
    .hp-whyus-card.hp-split { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
    .hp-whyus-illus {
      width: 120px; height: 110px;
      background: var(--off-white);
      border-radius: 16px;
      display: grid; place-items: center;
      position: relative; overflow: hidden;
    }
    .hp-whyus-arrow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 80%; display: flex; justify-content: space-between; align-items: center;
    }
    .hp-whyus-arrow .hp-pill {
      width: 30px; height: 30px; border-radius: 50%;
      background: #FFFFFF; border: 1px solid var(--hp-border);
      display: grid; place-items: center;
      color: var(--hp-ink);
    }
    .hp-whyus-arrow .hp-pill.hp-teal { background: var(--hp-teal-deep); color: #FFFFFF; border-color: var(--hp-teal-deep); }
    .hp-whyus-arrow .hp-arrow-line { flex: 1; height: 1px; background: var(--hp-border); margin: 0 4px; position: relative; }
    .hp-whyus-arrow .hp-arrow-line::after {
      content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%) rotate(45deg);
      width: 6px; height: 6px; border-right: 1.5px solid var(--hp-text-light); border-top: 1.5px solid var(--hp-text-light);
    }

    /* ---------- COVERAGE ---------- */
    .hp-coverage { padding: 40px 0 24px; }
    .hp-coverage-card { padding: 44px 48px 40px; }
    .hp-coverage-header {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end;
      margin-bottom: 28px;
    }
    .hp-coverage-stat {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 56px; line-height: 1; font-weight: 700; color: var(--hp-ink);
      letter-spacing: -0.03em;
    }
    .hp-coverage-stat span { color: var(--hp-teal-deep); }
    .hp-coverage-stat-sub { font-size: 13px; color: var(--hp-text-mid); margin-top: 8px; }
    .hp-county-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
    .hp-county-chip {
      padding: 10px 14px;
      background: var(--off-white);
      border: 1px solid var(--hp-border-soft);
      border-radius: 10px;
      font-size: 12.5px; color: var(--hp-text-mid); font-weight: 500;
      display: flex; align-items: center; gap: 8px;
      transition: all 0.2s var(--hp-ease);
      cursor: default;
    }
    .hp-county-chip:hover {
      background: #FFFFFF; border-color: var(--teal);
      color: var(--hp-ink); transform: translateY(-1px);
      box-shadow: var(--hp-shadow-card);
    }
    .hp-county-chip .hp-tick {
      width: 14px; height: 14px; border-radius: 50%;
      background: rgba(40,157,143,0.15);
      display: grid; place-items: center;
      color: var(--hp-teal-deep); flex-shrink: 0;
    }
    .hp-county-chip.hp-more { background: var(--hp-ink); color: var(--mint); border-color: var(--hp-ink); }

    /* ---------- DARK STEPS ---------- */
    .hp-steps { padding: 48px 0; }
    .hp-steps-card {
      background: var(--navy);
      border-radius: var(--hp-radius);
      padding: 64px 56px;
      color: #FFFFFF;
      position: relative; overflow: hidden;
    }
    .hp-steps-card::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(40,157,143,0.18), transparent 60%),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(115,244,191,0.06), transparent 60%);
      pointer-events: none;
    }
    .hp-steps-head { max-width: 540px; margin-bottom: 40px; position: relative; }
    .hp-steps-head .hp-eyebrow { color: var(--mint); }
    .hp-steps-head h2 {
      color: #FFFFFF;
      font-size: clamp(28px, 3.2vw, 38px); line-height: 1.15;
      letter-spacing: -0.025em;
    }
    .hp-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
    @media (max-width: 1100px) { .hp-steps-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 900px) { .hp-vsprose-grid { grid-template-columns: 1fr !important; gap: 24px !important; } }
    @media (max-width: 680px) { .hp-whyfam-top { grid-template-columns: 1fr !important; gap: 20px !important; text-align: center; } }
    .hp-step-tile {
      padding: 28px 24px 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      position: relative; overflow: hidden;
      transition: all 0.3s var(--hp-ease);
      cursor: default;
    }
    .hp-step-tile:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(115,244,191,0.3);
      transform: translateY(-3px);
    }
    .hp-step-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 120px; font-weight: 700; line-height: 1;
      letter-spacing: -0.06em;
      color: rgba(255,255,255,0.06);
      position: absolute; top: 8px; right: 16px;
      pointer-events: none;
    }
    .hp-step-tile h4 { color: #FFFFFF; font-size: 16px; margin-bottom: 8px; position: relative; }
    .hp-step-tile p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; position: relative; }

    /* ---------- MISSION ---------- */
    .hp-mission { padding: 80px 0 56px; text-align: center; }
    .hp-mission .hp-eyebrow { display: inline-block; }
    .hp-mission h2 {
      font-size: clamp(30px, 3.6vw, 44px);
      max-width: 720px; margin: 0 auto 16px;
      line-height: 1.1;
    }
    .hp-mission > p {
      font-size: 15px; color: var(--hp-text-mid); line-height: 1.7;
      max-width: 560px; margin: 0 auto 48px;
    }
    .hp-mission-stats { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
    .hp-mission-stat .hp-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 48px; font-weight: 700; line-height: 1;
      color: var(--hp-ink); letter-spacing: -0.025em;
      margin-bottom: 6px;
    }
    .hp-mission-stat .hp-num span { color: var(--hp-teal-deep); }
    .hp-mission-stat .hp-lbl { font-size: 13px; color: var(--hp-text-mid); }

    /* ---------- FAQ ---------- */
    .hp-faq { padding: 40px 0 24px; }
    .hp-faq-card { padding: 48px 56px; }
    .hp-faq-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 32px; align-items: end; }
    .hp-faq-list { border-top: 1px solid var(--hp-border-soft); }
    .hp-faq-item { border-bottom: 1px solid var(--hp-border-soft); }
    .hp-faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      padding: 22px 0;
      display: flex; justify-content: space-between; align-items: center; gap: 24px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px; font-weight: 600; color: var(--hp-ink);
      text-align: left;
      transition: color 0.2s var(--hp-ease);
    }
    .hp-faq-q:hover { color: var(--hp-teal-deep); }
    .hp-faq-toggle {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--off-white); color: var(--hp-ink);
      display: grid; place-items: center; flex-shrink: 0;
      font-size: 14px; font-weight: 600;
      transition: all 0.3s var(--hp-ease);
    }
    .hp-faq-item.hp-open .hp-faq-toggle {
      background: var(--hp-teal-deep); color: #FFFFFF;
      transform: rotate(45deg);
    }
    .hp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--hp-ease), padding 0.3s var(--hp-ease); }
    .hp-faq-item.hp-open .hp-faq-a { max-height: 760px; padding: 0 0 22px 0; }
    .hp-faq-a p { font-size: 14px; color: var(--hp-text-mid); line-height: 1.75; max-width: 720px; }

    /* ---------- CTA BAR ---------- */
    .hp-cta { padding: 40px 0 64px; }
    .hp-cta-bar {
      background: var(--navy);
      border-radius: var(--hp-radius);
      padding: 44px 48px;
      display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
      position: relative; overflow: hidden;
    }
    .hp-cta-bar::before {
      content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
      background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(40,157,143,0.2), transparent 60%);
      pointer-events: none;
    }
    .hp-cta-eyebrow {
      font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--mint);
      margin-bottom: 10px; position: relative;
    }
    .hp-cta-bar h2 {
      color: #FFFFFF;
      font-size: clamp(24px, 2.8vw, 32px);
      line-height: 1.15; max-width: 480px;
      margin-bottom: 10px; position: relative;
    }
    .hp-cta-bar p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 480px; position: relative; }
    .hp-cta-actions { display: flex; gap: 10px; position: relative; }
    .hp-cta-actions .hp-btn-cta-primary {
      background: var(--teal); color: #FFFFFF;
      padding: 12px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
      border: none; cursor: pointer; font-family: 'Open Sans', sans-serif;
      display: inline-flex; align-items: center; gap: 6px;
      transition: all 0.2s var(--hp-ease);
    }
    .hp-cta-actions .hp-btn-cta-primary:hover { background: var(--mint); color: var(--navy); }
    .hp-cta-actions .hp-btn-cta-secondary {
      background: rgba(255,255,255,0.08); color: #FFFFFF;
      padding: 12px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
      border: 1px solid rgba(255,255,255,0.15); cursor: pointer; font-family: 'Open Sans', sans-serif;
      display: inline-flex; align-items: center; gap: 6px;
      transition: all 0.2s var(--hp-ease);
    }
    .hp-cta-actions .hp-btn-cta-secondary:hover { background: rgba(255,255,255,0.14); }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 960px) {
      .hp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hp-hero-headline { margin-bottom: 24px; }
      .hp-card-wrap { max-width: 420px; margin: 0 auto; }
      .hp-feature-card { padding: 40px 32px; grid-template-columns: 1fr; gap: 32px; }
      .hp-feature-grid { grid-template-columns: 1fr; gap: 28px; }
      .hp-whyus-grid { grid-template-columns: 1fr; }
      .hp-coverage-header { grid-template-columns: 1fr; gap: 24px; }
      .hp-steps-card { padding: 40px 28px; }
      .hp-steps-grid { grid-template-columns: 1fr; }
      .hp-step-num { font-size: 96px; }
      .hp-mission-stats { gap: 40px; }
      .hp-faq-card { padding: 36px 28px; }
      .hp-faq-head { grid-template-columns: 1fr; gap: 20px; }
      .hp-cta-bar { grid-template-columns: 1fr; padding: 36px 28px; }
    }
    @media (max-width: 560px) {
      .hp-container, .hp-hero-inner { padding-left: 20px; padding-right: 20px; }
      .hp-hero { padding: 40px 0 56px; }
      .hp-hero-form { flex-direction: column; padding: 8px; }
      .hp-hero-form button { width: 100%; justify-content: center; }
      .hp-mission-stats { flex-direction: column; gap: 24px; }
    }

    /* =================================================================== */
    /* ============ SITE-WIDE REFRESH (v2 — Finpay aesthetic) ============ */
    /* Lifts non-homepage pages (Register, Login, Intake, Pricing,         */
    /* Payment, Portal, Admin) toward the cleaner homepage look. Scoped    */
    /* =================================================================== */

    /* Page background and base type — applied to all <main> children */
    #main-content > div:not(.hp) {
      background: var(--off-white);
    }

    /* Modernize section titles in non-homepage pages */
    #main-content > div:not(.hp) .section-title,
    #main-content > div:not(.hp) h2.section-title,
    #main-content > div:not(.hp) h3 {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--navy);
    }

    /* Cleaner cards — flat, soft border, subtle shadow */
    #main-content > div:not(.hp) .card {
      background: #FFFFFF;
      border-radius: 16px;
      border: 1px solid #E6E8EE;
      box-shadow: 0 1px 2px rgba(11,18,32,0.04), 0 4px 16px rgba(11,18,32,0.03);
      transition: box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }
    #main-content > div:not(.hp) .card:hover {
      box-shadow: 0 1px 2px rgba(11,18,32,0.04), 0 8px 28px rgba(11,18,32,0.06);
    }

    /* Refreshed primary/accent buttons */
    #main-content > div:not(.hp) .btn-primary,
    #main-content > div:not(.hp) .btn-accent {
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
      border-radius: 10px;
      padding: 12px 22px;
      transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    }
    #main-content > div:not(.hp) .btn-primary {
      background: var(--navy);
      border-color: var(--navy);
    }
    #main-content > div:not(.hp) .btn-primary:hover {
      background: var(--teal); border-color: var(--teal);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(40,157,143,0.22);
    }
    #main-content > div:not(.hp) .btn-accent {
      background: var(--teal);
      border-color: var(--teal);
    }
    #main-content > div:not(.hp) .btn-accent:hover {
      background: var(--navy); border-color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(11,18,32,0.18);
    }
    #main-content > div:not(.hp) .btn-outline {
      border-radius: 10px;
      padding: 11px 22px;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
      border: 1px solid rgba(11,18,32,0.15);
      color: var(--navy);
    }
    #main-content > div:not(.hp) .btn-outline:hover {
      background: rgba(11,18,32,0.04);
      border-color: rgba(11,18,32,0.25);
    }

    /* Cleaner form inputs */
    #main-content > div:not(.hp) .form-input,
    #main-content > div:not(.hp) .form-select,
    #main-content > div:not(.hp) .form-textarea {
      border-radius: 10px;
      border: 1px solid #E6E8EE;
      font-size: 14px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    #main-content > div:not(.hp) .form-input:focus,
    #main-content > div:not(.hp) .form-select:focus,
    #main-content > div:not(.hp) .form-textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(40,157,143,0.12);
      outline: none;
    }
    #main-content > div:not(.hp) .form-label {
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      color: var(--navy);
      font-size: 13px;
      letter-spacing: 0;
      text-transform: none;
      margin-bottom: 6px;
    }

    /* Section labels (uppercase eyebrows) */
    #main-content > div:not(.hp) .section-label {
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal-dark, #1E7A6F);
    }

    /* Pricing-page-style stat counters / dashboard stat cards — gentle lift */
    #main-content > div:not(.hp) .stat-card {
      background: #FFFFFF;
      border-radius: 14px;
      border: 1px solid #E6E8EE;
      box-shadow: 0 1px 2px rgba(11,18,32,0.03);
    }
    #main-content > div:not(.hp) .stat-value {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      color: var(--navy);
    }

    /* Tables in admin/portal — cleaner row separation */
    #main-content > div:not(.hp) .table-wrap th {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--navy);
      text-transform: uppercase;
      background: var(--off-white);
      padding: 12px 14px;
    }
    #main-content > div:not(.hp) .table-wrap td {
      padding: 12px 14px;
      border-top: 1px solid #EFF1F5;
      font-size: 14px;
    }

    /* Modal — slightly softer surface */
    .modal {
      border-radius: 18px;
      border: 1px solid #E6E8EE;
      box-shadow: 0 24px 60px rgba(11,18,32,0.18);
    }
    .modal h2, .modal h3 {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      color: var(--navy);
    }

    /* Footer surface — slight warmth, logo readable */
    .footer { background: var(--navy-deep, #060F24); padding-top: 56px; padding-bottom: 32px; }
    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      color: #FFFFFF;
      margin-bottom: 14px;
      text-transform: uppercase;
    }
    .footer-col a {
      color: rgba(255,255,255,0.65);
      font-size: 13px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--mint); }

    /* =================================================================== */
    /* ============ CLIENT PORTAL v2 — JOURNEY + FAQ ===================== */
    /* =================================================================== */

    /* Vertical case-journey tracker */
    .journey-tracker {
      position: relative;
      display: flex; flex-direction: column;
      padding-left: 4px;
    }
    .journey-step {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 16px;
      align-items: flex-start;
      padding: 10px 0;
      position: relative;
    }
    /* connecting vertical line between markers */
    .journey-step:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 17px;
      top: 36px;
      bottom: -4px;
      width: 2px;
      background: var(--light-gray, #E6E8EE);
    }
    .journey-step.journey-done:not(:last-child)::before {
      background: var(--teal);
    }
    .journey-step-marker {
      width: 36px; height: 36px; border-radius: 50%;
      display: grid; place-items: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
      position: relative; z-index: 1;
    }
    .journey-done .journey-step-marker {
      background: var(--teal);
      color: #FFFFFF;
    }
    .journey-current .journey-step-marker {
      background: var(--teal);
      color: #FFFFFF;
      box-shadow: 0 0 0 4px rgba(40,157,143,0.18);
      animation: journeyPulse 2s ease-in-out infinite;
    }
    .journey-locked .journey-step-marker {
      background: var(--off-white, #F7F8FA);
      color: var(--text-light, #8B90A0);
      border: 1px solid var(--light-gray, #E6E8EE);
    }
    @keyframes journeyPulse {
      0%, 100% { box-shadow: 0 0 0 4px rgba(40,157,143,0.18); }
      50% { box-shadow: 0 0 0 8px rgba(40,157,143,0.06); }
    }
    .journey-step-body {
      padding-top: 4px;
      padding-bottom: 6px;
    }
    .journey-step-title {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      font-size: 15.5px;
      letter-spacing: -0.01em;
      color: var(--navy);
      margin-bottom: 2px;
    }
    .journey-locked .journey-step-title {
      color: var(--text-light, #8B90A0);
    }
    .journey-step-desc {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
    }
    .journey-locked .journey-step-desc {
      color: var(--text-light, #8B90A0);
      opacity: 0.85;
    }
    .journey-step-badge {
      display: inline-block;
      margin-top: 8px;
      padding: 2px 10px;
      border-radius: 100px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(40,157,143,0.12);
      color: var(--teal-dark, #1E7A6F);
    }
    .journey-step-badge.journey-done {
      background: rgba(48,184,122,0.12);
      color: var(--success, #30B87A);
    }

    /* Action card (current step CTA) */
    .portal-action-card {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 24px 26px;
      border-left: 4px solid var(--teal);
    }
    .portal-action-icon {
      width: 48px; height: 48px; border-radius: 12px;
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .portal-action-body { flex: 1; }
    .portal-action-body h3 {
      margin: 0 0 6px 0;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: -0.01em;
    }
    .portal-action-body p {
      margin: 0;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* Locked future-step preview card */
    .portal-locked-preview {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 18px;
      background: var(--off-white, #F7F8FA);
      border: 1px solid var(--light-gray, #E6E8EE);
      box-shadow: none;
      opacity: 0.78;
    }
    .portal-locked-preview:hover {
      opacity: 0.95;
      box-shadow: 0 1px 2px rgba(11,18,32,0.04);
    }
    .portal-locked-icon {
      width: 30px; height: 30px; border-radius: 8px;
      background: var(--white, #FFFFFF);
      border: 1px solid var(--light-gray, #E6E8EE);
      color: var(--text-light, #8B90A0);
      display: grid; place-items: center;
      flex-shrink: 0;
    }

    /* FAQ accordion */
    .portal-faq-list {
      border-top: 1px solid var(--light-gray, #E6E8EE);
    }
    .portal-faq-item {
      border-bottom: 1px solid var(--light-gray, #E6E8EE);
    }
    .portal-faq-q {
      width: 100%;
      background: none; border: none; cursor: pointer;
      padding: 16px 0;
      display: flex; justify-content: space-between; align-items: center; gap: 18px;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      font-weight: 600;
      font-size: 14.5px;
      color: var(--navy);
      text-align: left;
      transition: color 0.2s;
    }
    .portal-faq-q:hover { color: var(--teal-dark, #1E7A6F); }
    .portal-faq-toggle {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--off-white, #F7F8FA);
      color: var(--navy);
      display: grid; place-items: center;
      flex-shrink: 0;
      font-size: 16px; font-weight: 600;
      transition: all 0.25s;
    }
    .portal-faq-item.open .portal-faq-toggle {
      background: var(--teal);
      color: #FFFFFF;
    }
    .portal-faq-a {
      padding: 0 0 18px 0;
      animation: faqFade 0.25s ease;
    }
    .portal-faq-a p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 720px;
    }
    @keyframes faqFade {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  

/* ============================================================================
   STATIC MARKETING PAGE ADDITIONS
   Everything above this line is copied verbatim from the <style> block in
   index.html so a static page and an app page share one design system.
   Only the rules below are specific to the static pages.
   ========================================================================= */

   React, so make sure nothing here is hidden by that rule. */

/* Sticky header wrapper — mirrors .nav so the static header behaves identically. */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  background: rgba(247,248,250,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(228,231,236,0.6);
}
.site-header .nav-inner { max-width: 1220px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between; height: 84px; }
.site-header .nav-logo { text-decoration: none; }
.site-nav { display: flex; gap: 6px; align-items: center; }
.site-nav .nav-link[aria-current="page"] { color: var(--navy); background: rgba(11,18,32,0.05); font-weight: 600; }
@media (max-width: 1000px) {
  .site-header .nav-inner { height: 70px; padding: 0 20px; }
  .site-nav .nav-link:not(.cta) { display: none; }
}

/* Breadcrumbs */
.crumbs { max-width: 1220px; margin: 0 auto; padding: 26px 36px 0; font-size: 13.5px; color: var(--text-light); }
.crumbs a { color: var(--text-mid); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }
.crumbs .sep { margin: 0 9px; color: var(--light-gray); }

/* Page shell — a hero band, then the article on the off-white ground. */
.page-hero { padding: 56px 0 8px; }
.page-hero .container { max-width: 1000px; padding: 0 36px; }
.page-hero h1 { font-family: 'Prata', serif; font-weight: 400; letter-spacing: -0.02em;
  font-size: clamp(32px, 4.2vw, 52px); line-height: 1.12; color: var(--navy);
  margin: 14px 0 18px; text-wrap: balance; }
.page-hero .lede { font-size: 20px; line-height: 1.72; color: var(--text-mid);
  font-weight: 300; margin: 0; max-width: 46em; }

.page-body { padding: 30px 0 90px; }
.page-body .container { max-width: 1000px; padding: 0 36px; }
.page-body .sheet { background: var(--white); border: 1px solid var(--light-gray);
  border-radius: var(--radius); padding: 52px 60px 56px; }
.page-body h2 { font-family: 'Prata', serif; font-weight: 400; letter-spacing: -0.02em;
  font-size: clamp(23px, 2.6vw, 31px); line-height: 1.28; color: var(--navy);
  margin: 46px 0 14px; text-wrap: balance; }
.page-body h2:first-child { margin-top: 0; }
.page-body h3 { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 18px;
  letter-spacing: 0; color: var(--navy); margin: 32px 0 10px; }
.page-body p { margin: 0 0 18px; }
.page-body ul, .page-body ol { margin: 0 0 18px; padding-left: 24px; }
.page-body li { margin-bottom: 10px; }
.page-body li::marker { color: var(--teal); }
.page-body strong { font-weight: 600; color: var(--navy); }

/* Callouts */
.callout { background: var(--faint-gray); border: 1px solid var(--light-gray);
  border-radius: 14px; padding: 24px 28px; margin: 30px 0; }
.callout > :last-child { margin-bottom: 0; }
.callout.urgent { background: #FDF3F2; border-color: rgba(220,38,38,0.28); }
.callout.urgent strong { color: var(--danger); }

/* Key/value list */
.fact-list { list-style: none; padding: 0; margin: 28px 0; }
.fact-list li { display: flex; gap: 18px; padding: 15px 0; border-top: 1px solid var(--light-gray); margin: 0; }
.fact-list li:last-child { border-bottom: 1px solid var(--light-gray); }
.fact-list .k { flex: 0 0 180px; font-size: 12px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-light); padding-top: 4px; }
.fact-list .v { flex: 1; min-width: 0; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 38px 0 0; }

/* Footer */
.site-footer { background: var(--navy); color: #B8BFD0; padding: 64px 0 36px; font-size: 14.5px; font-weight: 300; }
.site-footer .container { max-width: 1220px; padding: 0 36px; }
.site-footer a { color: #D7DDE9; text-decoration: none; }
.site-footer a:hover { color: var(--mint); }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-cols h4 { font-family: 'Open Sans', sans-serif; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mint); margin: 0 0 16px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 10px; }
.footer-legal { margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13);
  font-size: 12.5px; line-height: 1.7; color: #98A2B8; }
.footer-legal strong { color: #D7DDE9; font-weight: 600; }
.footer-legal p { margin: 0 0 10px; }
.footer-legal p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .page-hero .container, .page-body .container, .crumbs { padding-left: 20px; padding-right: 20px; }
  .page-body .sheet { padding: 32px 24px 38px; border-radius: 16px; }
  .fact-list li { flex-direction: column; gap: 4px; }
  .fact-list .k { flex: none; }
}
