

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  :root {
    --green:    #0D3D28;
    --green-m:  #155237;
    --green-a:  #1E7A50;
    --amber:    #C8873A;
    --amber-lt: #F5EEE4;
    --cream:    #F4F2EC;
    --cream-dk: #E9E6DE;
    --white:    #FFFFFF;
    --ink:      #181C19;
    --body:     #3A4340;
    --muted:    #636E6A;
    --border:   rgba(13,61,40,0.11);
  }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
  }

  /* ── VIEWS ── */
  .view { display: none; }
  .view.active {
    display: block;
    animation: fadeUp .35s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── NAV ── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background-color: #0a2e1e;
    padding: 20px 72px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    display: flex; align-items: center; gap: 18px;
    cursor: pointer; background: none; border: none;
  }
  .nav-mark {
    background: #1c5c46; color: #f4f1ea;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 20px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
  }
  .nav-brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px; letter-spacing: 2px; color: #f4f1ea;
    display: block; line-height: 1.1; font-weight: 600;
  }
  .nav-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px; letter-spacing: 2px; color: #b8c6bf;
    margin-top: 4px; display: block; font-weight: 400;
  }
  .nav-links { display: flex; align-items: center; gap: 42px; }
  .nav-btn {
    background: none; border: none; cursor: pointer;
    color: #d5e2db; font-family: 'Inter', sans-serif;
    font-size: 15px; font-weight: 500;
    transition: opacity 0.2s ease; padding: 0;
  }
  .nav-btn:hover, .nav-btn.active { opacity: 0.7; }
  /* ── Dropdown (Click-stable) ── */
  .nav-dropdown { position: relative; }
  .tools-trigger {
    color: #d5e2db;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    background: none; border: none;
    font-family: 'Inter', sans-serif;
    padding: 0;
    transition: color 0.2s ease;
  }
  .tools-trigger::after {
    content: " ▾";
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 11px;
    vertical-align: middle;
    margin-left: 2px;
  }
  .nav-dropdown.open .tools-trigger::after {
    transform: rotate(180deg);
  }
  .dropdown-panel {
    position: absolute;
    top: 52px; left: -40px;
    width: 360px;
    opacity: 0; transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1000;
  }
  .nav-dropdown.open .dropdown-panel {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .panel-inner {
    background: #f4f1ea;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  }
  .panel-header { margin-bottom: 0; }
  .panel-header span {
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: #6b7d74;
    font-family: 'DM Sans', sans-serif; font-weight: 600;
    display: block;
  }
  .panel-header p {
    margin-top: 8px; font-size: 14px; color: #3b4a44;
    font-family: 'DM Sans', sans-serif; font-weight: 400;
    line-height: 1.5; margin-bottom: 0;
  }
  .panel-links { margin-top: 26px; }
  .panel-link {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 20px 22px; margin-bottom: 14px; width: 100%;
    text-decoration: none; color: #0f3f2f;
    border-radius: 12px;
    background: rgba(15,63,47,0.03);
    cursor: pointer; border: none;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    transition: all 0.25s ease;
  }
  .panel-link:last-child { margin-bottom: 0; }
  .panel-link:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }
  .link-text strong {
    display: block; font-size: 17px; font-weight: 600;
    font-family: 'DM Sans', sans-serif; color: #0f3f2f;
  }
  .link-text small {
    display: block; margin-top: 6px; font-size: 14px; color: #5f6f67;
    font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.5;
  }
  .panel-link .arrow {
    font-size: 18px; color: #0f3f2f; flex-shrink: 0;
    opacity: 0.6; margin-top: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .panel-link:hover .arrow { transform: translateX(6px); opacity: 1; }
  .nav-cta-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px; font-weight: 500; color: #f4f1ea;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s, opacity 0.2s;
  }
  .nav-cta-btn:hover { border-color: rgba(255,255,255,0.9); opacity: 0.85; }

  /* ── SECTION LABEL ── */
  .sec-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
  }
  .sec-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background-color: var(--muted);
    margin-right: 14px;
    flex-shrink: 0;
  }
  .sec-label.light { color: rgba(255,255,255,.45); }
  .sec-label.light::before { background-color: rgba(255,255,255,.35); }


  /* ── TRUST LINE ── */
  .hero-trust-line {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(22, 55, 45, 0.55);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-trust-line::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--green-a);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── MOBILE FAQ NAV ── */
  .faq-mobile-nav {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .faq-mobile-nav button {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--body);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 20px;
    transition: all .2s;
  }
  .faq-mobile-nav button:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }
  @media(max-width:900px) {
    .faq-mobile-nav { display: flex; }
  }

  /* ── PAGE HERO — heading size variation for depth ── */
  .page-hero h1 { letter-spacing: -0.5px; }

  /* ── BODY COPY WEIGHT — all inner paragraphs ── */
  .detail-p,
  .about-origin p,
  .about-experience p,
  .about-independence p,
  .trust-desc,
  .right-card-body,
  .offer-main p,
  .tl-card-p,
  .faq-a,
  .ck-res-body,
  .result-body,
  .exit-body,
  .tstrip-body,
  .tile-desc {
    font-weight: 400;
  }

  /* ── GLOSSARY TERM cross-link hover ── */
  .def-body button:hover { color: var(--green) !important; }



  .refusal-line {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--muted);
    margin-bottom: 52px;
    padding-left: 2px;
  }

