  /* Tokens: gravilog-tokens.css (loaded before this file) */
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-sans);
    background:var(--paper);
    color:var(--ink);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3{
    font-family:var(--font-display);
    font-weight:600;
    letter-spacing:-0.01em;
    color:var(--ink);
  }
  a{color:inherit;text-decoration:none;}
  .mono{font-family:'IBM Plex Mono', monospace;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 32px;}

  /* ---------- Week ruler (signature element) ---------- */
  .ruler{
    display:flex;
    align-items:center;
    width:100%;
    height:1px;
    background:var(--line);
    position:relative;
    margin:0;
  }
  .ruler-labeled{
    display:flex;
    justify-content:space-between;
    font-family:'IBM Plex Mono', monospace;
    font-size:11px;
    color:var(--ink-soft);
    letter-spacing:0.04em;
    padding:6px 0 0 0;
  }
  .ruler-track{
    height:2px;
    background:linear-gradient(90deg, var(--green) 0%, var(--blue) 55%, var(--coral) 100%);
    width:100%;
    border-radius:2px;
    position:relative;
  }
  .ruler-week-block{margin:40px 0;}

  /* Header styles live in gravilog-emr-header.css (.emr-site-header) */
  .btn{
    display:inline-block;
    padding:11px 22px;
    border-radius:7px;
    font-weight:600;
    font-size:14.5px;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:all .15s;
  }
  .btn-primary{background:var(--blue); color:white;}
  .btn-primary:hover{background:var(--blue-deep);}
  .btn-ghost{border-color:var(--line); color:var(--ink);}
  .btn-ghost:hover{border-color:var(--blue); color:var(--blue);}

  /* ---------- Hero ---------- */
  .hero{padding:88px 0 64px;}
  .hero-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;}
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--green);
    font-weight:500;
    margin-bottom:18px;
    display:flex; align-items:center; gap:8px;
  }
  .eyebrow::before{content:''; width:16px; height:1px; background:var(--green);}
  .hero h1{
    font-size:53px;
    line-height:1.08;
    margin-bottom:22px;
  }
  .hero h1 em{font-style:italic; color:var(--blue);}
  .hero p.lead{
    font-size:18.5px;
    color:var(--ink-soft);
    max-width:480px;
    margin-bottom:32px;
  }
  .hero-cta{display:flex; gap:14px; margin-bottom:14px;}
  .btn-lg{padding:15px 28px; font-size:15.5px; border-radius:8px;}
  .hero-note{font-size:13px; color:var(--ink-soft);}
  .hero-note strong{color:var(--ink);}

  .hero-visual{position:relative;}
  .browser-card{
    background:white;
    border-radius:12px;
    border:1px solid var(--line);
    box-shadow:0 20px 50px -20px rgba(21,34,56,0.25);
    overflow:hidden;
  }
  .browser-bar{
    display:flex; gap:6px; align-items:center;
    padding:11px 14px;
    background:#EEEEE7;
    border-bottom:1px solid var(--line);
  }
  .browser-dot{width:9px; height:9px; border-radius:50%; background:#D8D6C9;}
  .browser-card img{display:block; width:100%; height:auto;}

  /* ---------- Trust bar ---------- */
  .trust-bar{
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    padding:26px 0;
    background:var(--paper-alt);
  }
  .trust-row{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;
  }
  .trust-item{display:flex; align-items:baseline; gap:8px;}
  .trust-num{font-family:'Fraunces', serif; font-size:26px; font-weight:600; color:var(--blue-deep);}
  .trust-label{font-size:13.5px; color:var(--ink-soft);}

  /* ---------- Section shared ---------- */
  section{padding:88px 0;}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--green); font-weight:500; margin-bottom:14px;
  }
  .section-head h2{font-size:36px; line-height:1.15; margin-bottom:14px;}
  .section-head p{font-size:16.5px; color:var(--ink-soft);}

  /* ---------- Feature rows ---------- */
  .feature-row{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center;
    padding:64px 0;
    border-top:1px solid var(--line);
  }
  .feature-row:first-of-type{border-top:none;}
  .feature-row.reverse .feature-text{order:2;}
  .feature-row.reverse .feature-shot{order:1;}
  .feature-tag{
    display:inline-block;
    font-family:'IBM Plex Mono', monospace;
    font-size:11.5px; color:var(--green); font-weight:500;
    margin-bottom:14px; letter-spacing:0.04em;
  }
  .feature-text h3{font-size:27px; margin-bottom:14px; line-height:1.25;}
  .feature-text p{font-size:15.5px; color:var(--ink-soft); margin-bottom:20px;}
  .feature-list{list-style:none;}
  .feature-list li{
    font-size:14.5px; color:var(--ink);
    padding-left:22px; position:relative; margin-bottom:9px;
  }
  .feature-list li::before{
    content:'—'; position:absolute; left:0; color:var(--blue); font-weight:600;
  }
  .feature-shot .browser-card{box-shadow:0 16px 40px -18px rgba(21,34,56,0.22);}

  /* ---------- Momita connect band ---------- */
  .connect-band{
    background:var(--blue-deep);
    color:white;
    padding:72px 0;
  }
  .connect-band .section-eyebrow{color:#8FD9A6;}
  .connect-band h2{color:white; font-size:32px;}
  .connect-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
  .connect-band p{color:#C4CFE3; font-size:16px; margin-bottom:24px;}
  .connect-pill{
    display:inline-flex; align-items:center; gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    padding:9px 16px; border-radius:100px;
    font-family:'IBM Plex Mono', monospace; font-size:12.5px;
    margin-bottom:22px;
  }
  .connect-diagram{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:14px;
    padding:36px;
  }
  .flow-step{
    display:flex; align-items:center; gap:14px;
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .flow-step:last-child{border-bottom:none;}
  .flow-icon{
    width:38px; height:38px; border-radius:9px;
    display:flex; align-items:center; justify-content:center;
    font-size:16px; flex-shrink:0;
  }
  .flow-step:nth-child(1) .flow-icon{background:rgba(212,88,150,0.22);}
  .flow-step:nth-child(2) .flow-icon{background:rgba(63,165,92,0.22);}
  .flow-step:nth-child(3) .flow-icon{background:rgba(47,95,163,0.28);}
  .flow-step-text b{display:block; font-size:14.5px; margin-bottom:2px;}
  .flow-step-text span{font-size:13px; color:#AAB6CC;}

  /* ---------- Testimonial placeholder ---------- */
  .testimonial-note{
    background:var(--paper-alt);
    border:1px dashed var(--line);
    border-radius:12px;
    padding:32px;
    text-align:center;
    color:var(--ink-soft);
    font-size:14.5px;
  }

  /* ---------- Pricing ---------- */
  .pricing-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px;}
  .price-card{
    background:white;
    border:1.5px solid var(--line);
    border-radius:16px;
    padding:38px;
    position:relative;
  }
  .price-card.popular{border-color:var(--blue); box-shadow:0 20px 45px -25px rgba(47,95,163,0.35);}
  .price-badge{
    position:absolute; top:-13px; left:38px;
    background:var(--green); color:white;
    font-size:11.5px; font-weight:600;
    padding:5px 13px; border-radius:100px;
    font-family:'IBM Plex Mono', monospace;
  }
  .price-plan-name{font-size:14px; color:var(--ink-soft); font-weight:500; margin-bottom:10px;}
  .price-amount{font-family:'Fraunces', serif; font-size:44px; font-weight:600; margin-bottom:4px;}
  .price-amount span{font-size:16px; font-weight:400; color:var(--ink-soft); font-family:'IBM Plex Sans', sans-serif;}
  .price-sub{font-size:13.5px; color:var(--green); font-weight:500; margin-bottom:26px;}
  .price-list{list-style:none; margin-bottom:30px;}
  .price-list li{
    font-size:14.5px; padding:9px 0; border-top:1px solid var(--line);
    display:flex; align-items:center; gap:10px;
  }
  .price-list li:first-child{border-top:none;}
  .price-list li span.icon{font-size:15px;}
  .btn-block{display:block; width:100%; text-align:center;}

  /* ---------- Final CTA ---------- */
  .final-cta{
    background:var(--paper-alt);
    text-align:center;
    padding:96px 0;
  }
  .final-cta h2{font-size:38px; max-width:600px; margin:0 auto 16px;}
  .final-cta p{color:var(--ink-soft); font-size:16.5px; margin-bottom:32px;}

  /* ---------- Footer ---------- */
  footer{padding:56px 0 40px; border-top:1px solid var(--line);}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px;}
  .footer-brand img{height:38px; margin-bottom:16px;}
  .footer-brand p{font-size:13.5px; color:var(--ink-soft); max-width:220px;}
  .footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:0.05em; color:var(--ink-soft); margin-bottom:16px; font-weight:600;}
  .footer-col a{display:block; font-size:14.5px; color:var(--ink); margin-bottom:11px;}
  .footer-col a:hover{color:var(--blue);}
  .footer-app{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    margin-bottom:36px;
    padding:24px 28px;
    border:1px solid var(--line);
    border-radius:14px;
    background:var(--white);
  }
  .footer-app-copy h3{
    font-family:var(--font-display);
    font-size:20px;
    margin:0 0 6px;
    border:none;
    padding:0;
  }
  .footer-app-copy p{
    margin:0;
    font-size:14.5px;
    color:var(--ink-soft);
    max-width:460px;
  }
  .footer-app-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
  }
  .footer-app-actions img{
    height:40px;
    width:auto;
    display:block;
  }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:28px; border-top:1px solid var(--line);
    font-size:13px; color:var(--ink-soft); flex-wrap:wrap; gap:12px;
  }

  /* ---------- Page hero (subpages) ---------- */
  .page-hero{padding:64px 0 48px; border-bottom:1px solid var(--line);}
  .page-hero h1{font-size:42px; margin-bottom:14px;}
  .page-hero p{font-size:17px; color:var(--ink-soft); max-width:600px;}
  .breadcrumb{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--ink-soft); margin-bottom:18px;}
  .breadcrumb a{color:var(--blue);}

  /* ---------- Testimonials ---------- */
  .testi-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:22px;}
  .testi-card{
    background:white; border:1px solid var(--line); border-radius:14px;
    padding:28px; display:flex; flex-direction:column; height:100%;
  }
  .testi-quote{font-family:'Fraunces', serif; font-size:17px; line-height:1.5; color:var(--ink); margin-bottom:22px; flex-grow:1;}
  .testi-quote::before{content:'"'; color:var(--coral);}
  .testi-quote::after{content:'"'; color:var(--coral);}
  .testi-person{display:flex; align-items:center; gap:12px;}
  .testi-avatar{
    width:40px; height:40px; border-radius:50%;
    background:var(--paper-alt); display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces', serif; font-weight:600; color:var(--blue); font-size:15px;
  }
  .testi-name{font-size:14px; font-weight:600;}
  .testi-role{font-size:12.5px; color:var(--ink-soft);}
  .sample-flag{
    display:inline-block; font-family:'IBM Plex Mono', monospace; font-size:10.5px;
    color:var(--coral); background:rgba(214,69,132,0.08); padding:3px 9px; border-radius:5px;
    margin-bottom:10px; letter-spacing:0.03em;
  }

  /* ---------- Contact form ---------- */
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px;}
  .form-group{margin-bottom:20px;}
  .form-group label{display:block; font-size:13.5px; font-weight:600; margin-bottom:7px;}
  .form-group input, .form-group textarea, .form-group select{
    width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:8px;
    font-family:'IBM Plex Sans', sans-serif; font-size:14.5px; background:white; color:var(--ink);
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus{outline:2px solid var(--blue); outline-offset:1px; border-color:var(--blue);}
  .form-group .g-recaptcha{margin-top:4px;}
  .form-alert{
    margin-bottom:16px; padding:12px 14px; border-radius:8px; font-size:14.5px;
  }
  .form-alert-success{background:#e8f6ec; color:var(--green);}
  .form-alert-danger, .form-alert-error{background:#fdecef; color:var(--coral);}
  .contact-info-item{display:flex; gap:16px; margin-bottom:28px;}
  .contact-info-icon{
    width:42px; height:42px; border-radius:10px; background:var(--paper-alt);
    display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0;
  }
  .contact-info-item b{display:block; font-size:15px; margin-bottom:3px;}
  .contact-info-item span{font-size:14px; color:var(--ink-soft);}

  /* ---------- About ---------- */
  .value-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .value-card{padding:28px; border:1px solid var(--line); border-radius:14px; background:white;}
  .value-card .value-num{font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--green); margin-bottom:12px;}
  .value-card h3{font-size:19px; margin-bottom:10px;}
  .value-card p{font-size:14.5px; color:var(--ink-soft);}
  .story-block{max-width:720px;}
  .story-block p{font-size:16px; color:var(--ink-soft); margin-bottom:18px; line-height:1.75;}

  /* ---------- Legal pages ---------- */
  .legal-body{max-width:760px;}
  .legal-body h2{font-size:22px; margin:36px 0 12px;}
  .legal-body h2:first-child{margin-top:0;}
  .legal-body p, .legal-body li{font-size:15px; color:var(--ink-soft); margin-bottom:14px; line-height:1.75;}
  .legal-body ul{padding-left:22px; margin-bottom:14px;}
  .legal-updated{font-family:'IBM Plex Mono', monospace; font-size:12.5px; color:var(--ink-soft); margin-bottom:36px;}

  @media (max-width:900px){
    .testi-grid, .contact-grid, .value-grid{grid-template-columns:1fr;}
    .hero-grid, .feature-row, .connect-grid, .footer-grid, .pricing-grid{grid-template-columns:1fr; gap:36px;}
    .feature-row.reverse .feature-text{order:1;}
    .feature-row.reverse .feature-shot{order:2;}
    .hero h1{font-size:32px;}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .wrap{padding:0 20px;}
    .page-hero h1{font-size:30px;}
    .section-head h2{font-size:27px;}
  }

  /* ---------- Calculators ---------- */
  .calc-note{
    max-width:720px; margin:0 auto 40px; padding:16px 20px;
    background:var(--paper-alt); border:1px solid var(--line); border-radius:10px;
    font-size:14px; color:var(--ink-soft); text-align:center;
  }
  main.calc-page{padding-bottom:100px;}
  .calc-grid{display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:1000px; margin:0 auto; padding:0 32px;}
  @media(max-width:860px){ .calc-grid{grid-template-columns:1fr; padding:0 20px;} }
  .calc-card{
    background:white; border:1px solid var(--line); border-radius:16px;
    padding:32px; box-shadow:0 20px 45px -35px rgba(21,34,56,0.25);
  }
  .calc-card.full{grid-column:1 / -1;}
  .calc-icon{
    width:44px; height:44px; border-radius:10px; display:flex; align-items:center;
    justify-content:center; font-size:22px; margin-bottom:16px;
  }
  .calc-icon.blue{background:rgba(47,95,163,0.1);}
  .calc-icon.green{background:rgba(63,165,92,0.1);}
  .calc-card h2{font-family:'Fraunces', serif; font-size:22px; font-weight:600; margin-bottom:8px;}
  .calc-card > p.desc{font-size:14px; color:var(--ink-soft); margin-bottom:24px;}
  .form-row{margin-bottom:16px;}
  .form-row label{
    display:block; font-size:13px; font-weight:600; color:var(--ink-soft);
    margin-bottom:6px; text-transform:uppercase; letter-spacing:0.04em;
  }
  .form-row input, .form-row select{
    width:100%; padding:11px 14px; border:1px solid var(--line); border-radius:8px;
    font-size:15px; font-family:'IBM Plex Sans', sans-serif; color:var(--ink);
    background:var(--paper);
  }
  .form-row input:focus, .form-row select:focus{outline:2px solid var(--blue); outline-offset:1px;}
  .inline-row{display:flex; gap:12px;}
  .inline-row .form-row{flex:1;}
  .calc-btn{
    width:100%; padding:13px; border:none; border-radius:8px;
    font-size:15px; font-weight:600; color:white; cursor:pointer;
    margin-top:6px; transition:background .15s;
  }
  .calc-btn.blue{background:var(--blue);}
  .calc-btn.blue:hover{background:var(--blue-deep);}
  .calc-btn.green{background:var(--green);}
  .calc-btn.green:hover{background:#2F8046;}
  .results{
    margin-top:24px; padding-top:20px; border-top:1px solid var(--line);
    display:none;
  }
  .results.show{display:block;}
  .result-row{
    display:flex; justify-content:space-between; align-items:baseline;
    padding:10px 0; border-bottom:1px solid var(--line);
  }
  .result-row:last-child{border-bottom:none;}
  .result-label{font-size:13.5px; color:var(--ink-soft); font-weight:500;}
  .result-value{
    font-family:'IBM Plex Mono', monospace; font-size:16px; font-weight:600; color:var(--ink);
  }
  .result-value.highlight{color:var(--blue); font-size:19px;}
  .bmi-badge{
    display:inline-block; padding:4px 12px; border-radius:100px;
    font-size:12.5px; font-weight:600; font-family:'IBM Plex Mono', monospace;
  }
  .bmi-under{background:rgba(47,95,163,0.12); color:var(--blue);}
  .bmi-normal{background:rgba(63,165,92,0.12); color:var(--green);}
  .bmi-over{background:rgba(214,69,132,0.12); color:var(--coral);}
  .bmi-obese{background:rgba(214,69,132,0.2); color:#B32E68;}
  .error-msg{
    color:var(--coral); font-size:13px; margin-top:8px; display:none;
  }
  .error-msg.show{display:block;}

  /* ---------- Gallery ---------- */
  .gallery-section{padding:56px 0 24px;}
  .gallery-section + .gallery-section{padding-top:24px;}
  .gallery-section .section-head{margin-bottom:28px;}
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
  }
  .gallery-card{
    background:white;
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 18px 40px -30px rgba(21,34,56,0.28);
    transition:transform .15s, box-shadow .15s;
  }
  .gallery-card:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 48px -28px rgba(21,34,56,0.35);
  }
  .gallery-card img,
  .gallery-card video{
    display:block;
    width:100%;
    height:220px;
    object-fit:cover;
    background:var(--paper-alt);
  }
  .gallery-card-caption{
    padding:14px 16px 16px;
    border-top:1px solid var(--line);
  }
  .gallery-card-caption h4{
    font-family:'Fraunces', serif;
    font-size:17px;
    font-weight:600;
    margin:0;
  }
  .gallery-card-caption .week-tag{
    display:inline-block;
    margin-bottom:6px;
    font-family:'IBM Plex Mono', monospace;
    font-size:11px;
    letter-spacing:0.04em;
    text-transform:uppercase;
    color:var(--blue);
  }
  .gallery-cta{
    margin-top:40px;
    padding:28px;
    border:1px solid var(--line);
    border-radius:14px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
  }
  .gallery-cta h3{
    font-size:22px;
    margin-bottom:6px;
  }
  .gallery-cta p{
    font-size:14.5px;
    color:var(--ink-soft);
    max-width:520px;
  }
  .gallery-cta-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
  }
  .gallery-cta-actions img{height:36px; width:auto; display:block;}
  @media (max-width:900px){
    .gallery-grid{grid-template-columns:repeat(2, 1fr);}
    .gallery-card img,
    .gallery-card video{height:180px;}
  }
  @media (max-width:560px){
    .gallery-grid{grid-template-columns:1fr;}
    .gallery-cta{padding:22px;}
  }

  /* ---------- Auth / register forms on marketing layout ---------- */
  .registration-card, .signin-card-small{
    background:white; border:1px solid var(--line); border-radius:14px;
    padding:28px; max-width:520px; margin:0 auto;
  }
  .registration-card-wide{
    max-width:100%;
  }
  .register-wrap{
    max-width:880px;
    padding-bottom:80px;
  }
  .registration-card h2, .signin-card-small h2{
    font-family:'Fraunces', serif; font-size:24px; margin-bottom:18px;
  }
  .registration-card .mb-3, .signin-card-small .mb-3, .registration-card .form-group,
  .registration-card .form-field{
    margin-bottom:16px;
  }
  .register-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px 20px;
    margin-bottom:8px;
  }
  .register-form-grid .form-field{margin-bottom:0;}
  .registration-card label, .signin-card-small label{
    display:block; font-size:13.5px; font-weight:600; margin-bottom:6px;
  }
  .registration-card input, .registration-card select, .registration-card textarea,
  .signin-card-small input, .signin-card-small select, .signin-card-small textarea{
    width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:8px;
    font-family:'IBM Plex Sans', sans-serif; font-size:14.5px; background:white; color:var(--ink);
  }
  .register-recaptcha{margin:18px 0 16px;}
  .register-submit .btn,
  .registration-card .btn, .signin-card-small .btn, .btn-signin-blue, .gravilog-btn{
    display:inline-block; padding:12px 22px; border-radius:8px; border:none;
    background:var(--blue); color:white !important; font-weight:600; cursor:pointer;
  }
  .register-submit .btn{width:100%; text-align:center;}
  .registration-card .btn:hover, .signin-card-small .btn:hover{background:var(--blue-deep);}
  .errors, .errors li{list-style:none; margin:0 0 12px; padding:0; color:var(--coral);}
  @media (max-width:700px){
    .register-form-grid{grid-template-columns:1fr;}
  }

  .flash-wrap{padding-top:16px;}

  /* Auth shared */
  .auth-wrap{
    max-width:520px;
    padding-bottom:80px;
  }
  .auth-wrap-wide{
    max-width:880px;
  }
  .signin-center-wrapper{
    display:flex;
    justify-content:center;
  }
  .signin-card-small{
    width:100%;
    max-width:420px;
  }
  .auth-remember{
    display:flex;
    align-items:center;
    gap:8px;
  }
  .auth-remember input{width:auto;}
  .auth-remember label{margin:0; font-weight:500;}
  .auth-actions{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;
    margin-top:8px;
  }
  .auth-actions .btn{min-width:140px;}
  .auth-actions a{font-size:14px; color:var(--blue); font-weight:500;}
  .auth-actions a:hover{color:var(--blue-deep);}
  .password-field{
    position:relative;
  }
  .password-field input{
    padding-right:46px;
  }
  .password-toggle{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    background:transparent;
    color:var(--ink-soft);
    cursor:pointer;
    padding:0;
    border-radius:6px;
  }
  .password-toggle:hover,
  .password-toggle:focus{
    color:var(--blue);
    outline:none;
  }
  .password-toggle svg{
    width:18px;
    height:18px;
    display:block;
  }
  .password-toggle .icon-hide{display:none;}
  .password-toggle.is-visible .icon-show{display:none;}
  .password-toggle.is-visible .icon-hide{display:block;}
  .btn-signin-blue{
    background:var(--blue) !important;
    border:none !important;
    color:#fff !important;
    font-weight:600;
  }
  .lead-message{
    font-size:16px;
    color:var(--ink-soft);
    line-height:1.7;
    margin:0 0 18px;
  }
  .checkout-card .checkout-title{
    text-align:center;
    margin-bottom:12px;
  }
  .checkout-plan{
    text-align:center;
    font-size:15.5px;
    color:var(--ink-soft);
    margin-bottom:20px;
  }
  .checkout-btn{
    display:block;
    width:100%;
    margin-top:24px;
    text-align:center;
  }
  .form-alert-warning{
    background:#FFF9D7;
    color:var(--ink);
  }

  /* Baby names */
  #baby-names-page{
    max-width:880px;
    margin:0 auto;
    padding:0 32px 80px;
  }
  #baby-names-page h1{
    font-size:32px;
    margin:32px 0 24px;
  }
  .alphabet-nav{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:28px;
  }
  .alphabet-nav button{
    min-width:40px;
    height:40px;
    border-radius:var(--radius-md);
    border:1.5px solid var(--line);
    background:var(--white);
    color:var(--ink);
    font-family:var(--font-sans);
    font-weight:600;
    cursor:pointer;
  }
  .alphabet-nav button:hover{
    border-color:var(--blue);
    color:var(--blue);
  }
  .names-section h2{
    font-size:22px;
    margin-bottom:20px;
  }
  .name-category{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius-lg);
    padding:20px 24px;
    margin-bottom:16px;
  }
  .name-category h6{
    font-family:var(--font-sans);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.05em;
    color:var(--ink-soft);
    margin-bottom:12px;
  }
  .name-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px 14px;
    font-size:14.5px;
    color:var(--ink);
  }
  @media (max-width:560px){
    #baby-names-page{padding:0 20px 64px;}
  }
