:root{
    --navy:#0D3B66;
    --blue:#1E5DAA;
    --green:#2E7D32;
    --green-light:#6AAE3F;
    --bg:#F0F6FA;
    --white:#FFFFFF;
    --ink:#12283A;
    --ink-muted:#5B7083;
    --line: rgba(13,59,102,0.10);
    --radius: 14px;
  }

  *,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    background:var(--white);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }

  h1,h2,h3,h4{
    font-family:'Newsreader', serif;
    color:var(--navy);
    font-weight:500;
    line-height:1.15;
    letter-spacing:-0.01em;
  }

  .eyebrow{
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem;
    font-weight:600;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--green);
  }

  .wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }

  :focus-visible{ outline:2px solid var(--blue); outline-offset:3px; }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; transition-duration:0.01ms !important; }
  }

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .header-inner{
    max-width:1180px; margin:0 auto; padding:16px 32px;
    display:flex; align-items:center; justify-content:space-between; gap:24px;
  }
  .logo{ display:flex; align-items:center; gap:10px; }
  .logo-mark{
    width:34px; height:34px; border-radius:9px;
    background:linear-gradient(155deg, var(--green) 0%, var(--green-light) 100%);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .logo-mark svg{ width:18px; height:18px; }
  .logo-text{ display:flex; flex-direction:column; line-height:1.1; }
  .logo-text .name{
    font-family:'Newsreader', serif; font-weight:600; font-size:1.4rem; color:var(--navy);
  }
  .logo-text .name .accent{ color:var(--green); }

  nav{ display:flex; align-items:center; gap:32px; margin-left:auto; }
  nav a{
    font-size:0.88rem; font-weight:500; color:var(--ink);
    position:relative; padding:4px 0;
  }
  nav a::after{
    content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background:var(--green); transition:width 0.2s ease;
  }
  nav a:hover::after{ width:100%; }

  .header-actions{ display:flex; align-items:center; gap:18px; }
  .nav-toggle{ display:none; background:none; border:none; color:var(--navy); }

  @media (max-width:880px){
    nav{ display:none; }
    .nav-toggle{ display:flex; }
  }

  /* ---------- HERO ---------- */
  .hero{
    background-color:var(--navy);
    background-image:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 15px),
      repeating-linear-gradient(-45deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 15px);
    padding:88px 0 130px;
    overflow:hidden;
  }
  .hero-inner{
    max-width:1180px; margin:0 auto; padding:0 32px;
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:stretch;
  }
  .hero-copy{ text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; }
  .hero-eyebrow{ display:inline-flex; align-items:center; gap:8px; margin-bottom:18px; color:var(--green-light); }
  .hero-eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--green-light); }
  .hero h1{
    font-family:'Merriweather', serif; font-weight:700; color:var(--white);
    font-size:clamp(2rem, 3.6vw, 2.85rem); margin-bottom:22px; max-width:16ch;
  }
  .hero h1 em{ font-style:italic; color:var(--green-light); }
  .hero-tags{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
  .hero-tag{
    display:inline-flex; align-items:center; gap:10px; padding:9px 20px; border-radius:999px;
    border:1px solid rgba(255,255,255,0.25); background:rgba(255,255,255,0.05);
    font-family:'JetBrains Mono', monospace; font-size:0.7rem; font-weight:600;
    letter-spacing:0.05em; text-transform:uppercase; color:rgba(255,255,255,0.92); flex-wrap:wrap;
  }
  .hero-tag .seg{ display:inline-flex; align-items:center; gap:6px; }
  .hero-tag .seg .dot{ width:6px; height:6px; border-radius:50%; background:var(--green-light); flex-shrink:0; }
  .hero-tag .divider{ color:rgba(255,255,255,0.35); }
  .hero-sub{ font-size:1.05rem; color:rgba(255,255,255,0.78); max-width:46ch; margin-bottom:32px; }

  .hero-buttons{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 26px; border-radius:999px; font-weight:600; font-size:0.92rem;
    transition:transform 0.15s ease, box-shadow 0.15s ease;
    border:1.5px solid transparent;
  }
  .btn:hover{ transform:translateY(-1px); }
  .btn-primary{ background:var(--green); color:var(--white); box-shadow:0 8px 20px -8px rgba(46,125,50,0.55); }
  .btn-primary:hover{ box-shadow:0 12px 24px -8px rgba(46,125,50,0.6); }
  .btn-outline{ border-color:var(--navy); color:var(--navy); }
  .btn-outline:hover{ background:var(--navy); color:var(--white); }
  .hero .btn-outline{ border-color:rgba(255,255,255,0.55); color:var(--white); }
  .hero .btn-outline:hover{ background:var(--white); color:var(--navy); border-color:var(--white); }

  /* hero image - swap the src in the HTML for the final asset */
  .hero-art{
    position:relative; height:100%; min-height:320px;
    border-radius:18px;
    overflow:hidden;
  }
  .hero-art img{
    width:100%; height:100%; object-fit:cover; object-position:center; border-radius:18px;
  }

  /* ---------- FLOATING TRUST CARDS ---------- */
  .trust-cards-wrap{ background:var(--white); position:relative; padding-bottom:12px; }
  .trust-cards{
    max-width:1180px; margin:-92px auto 0; padding:0 32px;
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px; position:relative; z-index:5;
  }
  .trust-card{
    background:var(--white); border-radius:14px; padding:26px 22px;
    border:1px solid var(--line); box-shadow:0 24px 48px -24px rgba(13,59,102,0.32);
    transition:transform 0.2s ease, box-shadow 0.2s ease;
  }
  .trust-card:hover{ transform:translateY(-3px); box-shadow:0 28px 52px -22px rgba(13,59,102,0.36); }
  .tc-icon{ width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
  .tc-icon svg{ width:20px; height:20px; }
  .tc-icon.tc-green{ background:rgba(46,125,50,0.12); color:var(--green); }
  .tc-icon.tc-blue{ background:rgba(30,93,170,0.12); color:var(--blue); }
  .tc-icon.tc-navy{ background:rgba(13,59,102,0.10); color:var(--navy); }
  .tc-icon.tc-lime{ background:rgba(106,174,63,0.16); color:var(--green-light); }
  .trust-card h4{ font-family:'Inter',sans-serif; font-weight:700; font-size:0.98rem; color:var(--navy); margin-bottom:6px; }
  .trust-card p{ font-size:0.84rem; color:var(--ink-muted); }
  @media (max-width:880px){ .trust-cards{ grid-template-columns:1fr 1fr; margin-top:-56px; } }
  @media (max-width:560px){ .trust-cards{ grid-template-columns:1fr; margin-top:-40px; } }

  /* ---------- SECTION HEADERS ---------- */
  .section{ padding:76px 0; }
  .section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:38px; flex-wrap:wrap; }
  .section-head h2{ font-size:clamp(1.5rem, 2.6vw, 2rem); margin-top:8px; }
  .section-head p{ color:var(--ink-muted); max-width:52ch; margin-top:8px; }

  /* ---------- RESEARCH MARQUEE ---------- */
  .research{ background:var(--blue); }
  .research .eyebrow{ color:var(--green-light); }
  .research .section-head h2{ color:var(--white); }
  .research .section-head p{ color:rgba(255,255,255,0.75); }
  .marquee-viewport{ overflow:hidden; margin:0 -32px; -webkit-mask-image:linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image:linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .marquee-track{
    display:flex; gap:22px; width:max-content; padding:4px 32px;
    animation:scroll-left 42s linear infinite;
  }
  .marquee-track:hover{ animation-play-state:paused; }

  @keyframes scroll-left{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

  .card{
    background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
    width:330px; flex-shrink:0; overflow:hidden;
    transition:box-shadow 0.2s ease, transform 0.2s ease;
  }
  .card:hover{ box-shadow:0 20px 40px -22px rgba(13,59,102,0.28); transform:translateY(-3px); }
  .card-media{
    aspect-ratio:1/1; width:100%; position:relative;
    background:linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    overflow:hidden;
  }
  .card-media img{ width:100%; height:100%; object-fit:cover; display:block; }
  .card-body{ padding:20px 22px 22px; }
  .evidence-tag{
    display:inline-block; font-family:'JetBrains Mono', monospace; font-size:0.62rem;
    font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--green); background:rgba(46,125,50,0.09);
    padding:4px 9px; border-radius:6px; margin-bottom:12px;
  }
  .confidence{ display:flex; gap:3px; margin:12px 0 14px; }
  .confidence span{ height:4px; flex:1; border-radius:2px; background:var(--line); }
  .confidence span.on{ background:var(--green-light); }
  .card h3{ font-size:1.08rem; margin-bottom:6px; }
  .card p{ font-size:0.86rem; color:var(--ink-muted); margin-bottom:14px; }
  .read-link{ font-size:0.84rem; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:6px; }
  .read-link svg{ width:14px; height:14px; transition:transform 0.15s ease; }
  .card:hover .read-link svg{ transform:translateX(3px); }

  /* ---------- FAQ ---------- */
  .faq{ background:var(--blue); }
  .faq .eyebrow{ color:var(--green-light); }
  .faq .section-head h2{ color:var(--white); }
  .faq .section-head p{ color:rgba(255,255,255,0.75); }
  .faq-list{ display:flex; flex-direction:column; gap:14px; max-width:820px; margin:0 auto; }
  .faq-item{
    background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.18);
    border-radius:12px; padding:2px 22px;
  }
  .faq-item summary{
    list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between;
    gap:16px; padding:18px 0; font-family:'Inter', sans-serif; font-weight:600;
    color:var(--white); font-size:0.98rem;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-icon{
    flex-shrink:0; width:24px; height:24px; border-radius:50%; border:1px solid rgba(255,255,255,0.4);
    display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--white);
    transition:transform 0.2s ease;
  }
  .faq-item[open] .faq-icon{ transform:rotate(45deg); }
  .faq-item p{ color:rgba(255,255,255,0.8); font-size:0.9rem; padding-bottom:20px; margin-top:-4px; }
  .faq-more{ text-align:center; margin-top:32px; color:rgba(255,255,255,0.85); font-size:0.95rem; }
  .faq-more a{ color:var(--green-light); font-weight:700; }

  /* ---------- TOPICS ---------- */
  .topics-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
  .topic{
    border:1px solid var(--line); border-radius:var(--radius); padding:22px 16px;
    text-align:center; transition:border-color 0.2s ease, transform 0.2s ease;
  }
  .topic:hover{ border-color:var(--green-light); transform:translateY(-2px); }
  .topic .icon{
    width:42px; height:42px; margin:0 auto 12px; border-radius:11px; background:var(--bg);
    display:flex; align-items:center; justify-content:center; color:var(--navy);
  }
  .topic span{ font-size:0.82rem; font-weight:600; color:var(--navy); }
  @media (max-width:880px){ .topics-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:520px){ .topics-grid{ grid-template-columns:repeat(2,1fr); } }

  /* ---------- reveal on scroll ---------- */
  .reveal{ opacity:0; transform:translateY(16px); transition:opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ---------- FOOTER ---------- */
  footer{ background:var(--navy); color:rgba(255,255,255,0.82); padding:56px 0 28px; }
  .footer-top{ display:flex; justify-content:space-between; gap:32px; flex-wrap:wrap; margin-bottom:36px; }
  .footer-logo{ display:flex; align-items:center; gap:10px; }
  .footer-logo .name{ font-family:'Newsreader', serif; font-size:1.15rem; color:var(--white); font-weight:600; }
  .footer-links{ display:flex; gap:28px; flex-wrap:wrap; }
  .footer-links a{ font-size:0.86rem; color:rgba(255,255,255,0.75); }
  .footer-links a:hover{ color:var(--green-light); }
  .accent{ color:var(--green); }
  .footer-disclaimer{ border-top:1px solid rgba(255,255,255,0.14); padding-top:24px; font-size:0.76rem; color:rgba(255,255,255,0.55); max-width:920px; margin:0 auto; text-align:center; }
  .footer-disclaimer p{ margin-bottom:10px; }
  .footer-copy{ font-size:0.76rem; color:rgba(255,255,255,0.45); margin-top:20px; text-align:center; }
  .footer-copy .domain{ color:var(--white); font-weight:600; }

  @media (max-width:880px){
    .hero-inner{ grid-template-columns:1fr; }
    .hero-art{ order:-1; max-width:220px; margin:0 auto; aspect-ratio:1/0.95; height:auto; min-height:0; }
  }
  @media (max-width:600px){
    .hero-art{ display:none; }
  }

  /* ---------- REVIEW PAGE ---------- */
  .breadcrumb{ font-size:0.82rem; color:var(--ink-muted); padding:18px 0 0; }
  .breadcrumb a{ color:var(--blue); }
  .breadcrumb span{ color:var(--ink-muted); padding:0 4px; }

  .review-hero{ background:var(--bg); padding:28px 0 56px; }
  .review-hero-grid{ display:grid; grid-template-columns:1.5fr 1fr; gap:40px; align-items:center; margin-top:24px; }
  .review-copy{ display:flex; flex-direction:column; align-items:center; text-align:center; }
  .review-title{ font-family:'Merriweather', serif; font-weight:700; color:var(--navy); font-size:clamp(1.7rem,3vw,2.3rem); line-height:1.22; margin-bottom:14px; }
  .review-meta{ display:flex; justify-content:center; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:18px; }
  .stars{ color:#F5A623; letter-spacing:2px; font-size:1rem; }
  .review-meta .amazon-rating{ font-size:0.86rem; color:var(--ink-muted); }
  .review-lede{ font-size:1.05rem; color:var(--ink-muted); max-width:62ch; margin:0 auto 26px; }
  .review-cta-row{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; align-items:center; }
  .affiliate-note{ font-size:0.74rem; color:var(--ink-muted); margin-top:12px; max-width:60ch; margin-left:auto; margin-right:auto; }

  .facts-card{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px; box-shadow:0 24px 48px -30px rgba(13,59,102,0.28); }
  .review-product-image{ width:100%; aspect-ratio:2/1; border-radius:16px; overflow:hidden; box-shadow:0 20px 40px -24px rgba(13,59,102,0.3); margin-bottom:24px; }
  .review-product-image img{ width:100%; height:100%; object-fit:cover; display:block; }
  .facts-card h4{ font-family:'JetBrains Mono', monospace; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-muted); margin-bottom:16px; }
  .facts-list{ display:flex; flex-direction:column; gap:12px; }
  .facts-list div{ display:flex; justify-content:space-between; gap:12px; font-size:0.85rem; border-bottom:1px dashed var(--line); padding-bottom:10px; }
  .facts-list div span:first-child{ color:var(--ink-muted); }
  .facts-list div span:last-child{ color:var(--navy); font-weight:600; text-align:right; }
  .facts-card .btn{ width:100%; justify-content:center; margin-top:18px; }

  .our-score{ display:flex; align-items:center; gap:16px; background:var(--white); border:1px solid var(--line); border-radius:14px; padding:18px 20px; margin-bottom:24px; }
  .our-score .num{ font-family:'Merriweather',serif; font-weight:700; font-size:2.2rem; color:var(--green); line-height:1; }
  .our-score .out-of{ font-size:0.95rem; color:var(--ink-muted); }
  .our-score .label{ font-size:0.76rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--ink-muted); }

  .score-bars{ display:flex; flex-direction:column; gap:14px; margin:20px 0 8px; }
  .score-bar-row{ display:grid; grid-template-columns:190px 1fr 44px; align-items:center; gap:14px; font-size:0.86rem; }
  .score-bar-row .track{ height:8px; background:var(--line); border-radius:4px; overflow:hidden; }
  .score-bar-row .fill{ height:100%; background:linear-gradient(90deg,var(--green-light),var(--green)); border-radius:4px; }
  .score-bar-row .val{ font-weight:700; color:var(--navy); text-align:right; }

  .pros-cons{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:8px; }
  .pc-card{ border-radius:16px; padding:26px; }
  .pc-card.pros{ background:rgba(46,125,50,0.06); border:1px solid rgba(46,125,50,0.18); }
  .pc-card.cons{ background:rgba(13,59,102,0.05); border:1px solid var(--line); }
  .pc-card h4{ font-family:'Inter',sans-serif; font-size:1rem; color:var(--navy); margin-bottom:14px; display:flex; align-items:center; gap:8px; }
  .pc-card ul{ display:flex; flex-direction:column; gap:10px; }
  .pc-card li{ font-size:0.9rem; color:var(--ink); display:flex; gap:10px; align-items:flex-start; line-height:1.5; list-style:none; }
  .pc-card li svg{ flex-shrink:0; margin-top:3px; }
  .pc-card.pros li svg{ color:var(--green); }
  .pc-card.cons li svg{ color:var(--blue); }

  .feedback-stats{ display:grid; grid-template-columns:130px 1fr; gap:28px; align-items:center; margin-bottom:10px; }
  .feedback-score{ text-align:center; }
  .feedback-score .big{ font-family:'Merriweather',serif; font-weight:700; font-size:2.6rem; color:var(--navy); line-height:1; }
  .feedback-score .stars{ margin:6px 0; display:block; }
  .feedback-score .count{ font-size:0.78rem; color:var(--ink-muted); }
  .feedback-bars{ display:flex; flex-direction:column; gap:8px; }
  .fb-row{ display:grid; grid-template-columns:46px 1fr 38px; align-items:center; gap:10px; font-size:0.8rem; color:var(--ink-muted); }
  .fb-row .track{ height:8px; background:var(--line); border-radius:4px; overflow:hidden; }
  .fb-row .fill{ height:100%; background:#F5A623; border-radius:4px; }

  .callout{ background:var(--bg); border-left:4px solid var(--green); border-radius:10px; padding:18px 22px; font-size:0.9rem; color:var(--ink); margin:26px 0; }
  .callout strong{ color:var(--navy); }

  .cta-band{
    background-color:var(--navy);
    background-image:repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 15px), repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 15px);
    padding:64px 0; text-align:center;
  }
  .cta-band h2{ color:var(--white); margin-bottom:14px; }
  .cta-band p{ color:rgba(255,255,255,0.75); max-width:52ch; margin:0 auto 28px; }
  .cta-band .review-cta-row{ justify-content:center; }
  .cta-band .affiliate-note{ color:rgba(255,255,255,0.55); }

  .prose h2{ margin:44px 0 16px; font-size:1.5rem; }
  .prose h3{ margin:28px 0 12px; font-size:1.15rem; color:var(--navy); font-family:'Inter',sans-serif; font-weight:700; }
  .prose p{ color:var(--ink); margin-bottom:14px; line-height:1.7; max-width:74ch; }
  .prose ul{ margin:0 0 18px; display:flex; flex-direction:column; gap:8px; max-width:74ch; }
  .prose li{ color:var(--ink); line-height:1.6; padding-left:22px; position:relative; list-style:none; }
  .prose li::before{ content:''; position:absolute; left:0; top:0.65em; width:6px; height:6px; border-radius:50%; background:var(--green); }

  @media (max-width:880px){
    .review-hero-grid{ grid-template-columns:1fr; }
    .pros-cons{ grid-template-columns:1fr; }
    .feedback-stats{ grid-template-columns:1fr; text-align:center; }
    .score-bar-row{ grid-template-columns:130px 1fr 40px; }
  }

  /* ---------- ABOUT PAGE ---------- */
  .about-hero{
    background-color:var(--navy);
    background-image:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 15px),
      repeating-linear-gradient(-45deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 15px);
    padding:76px 0 84px; text-align:center;
  }
  .about-hero .eyebrow{ color:var(--green-light); }
  .about-hero h1{ font-family:'Merriweather', serif; font-weight:700; color:var(--white); font-size:clamp(2rem,3.6vw,2.7rem); max-width:18ch; margin:16px auto 20px; }
  .about-hero p{ color:rgba(255,255,255,0.78); max-width:60ch; margin:0 auto; font-size:1.05rem; }

  .mission-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:36px; }
  .mission-card{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:32px; box-shadow:0 24px 48px -32px rgba(13,59,102,0.24); }
  .mission-card .tc-icon{ margin-bottom:16px; }
  .mission-card h3{ font-family:'Merriweather', serif; font-size:1.2rem; color:var(--navy); margin-bottom:12px; }
  .mission-card p{ color:var(--ink-muted); font-size:0.94rem; line-height:1.7; }

  .founder-section{ background:var(--bg); }
  .founder-grid{ display:grid; grid-template-columns:280px 1fr; gap:44px; align-items:start; }
  .founder-photo{ width:100%; aspect-ratio:1/1; border-radius:18px; overflow:hidden; background:var(--white); border:1px solid var(--line); box-shadow:0 24px 48px -30px rgba(13,59,102,0.28); }
  .founder-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
  .founder-name{ font-family:'Merriweather', serif; font-size:1.5rem; color:var(--navy); margin-bottom:4px; }
  .founder-role{ font-family:'JetBrains Mono', monospace; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--green); margin-bottom:18px; display:block; }

  .process-steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:36px; }
  .process-step{ text-align:center; padding:0 8px; }
  .process-step .step-num{ width:38px; height:38px; border-radius:50%; background:var(--green); color:var(--white); font-family:'Merriweather',serif; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
  .process-step h4{ font-size:0.96rem; color:var(--navy); margin-bottom:8px; }
  .process-step p{ font-size:0.84rem; color:var(--ink-muted); line-height:1.6; }

  .disclosure-box{ background:rgba(30,93,170,0.06); border:1px solid rgba(30,93,170,0.18); border-radius:16px; padding:30px 32px; margin-top:8px; }
  .disclosure-box h3{ font-family:'Inter',sans-serif; font-weight:700; color:var(--navy); font-size:1.05rem; margin-bottom:12px; }
  .disclosure-box p{ color:var(--ink); font-size:0.92rem; line-height:1.7; margin-bottom:12px; }
  .disclosure-box p:last-child{ margin-bottom:0; }

  @media (max-width:880px){
    .mission-grid{ grid-template-columns:1fr; }
    .founder-grid{ grid-template-columns:1fr; }
    .founder-photo{ max-width:260px; margin:0 auto; }
    .process-steps{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:560px){
    .process-steps{ grid-template-columns:1fr; }
  }

  /* ---------- CONTACT PAGE ---------- */
  .contact-hero{ background:var(--bg); padding:56px 0 20px; text-align:center; }
  .contact-hero h1{ font-family:'Merriweather', serif; font-weight:700; color:var(--navy); font-size:clamp(1.9rem,3.2vw,2.5rem); margin:14px auto 16px; max-width:20ch; }
  .contact-hero p{ color:var(--ink-muted); max-width:56ch; margin:0 auto; font-size:1.02rem; }

  .contact-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:40px; align-items:start; margin-top:8px; }

  .contact-form{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:36px; box-shadow:0 24px 48px -32px rgba(13,59,102,0.22); }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .form-field{ margin-bottom:20px; display:flex; flex-direction:column; gap:7px; }
  .form-field label{ font-size:0.82rem; font-weight:600; color:var(--navy); }
  .form-field input, .form-field textarea, .form-field select{
    font-family:'Inter', sans-serif; font-size:0.92rem; color:var(--ink);
    padding:12px 14px; border:1px solid var(--line); border-radius:10px;
    background:var(--bg); resize:vertical;
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus{
    outline:none; border-color:var(--blue); background:var(--white);
  }
  .form-note{ font-size:0.78rem; color:var(--ink-muted); margin-top:6px; }

  .contact-info-card{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:30px; box-shadow:0 24px 48px -32px rgba(13,59,102,0.22); margin-bottom:24px; }
  .contact-info-card h4{ font-family:'JetBrains Mono', monospace; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-muted); margin-bottom:16px; }
  .contact-info-row{ display:flex; align-items:flex-start; gap:12px; margin-bottom:18px; }
  .contact-info-row:last-child{ margin-bottom:0; }
  .contact-info-row .icon{ width:36px; height:36px; border-radius:10px; background:var(--bg); display:flex; align-items:center; justify-content:center; color:var(--green); flex-shrink:0; }
  .contact-info-row strong{ display:block; font-size:0.88rem; color:var(--navy); margin-bottom:2px; }
  .contact-info-row span, .contact-info-row a{ font-size:0.85rem; color:var(--ink-muted); }
  .contact-info-row a{ color:var(--blue); }

  @media (max-width:880px){
    .contact-grid{ grid-template-columns:1fr; }
    .form-row{ grid-template-columns:1fr; }
  }