/* ── HERO ENTRANCE ANIMATION ── */
  .hero-word-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    animation: heroWordIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--d, 0ms);
  }
  .hero-fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--d, 0ms);
  }
  @keyframes heroWordIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* ── PAGE TOP ── */
  .pt { padding-top: 90px; }

  /* ── HOME ── */
  .hero-wrap { padding: 0; }

  /* ── INDEPENDENCE BAR ── */
  .independence-bar {
    background: #0D3D28;
    padding: 13px 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .ind-item {
    display: flex; align-items: center; gap: 9px;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.72); letter-spacing: 0.02em;
  }
  .ind-dot {
    width: 6px; height: 6px; background: #4CAF7D;
    border-radius: 50%; flex-shrink: 0;
  }
  .ind-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

  /* ── HERO MAIN GRID ── */
  .hero-main {
    padding: 88px 10vw 0;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 88px;
    align-items: start;
    background: var(--cream);
  }
  .hero-left {}

  /* Refined h1 */
  .hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6.5vw, 86px); font-weight: 400;
    line-height: 1.04; color: var(--ink);
    max-width: 680px; letter-spacing: -2.5px; margin-bottom: 32px;
  }
  .hero-h1 em { font-style: italic; color: #2c7a5a; font-weight: 300; }

  /* Editorial reframe — thin left marker */
  .hero-reframe {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px; font-weight: 400; line-height: 1.8;
    color: var(--body); max-width: 500px; margin-bottom: 40px;
    border-left: 1px solid rgba(30,122,80,0.28);
    padding-left: 24px;
  }

  /* Independence proof box */
  .hero-independence {
    background: white;
    border: 1px solid var(--border);
    border-left: 2px solid rgba(30,122,80,0.35);
    padding: 22px 26px;
    max-width: 500px;
    margin-bottom: 44px;
  }
  .hero-ind-label {
    font-family: 'Inter', sans-serif; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--green-a); font-weight: 600; margin-bottom: 13px; display: block;
  }
  .hero-ind-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .hero-ind-list li {
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    color: var(--body); display: flex; align-items: center;
    gap: 10px; font-weight: 400; line-height: 1.5;
  }
  .hero-ind-list li::before {
    content: '✓'; color: var(--green-a); font-size: 11px;
    font-weight: 600; flex-shrink: 0;
  }

  .hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 88px; margin-top: 0; }

  /* ── RIGHT CARD — stage navigation ── */
  .hero-right {
    background: white;
    border: 1px solid var(--border);
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 108px;
  }
  .hero-card-label {
    font-family: 'Inter', sans-serif; font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-bottom: 16px; display: block;
  }
  .hero-card-h {
    font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 400;
    color: var(--ink); margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.3px;
  }

  /* Stage list — editorial, not UI kit */
  .hero-stage-list { list-style: none; margin-bottom: 20px; }
  .hero-stage-btn {
    width: 100%; background: none; border: none;
    padding: 13px 4px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: var(--body); font-weight: 400;
    border-bottom: 1px solid var(--border);
    text-align: left;
    transition: color 0.18s, padding-left 0.18s;
  }
  .hero-stage-btn:last-of-type { border-bottom: none; }
  .hero-stage-btn:hover { color: var(--ink); padding-left: 6px; }
  .hero-stage-btn:hover .hero-stage-arrow { opacity: 1; color: var(--green); }
  .hero-stage-arrow {
    font-size: 14px; color: var(--ink); opacity: 0.3; flex-shrink: 0;
    transition: opacity 0.18s, color 0.18s;
  }
  .hero-card-alt {
    font-family: 'Inter', sans-serif; font-size: 11px;
    color: var(--muted); text-align: center;
    padding-top: 16px; border-top: 1px solid var(--border);
    line-height: 1.7;
  }
  .hero-card-alt button {
    background: none; border: none; cursor: pointer;
    color: var(--green-a); font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 500; text-decoration: underline;
  }

  /* ── TRUST STRIP ── */
  .hero-trust-strip {
    padding: 0 10vw 80px;
    margin-top: 56px;
    background: var(--cream);
  }
  .hero-trust-strip-inner {
    border-top: 1px solid var(--border);
    padding-top: 48px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 48px;
  }
  .hts-item {}
  .hts-num {
    font-family: 'Playfair Display', serif; font-size: 13px;
    color: var(--muted); margin-bottom: 12px; display: block;
  }
  .hts-title {
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500;
    color: var(--ink); margin-bottom: 10px; line-height: 1.3; display: block; letter-spacing: -0.2px;
  }
  .hts-body {
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    color: var(--muted); line-height: 1.8; font-weight: 400;
  }

  @media (max-width: 1024px) {
    .hero-main { grid-template-columns: 1fr 380px; gap: 60px; padding: 72px 8vw 0; }
  }
  @media (max-width: 960px) {
    .independence-bar { padding: 13px 6vw; gap: 14px; }
    .ind-divider { display: none; }
    .hero-main { grid-template-columns: 1fr; gap: 40px; padding: 52px 6vw 0; }
    .hero-right { position: static; }
    .hero-trust-strip-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-trust-strip { padding: 0 6vw 52px; }
  }

  /* ── Editorial CTAs — FT-style text links, not SaaS blocks ── */
  .btn-primary {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
    letter-spacing: 0;
    text-transform: none;
  }
  .btn-primary:hover { color: var(--green); border-color: var(--green); gap: 12px; }
  .btn-primary:active { opacity: 0.7; }

  .btn-text {
    background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 400;
    color: var(--muted); border-bottom: 1px solid rgba(0,0,0,0.15); padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 0; text-transform: none;
  }
  .btn-text:hover { color: var(--ink); border-color: rgba(0,0,0,0.4); }

  /* Something's Wrong homepage card */
  .wrong-home-card {
    margin-top: 3px;
    background: #0e1712;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .wrong-home-left { flex: 1; min-width: 260px; }
  .wrong-home-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .wrong-home-label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
  }
  .wrong-home-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -.3px;
    line-height: 1.2;
  }
  .wrong-home-p {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
  }
  .wrong-home-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
  }
  .wrong-home-btn:hover {
    background: rgba(232,201,122,.1);
    border-color: rgba(232,201,122,.6);
  }

  /* Three tiles */
  .tiles-header { border-top: 1px solid var(--border); padding-top: 56px; margin-bottom: 0; }
  .tiles-h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,54px); font-weight: 400; color: var(--ink); margin-bottom: 40px; letter-spacing: -1px; line-height: 1.1; }
  .tiles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--border); }
  .tile {
    background: var(--cream); padding: 48px 40px 52px; cursor: pointer;
    border: none; text-align: left; font-family: 'DM Sans', sans-serif;
    transition: background .25s, box-shadow .25s;
  }
  .tile:hover { background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.06); position: relative; z-index: 1; }
  .tile-icon  { display: block; margin-bottom: 24px; line-height: 1; }
  .tile-icon svg { display: block; }
  .tile-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.25; display: block; }
  .tile-desc  { font-size: 13px; color: var(--body); line-height: 1.75; font-weight: 300; margin-bottom: 24px; display: block; }
  .tile-link  { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); font-weight: 500; border-bottom: 1px solid rgba(0,0,0,0.2); padding-bottom: 2px; }
  .tile-featured { background: var(--white) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
  .tile-featured:hover { background: var(--white) !important; box-shadow: 0 6px 32px rgba(0,0,0,0.09) !important; }
  .tile-link-featured { color: var(--ink) !important; border-bottom-color: var(--ink) !important; font-size: 12px !important; }

  /* Brand signal */
  .brand-band { background: #0e1712; padding: 100px 10vw; border-top: none; border-bottom: none; margin-top: 0; }
  .brand-grid { display: flex; gap: 80px; align-items: flex-start; }
  .brand-left { flex: 0 0 auto; max-width: 420px; }
  .brand-right { flex: 1; }
  .brand-h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px,3.5vw,48px); font-weight: 500; color: #ffffff; line-height: 1.2; letter-spacing: -.5px; margin: 0; }
  .brand-h2 em { font-style: normal; color: rgba(255,255,255,0.4); font-size: clamp(15px,1.6vw,18px); display: block; margin-top: 28px; line-height: 1.7; letter-spacing: 0; font-family: 'DM Sans', sans-serif; font-weight: 400; }
  .brand-h2-sub { font-family: 'Playfair Display', serif; font-size: clamp(22px,2.4vw,32px); font-weight: 400; font-style: italic; color: rgba(255,255,255,0.6); display: block; margin-top: 10px; letter-spacing: -.3px; }
  .bb-line { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .bb-line:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
  .bb-mark { display: none; }
  .bb-text { font-family: 'Playfair Display', serif; font-size: clamp(17px,1.8vw,20px); font-weight: 400; color: rgba(255,255,255,0.5); line-height: 1.4; transition: padding-left .2s ease; }
  .bb-text.affirm { color: #ffffff; font-weight: 600; }
  .bb-line:hover .bb-text { padding-left: 6px; }


  /* ── TRUTHS — editorial layout ── */
  .truths {
    padding: 56px 10vw 64px;
    background: var(--cream);
  }
  .truths-container {
    max-width: 860px;
  }
  .truths-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
  }
  .truths-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--muted);
    flex-shrink: 0;
  }
  .truth-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    align-items: start;
  }
  .truth-number {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: rgba(24,28,25,0.1);
    line-height: 1;
    padding-top: 4px;
    margin-top: 0;
    user-select: none;
  }
  .truth-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
  }
  .truth-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 400;
    max-width: 560px;
    margin: 0;
  }
  .truth-divider {
    height: 1px;
    background: var(--border);
    margin: 36px 0 36px 80px;
  }
  @media (max-width: 900px) {
    .truths { padding: 40px 6vw 52px; }
    .truth-item { grid-template-columns: 1fr; gap: 12px; }
    .truth-number { font-size: 22px; padding-top: 0; }
    .truth-divider { margin: 28px 0; }
    .truth-number { font-size: 32px; }
  }

  /* ── GREEN HERO (shared) ── */
  .page-hero { background: var(--green); padding: 80px 10vw 90px; }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px,5.2vw,70px); font-weight: 400;
    color: white; margin-bottom: 20px; line-height: 1.05; letter-spacing: -1.5px;
  }
  .page-hero h1 em { font-style: italic; color: rgba(255,255,255,.5); }
  .page-hero p { font-size: 15px; color: rgba(255,255,255,.55); font-weight: 300; max-width: 480px; line-height: 1.8; }
  /* Independence micro-signal on every page hero */
  .page-hero-signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
    margin-top: 28px;
  }
  .page-hero-signal::before {
    content: '';
    display: block;
    width: 5px; height: 5px;
    background: #4CAF7D;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .back-btn {
    background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 36px; display: flex; align-items: center; gap: 8px;
  }
  .back-btn:hover { color: rgba(255,255,255,.8); }

  /* ── GUIDE ── */
  .guide-wrap { padding: 56px 10vw 96px; }
  .guide-intro-h { font-family: 'Playfair Display', serif; font-size: clamp(36px,4.5vw,60px); font-weight: 400; color: var(--ink); margin-bottom: 16px; letter-spacing: -.5px; }
  .guide-intro-h em { font-style: italic; color: var(--green-a); }
  .guide-intro-p { font-size: 15px; color: var(--body); line-height: 1.8; max-width: 480px; font-weight: 300; margin-bottom: 56px; }
  .stage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); border: 1px solid var(--border); gap: 0; }
  .stage-card {
    padding: 36px 32px 40px; background: var(--cream);
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    cursor: pointer; border-top: none; text-align: left;
    font-family: 'DM Sans', sans-serif; transition: background .2s;
  }
  .stage-card:hover { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: relative; z-index: 1; }
  .stage-icon  { display: block; margin-bottom: 16px; line-height: 1; }
  .stage-icon svg { display: block; }
  .stage-num   { font-size: 11px; color: var(--muted); letter-spacing: .5px; display: block; margin-bottom: 12px; }
  .stage-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3; display: block; }
  .stage-short { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 24px; display: block; }
  .stage-read  { font-size: 11px; color: var(--green); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

  /* ── STAGE DETAIL ── */
  .detail-body { padding: 72px 10vw; display: grid; grid-template-columns: 2fr 1fr; gap: 72px; align-items: start; }
  .detail-content-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-a); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
  .detail-content-label::before { content:''; display:block; width:20px; height:1.5px; background:var(--green-a); }
  .detail-p { font-size: 16px; color: var(--body); line-height: 1.9; font-weight: 300; margin-bottom: 40px; }
  .next-box {
    background: var(--white); border: 1px solid var(--border);
    padding: 28px 32px; margin-bottom: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }
  .next-box-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 12px; display: block; }
  .next-box p { font-size: 15px; color: var(--body); line-height: 1.8; font-weight: 300; }
  .timeline-link {
    background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green);
    font-weight: 500; border-bottom: 1.5px solid var(--green); padding-bottom: 2px;
    transition: gap .2s;
  }

  /* Checklist */
  .checklist-box { background: var(--green); border-radius: 3px; padding: 36px 32px; position: sticky; top: 100px; }
  .checklist-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 500; margin-bottom: 24px; display: block; }
  .check-item {
    display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 13px; color: rgba(255,255,255,.75); font-weight: 300; line-height: 1.55;
    transition: color .2s;
  }
  .check-item.done { color: rgba(255,255,255,.3); text-decoration: line-through; }
  .check-box {
    width: 18px; height: 18px; border-radius: 2px; flex-shrink: 0; margin-top: 1px;
    border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center;
    justify-content: center; transition: all .2s; background: transparent;
  }
  .check-box.ticked { background: var(--green-a); border-color: var(--green-a); }
  .check-box.ticked::after { content: '✓'; color: white; font-size: 10px; }
  .check-progress { margin-top: 20px; font-size: 11px; color: rgba(255,255,255,.25); font-style: italic; }


  /* ── TIMELINE STEPPER ── */
  .tl-stepper { display:flex; justify-content:space-between; position:sticky; top:84px; background:var(--cream); padding:16px 0; z-index:100; margin-bottom:40px; border-bottom:1px solid var(--border); box-shadow:0 2px 8px rgba(0,0,0,0.05); }
  .tl-step-track { position:absolute; top:19px; left:5%; right:5%; height:2px; background:var(--border); z-index:0; overflow:hidden; }
  .tl-step-track-fill { height:100%; background:var(--green-a); width:0%; transition:width 0.5s cubic-bezier(.4,0,.2,1); }
  .tl-step { position:relative; text-align:center; cursor:pointer; z-index:1; flex:1; }
  .tl-step-circle { width:38px; height:38px; margin:0 auto 10px; border-radius:50%; background:var(--cream-dk); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:500; color:var(--muted); transition:all .25s; }
  .tl-step:hover .tl-step-circle { border-color:var(--green-a); color:var(--green); background:var(--white); }
  .tl-step.active .tl-step-circle { background:var(--green); border-color:var(--green); color:var(--white); }
  .tl-step.done .tl-step-circle { background:var(--green-a); border-color:var(--green-a); color:var(--white); }
  .tl-step-label { font-size:11px; color:var(--muted); letter-spacing:.3px; transition:color .2s; }
  .tl-step.active .tl-step-label { color:var(--ink); font-weight:500; }
  .tl-step-card { background:var(--white); border:1px solid var(--border); margin-bottom:8px; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
  .tl-card-inner { padding:44px 52px; }
  .tl-card-header { display:flex; align-items:flex-start; gap:24px; margin-bottom:28px; }
  .tl-card-num { font-family:'Playfair Display',serif; font-size:48px; font-weight:700; color:var(--green-a); opacity:0.25; line-height:1; flex-shrink:0; width:56px; }
  .tl-card-title { font-family:'Playfair Display',serif; font-size:clamp(22px,2.5vw,32px); font-weight:400; color:var(--ink); line-height:1.2; margin-bottom:6px; }
  .tl-card-meta { font-size:12px; color:var(--muted); letter-spacing:2px; text-transform:uppercase; font-weight:500; }
  .tl-card-p { font-size:15px; color:var(--body); line-height:1.85; font-weight:300; margin-bottom:16px; }
  .tl-card-p.short { font-size:16px; color:var(--ink); font-weight:400; line-height:1.7; margin-bottom:10px; }
  .tl-insight {
    border-left: 3px solid var(--green-a);
    background: rgba(30,122,80,0.05);
    padding: 18px 22px;
    margin: 24px 0;
  }
  .tl-insight-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-a);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
  }
  .tl-insight p {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
  }
  .tl-insight ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .tl-insight ul li {
    font-size: 13px;
    color: var(--body);
    font-weight: 300;
    padding-left: 16px;
    position: relative;
    line-height: 1.55;
  }
  .tl-insight ul li::before { content: '•'; position: absolute; left: 0; color: var(--green-a); }
  .tl-tags { display:flex; flex-direction:column; gap:10px; margin-top:8px; }
  .tl-tag-item { padding:14px 20px; font-size:13px; color:var(--body); line-height:1.6; font-weight:300; display:flex; align-items:flex-start; gap:12px; }
  .tl-tag-item.normal { background:rgba(13,61,40,.04); }
  .tl-tag-item.warn   { background:rgba(0,0,0,.04); }
  .tl-tag-icon { font-size:15px; flex-shrink:0; margin-top:1px; }
  .tl-card-nav { display:flex; align-items:center; justify-content:space-between; margin-top:36px; padding-top:28px; border-top:1px solid var(--border); }
  .tl-nav-btn { background:none; border:1.5px solid var(--border); color:var(--muted); padding:10px 20px; font-size:12px; font-weight:500; letter-spacing:1px; text-transform:uppercase; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; border-radius:2px; }
  .tl-nav-btn:hover { border-color:var(--green); color:var(--ink); }
  .tl-nav-btn.tl-nav-next { background:var(--green); border-color:var(--green); color:var(--white); }
  .tl-nav-btn.tl-nav-next:hover { background:var(--green-m); }
  .tl-nav-btn:disabled { opacity:.35; cursor:default; pointer-events:none; }
  .tl-nav-counter { font-size:12px; color:var(--muted); letter-spacing:1px; }
  @media(max-width:768px) { .tl-step-label { display:none; } .tl-card-inner { padding:32px 24px; } .tl-card-num { font-size:36px; width:44px; } }

  /* ── TIMELINE ── */
  .stats-row { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 10vw; display: grid; grid-template-columns: repeat(3,1fr); }
  .stat { padding: 40px 0; border-right: 1px solid var(--border); padding-right: 40px; }
  .stat:nth-child(2) { padding-left: 40px; }
  .stat:last-child   { border-right: none; padding-left: 40px; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 8px; }
  .stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 500; }

  .tl-wrap { padding: 64px 10vw; }
  .tl-table { border: 1px solid var(--border); overflow: hidden; }
  .tl-head { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 2.5fr; background: var(--green); padding: 16px 28px; gap: 24px; }
  .tl-head-cell { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; }
  .tl-row { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 2.5fr; padding: 22px 28px; gap: 24px; border-bottom: 1px solid var(--border); transition: background .2s; }
  .tl-row:last-child { border-bottom: none; }
  .tl-row:nth-child(odd)  { background: var(--cream); }
  .tl-row:nth-child(even) { background: var(--white); }
  .tl-row:hover { background: var(--cream-dk); }
  .tl-stage   { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--ink); }
  .tl-off     { font-size: 13px; color: var(--body); font-weight: 300; }
  .tl-real    { font-size: 13px; color: var(--green-a); font-weight: 500; }
  .tl-note    { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

  /* ── HOW IT WORKS ── */
  .how-wrap { padding: 72px 10vw; }
  .trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-bottom: 64px; }
  .trust-card { background: var(--white); padding: 44px 48px; display: flex; align-items: flex-start; gap: 20px; transition: box-shadow .2s; }
  .trust-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
  .trust-tick { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 4px; }
  .trust-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; display: block; }
  .trust-desc { font-size: 14px; color: var(--body); line-height: 1.8; font-weight: 300; }

  .promise-box { background: var(--green); border-radius: 3px; padding: 56px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .promise-quote { font-family: 'Playfair Display', serif; font-size: clamp(20px,2.5vw,30px); font-weight: 400; color: white; line-height: 1.5; margin-bottom: 20px; }
  .promise-attr { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }
  .promise-line { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .promise-line:first-child { border-top: 1px solid rgba(255,255,255,.1); }
  .pm { color: rgba(255,255,255,.3); width: 16px; flex-shrink: 0; }
  .pt-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: rgba(255,255,255,.65); }
  .pt-text.affirm { color: white; font-weight: 700; }

  /* ── DISCLAIMER ── */
  .disclaimer { background: var(--cream-dk); border-top: 1px solid var(--border); padding: 32px 10vw; display: flex; align-items: flex-start; gap: 20px; }
  .disc-badge { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--green); border: 1px solid var(--green); opacity: .6; padding: 4px 10px; border-radius: 1px; white-space: nowrap; font-weight: 500; flex-shrink: 0; margin-top: 2px; }
  .disc-text { font-size: 12px; color: var(--muted); line-height: 1.8; font-weight: 300; }

  /* ── CHECKER ── */
  .checker-wrap { max-width: 860px; margin: 0 auto; padding: 72px 10vw 96px; }
  .checker-shell { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: var(--white); border: 1px solid var(--border); overflow: hidden; }
  .ck-left { background: var(--green); padding: 48px 36px; display: flex; flex-direction: column; gap: 0; }
  .ck-left-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
  .ck-left-sub { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 300; line-height: 1.7; margin-bottom: 36px; }
  .ck-steps { display: flex; flex-direction: column; gap: 0; flex: 1; }
  .ck-step { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); opacity: .3; transition: opacity .3s; }
  .ck-step:last-child { border-bottom: none; }
  .ck-step.active { opacity: 1; }
  .ck-step.done   { opacity: .55; }
  .ck-step-num { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,.5); flex-shrink: 0; transition: all .3s; }
  .ck-step.active .ck-step-num { background: var(--white); color: var(--green); border-color: var(--white); }
  .ck-step.done   .ck-step-num { background: rgba(255,255,255,.15); border-color: transparent; color: rgba(255,255,255,.6); }
  .ck-step-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.8); line-height: 1.2; margin-bottom: 2px; }
  .ck-step-sub   { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 300; }
  .ck-promise { font-size: 11px; color: rgba(255,255,255,.28); font-style: italic; line-height: 1.7; border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; margin-top: 20px; }

  .ck-right { padding: 0; position: relative; }
  .ck-progress { height: 3px; background: rgba(13,61,40,.08); }
  .ck-progress-fill { height: 100%; background: var(--green-a); transition: width .5s cubic-bezier(.4,0,.2,1); width: 0%; }
  .ck-body { padding: 44px 48px 40px; }

  .ck-screen { display: none; animation: fadeUp .3s ease both; }
  .ck-screen.visible { display: block; }

  .ck-counter { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
  .ck-q { font-family: 'Playfair Display', serif; font-size: clamp(22px,2.8vw,32px); font-weight: 400; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
  .ck-hint { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
  .ck-opts { display: flex; flex-direction: column; gap: 10px; }
  .ck-opt { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1.5px solid var(--border); cursor: pointer; background: var(--cream); transition: all .2s; }
  .ck-opt:hover { border-color: var(--green-a); background: var(--white); transform: translateX(2px); }
  .ck-opt.sel   { border-color: var(--green-a); background: rgba(30,122,80,.06); }
  .ck-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all .2s; display: flex; align-items: center; justify-content: center; }
  .ck-opt.sel .ck-radio { background: var(--green-a); border-color: var(--green-a); }
  .ck-opt.sel .ck-radio::after { content:''; width: 6px; height: 6px; background: white; border-radius: 50%; }
  .ck-opt-label { font-size: 14px; color: var(--body); flex: 1; }
  .ck-opt-note  { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; font-weight: 300; }
  .ck-reassure  { font-size: 12px; color: var(--muted); font-style: italic; font-weight: 300; margin-top: 14px; }
  .ck-actions { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
  .ck-next { background: var(--green); color: var(--white); padding: 13px 28px; border: none; border-radius: 2px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; letter-spacing: .5px; transition: background 0.2s, transform 0.18s cubic-bezier(0.22,1,0.36,1), box-shadow 0.18s; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
  .ck-next:hover { background: var(--green-m); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(13,61,40,0.22); }
  .ck-next:active { transform: translateY(0); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
  .ck-back { background: none; border: 1.5px solid var(--border); color: var(--muted); padding: 13px 18px; border-radius: 2px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; }
  .ck-back:hover { border-color: var(--green-a); color: var(--ink); }

  /* exit screens */
  .ck-exit { display: none; animation: fadeUp .3s ease both; }
  .ck-exit.visible { display: block; }
  .ck-exit-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px; }
  .ck-exit-icon.amber { background: #FFF4E0; }
  .ck-exit-icon.info  { background: rgba(30,122,80,.1); }
  .ck-exit-pre { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
  .ck-exit-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 14px; }
  .ck-exit-body  { font-size: 14px; color: var(--body); line-height: 1.85; font-weight: 300; margin-bottom: 24px; }
  .ck-exit-box   { background: var(--cream); border: 1px solid var(--border); padding: 20px 24px; font-size: 13px; color: var(--body); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
  .ck-restart    { background: none; border: 1.5px solid var(--border); color: var(--muted); padding: 12px 20px; border-radius: 2px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; }
  .ck-restart:hover { border-color: var(--green-a); color: var(--ink); }

  /* result screens */
  .ck-result { display: none; animation: fadeUp .3s ease both; }
  .ck-result.visible { display: block; }
  .ck-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,122,80,.1); border: 1px solid rgba(30,122,80,.2); color: var(--green-a); font-size: 12px; font-weight: 500; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
  .ck-badge.amber { background: #FFF8EC; border-color: rgba(245,158,11,.2); color: #B45309; }
  .ck-res-pre   { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
  .ck-res-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,2.5vw,30px); font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 16px; }
  .ck-res-body  { font-size: 14px; color: var(--body); line-height: 1.9; font-weight: 300; margin-bottom: 28px; }
  .ck-res-box   { background: var(--green); border-radius: 2px; padding: 24px 28px; margin-bottom: 20px; }
  .ck-res-box h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 10px; font-weight: 500; }
  .ck-res-box p  { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.7; font-weight: 300; }
  .ck-res-box strong { color: var(--white); font-weight: 500; }
  .ck-res-sec   { background: var(--cream); border: 1px solid var(--border); padding: 24px 28px; margin-bottom: 12px; }
  .ck-res-sec h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-a); margin-bottom: 14px; font-weight: 500; }
  .ck-res-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ck-res-list li { font-size: 13px; color: var(--body); padding-left: 18px; position: relative; font-weight: 300; line-height: 1.6; }
  .ck-res-list li::before { content: '→'; position: absolute; left: 0; color: var(--green-a); }
  .ck-res-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
  .ck-res-primary { background: var(--green); color: var(--white); padding: 13px 24px; border: none; border-radius: 2px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; }
  .ck-res-primary:hover { background: var(--green-m); }
  .ck-res-disc { font-size: 11px; color: var(--muted); font-style: italic; line-height: 1.7; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }

  /* ── CALCULATOR ── */
  .calc-wrap { max-width: 760px; margin: 0 auto; padding: 72px 10vw 96px; }
  .calc-card { background: var(--white); border: 1px solid var(--border); padding: 52px; }
  .calc-h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
  .calc-sub { font-size: 14px; color: var(--muted); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
  .calc-label { font-size: 13px; font-weight: 500; color: var(--body); display: block; margin-bottom: 8px; letter-spacing: .3px; }
  .calc-input { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); font-size: 15px; font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); outline: none; transition: border-color .2s; margin-bottom: 24px; border-radius: 0; }
  .calc-input:focus { border-color: var(--green-a); }
  .calc-btn { background: var(--green); color: var(--white); padding: 14px 32px; border: none; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s, transform 0.18s cubic-bezier(0.22,1,0.36,1), box-shadow 0.18s; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
  .calc-btn:hover { background: var(--green-m); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(13,61,40,0.22); }
  .calc-btn:active { transform: translateY(0); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
  .calc-result { margin-top: 40px; border-top: 1px solid var(--border); padding-top: 40px; display: none; }
  .tl-lights { display: flex; gap: 10px; margin-bottom: 28px; }
  .tl-dot { width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,.08); transition: all .4s; }
  .tl-dot.active-green { background: #22C55E; box-shadow: 0 0 14px rgba(34,197,94,.4); }
  .tl-dot.active-amber { background: #F59E0B; box-shadow: 0 0 14px rgba(245,158,11,.4); }
  .tl-dot.active-red   { background: #EF4444; box-shadow: 0 0 14px rgba(239,68,68,.4); }
  .calc-deadline { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 6px; }
  .calc-remaining { font-size: 32px; font-weight: 500; margin-bottom: 16px; font-family: 'Playfair Display', serif; }
  .calc-remaining.green { color: #22C55E; }
  .calc-remaining.amber { color: #F59E0B; }
  .calc-remaining.red   { color: #EF4444; }
  .calc-explain { font-size: 14px; color: var(--body); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
  .calc-action  { background: var(--cream); border: 1px solid var(--border); padding: 20px 24px; font-size: 13px; color: var(--body); line-height: 1.7; font-weight: 300; }

  /* ── FOOTER ── */
  footer { background: var(--green); padding: 24px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .foot-brand { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); }
  .foot-links { display: flex; gap: 24px; list-style: none; }
  .foot-links button { background: none; border: none; cursor: pointer; font-size: 12px; color: rgba(255,255,255,.45); font-family: 'DM Sans', sans-serif; transition: color .2s; }
  .foot-links button:hover { color: white; }
  .foot-copy { font-size: 11px; color: rgba(255,255,255,.27); }

  /* ── RESPONSIVE ── */
  @media(max-width:900px){
    header { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-wrap, .guide-wrap, .how-wrap, .tl-wrap, .brand-band { padding-left: 6vw; padding-right: 6vw; }
    .page-hero { padding: 56px 6vw 64px; }
    .tiles-grid { grid-template-columns: 1fr; }
    .brand-grid { flex-direction: column; gap: 40px; }
    .brand-left { max-width: 100%; }
    .brand-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 40px; margin-bottom: 0; }
    .promise-box { padding: 40px 32px; }
    .detail-body { padding: 48px 6vw; gap: 40px; }
    .stats-row { grid-template-columns: 1fr; }
    .stat { padding: 28px 0 !important; border-right: none; border-bottom: 1px solid var(--border); }
    .tl-head, .tl-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .tl-note { display: none; }
    .tl-head-cell:last-child { display: none; }
    footer { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #d5e2db;
    border-radius: 2px;
    transition: all 0.25s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE NAV OVERLAY ── */
  .mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 299;
    background: rgba(0,0,0,0.4);
  }
  .mobile-nav-overlay.open { display: block; animation: fadeIn .2s ease; }

  /* ── MOBILE NAV DRAWER ── */
  .mobile-nav-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: #0a2e1e;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-drawer.open { transform: translateX(0); }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #f4f1ea;
  }
  .mobile-nav-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
  }
  .mobile-nav-close:hover { color: #f4f1ea; }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 16px 0 40px;
  }
  .mobile-nav-group {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    padding: 20px 24px 8px;
    display: block;
  }
  .mobile-nav-links button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 2px solid transparent;
  }
  .mobile-nav-links button:hover {
    color: #f4f1ea;
    background: rgba(255,255,255,0.05);
    border-left-color: #1E7A50;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @media(max-width:600px){
    .stage-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .tl-head, .tl-row { grid-template-columns: 2fr 1fr; }
    .tl-off { display: none; }
    .tl-head-cell:nth-child(2) { display: none; }
  }

/* ── CHECK WHERE I STAND (scoped) ── */
#view-checker .shell { display:grid; grid-template-columns:340px 1fr; min-height:calc(100vh - 88px); }
#view-checker .left-panel { background:linear-gradient(175deg,#1B3D2F 0%,#2A5C42 100%); padding:56px 44px; display:flex; flex-direction:column; justify-content:space-between; position:sticky; top:88px; height:calc(100vh - 88px); overflow-y:auto; }
#view-checker .right-panel { padding:64px 72px; display:flex; flex-direction:column; align-items:stretch; }
#view-checker .lp-tag { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:rgba(245,241,232,.45); margin-bottom:20px; display:block; }
#view-checker .lp-title { font-family:'Playfair Display',serif; font-size:32px; font-weight:700; line-height:1.2; color:#F5F1E8; margin-bottom:20px; }
#view-checker .lp-title em { font-style:italic; color:rgba(245,241,232,.65); }
#view-checker .lp-desc { font-size:13px; color:rgba(245,241,232,.55); line-height:1.8; font-weight:300; margin-bottom:36px; }
#view-checker .lp-steps { display:flex; flex-direction:column; gap:0; }
#view-checker .lp-step { display:flex; align-items:flex-start; gap:14px; padding:14px 0; border-bottom:1px solid rgba(245,241,232,.07); opacity:.35; transition:opacity .4s; }
#view-checker .lp-step:last-child { border-bottom:none; }
#view-checker .lp-step.active { opacity:1; }
#view-checker .lp-step.done { opacity:.55; }
#view-checker .lp-step-num { width:26px; height:26px; border-radius:50%; border:1.5px solid rgba(245,241,232,.25); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:500; color:rgba(245,241,232,.5); flex-shrink:0; transition:all .3s; }
#view-checker .lp-step.active .lp-step-num { background:#F5F1E8; color:#1B3D2F; border-color:#F5F1E8; }
#view-checker .lp-step.done  .lp-step-num { background:rgba(245,241,232,.15); color:rgba(245,241,232,.7); border-color:transparent; }
#view-checker .lp-step-label { font-size:13px; font-weight:500; color:rgba(245,241,232,.85); margin-bottom:2px; }
#view-checker .lp-step-sub   { font-size:11px; color:rgba(245,241,232,.4); font-weight:300; }
#view-checker .lp-promise { font-size:11px; color:rgba(245,241,232,.3); line-height:1.7; font-style:italic; border-top:1px solid rgba(245,241,232,.08); padding-top:20px; margin-top:20px; }
#view-checker .progress-track { height:3px; background:rgba(27,61,47,.1); border-radius:3px; margin-bottom:48px; overflow:hidden; width:100%; }
#view-checker .progress-fill { height:100%; background:#3D7A58; border-radius:3px; transition:width .5s cubic-bezier(.4,0,.2,1); width:0%; }
#view-checker .q-screen, #view-checker .exit-screen, #view-checker .result-screen { display:none; animation:fadeUp .35s ease both; width:100%; }
#view-checker .q-screen.visible, #view-checker .exit-screen.visible, #view-checker .result-screen.visible { display:block; }
#view-checker .q-section-label { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:#7A8880; margin-bottom:10px; font-weight:500; }
#view-checker .q-counter { font-size:12px; color:#7A8880; margin-bottom:8px; }
#view-checker .q-text { font-family:'Playfair Display',serif; font-size:clamp(24px,3vw,36px); font-weight:700; color:#1A1F1C; margin-bottom:12px; line-height:1.25; }
#view-checker .q-hint { font-size:14px; color:#7A8880; font-weight:300; line-height:1.7; margin-bottom:32px; }
#view-checker .options { display:flex; flex-direction:column; gap:10px; width:100%; max-width:580px; }
#view-checker .opt { display:flex; align-items:center; gap:14px; padding:16px 20px; border:1.5px solid rgba(13,61,40,.1); cursor:pointer; transition:all .2s; background:#FFFFFF; user-select:none; }
#view-checker .opt:hover { border-color:rgba(13,61,40,0.25); background:#f8faf8; }
#view-checker .opt.selected { border-color:rgba(13,61,40,0.25); background:#f0f6f2; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
#view-checker .opt-indicator { width:20px; height:20px; border-radius:50%; border:2px solid rgba(27,61,47,.2); flex-shrink:0; transition:all .2s; display:flex; align-items:center; justify-content:center; }
#view-checker .opt.selected .opt-indicator { background:#3D7A58; border-color:#3D7A58; }
#view-checker .opt.selected .opt-indicator::after { content:''; width:7px; height:7px; background:white; border-radius:50%; }
#view-checker .opt-label { font-size:14px; color:#3D4740; font-weight:400; flex:1; }
#view-checker .opt-note { font-size:12px; color:#7A8880; display:block; margin-top:2px; font-weight:300; }
#view-checker .q-reassurance { font-size:12px; color:#7A8880; font-style:italic; font-weight:300; margin-top:16px; max-width:440px; line-height:1.6; }
#view-checker .q-actions { display:flex; align-items:center; gap:12px; margin-top:36px; padding-top:28px; border-top:1px solid rgba(13,61,40,.07); }
#view-checker .btn-continue { background:#1B3D2F; color:#F5F1E8; padding:14px 32px; border:none; border-radius:2px; font-size:13px; font-weight:500; cursor:pointer; font-family:'DM Sans',sans-serif; letter-spacing:.5px; transition: background 0.2s, transform 0.18s cubic-bezier(0.22,1,0.36,1), box-shadow 0.18s; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
#view-checker .btn-continue:hover { background:#2A5C42; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(13,61,40,0.25); }
#view-checker .btn-continue:active { transform: translateY(0); box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
#view-checker .btn-prev { background:none; border:1.5px solid rgba(27,61,47,.15); color:#7A8880; padding:14px 18px; border-radius:2px; font-size:13px; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; }
#view-checker .btn-prev:hover { border-color:#3D7A58; color:#1A1F1C; }
#view-checker .exit-icon { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:20px; }
#view-checker .exit-icon.amber { background:#FFF4E0; }
#view-checker .exit-icon.info  { background:#E4EFE9; }
#view-checker .exit-pretext { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:#7A8880; margin-bottom:8px; }
#view-checker .exit-title { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:#1A1F1C; margin-bottom:14px; line-height:1.25; }
#view-checker .exit-body  { font-size:14px; color:#3D4740; line-height:1.85; font-weight:300; margin-bottom:22px; }
#view-checker .exit-box   { background:#F5F1E8; border:1px solid rgba(13,61,40,.1); padding:20px 24px; margin-bottom:22px; font-size:13px; color:#3D4740; line-height:1.75; font-weight:300; }
#view-checker .exit-restart { background:none; border:1.5px solid rgba(27,61,47,.2); color:#7A8880; padding:12px 20px; border-radius:2px; font-size:13px; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; }
#view-checker .exit-restart:hover { border-color:#3D7A58; color:#1A1F1C; }
#view-checker .result-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(61,122,88,.1); border:1px solid rgba(61,122,88,.2); color:#3D7A58; font-size:11px; font-weight:500; padding:5px 14px; border-radius:20px; margin-bottom:18px; letter-spacing:.5px; }
#view-checker .result-badge.amber { background:#FFF8EC; border-color:rgba(245,158,11,.2); color:#B45309; }
#view-checker .result-pretext { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:#7A8880; margin-bottom:8px; }
#view-checker .result-title { font-family:'Playfair Display',serif; font-size:clamp(22px,2.5vw,30px); font-weight:700; color:#1A1F1C; line-height:1.25; margin-bottom:16px; }
#view-checker .result-body  { font-size:14px; color:#3D4740; line-height:1.9; font-weight:300; margin-bottom:28px; }
#view-checker .result-section { background:#FFFFFF; border:1.5px solid rgba(27,61,47,.08); padding:22px 26px; margin-bottom:12px; }
#view-checker .result-section h4 { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:#3D7A58; margin-bottom:14px; font-weight:500; }
#view-checker .result-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
#view-checker .result-list li { font-size:13px; color:#3D4740; padding-left:18px; position:relative; font-weight:300; line-height:1.6; }
#view-checker .result-list li::before { content:'→'; position:absolute; left:0; color:#3D7A58; }
#view-checker .result-oic { background:linear-gradient(135deg,#1B3D2F 0%,#2A5C42 100%); padding:22px 26px; margin-bottom:20px; }
#view-checker .result-oic h4 { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:rgba(245,241,232,.5); margin-bottom:10px; font-weight:500; }
#view-checker .result-oic p  { font-size:13px; color:rgba(245,241,232,.75); line-height:1.7; font-weight:300; }
#view-checker .result-oic strong { color:#F5F1E8; font-weight:500; }
#view-checker .result-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:8px; }
#view-checker .btn-result-primary { background:#1B3D2F; color:#F5F1E8; padding:13px 24px; border:none; border-radius:2px; text-decoration:none; font-size:13px; font-weight:500; transition: background 0.2s, transform 0.18s cubic-bezier(0.22,1,0.36,1), box-shadow 0.18s; display:inline-block; cursor:pointer; font-family:'DM Sans',sans-serif; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
#view-checker .btn-result-primary:hover { background:#2A5C42; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(13,61,40,0.22); }
#view-checker .btn-result-primary:active { transform: translateY(0); }
#view-checker .btn-result-secondary { background:none; border:1.5px solid rgba(27,61,47,.2); color:#7A8880; padding:13px 18px; border-radius:2px; font-size:13px; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; }
#view-checker .btn-result-secondary:hover { border-color:#3D7A58; color:#1A1F1C; }
#view-checker .result-disclaimer { font-size:11px; color:#7A8880; line-height:1.7; font-weight:300; font-style:italic; margin-top:18px; padding-top:18px; border-top:1px solid rgba(13,61,40,.07); }
@media(max-width:900px){
  #view-checker .shell { grid-template-columns:1fr; }
  #view-checker .left-panel { position:relative; top:0; height:auto; padding:32px 28px; }
  #view-checker .right-panel { padding:40px 28px; }
}
@media(max-width:600px){
  #view-checker .right-panel { padding:28px 18px; }
  #view-checker .q-text { font-size:22px; }
}


/* ── LIMITATION CALCULATOR (scoped) ── */
#view-calc .calc-wrap { background:#FFFFFF; border:1px solid rgba(13,61,40,.13); border-radius:2px; padding:52px; max-width:720px; margin:72px auto 96px; }
#view-calc .calc-wrap h2 { font-family:'Playfair Display',serif; font-size:32px; font-weight:400; color:#1A1F1C; margin-bottom:8px; }
#view-calc .calc-wrap .sub { font-size:14px; color:#7A8880; margin-bottom:32px; font-weight:300; line-height:1.7; }
#view-calc .date-row { display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
#view-calc .date-row label { font-size:13px; font-weight:500; color:#3D4740; }
#view-calc .date-row input { padding:14px 16px; border:1.5px solid rgba(13,61,40,.13); font-size:15px; font-family:'DM Sans',sans-serif; background:#EDEAE0; color:#1A1F1C; outline:none; width:100%; transition:border-color .2s; }
#view-calc .date-row input:focus { border-color:#1E7A50; }
#view-calc .calc-btn { background:#0D3D28; color:#EDEAE0; padding:14px 32px; border:none; border-radius:2px; font-size:13px; font-weight:500; cursor:pointer; transition:background .2s; font-family:'DM Sans',sans-serif; letter-spacing:1px; text-transform:uppercase; }
#view-calc .calc-btn:hover { background:#155237; }
#view-calc .calc-result { margin-top:36px; display:none; border-top:1px solid rgba(13,61,40,.13); padding-top:36px; }
#view-calc .traffic-light { display:flex; gap:10px; margin-bottom:24px; }
#view-calc .tl-dot { width:30px; height:30px; border-radius:50%; background:rgba(0,0,0,.08); transition:all .4s; }
#view-calc .tl-dot.active-green { background:#22C55E; box-shadow:0 0 14px rgba(34,197,94,.4); }
#view-calc .tl-dot.active-amber { background:#F59E0B; box-shadow:0 0 14px rgba(245,158,11,.4); }
#view-calc .tl-dot.active-red   { background:#EF4444; box-shadow:0 0 14px rgba(239,68,68,.4); }
#view-calc .calc-deadline  { font-family:'Playfair Display',serif; font-size:20px; font-weight:400; color:#1A1F1C; margin-bottom:6px; }
#view-calc .calc-remaining { font-size:32px; font-weight:500; margin-bottom:16px; font-family:'Playfair Display',serif; }
#view-calc .calc-remaining.green { color:#22C55E; }
#view-calc .calc-remaining.amber { color:#F59E0B; }
#view-calc .calc-remaining.red   { color:#EF4444; }
#view-calc .calc-explain { font-size:14px; color:#3D4740; line-height:1.85; margin-bottom:20px; font-weight:300; }
#view-calc .calc-action  { background:#EDEAE0; border:1px solid rgba(13,61,40,.13); padding:20px 24px; font-size:13px; color:#3D4740; line-height:1.7; font-weight:300; }
#view-calc .calc-info { max-width:720px; margin:0 auto 96px; background:#FFFFFF; border:1px solid rgba(13,61,40,.13); padding:36px 40px; }
#view-calc .calc-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:rgba(13,61,40,.13); margin-top:24px; }
#view-calc .calc-info-cell { background:#EDEAE0; padding:24px 28px; }
#view-calc .calc-info-cell h4 { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:#1A1F1C; margin-bottom:8px; }
#view-calc .calc-info-cell p  { font-size:13px; color:#3D4740; line-height:1.8; font-weight:300; }
@media(max-width:768px){ #view-calc .calc-wrap { padding:32px 24px; margin:40px 6vw 60px; } #view-calc .calc-info { margin:0 6vw 60px; } #view-calc .calc-info-grid { grid-template-columns:1fr; } }

/* ── FAQ PAGE ── */
.faq-wrap { padding: 64px 10vw 96px; max-width: 1200px; }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }
.faq-nav { position: sticky; top: 100px; }
.faq-nav-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 16px; display: block; }
.faq-nav-link {
  display: block; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--body);
  text-align: left; padding: 10px 14px; border-left: 2px solid transparent;
  transition: all .2s; width: 100%; font-weight: 400;
}
.faq-nav-link:hover { color: var(--green); border-left-color: rgba(13,61,40,0.2); }
.faq-nav-link.active { color: var(--green); border-left-color: var(--green); font-weight: 600; }
.faq-section { margin-bottom: 64px; }
.faq-section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(20px,2.5vw,28px);
  font-weight: 400; color: var(--ink); margin-bottom: 4px; letter-spacing: -.3px;
}
.faq-section-sub { font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 28px; line-height: 1.6; }
.faq-item { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 0; cursor: pointer; gap: 20px; background: none; border: none;
  width: 100%; text-align: left; font-family: 'DM Sans', sans-serif;
}
.faq-q-text {
  font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.5;
  transition: color .2s;
}
.faq-q:hover .faq-q-text { color: var(--green-a); }
.faq-toggle {
  flex-shrink: 0; margin-top: 3px;
  font-size: 20px; color: var(--muted); transition: all .25s;
  font-weight: 300; line-height: 1; background: none;
}
.faq-item.open .faq-toggle { color: var(--ink); transform: none; content: '–'; }
.faq-a {
  display: none; padding: 0 0 24px 0;
  font-size: 14px; color: var(--body); line-height: 1.9; font-weight: 300;
  max-width: 620px;
}
.faq-a.open { display: block; animation: fadeUp .25s ease both; }
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a .faq-note {
  margin-top: 14px; padding: 16px 20px;
  background: #F2EFE9;
  border-left: 3px solid var(--green-a);
  font-size: 13px; color: var(--body); line-height: 1.75;
}
.faq-a strong { font-weight: 500; color: var(--ink); }
.faq-cta-strip {
  background: var(--green); padding: 52px 10vw; margin: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.faq-cta-strip h3 {
  font-family: 'Playfair Display', serif; font-size: clamp(22px,2.5vw,30px);
  font-weight: 400; color: white; margin-bottom: 8px;
}
.faq-cta-strip p { font-size: 14px; color: rgba(255,255,255,.55); font-weight: 300; max-width: 400px; line-height: 1.7; }
.faq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.faq-cta-btn-primary {
  background: rgba(255,255,255,.15); color: white; border: 1px solid rgba(255,255,255,.25);
  padding: 13px 24px; font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s; border-radius: 2px;
}
.faq-cta-btn-primary:hover { background: rgba(255,255,255,.25); }
.faq-cta-btn-secondary {
  background: none; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.15);
  padding: 13px 24px; font-size: 13px; font-weight: 400; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s; border-radius: 2px;
}
.faq-cta-btn-secondary:hover { color: white; border-color: rgba(255,255,255,.35); }
.search-block {
  max-width: 860px;
  margin: 40px 0 0;
  padding: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
}
.search-block-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.search-block input {
  width: 100%;
  padding: 18px 52px 18px 22px;
  font-size: 17px;
  border: none;
  border-radius: 12px;
  background: #F3F1EC;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  transition: background .2s;
}
.search-block input:focus { background: #ffffff; }
.search-block input::placeholder { color: var(--muted); font-weight: 300; }
.search-block-icon {
  position: absolute;
  right: 18px;
  color: var(--muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.faq-no-results { display: none; font-size: 14px; color: var(--muted); padding: 24px 0; font-weight: 300; }
@media(max-width:900px){
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { display: none; }
  .faq-wrap { padding: 48px 6vw 72px; }
}

/* ── HERO CROWN STATEMENT ── */


/* ── CLAIMANT RIGHTS PAGE ── */
.rights-wrap { padding: 72px 10vw 96px; }
.rights-intro { max-width: 640px; margin-bottom: 64px; }
.rights-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 400; color: var(--ink); margin-bottom: 16px; letter-spacing: -.5px; }
.rights-intro h2 em { font-style: italic; color: var(--green-a); }
.rights-intro p { font-size: 15px; color: var(--body); line-height: 1.85; font-weight: 300; }

.rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); margin-bottom: 64px; }
.right-card {
  background: var(--cream); padding: 44px 40px;
  border-bottom: 3px solid transparent; transition: background .2s, border-color .2s;
}
.right-card:hover { background: var(--white); border-bottom-color: var(--green-a); }
.right-card-num { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--green-a); margin-bottom: 12px; display: block; }
.right-card-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.2; display: block; }
.right-card-body { font-size: 14px; color: var(--body); line-height: 1.85; font-weight: 300; }
.right-card-note { margin-top: 16px; padding: 14px 16px; background: rgba(13,61,40,.05); border-left: 2px solid var(--green-a); font-size: 13px; color: var(--body); font-weight: 300; line-height: 1.7; font-style: italic; }

.tactics-section { background: var(--green); padding: 64px 10vw; margin: 0 -10vw; }

.tactics-h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3vw,38px); font-weight: 400; color: white; margin-bottom: 12px; letter-spacing: -.3px; }
.tactics-sub { font-size: 15px; color: rgba(255,255,255,.5); font-weight: 300; max-width: 480px; line-height: 1.8; margin-bottom: 48px; }
.tactics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tactic-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 28px 24px; transition: background .2s; }
.tactic-card:hover { background: rgba(255,255,255,.1); }
.tactic-card-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); font-weight: 500; margin-bottom: 12px; display: block; }
.tactic-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 10px; line-height: 1.25; }
.tactic-card-body { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; font-weight: 300; }
.tactic-card-counter { margin-top: 14px; padding: 12px 14px; background: rgba(30,122,80,.25); border: 1px solid rgba(30,122,80,.3); font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.65; font-weight: 300; }
.tactic-card-counter strong { color: rgba(255,255,255,.9); font-weight: 500; }

