  :root{
    --font-main: 'Aptos', 'Corbel', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    --bg:#FAFAF7;
    --card:#FFFFFF;
    --ink:#161B19;
    --muted:#6B7069;
    --green:#0E7A63;
    --green-dark:#0A5A49;
    --green-soft:#E4F3EE;
    --coral:#FF6B4A;
    --coral-soft:#FFE9E2;
    --sand:#F1EDE3;
    --line:rgba(22,27,25,0.09);
    --radius:20px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-main);
    background:var(--bg);
    color:var(--ink);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:1160px; margin:0 auto; padding:0 32px;}
  h1,h2,h3{ font-family:var(--font-main); letter-spacing:-0.01em; color:var(--ink); font-weight:700; }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:13px; font-weight:600; letter-spacing:0.02em;
    color:var(--green-dark);
    background:var(--green-soft);
    padding:7px 14px; border-radius:999px;
    margin-bottom:20px;
  }
  .eyebrow.coral{ color:#C43E1F; background:var(--coral-soft); }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:15px 28px;
    border-radius:999px;
    font-family:var(--font-main);
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:all .2s ease;
  }
  .btn-primary{ background:var(--ink); color:#fff; }
  .btn-primary:hover{ background:var(--green-dark); transform:translateY(-1px); }
  .btn-ghost{ border-color:var(--line); color:var(--ink); background:#fff; }
  .btn-ghost:hover{ border-color:var(--ink); }
  .btn-white{ background:#fff; color:var(--green-dark); }
  .btn-white:hover{ background:var(--sand); }

  /* NAV */
  header{ position:sticky; top:0; z-index:50; background:rgba(250,250,247,0.85); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
  nav{ position:relative; display:flex; align-items:center; justify-content:space-between; padding:16px 32px; max-width:1160px; margin:0 auto; gap:18px; }
  .logo{ display:flex; align-items:center; gap:9px; }
  .logo-mark{ width:32px; height:32px; border-radius:9px; object-fit:contain; flex:0 0 auto; }
  .logo-word{ font-family:var(--font-main); font-size:19px; font-weight:700; }
  .nav-links{ display:flex; gap:34px; font-size:14.5px; font-weight:500; }
  .nav-links a{ color:var(--muted); transition:color .2s; }
  .nav-links a:hover{ color:var(--ink); }
  .nav-right{ display:flex; align-items:center; gap:14px; }
  .nav-mobile-join,
  .nav-mobile-lang,
  .mobile-menu-toggle{ display:none; }
  .nav-lang{
    display:flex; align-items:center; gap:3px;
    padding:3px;
    border:1px solid var(--line);
    border-radius:999px;
    background:#fff;
  }
  .nav-lang button{
    border:0; background:transparent; color:var(--muted);
    border-radius:999px; padding:6px 9px;
    font-family:var(--font-main); font-size:12px; font-weight:700;
    cursor:pointer; transition:background .2s, color .2s;
  }
  .nav-lang button.active{ background:var(--green); color:#fff; }
  .mobile-menu-toggle{
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:4px;
    width:42px;
    height:42px;
    border:0;
    border-radius:999px;
    background:var(--ink);
    color:#fff;
    cursor:pointer;
    flex:0 0 auto;
  }
  .mobile-menu-toggle span{
    display:block;
    width:18px;
    height:2px;
    margin:0;
    border-radius:999px;
    background:currentColor;
    transition:transform .2s ease, opacity .2s ease;
  }
  body.nav-open .mobile-menu-toggle span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  body.nav-open .mobile-menu-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .mobile-menu-toggle span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

  /* HERO */
  .hero{ padding:56px 0 0; position:relative; overflow:hidden; }
  .hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:center; padding-bottom:56px; }
  .hero h1{ font-size:50px; line-height:1.08; margin-bottom:20px; }
  .hero h1 span{ color:var(--green); }
  .hero p.lede{ font-size:17px; color:var(--muted); max-width:440px; margin-bottom:32px; }
  .hero-ctas{ display:flex; align-items:center; gap:10px; }
  .store-badge{
    display:inline-flex; align-items:center; gap:9px;
    min-height:48px;
    padding:8px 15px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:11px;
    background:var(--ink);
    color:#fff;
    box-shadow:0 12px 24px -18px rgba(22,27,25,0.7);
    transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .store-badge:hover{ transform:translateY(-1px); background:#0f1513; box-shadow:0 16px 30px -20px rgba(22,27,25,0.85); }
  .store-icon{ display:grid; place-items:center; flex:0 0 auto; color:#fff; }
  .store-icon-play svg{ width:25px; height:27px; }
  .store-icon-apple svg{ width:24px; height:27px; }
  .store-copy{ display:grid; gap:1px; text-align:left; line-height:1; }
  .store-copy small{
    color:rgba(255,255,255,0.72);
    font-size:10px;
    font-weight:600;
    letter-spacing:0.035em;
    text-transform:uppercase;
  }
  .store-copy strong{
    color:#fff;
    font-size:17px;
    font-weight:700;
    letter-spacing:-0.01em;
    white-space:nowrap;
  }
  .trust-row{ display:flex; align-items:center; gap:10px; margin-top:36px; }
  .trust-dot{ width:8px; height:8px; border-radius:50%; background:var(--green); flex-shrink:0; }
  .trust-row .txt{ font-size:13.5px; color:var(--muted); white-space:nowrap; }
  .trust-row .txt strong{ color:var(--ink); }

  /* Hero card mockup */
  .card-stage{ position:relative; display:flex; justify-content:center; }
  .res-card{
    width:300px; background:var(--card); border-radius:24px;
    box-shadow:0 30px 70px -25px rgba(22,27,25,0.25);
    overflow:hidden;
    position:relative;
  }
  .res-card .body{ padding:34px 24px 26px; }
  .res-card .tag{ display:inline-block; font-size:12px; font-weight:600; color:var(--green-dark); background:var(--green-soft); padding:4px 10px; border-radius:999px; margin-bottom:10px; }
  .res-card h4{ font-family:var(--font-main); font-size:18px; font-weight:600; margin-bottom:4px; }
  .res-card .meta{ font-size:13.5px; color:var(--muted); margin-bottom:16px; }
  .res-card .row{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:14px; }
  .res-card .row .lbl{ font-size:11.5px; color:var(--muted); text-transform:uppercase; letter-spacing:0.04em; }
  .res-card .row .val{ font-size:14.5px; font-weight:600; }
  .check-badge{
    position:absolute; top:14px; right:14px;
    width:32px; height:32px; border-radius:50%;
    background:var(--green); display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 14px -4px rgba(14,122,99,0.6);
  }
  .float-pill{
    position:absolute; bottom:-14px; left:50%;
    transform:translateX(-50%);
    background:var(--green); color:#fff;
    font-size:12px; font-weight:600;
    padding:7px 13px; border-radius:999px;
    display:flex; align-items:center; gap:6px;
    box-shadow:0 12px 24px -10px rgba(14,122,99,0.5);
    white-space:nowrap;
  }
  .float-pill .dot{ width:6px; height:6px; border-radius:50%; background:#fff; }
  .blob{ position:absolute; border-radius:50%; filter:blur(60px); opacity:0.5; z-index:-1; }
  .blob1{ width:380px; height:380px; background:var(--green-soft); top:-80px; right:-60px; }
  .blob2{ width:300px; height:300px; background:var(--coral-soft); bottom:0; left:-100px; }

  /* CUISINE MARQUEE BANNER */
  .marquee-section{ padding:44px 0; overflow:hidden; }
  .marquee-outer{ position:relative; }
  .marquee-banner{
    position:relative;
    background:var(--green);
    transform:rotate(-2deg);
    box-shadow:9px 9px 0 0 var(--ink);
    overflow:hidden;
    padding:24px 0;
  }
  .marquee-track{
    display:flex; width:max-content; align-items:center; justify-content:center; gap:44px;
    padding:0 28px; flex-wrap:nowrap; margin:0 auto;
  }
  .marquee-item{
    font-family:var(--font-main); font-weight:700; font-size:22px;
    color:#F1F7EE; white-space:nowrap;
    display:flex; align-items:center; gap:12px;
  }
  .marquee-item.special{ text-decoration:underline; text-underline-offset:6px; text-decoration-thickness:2px; }
  .marquee-icon{
    width:32px; height:32px; border-radius:50%; background:#fff;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .marquee-icon svg{ width:14px; height:14px; }

  /* FEATURES */
  section{ padding:64px 0; }
  .section-head{ max-width:680px; margin:0 auto 40px; text-align:center; }
  .section-head h2{ font-size:30px; line-height:1.15; white-space:nowrap; }
  .section-head p{ color:var(--muted); font-size:15.5px; margin-top:12px; }
  .feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .feature-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; transition:transform .2s ease, box-shadow .2s ease; }
  .feature-card:hover{ transform:translateY(-3px); box-shadow:0 20px 40px -20px rgba(22,27,25,0.15); }
  .f-icon{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
  .f-icon.green{ background:var(--green-soft); }
  .f-icon.coral{ background:var(--coral-soft); }
  .f-icon.sand{ background:var(--sand); }
  .feature-card h3{ font-size:18px; margin-bottom:8px; }
  .feature-card p{ font-size:14.5px; color:var(--muted); line-height:1.65; }

  /* ABOUT */
  .about{ background:var(--bg); }
  .about-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .about-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; transition:transform .2s ease, box-shadow .2s ease; }
  .about-card:hover{ transform:translateY(-3px); box-shadow:0 20px 40px -20px rgba(22,27,25,0.15); }
  .about-card h3{ font-size:18px; margin-bottom:8px; }
  .about-card p{ font-size:14.5px; color:var(--muted); line-height:1.65; }

  /* HOW IT WORKS */
  .how{ background:var(--bg); }
  .steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .step-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:32px 26px; position:relative; }
  .step-num{ font-family:var(--font-main); font-size:15px; font-weight:700; color:var(--green); background:var(--green-soft); width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
  .step-card h3{ font-size:18px; margin-bottom:8px; }
  .step-card p{ font-size:14.5px; color:var(--muted); line-height:1.6; }

  /* TESTIMONIALS */
  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .testi-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; }
  .testi-stars{ color:#F5A623; font-size:13px; letter-spacing:2px; margin-bottom:12px; }
  .testi-quote{ font-size:14.5px; color:var(--charcoal, var(--ink)); line-height:1.6; margin-bottom:20px; }
  .testi-person{ display:flex; align-items:center; gap:12px; border-top:1px solid var(--line); padding-top:16px; }
  .testi-avatar{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-main); font-weight:700; font-size:13px; color:#fff; flex-shrink:0; }
  .avatar-green{ background:#0E7A63; }
  .avatar-coral{ background:#FF6B4A; }
  .avatar-gold{ background:#C9922E; }
  .testi-name{ font-size:14px; font-weight:600; }
  .testi-role{ font-size:12px; color:var(--muted); }

  /* FAQ */
  .faq-list{ max-width:680px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
  .faq-item{ background:var(--card); border:1px solid var(--line); border-radius:16px; padding:4px 22px; }
  .faq-item summary{
    list-style:none; cursor:pointer;
    padding:16px 0; font-weight:600; font-size:15px;
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    color:var(--ink);
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary .chev{ flex-shrink:0; transition:transform .2s ease; color:var(--green); }
  .faq-item[open] summary .chev{ transform:rotate(180deg); }
  .faq-item p{ font-size:14px; color:var(--muted); line-height:1.6; padding:0 0 18px; }
  .faq-mail{ color:var(--green-dark); font-weight:600; }

  /* CTA */
  .cta-block{ background:var(--green); border-radius:32px; padding:54px 50px; text-align:center; position:relative; overflow:hidden; }
  .cta-block::before{ content:""; position:absolute; width:400px; height:400px; background:rgba(255,255,255,0.08); border-radius:50%; top:-160px; right:-100px; }
  .cta-block h2{ color:#fff; font-size:36px; max-width:560px; margin:0 auto 14px; line-height:1.18; position:relative; }
  .cta-block p{ color:rgba(255,255,255,0.85); max-width:440px; margin:0 auto 30px; font-size:15.5px; position:relative; }
  .cta-block .hero-ctas{ justify-content:center; position:relative; }
  .eyebrow-on-green{ background:rgba(255,255,255,0.15); color:#fff; }
  .btn-outline-white{ border:1.5px solid rgba(255,255,255,0.4); color:#fff; background:transparent; }

  /* FOOTER */
  .site-footer{ background:var(--ink); color:rgba(255,255,255,0.65); padding:64px 0 28px; }
  .footer-columns{
    display:grid;
    grid-template-columns:minmax(220px, 1.25fr) .78fr .82fr 1.12fr 1.18fr;
    gap:34px;
    align-items:start;
    margin-bottom:38px;
  }
  .footer-brand .logo-word{ color:#fff; }
  .footer-brand p{ font-size:14px; margin:16px 0 18px; max-width:270px; line-height:1.65; color:rgba(255,255,255,0.6); }
  .social-row{ display:flex; gap:10px; }
  .social-icon{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; transition:background .2s; }
  .social-icon:hover{ background:rgba(255,255,255,0.18); }
  .social-icon svg,
  .social-icon img{ width:18px; height:18px; fill:currentColor; color:#fff; object-fit:contain; }
  .site-footer h4{ font-family:var(--font-main); font-size:13px; color:#fff; margin-bottom:16px; font-weight:700; letter-spacing:0.01em; }
  .site-footer ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
  .site-footer ul li{ font-size:14px; color:rgba(255,255,255,0.65); }
  .site-footer ul a{ font-size:14px; color:rgba(255,255,255,0.65); transition:color .2s; }
  .site-footer ul a:hover{ color:#fff; }
  .footer-contact-list{ gap:13px; }
  .footer-contact-list li{ display:grid; gap:3px; }
  .footer-contact-list span{
    font-size:11px; font-weight:700; letter-spacing:0.06em;
    text-transform:uppercase; color:rgba(255,255,255,0.38);
  }
  .footer-contact-list p{ margin:0; max-width:260px; line-height:1.55; }
  .footer-news-copy{ margin:-4px 0 14px; color:rgba(255,255,255,0.58); font-size:14px; line-height:1.55; }
  .email-signup{ display:flex; gap:8px; }
  .email-signup input{
    flex:1; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
    border-radius:10px; padding:10px 14px; color:#fff; font-size:13.5px; font-family:var(--font-main);
  }
  .email-signup input::placeholder{ color:rgba(255,255,255,0.45); }
  .email-signup button{
    width:40px; flex-shrink:0; background:var(--green); border:none; border-radius:10px;
    display:flex; align-items:center; justify-content:center; cursor:pointer;
  }
  .footer-lang-title{ margin-top:22px; }
  .lang-row{ display:flex; gap:8px; margin-top:12px; }
  .lang-row button{
    border:0; background:transparent;
    font-family:var(--font-main); font-size:13px; padding:6px 12px;
    border-radius:999px; cursor:pointer; color:rgba(255,255,255,0.6);
  }
  .lang-row button.active{ background:var(--green); color:#fff; }
  .footer-bottom{
    display:flex; align-items:center; justify-content:space-between; gap:18px;
    border-top:1px solid rgba(255,255,255,0.12);
    padding-top:22px; font-size:13px; color:rgba(255,255,255,0.5);
  }
  .footer-bottom-links{ display:flex; gap:18px; }
  .footer-bottom-links a{ color:rgba(255,255,255,0.55); transition:color .2s; }
  .footer-bottom-links a:hover{ color:#fff; }

  /* STEPS MODAL */
  .modal-overlay{
    position:fixed; inset:0; z-index:200;
    background:rgba(18,24,27,0.55);
    backdrop-filter:blur(4px);
    display:none;
    place-items:center;
    overflow-y:auto;
    padding:24px;
  }
  .modal-overlay.open{ display:grid; }
  .modal{
    background:var(--card); border-radius:22px;
    width:min(100%, 540px);
    max-height:min(92vh, calc(100vh - 48px));
    max-height:min(92dvh, calc(100dvh - 48px));
    margin:auto;
    overflow-y:auto;
    padding:28px 30px 24px; position:relative;
    box-shadow:0 40px 80px -20px rgba(0,0,0,0.4);
  }
  .modal-close{
    position:absolute; top:14px; right:14px;
    width:30px; height:30px; border-radius:50%;
    background:var(--sand); border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s;
  }
  .modal-close:hover{ background:var(--green-soft); }
  .modal .eyebrow{ margin-bottom:10px; padding:5px 12px; font-size:12px; }
  .modal h3{ font-size:21px; margin-bottom:6px; line-height:1.2; }
  .modal-intro{ color:var(--muted); font-size:13px; margin-bottom:20px; line-height:1.5; }
  .modal-steps{ display:flex; flex-direction:column; gap:14px; }
  .modal-step{ display:flex; gap:13px; }
  .modal-step .n{
    width:26px; height:26px; border-radius:50%;
    background:var(--green-soft); color:var(--green-dark);
    font-family:var(--font-main); font-weight:700; font-size:12px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .modal-step h4{ font-family:var(--font-main); font-size:14px; font-weight:600; margin-bottom:2px; }
  .modal-step p{ font-size:12.5px; color:var(--muted); line-height:1.45; }
  .modal-foot{ margin-top:20px; padding-top:18px; border-top:1px solid var(--line); text-align:center; }
  .modal-foot .btn{ width:100%; justify-content:center; padding:12px 24px; }
  .btn-full{ width:100%; justify-content:center; }

  @media (max-width: 900px){
    .nav-links{
      position:absolute;
      top:calc(100% + 10px);
      left:24px;
      right:24px;
      z-index:60;
      display:none;
      flex-direction:column;
      gap:4px;
      padding:16px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      box-shadow:0 20px 40px -24px rgba(22,27,25,.24);
      font-size:15px;
    }
    body.nav-open .nav-links{ display:flex; }
    .nav-links a{
      display:block;
      padding:10px 12px;
      border-radius:12px;
    }
    .nav-links a:hover{
      background:var(--sand);
      color:var(--ink);
    }
    .nav-mobile-join{
      display:flex;
      align-items:center;
      justify-content:center;
      width:100%;
      min-height:42px;
      margin-top:8px;
      border:0;
      border-radius:999px;
      background:var(--ink);
      color:#fff;
      font-family:var(--font-main);
      font-size:14px;
      font-weight:700;
      cursor:pointer;
    }
    .nav-mobile-lang{
      display:flex;
      gap:8px;
      padding-top:12px;
      margin-top:8px;
      border-top:1px solid var(--line);
    }
    .nav-mobile-lang button{
      border:0;
      border-radius:999px;
      padding:7px 10px;
      background:transparent;
      color:var(--muted);
      font-family:var(--font-main);
      font-size:13px;
      font-weight:800;
      cursor:pointer;
    }
    .nav-mobile-lang button.active{
      color:#fff;
      background:var(--green);
    }
    .mobile-menu-toggle{ display:flex; }
    .nav-right{ display:none; }
    .trust-row .txt{ white-space:normal; }
    .section-head h2{ white-space:normal; font-size:26px; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero h1{ font-size:36px; }
    .store-badge{ min-height:44px; padding:7px 13px; gap:9px; }
    .store-icon-play svg{ width:23px; height:25px; }
    .store-icon-apple svg{ width:22px; height:25px; }
    .store-copy small{ font-size:9px; }
    .store-copy strong{ font-size:15.5px; }
    .card-stage{ margin-top:36px; }
    .feature-grid{ grid-template-columns:1fr; }
    .about-grid{ grid-template-columns:1fr; }
    .steps{ grid-template-columns:1fr; }
    .testi-grid{ grid-template-columns:1fr; }
    .cta-block{ padding:50px 26px; }
    .footer-columns{ grid-template-columns:1.2fr 1fr; gap:34px 30px; }
    .footer-brand,
    .footer-updates{ grid-column:1 / -1; }
    section{ padding:64px 0; }
  }

  @media (max-width: 560px){
    nav{ padding:14px 16px; gap:10px; }
    .logo-mark{ width:30px; height:30px; border-radius:8px; }
    .logo-word{ font-size:18px; }
    .hero{ padding-top:52px; text-align:center; }
    .hero-grid{ gap:40px; padding-bottom:48px; }
    .hero h1{
      max-width:440px;
      margin-left:auto;
      margin-right:auto;
      font-size:35px;
      overflow-wrap:break-word;
    }
    .hero p.lede{
      max-width:390px;
      margin-left:auto;
      margin-right:auto;
      font-size:16px;
    }
    .hero-ctas{ justify-content:center; }
    .store-badge{ min-height:42px; padding:7px 11px; gap:8px; }
    .store-icon-play svg{ width:21px; height:23px; }
    .store-icon-apple svg{ width:20px; height:23px; }
    .store-copy small{ font-size:8px; }
    .store-copy strong{ font-size:14px; }
    .trust-row{
      flex-direction:column;
      justify-content:center;
      align-items:center;
      gap:8px;
      max-width:360px;
      margin-left:auto;
      margin-right:auto;
      text-align:center;
    }

    .cta-block{ padding:44px 22px; }
    .cta-block .hero-ctas{
      flex-direction:column;
      align-items:center;
      gap:10px;
    }
    .cta-block .btn{
      width:auto;
      min-height:42px;
      padding:11px 18px;
      font-size:13px;
      line-height:1.15;
    }
    .footer-columns{ grid-template-columns:1fr; gap:30px; }
    .footer-brand,
    .footer-updates{ grid-column:auto; }
    .footer-bottom{
      flex-direction:column;
      align-items:flex-start;
    }
    .modal-overlay{ padding:16px; }
    .modal{
      width:100%;
      max-height:calc(100vh - 32px);
      max-height:calc(100dvh - 32px);
      border-radius:18px;
      padding:26px 22px 22px;
    }
    .modal-close{ top:12px; right:12px; }
  }

  @media (max-width: 430px){
    nav{ padding-left:14px; padding-right:14px; }
    .nav-links{ left:14px; right:14px; }
    .logo-word{ font-size:17px; }
    .hero h1{ font-size:29px; }
    .hero p.lede{ font-size:15px; }
    .trust-row{ max-width:310px; }
  }
