:root{
    --ink:#1c2624;
    --ink-soft:#3d4a47;
    --teal:#33534f;
    --teal-dark:#22403c;
    --teal-pale:#e4ece9;
    --cream:#f7f6f1;
    --cream-deep:#efece3;
    --paper:#fffdf8;
    --line:#d8d3c4;
    --amber:#b8843a;
    --amber-pale:#f4e8d4;
    --rust:#a1462f;
    --rust-pale:#f5e3de;
    --good:#3d6b52;
    --good-pale:#e2ede4;
    --radius:14px;
    --shadow: 0 1px 2px rgba(28,38,36,.04), 0 8px 24px -12px rgba(28,38,36,.18);
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Work Sans', sans-serif;
    color:var(--ink);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
  }
  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    color:var(--teal-dark);
    margin:0;
    letter-spacing:-0.01em;
  }
  a{color:inherit;}
  .mono{font-family:'IBM Plex Mono', monospace;}
  .wrap{max-width:1120px; margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:12px;
    font-weight:600;
    color:var(--teal);
  }

  /* ---------- promo banner ---------- */
  .promo-banner{
    background:#2e7d4f;
    color:#fff;
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    font-weight:600;
    letter-spacing:.04em;
    text-align:center;
    padding:10px 16px;
  }

  /* ---------- draft ribbon ---------- */
  .draft-bar{
    background:var(--teal-dark);
    color:var(--cream);
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px;
    letter-spacing:.03em;
    text-align:center;
    padding:9px 16px;
  }
  .draft-bar b{color:#f0d199;}

  /* ---------- header ---------- */
  header{
    background:var(--paper);
    border-bottom:1px solid var(--line);
    position:sticky; top:0; z-index:50;
  }
  .headerbar{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:20px; padding-bottom:20px;
  }
  .logo{display:flex; align-items:center; gap:10px; font-family:'Fraunces', serif; font-size:22px; font-weight:600; color:var(--ink);}
  .logo img{height:32px; width:auto; display:block;}
  .logo .dotcom{color:var(--teal);}
  .logo svg{flex-shrink:0;}
  nav{display:flex; gap:30px; align-items:center;}
  nav a{
    font-size:14.5px; font-weight:500; text-decoration:none; color:var(--ink-soft);
    padding-bottom:3px; border-bottom:2px solid transparent;
    transition:color .15s, border-color .15s;
  }
  nav a:hover{color:var(--teal-dark); border-color:var(--amber);}

  /* ---------- hero dark (bg image, text overlay) ---------- */
  .hero-dark{background:#0d0d0d; border-bottom:1px solid var(--line);}
  .hero-media{
    position:relative; width:100%; aspect-ratio:2592/495;
    background-image:url('../assets/hero-bg-wide.png');
    background-size:cover; background-position:right center; background-repeat:no-repeat;
    display:flex; align-items:center;
  }
  .hero-text-overlay{
    width:50%; box-sizing:border-box;
    padding:28px 4% 28px 0;
    padding-left:max(32px, calc((100% - 1120px)/2 + 32px));
  }
  .hero-text-overlay h1{
    font-family:'Work Sans', sans-serif; color:#fff; font-size:clamp(24px,2.8vw,42px); line-height:1.16;
    font-weight:700; margin:0 0 22px; letter-spacing:-0.01em;
  }
  .hero-text-overlay h1 em{font-style:italic; color:#f0862e;}
  .hero-text-overlay p{color:#c9cbc9; font-size:clamp(11px,1vw,14.5px); line-height:1.5; margin:0 0 10px; max-width:44ch;}
  .hero-cta{
    display:inline-block; margin-top:6px; background:#f0862e; color:#fff;
    font-weight:700; font-size:clamp(10px,0.85vw,13px); text-decoration:none;
    padding:12px 22px; border-radius:100px; transition:filter .15s, transform .15s;
    white-space:normal; text-align:center; max-width:100%; line-height:1.3;
  }
  .hero-cta:hover{filter:brightness(1.06); transform:translateY(-1px);}
  .hero-text-overlay p.hero-disclosure{
    margin-top:14px; font-size:9.5px; line-height:1.5; color:#9a9c9a; max-width:42ch;
  }
  .hero-disclosure a{color:#c9cbc9; text-decoration:underline; text-underline-offset:2px;}
  .hero-disclosure a:hover{color:#fff;}

  /* ---------- dimensions band ---------- */
  .dims-section{background:var(--cream); border-bottom:1px solid var(--line);}
  .dims-band{padding-top:32px; padding-bottom:32px;}
  .dims-intro{font-size:16px; color:var(--ink-soft); max-width:none; margin:0 0 20px; line-height:1.55;}
  .dims-band-head{display:flex; align-items:baseline; justify-content:space-between; gap:20px; margin-bottom:16px; flex-wrap:wrap;}
  .dims-band-head h3{font-size:20px; font-weight:600;}
  .dims-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px;}
  .dimchip{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
    padding:14px 16px; box-shadow:var(--shadow); position:relative; transition:transform .18s, box-shadow .18s;
    display:flex; align-items:flex-start; gap:12px;
  }
  .dimchip:hover{transform:translateY(-2px); box-shadow:0 4px 8px rgba(28,38,36,.06), 0 16px 32px -14px rgba(28,38,36,.28);}
  .dimchip-top{display:flex; flex-direction:column; align-items:center; gap:4px; flex-shrink:0;}
  .dimchip-icon{
    width:32px; height:32px; border-radius:50%; background:var(--teal-pale);
    display:flex; align-items:center; justify-content:center; color:var(--teal-dark); flex-shrink:0;
  }
  .dimchip-icon svg{width:16px;height:16px;}
  .dimchip-num{font-family:'IBM Plex Mono', monospace; font-size:10px; font-weight:600; color:#a89f87;}
  .dimchip-body{min-width:0;}
  .dimchip h4{font-size:14.5px; font-weight:600; margin-bottom:3px; color:var(--ink); line-height:1.25;}
  .dimchip p{font-size:12.5px; color:var(--ink-soft); margin:0; line-height:1.4;}

  /* ---------- section shell ---------- */
  section{padding:56px 0;}
  .hero-dark{padding:0;}
  section.alt{background:var(--cream-deep);}
  .sec-head{max-width:none; margin-bottom:24px;}
  .sec-head h2{font-size:34px; font-weight:600; margin:10px 0 14px;}
  .sec-head p{font-size:16.5px; color:var(--ink-soft); max-width:none;}

  .disclaimer{
    background:var(--amber-pale); border:1px solid #e0c896; border-radius:12px;
    padding:18px 22px; font-size:14px; color:#5c4319; display:flex; gap:12px; margin-top:26px;
  }
  .disclaimer svg{flex-shrink:0; margin-top:2px;}
  .disclaimer b{color:#3f2e10;}

  /* ---------- methodology table ---------- */
  table.crit{
    width:100%; border-collapse:collapse; background:var(--paper);
    border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
    box-shadow:var(--shadow);
  }
  table.crit th{
    text-align:left; font-family:'IBM Plex Mono', monospace; font-size:11.5px;
    text-transform:uppercase; letter-spacing:.08em; color:var(--teal);
    background:var(--teal-pale); padding:14px 18px; font-weight:600;
  }
  table.crit td{
    padding:18px; border-top:1px solid var(--line); font-size:14.5px; vertical-align:top;
  }
  table.crit tr td:first-child{font-weight:600; color:var(--teal-dark); font-family:'Fraunces', serif; font-size:16px; width:19%;}
  table.crit tr td:last-child{font-family:'IBM Plex Mono', monospace; font-size:13px; color:var(--good); width:19%;}
  table.crit tr:hover td{background:#fbfaf5;}

  /* ---------- video placeholders ---------- */
  .video-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px;}
  .video-card{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
    overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column;
  }
  .video-thumb{
    position:relative; aspect-ratio:4/3;
    background:
      repeating-linear-gradient(135deg, #2b3f3c 0 2px, #2f4744 2px 26px);
    display:flex; align-items:center; justify-content:center;
  }
  .video-thumb::before{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(34,64,60,.15), rgba(15,25,23,.55));
  }
  .video-thumb .rec{
    position:absolute; top:12px; left:12px; z-index:2;
    display:flex; align-items:center; gap:6px;
    font-family:'IBM Plex Mono', monospace; font-size:10.5px; font-weight:600;
    color:#fff; background:rgba(0,0,0,.35); padding:4px 9px; border-radius:100px; letter-spacing:.05em;
  }
  .video-thumb .rec .dot{width:6px;height:6px;border-radius:50%; background:var(--rust); animation:pulse 1.6s infinite;}
  @keyframes pulse{0%,100%{opacity:1;}50%{opacity:.25;}}
  .video-thumb .dur{
    position:absolute; bottom:12px; right:12px; z-index:2;
    font-family:'IBM Plex Mono', monospace; font-size:10.5px; color:#fff;
    background:rgba(0,0,0,.4); padding:3px 8px; border-radius:5px;
  }
  .play-btn{
    z-index:2; width:56px; height:56px; border-radius:50%;
    background:rgba(255,255,255,.14); border:1.5px solid rgba(255,255,255,.55);
    display:flex; align-items:center; justify-content:center;
    backdrop-filter:blur(2px);
  }
  .play-btn svg{margin-left:3px;}
  .video-meta{padding:16px 18px 20px;}
  .video-meta .eyebrow{font-size:10.5px;}
  .video-meta h4{font-size:16px; margin:6px 0 8px; font-weight:600;}
  .video-meta p{font-size:13px; color:var(--ink-soft); margin:0;}
  .video-meta .status{
    display:inline-flex; align-items:center; gap:6px; margin-top:12px;
    font-family:'IBM Plex Mono', monospace; font-size:11px; font-weight:600;
    color:var(--amber); background:var(--amber-pale); padding:5px 10px; border-radius:100px;
  }
  .video-meta .status.done{color:var(--good); background:var(--good-pale);}

  /* ---------- real recorded video ---------- */
  .result-video{position:relative; aspect-ratio:4/3; overflow:hidden; background:#0d1917;}
  .result-video video{width:100%; height:100%; object-fit:cover; display:block;}
  .result-video .rec{
    position:absolute; top:12px; left:12px; z-index:2;
    display:flex; align-items:center; gap:6px;
    font-family:'IBM Plex Mono', monospace; font-size:10.5px; font-weight:600;
    color:#fff; background:rgba(20,60,45,.55); padding:4px 9px; border-radius:100px; letter-spacing:.05em;
    backdrop-filter:blur(2px); pointer-events:none;
  }
  .result-video .rec .dot{width:6px;height:6px;border-radius:50%; background:#5fd39a;}

  /* ---------- real measurement thumb (thermal photo) ---------- */
  .result-thumb{
    position:relative; aspect-ratio:4/3; overflow:hidden;
    background:#0d1917;
  }
  .result-thumb img{width:100%; height:100%; object-fit:cover; object-position:center 35%; display:block;}
  .result-thumb .rec{
    position:absolute; top:12px; left:12px; z-index:2;
    display:flex; align-items:center; gap:6px;
    font-family:'IBM Plex Mono', monospace; font-size:10.5px; font-weight:600;
    color:#fff; background:rgba(20,60,45,.55); padding:4px 9px; border-radius:100px; letter-spacing:.05em;
    backdrop-filter:blur(2px);
  }
  .result-thumb .rec .dot{width:6px;height:6px;border-radius:50%; background:#5fd39a;}
  .result-thumb .stat{
    position:absolute; bottom:12px; right:12px; z-index:2;
    font-family:'IBM Plex Mono', monospace; font-size:12px; font-weight:600; color:#fff;
    background:rgba(13,25,23,.55); padding:4px 9px; border-radius:6px; backdrop-filter:blur(2px);
  }

  /* ---------- results table ---------- */
  /* ---------- promo card ---------- */
  .promo-card-wrap{margin-bottom:32px; text-align:center;}
  .promo-eyebrow{display:block; margin-bottom:14px; text-align:center; font-size:16px; font-weight:800; letter-spacing:.08em;}
  .promo-card{
    display:flex; align-items:stretch; text-align:left;
    background:#0d0d0d; border:1px solid var(--line); border-radius:var(--radius);
    overflow:hidden; box-shadow:var(--shadow);
  }
  .promo-card-img{position:relative; width:220px; flex-shrink:0;}
  .promo-card-img img{width:100%; height:100%; object-fit:cover; display:block;}
  .promo-badge{
    position:absolute; top:12px; left:12px;
    background:#c1272d; color:#fff; font-family:'IBM Plex Mono', monospace;
    font-size:11px; font-weight:600; letter-spacing:.02em;
    padding:5px 10px; border-radius:6px;
  }
  .promo-card-body{
    flex:1; display:flex; align-items:center; justify-content:space-between; gap:24px;
    padding:22px 28px;
  }
  .promo-card-text h3{font-size:19px; font-weight:600; color:#fff; margin-bottom:6px;}
  .promo-card-text p{font-size:14px; color:#c9cbc9; margin:0; max-width:48ch;}
  .promo-card-btn{
    flex-shrink:0; display:inline-flex; align-items:center; gap:6px;
    background:#f0862e; color:#fff; font-weight:700; font-size:14px;
    text-decoration:none; padding:12px 22px; border-radius:100px;
    transition:filter .15s, transform .15s; white-space:nowrap;
  }
  .promo-card-btn:hover{filter:brightness(1.06); transform:translateY(-1px);}

  .results-wrap{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
    box-shadow:var(--shadow); overflow-x:auto;
  }
  table.results{width:100%; border-collapse:collapse; min-width:920px;}
  table.results th, table.results td{padding:15px 18px; font-size:13.5px; text-align:left; border-top:1px solid var(--line);}
  table.results thead th{
    border-top:none; font-family:'IBM Plex Mono', monospace; font-size:11px;
    text-transform:uppercase; letter-spacing:.06em; color:var(--ink-soft); font-weight:600;
    background:var(--cream-deep);
  }
  table.results thead th.brand-monna{
    color:#fff; background:var(--good); position:relative;
    border-left:2px solid var(--good); border-right:2px solid var(--good); border-top:2px solid var(--good);
    display:flex; align-items:center; gap:8px; border-radius:10px 10px 0 0;
  }
  .testsieger-badge{
    display:inline-flex; align-items:center; gap:4px;
    background:#fff; color:var(--good); font-size:10px; font-weight:700;
    padding:3px 8px; border-radius:100px; letter-spacing:.02em;
  }
  table.results tbody td.crit-name{font-family:'Fraunces', serif; font-weight:600; color:var(--teal-dark); font-size:14.5px;}
  table.results tbody td.brand-monna{
    background:var(--good-pale);
    border-left:2px solid var(--good); border-right:2px solid var(--good);
  }
  table.results tbody tr:last-child td.brand-monna{border-bottom:2px solid var(--good); border-radius:0 0 10px 10px;}
  .pending{
    font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:#9a8f6f;
    display:inline-flex; align-items:center; gap:5px;
  }
  .pending::before{content:"—"; }
  .thermo-cell{display:flex; flex-direction:column; align-items:flex-start; gap:12px;}
  .thermo-cell img{
    width:100%; max-width:210px; aspect-ratio:1/1; border-radius:10px; object-fit:cover;
    border:1px solid var(--line); box-shadow:0 3px 10px rgba(0,0,0,.18); flex-shrink:0;
  }
  .thermo-cell .temp{font-family:'IBM Plex Mono', monospace; font-size:13.5px; font-weight:600; color:var(--ink);}
  .thermo-cell .temp small{display:block; font-size:10.5px; font-weight:500; color:var(--ink-soft); margin-top:2px;}
  .tomato-cell{display:flex; flex-direction:column; align-items:flex-start; gap:12px;}
  .tomato-cell img, .tomato-cell video{
    width:100%; max-width:210px; aspect-ratio:1/1; object-fit:cover; border-radius:10px;
    border:1px solid var(--line); box-shadow:0 3px 10px rgba(0,0,0,.18); flex-shrink:0; background:#0d1917;
  }
  .tstat{
    display:inline-flex; align-items:center; gap:5px; white-space:nowrap;
    font-family:'IBM Plex Mono', monospace; font-size:11.5px; font-weight:600;
    padding:5px 10px; border-radius:100px;
  }
  .tstat.pass{color:var(--good); background:var(--good-pale);}
  .tstat.fail{color:var(--rust); background:var(--rust-pale);}
  .results-foot{
    display:flex; flex-direction:column; align-items:flex-start; gap:6px;
    padding:16px 20px; border-top:1px solid var(--line); background:var(--cream-deep);
    font-size:12.5px; color:var(--ink-soft);
  }
  .results-foot .footnote{color:#9a8f6f;}

  /* ---------- monna in context ---------- */
  .context-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px; align-items:stretch;}
  .context-card{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius);
    padding:20px; box-shadow:var(--shadow);
  }
  .context-card h3{font-size:17px; margin-bottom:6px;}
  .context-card p{font-size:14px; color:var(--ink-soft); margin:0 0 8px;}

  /* ---------- warum wichtig carousel ---------- */
  .warum-carousel{margin-bottom:28px;}
  .warum-viewport{overflow:hidden; border-radius:var(--radius);}
  .warum-track{display:flex; transition:transform .35s ease;}
  .warum-track .context-card{width:100%; flex-shrink:0; box-sizing:border-box; box-shadow:none; border-radius:0;}
  .warum-nav{display:flex; align-items:center; justify-content:center; gap:14px; margin-top:14px;}
  .warum-arrow{
    width:32px; height:32px; border-radius:50%; border:1px solid var(--line); background:var(--paper);
    color:var(--teal-dark); font-size:16px; line-height:1; cursor:pointer;
    display:flex; align-items:center; justify-content:center; transition:background .15s;
  }
  .warum-arrow:hover{background:var(--teal-pale);}
  .warum-dots{display:flex; gap:8px;}
  .warum-dot{
    width:8px; height:8px; border-radius:50%; border:none; background:var(--line); cursor:pointer; padding:0;
    transition:background .15s, transform .15s;
  }
  .warum-dot.is-active{background:var(--teal); transform:scale(1.25);}
  .weak-tag{
    display:inline-flex; align-items:center; gap:7px; margin-top:6px;
    font-family:'IBM Plex Mono', monospace; font-size:11.5px; font-weight:600;
    color:var(--rust); background:var(--rust-pale); padding:6px 11px; border-radius:100px;
  }
  .good-tag{
    display:inline-flex; align-items:center; gap:7px; margin-top:6px;
    font-family:'IBM Plex Mono', monospace; font-size:11.5px; font-weight:600;
    color:var(--good); background:var(--good-pale); padding:6px 11px; border-radius:100px;
  }

  /* ---------- redaktion ---------- */
  .team-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:36px;}
  .team-card{
    background:var(--paper); border:1px dashed #b7ae94; border-radius:var(--radius);
    padding:22px; text-align:left;
  }
  .avatar-ph{
    width:56px; height:56px; border-radius:50%; background:var(--teal-pale);
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  }
  .team-card .name{font-family:'Fraunces', serif; font-weight:600; font-size:16px; color:var(--ink); margin-bottom:2px;}
  .team-card .role{font-size:12.5px; color:var(--teal); font-weight:600; margin-bottom:10px;}
  .team-card .fill{font-size:12px; color:#9a8f6f; font-family:'IBM Plex Mono', monospace;}

  /* ---------- footer legal ---------- */
  /* ---------- buy cta ---------- */
  .cta-buy{background:var(--teal-dark); padding:52px 0;}
  .cta-card{
    display:flex; align-items:center; justify-content:space-between; gap:24px;
    flex-wrap:wrap;
  }
  .cta-card > div:first-child{flex:1 1 300px; min-width:0;}
  .cta-card .eyebrow{color:#9fd6c2;}
  .cta-card h3{color:#fff; font-size:26px; font-weight:600; margin:8px 0 8px;}
  .cta-card p{color:#c3d2cd; font-size:14.5px; margin:0; max-width:48ch;}
  .cta-product-photo{width:200px; flex-shrink:0; height:auto; display:block; filter:drop-shadow(0 18px 30px rgba(0,0,0,.4));}
  .cta-btn{
    display:inline-flex; align-items:center; gap:9px; flex-shrink:0;
    background:var(--cream); color:var(--teal-dark); font-family:'Work Sans', sans-serif;
    font-weight:600; font-size:15px; padding:15px 24px; border-radius:100px;
    text-decoration:none; box-shadow:0 8px 20px -8px rgba(0,0,0,.4);
    transition:transform .15s, box-shadow .15s;
  }
  .cta-btn:hover{transform:translateY(-2px); box-shadow:0 12px 26px -8px rgba(0,0,0,.5);}
  .cta-btn svg{flex-shrink:0;}

  /* ---------- bold inline cta (within methodik) ---------- */
  .cta-inline{
    margin-top:44px; padding:34px 38px;
    background:linear-gradient(120deg, #f5c877 0%, #e9a94a 100%);
    border-radius:18px; border:1px solid #d99a3c;
    box-shadow:0 1px 2px rgba(28,38,36,.06), 0 20px 40px -16px rgba(184,132,58,.55);
    display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  }
  .cta-inline-text .eyebrow{color:#6b4515;}
  .cta-inline-text h3{color:#2b1c08; font-size:24px; font-weight:700; margin:8px 0 6px;}
  .cta-inline-text p{color:#4a340f; font-size:14.5px; margin:0; max-width:50ch;}
  .cta-inline-btn{
    display:inline-flex; align-items:center; gap:9px; flex-shrink:0;
    background:var(--teal-dark); color:#fff; font-family:'Work Sans', sans-serif;
    font-weight:700; font-size:15.5px; padding:16px 26px; border-radius:100px;
    text-decoration:none; box-shadow:0 10px 22px -8px rgba(34,64,60,.55);
    transition:transform .15s, box-shadow .15s, background .15s;
  }
  .cta-inline-btn:hover{transform:translateY(-2px) scale(1.02); background:#1a332f; box-shadow:0 14px 28px -8px rgba(34,64,60,.65);}
  .cta-inline-btn svg{flex-shrink:0;}

  footer{background:var(--teal-dark); color:#dfe7e4; padding:48px 0 32px;}
  footer .wrap{display:grid; grid-template-columns:1.3fr 1fr; gap:40px;}
  footer h4{color:#fff; font-size:14px; font-family:'IBM Plex Mono', monospace; letter-spacing:.05em; text-transform:uppercase; margin-bottom:14px;}
  footer p, footer li{font-size:13px; color:#b9c7c2; line-height:1.65;}
  footer ul{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:9px;}
  .foot-bottom{border-top:1px solid #3f5a55; margin-top:36px; padding-top:20px; font-size:12px; color:#8fa39d; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}
  .foot-bottom a{color:#8fa39d; text-decoration:underline; text-underline-offset:2px;}
  .foot-bottom a:hover{color:#dfe7e4;}

  @media (max-width:980px){
    .hero-text-overlay{width:60%; padding:20px 4% 20px 0; padding-left:max(20px, calc((100% - 1120px)/2 + 32px));}
    .hero-disclosure{display:none;}
    .dims-grid{grid-template-columns:repeat(2, 1fr);}
    .video-grid{grid-template-columns:repeat(2,1fr);}
    .context-grid{grid-template-columns:1fr;}
    .team-grid{grid-template-columns:repeat(2,1fr);}
    footer .wrap{grid-template-columns:1fr;}
    nav{display:none;}
    table.results{min-width:640px;}
  }

/* ---------- legal pages ---------- */
a.logo{text-decoration:none;color:inherit;}
.legal-hero{padding:56px 0 32px;border-bottom:1px solid var(--line);}
.legal-hero h1{font-size:38px;font-weight:600;}
.legal-meta{font-size:14px;color:var(--ink-soft);margin-top:10px;}
.legal-content{max-width:720px;padding:48px 0 72px;}
.legal-content h2{font-size:21px;margin-top:44px;margin-bottom:14px;font-weight:600;}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{font-size:15px;margin:0 0 14px;color:var(--ink-soft);}
.legal-content address{font-style:normal;font-size:15px;margin:0 0 14px;line-height:1.65;color:var(--ink-soft);}
.legal-content ul{margin:0 0 14px;padding-left:22px;font-size:15px;color:var(--ink-soft);}
.legal-content ul li{margin-bottom:6px;}
.legal-content a{color:var(--teal);font-weight:600;}
html{scroll-padding-top:88px;}

@media (max-width:640px){
  .wrap{padding:0 20px;}
  .promo-card{flex-direction:column;}
  .promo-card-img{width:100%; height:160px;}
  .promo-card-body{flex-direction:column; align-items:flex-start; gap:14px; padding:18px 20px;}
  .promo-card-btn{width:100%; justify-content:center;}
  .hero-text-overlay{width:66%; padding:16px 3% 16px 0; padding-left:20px;}
  .hero-text-overlay p{display:none;}
  .hero-text-overlay h1{font-size:15px; margin-bottom:8px;}
  .hero-cta{font-size:10px; padding:8px 14px;}
  .hero-disclosure{display:none;}
  .dims-grid,.video-grid,.team-grid{grid-template-columns:1fr;}
  .cta-inline{padding:24px;}
  .legal-hero h1{font-size:30px;}
  header .headerbar{padding-top:14px; padding-bottom:14px;}
}