/* ── OFFER & NEGOTIATION PAGE ── */
.offer-wrap { padding: 72px 10vw 96px; display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.offer-main h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 400; color: var(--ink); margin-bottom: 16px; letter-spacing: -.5px; }
.offer-main h2 em { font-style: italic; color: var(--green-a); }
.offer-main p { font-size: 15px; color: var(--body); line-height: 1.9; font-weight: 300; margin-bottom: 28px; }
.offer-main h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; margin-top: 44px; }
.offer-callout { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--green-a); padding: 28px 32px; margin: 32px 0; }
.offer-callout-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-a); font-weight: 500; margin-bottom: 12px; display: block; }
.offer-callout p { font-size: 14px; color: var(--body); line-height: 1.8; font-weight: 300; margin: 0; }

.tariff-panel { background: var(--green); padding: 36px 32px; position: sticky; top: 100px; }
.tariff-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 500; margin-bottom: 24px; display: block; }
.tariff-row { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.tariff-row:last-child { border-bottom: none; }
.tariff-injury { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75); margin-bottom: 4px; display: block; }
.tariff-duration { font-size: 11px; color: rgba(255,255,255,.35); margin-bottom: 4px; display: block; }
.tariff-value { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: white; display: block; }
.tariff-note { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 20px; line-height: 1.65; font-style: italic; }
.counter-template { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 20px 20px; margin-top: 20px; }
.counter-template-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 12px; display: block; }
.counter-template p { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.7; font-weight: 300; font-style: italic; margin: 0; }

/* ── GLOSSARY PAGE ── */
.glossary-wrap { padding: 0 10vw 96px; }
/* glossary search now uses .search-block */
.glossary-alphabet { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.alpha-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; letter-spacing: .5px;
  border: 1px solid var(--border); background: var(--white);
  cursor: pointer; transition: all .15s; color: var(--body);
}
.alpha-btn:hover, .alpha-btn.active { background: var(--green); border-color: var(--green); color: white; }
.glossary-group { margin-bottom: 48px; }
.glossary-group-letter { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--cream-dk); border-top: 2px solid var(--border); padding-top: 16px; margin-bottom: 24px; line-height: 1; }
.glossary-term { padding: 20px 0; border-bottom: 1px solid var(--border); }
.glossary-term dt { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.glossary-term dd { font-size: 14px; color: var(--body); line-height: 1.85; font-weight: 300; }
.glossary-term dd em { font-style: italic; color: var(--muted); font-size: 13px; }
.glossary-hidden { display: none; }
.def-content-wrap { max-width: 720px; margin: 0 auto; }

/* ── DEFINITIONS ACCORDION — ELEVATED ── */
.def-item {
  background: #faf9f6;
  border-radius: 0;
  padding: 24px 0;
  margin-bottom: 0;
  box-shadow: none;
  transition: none;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.def-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); background: transparent; }
.def-item:hover { transform: none; box-shadow: none; }
.def-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  cursor: pointer;
  gap: 24px;
  transition: color .15s;
  background: none; border: none; width: 100%; text-align: left;
}
.def-header:hover .def-term { color: var(--green); }
.def-term {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink);
  transition: color .15s;
  line-height: 1.5;
}
.def-toggle {
  font-size: 20px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: color .2s;
  display: inline-block;
}
.def-item.def-open .def-toggle {
  transform: none;
  color: var(--ink);
}
.def-body {
  display: none;
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  line-height: 1.85;
  font-weight: 300;
  padding-top: 12px;
  padding-bottom: 8px;
  max-width: 620px;
}
.def-item.def-open .def-body {
  display: block;
  animation: fadeUp .2s ease both;
}

/* ── INSURER TACTICS STRIP (homepage) ── */
.tactics-strip { padding: 72px 10vw 80px; background: var(--white); border-top: 1px solid var(--border); }
.tactics-strip-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 48px; }
.tactics-strip-h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,3vw,40px); font-weight: 400; color: var(--ink); letter-spacing: -.4px; }
.tactics-strip-h2 em { font-style: italic; color: var(--green-a); }
.tactics-strip-p { font-size: 14px; color: var(--body); line-height: 1.8; font-weight: 300; }
.tactics-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); }
.tstrip-item { background: var(--white); padding: 32px 28px; transition: background 0.2s, box-shadow 0.2s; }
.tstrip-item:hover { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.07); position: relative; z-index: 1; }
.tstrip-icon { font-size: 20px; display: block; margin-bottom: 14px; }
.tstrip-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; display: block; }
.tstrip-body { font-size: 13px; color: var(--body); line-height: 1.75; font-weight: 300; }

/* ── WHAT CLAIMTALK IS / MANIFESTO ── */
.manifesto-strip { padding: 80px 10vw; background: var(--ink); }
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.25); font-weight: 500; margin-bottom: 40px; }
.manifesto-quote { font-family: 'Playfair Display', serif; font-size: clamp(24px,3vw,38px); font-style: normal; color: white; line-height: 1.35; font-weight: 400; letter-spacing: -.3px; margin-bottom: 36px; max-width: 720px; }
.manifesto-body { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.9; font-weight: 300; max-width: 600px; }

/* ── UPDATED FOOTER ── */
footer.main-footer {
  background: var(--ink); padding: 64px 10vw 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand-col { }
.footer-brand-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-mark { width: 36px; height: 36px; background: var(--green-a); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: white; }
.footer-brand-name { font-size: 14px; font-weight: 500; color: white; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-tagline { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 20px; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.2); line-height: 1.7; }
.footer-col-title { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,.3); margin-bottom: 20px; display: block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li button { background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; padding: 0; }
.footer-col ul li button:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 10vw; background: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,.2); }

/* ── RESPONSIVE ADDITIONS ── */
@media(max-width:900px) {
  .rights-grid { grid-template-columns: 1fr; }
  .tactics-grid { grid-template-columns: 1fr; }
  .tactics-strip-grid { grid-template-columns: repeat(2,1fr); }
  .offer-wrap { grid-template-columns: 1fr; }
  .tariff-panel { position: relative; top: 0; }
  footer.main-footer { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .tactics-strip-grid { grid-template-columns: 1fr; }
  footer.main-footer { grid-template-columns: 1fr; }
  .tactics-strip-header { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   MOBILE — Comprehensive pass for 375–480px
══════════════════════════════════════════════════ */

@media (max-width: 480px) {

  /* ── NAV ── */
  header { padding: 0 20px; height: 72px; }
  .nav-brand-sub { display: none; }
  .nav-mark { width: 30px; height: 30px; font-size: 11px; }

  /* ── INDEPENDENCE BAR ── */
  .independence-bar {
    padding: 11px 20px;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .independence-bar::-webkit-scrollbar { display: none; }
  .ind-divider { display: none; }
  .ind-item { font-size: 11px; white-space: nowrap; flex-shrink: 0; }

  /* ── HERO ── */
  .pt { padding-top: 72px; }
  .hero-main {
    padding: 44px 20px 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-h1 {
    font-size: clamp(40px, 11vw, 56px);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .hero-reframe {
    font-size: 15px;
    padding-left: 18px;
    margin-bottom: 28px;
  }
  .hero-independence {
    padding: 18px 20px;
    margin-bottom: 32px;
  }
  .hero-ind-list li { font-size: 13px; }
  .hero-actions {
    gap: 24px;
    margin-bottom: 56px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* ── RIGHT CARD ── */
  .hero-right {
    padding: 28px 24px;
    position: static;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .hero-card-h { font-size: 18px; margin-bottom: 18px; }
  .hero-stage-btn { padding: 13px 2px; font-size: 14px; }

  /* ── TRUST STRIP ── */
  .hero-trust-strip {
    padding: 0 20px 56px;
    margin-top: 40px;
  }
  .hero-trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 36px;
  }
  .hts-title { font-size: 16px; }

  /* ── PAGE HEROES ── */
  .page-hero { padding: 48px 20px 56px; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 48px); letter-spacing: -1px; }
  .page-hero p { font-size: 14px; }
  .page-hero-signal { font-size: 11px; margin-top: 22px; }
  .back-btn { margin-bottom: 24px; }

  /* ── GUIDE STAGE CARDS ── */
  .guide-wrap { padding: 36px 20px 72px; }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-card { padding: 28px 24px 32px; }

  /* ── DETAIL BODY (stage content) ── */
  .detail-body { padding: 36px 20px 64px; grid-template-columns: 1fr; gap: 32px; }
  .detail-content-label { font-size: 10px; }
  .detail-p { font-size: 14px; }
  .checklist-box { padding: 24px 20px; }
  .next-box { padding: 20px; }

  /* ── TILES ── */
  .tiles-header { padding: 48px 20px 0; }
  .tiles-h2 { font-size: clamp(26px, 8vw, 36px); }
  .tiles-grid { padding: 0 20px; grid-template-columns: 1fr; }
  .tile { padding: 28px 24px; }

  /* ── WRONG HOME CARD ── */
  .wrong-home-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 20px;
    margin: 0 0 0 0;
  }
  .wrong-home-btn { width: 100%; text-align: center; justify-content: center; padding: 16px 24px; }

  /* ── TACTICS STRIP ── */
  .tactics-strip { padding: 56px 20px; }
  .tstrip-item { padding: 0; }

  /* ── BRAND BAND ── */
  .brand-band { padding: 56px 20px; }
  .brand-h2 { font-size: clamp(24px, 7vw, 36px); }

  /* ── WRONG PAGE ── */
  .wrong-hero { padding: 48px 20px 56px; }
  .wrong-hero h1 { font-size: clamp(32px, 9vw, 48px); letter-spacing: -1px; }
  .wrong-wrap { padding: 44px 20px 72px; }
  .wrong-intro { margin-bottom: 48px; }
  .wrong-intro h2 { font-size: clamp(22px, 6vw, 30px); }
  .wrong-sit-header { padding: 24px 20px; }
  .wrong-sit-body { padding: 0 20px 28px 20px; }
  .wrong-sit-left { gap: 14px; }
  .wrong-sit-title { font-size: 16px; }
  .wrong-escalation { padding: 44px 20px; }

  /* ── OFFERS PAGE ── */
  .offer-wrap { padding: 44px 20px 72px; }
  .offer-main h2 { font-size: clamp(24px, 7vw, 36px); }
  .tariff-panel { padding: 28px 20px; }

  /* ── TIMELINE ── */
  .tl-stepper { gap: 4px; padding: 0 20px; }
  .tl-step-circle { width: 30px; height: 30px; font-size: 12px; }
  .tl-card-inner { padding: 28px 20px; }

  /* ── CHECKER ── */
  #view-checker .left-panel { padding: 28px 20px; }
  #view-checker .right-panel { padding: 28px 20px; }
  #view-checker .q-text { font-size: 20px; }

  /* ── FAQ ── */
  .faq-wrap { padding: 40px 20px 72px; }
  .faq-item { padding: 22px 20px; }
  .faq-cta-strip { padding: 44px 20px; }

  /* ── GLOSSARY ── */
  .glossary-wrap { padding: 0 20px; }
  .def-header { padding: 18px 0; }

  /* ── FOOTER ── */
  footer.main-footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 56px;
  }
  .footer-brand-col { max-width: 100%; }
  .footer-bottom { padding: 16px 20px; font-size: 11px; }

  /* ── DISCLAIMER ── */
  .disclaimer { padding: 24px 20px; }
}

/* ── 375px edge — tightest phones ── */
@media (max-width: 375px) {
  .hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .independence-bar { padding: 10px 16px; }
  .hero-main { padding: 36px 16px 0; }
  .hero-trust-strip { padding: 0 16px 48px; }
  .page-hero { padding: 40px 16px 48px; }
  .wrong-hero { padding: 40px 16px 48px; }
  footer.main-footer { padding: 40px 16px 48px; }
  .wrong-home-card { padding: 28px 16px; }
}

  .nav-btn { text-decoration: none; display: inline-block; }
  .nav-cta-btn { text-decoration: none; }
  .panel-link { text-decoration: none; display: flex; }
  .nav-brand { text-decoration: none; }
  .mobile-nav-links a { display: block; font-family: "DM Sans", sans-serif; font-size: 15px; color: #d5e2db; padding: 14px 28px; text-align: left; transition: background .2s; text-decoration: none; }
  .mobile-nav-links a:hover { background: rgba(255,255,255,0.06); color: white; }
  footer.main-footer { display: grid; }
  footer.main-footer a { text-decoration: none; }
  footer.main-footer ul li a { font-size: 13px; color: rgba(255,255,255,0.5); font-family: "DM Sans", sans-serif; font-weight: 300; transition: color .2s; }
  footer.main-footer ul li a:hover { color: white; }
  .view { display: block !important; }
  main { display: block; }


/* Skip to content - accessibility */
.skip-nav { position:absolute; top:-40px; left:0; background:var(--green); color:white; padding:8px 16px; font-size:13px; font-family:'DM Sans',sans-serif; font-weight:500; text-decoration:none; z-index:9999; border-radius:0 0 4px 0; transition:top .2s; }
.skip-nav:focus { top:0; }
