:root{
      --bg:#070b16;
      --bg-soft:#0c1120;
      --panel:rgba(255,255,255,.06);
      --panel-2:rgba(255,255,255,.08);
      --stroke:rgba(255,255,255,.10);
      --text:#f4f7ff;
      --muted:rgba(244,247,255,.72);

      --brand:#7c6fe6;
      --brand-2:#a498ff;
      --accent:#ff9a57;
      --whats:#25d366;

      --shadow:0 24px 70px rgba(0,0,0,.40);
      --shadow-soft:0 14px 35px rgba(0,0,0,.28);

      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:18px;
      --radius-sm:14px;

      --maxw:1140px;
      --header-h:88px;
    }

    *{ box-sizing:border-box; }

    html{
      scroll-behavior:smooth;
      scroll-padding-top: var(--header-h);
    }

    body{
      margin:0;
      font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 0% 0%, rgba(124,111,230,.22), transparent 55%),
        radial-gradient(900px 500px at 100% 8%, rgba(255,154,87,.16), transparent 55%),
        radial-gradient(900px 700px at 50% 100%, rgba(124,111,230,.10), transparent 58%),
        linear-gradient(180deg, #060914 0%, #070b16 55%, #05070f 100%);
      overflow-x:hidden;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    section[id]{
      scroll-margin-top: var(--header-h);
    }

    .container{
      width:min(var(--maxw), calc(100% - 32px));
      margin:0 auto;
    }

    /* HEADER */
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(14px);
      background:rgba(7,11,22,.74);
      border-bottom:1px solid rgba(255,255,255,.06);
    }

    .topbar{
      min-height:var(--header-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }

    .brand-logo{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      font-size:20px;
      font-weight:900;
      color:#0a1020;
      background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.72));
      box-shadow:0 14px 34px rgba(0,0,0,.28);
      flex:0 0 auto;
    }

    .brand-text{
      min-width:0;
    }

    .brand-text strong{
      display:block;
      font-size:15px;
      line-height:1.1;
      letter-spacing:-.2px;
    }

    .brand-text span{
      display:block;
      margin-top:3px;
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:center;
    }

    .nav-link{
      padding:11px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      color:var(--muted);
      border:1px solid transparent;
      transition:.18s ease;
      white-space:nowrap;
    }

    .nav-link:hover,
    .nav-link.active{
      color:var(--text);
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.10);
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-shrink:0;
    }

    .btn{
      border:none;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:13px 16px;
      border-radius:16px;
      font-weight:900;
      font-size:13px;
      line-height:1;
      transition:transform .14s ease, filter .14s ease, background .14s ease;
      text-decoration:none;
      font-family:inherit;
    }

    .btn:hover{
      transform:translateY(-1px);
    }

    .btn:active{
      transform:translateY(0);
    }

    .btn-primary{
      color:#0a1020;
      background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.74));
      box-shadow:0 18px 45px rgba(0,0,0,.28);
    }

    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
    }

    .btn-whats{
      color:#061108;
      background:linear-gradient(135deg, rgba(37,211,102,.98), rgba(37,211,102,.74));
      box-shadow:0 18px 45px rgba(37,211,102,.18);
    }

    /* HERO */
    .hero{
      padding:36px 0 12px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:18px;
      align-items:center;
    }

    .hero-copy,
    .hero-preview{
      position:relative;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:fit-content;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      font-size:12px;
      font-weight:900;
      color:rgba(255,255,255,.88);
    }

    .hero h1{
      margin:14px 0 0;
      font-size:clamp(32px, 5vw, 58px);
      line-height:1.02;
      letter-spacing:-1.15px;
      max-width:12ch;
    }

    .hero h1 .grad{
      background:linear-gradient(135deg, #ffffff, #bfb6ff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .lead{
      margin:14px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      font-weight:600;
      max-width:58ch;
    }

    .hero-actions{
      margin-top:18px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .mini-pills{
      margin-top:18px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .mini-pill{
      padding:10px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.82);
      font-size:12px;
      font-weight:800;
    }

    .hero-preview-card{
      border-radius:30px;
      border:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(700px 320px at 15% 0%, rgba(124,111,230,.20), transparent 60%),
        radial-gradient(700px 320px at 115% 20%, rgba(255,154,87,.16), transparent 60%),
        rgba(255,255,255,.05);
      box-shadow:var(--shadow);
      padding:16px;
      overflow:hidden;
    }

    .browser{
      border-radius:24px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(6,10,20,.64);
    }

    .browser-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      background:rgba(255,255,255,.04);
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .dots{
      display:flex;
      gap:6px;
    }

    .dots span{
      width:10px;
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
    }

    .browser-url{
      flex:1;
      min-width:0;
      text-align:center;
      font-size:12px;
      font-weight:800;
      color:rgba(255,255,255,.74);
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      overflow:hidden;
      white-space:nowrap;
      text-overflow:ellipsis;
    }

    .browser-badge{
      font-size:11px;
      font-weight:900;
      color:rgba(255,255,255,.75);
    }

    .browser-body{
      padding:16px;
      display:grid;
      gap:12px;
    }

    .preview-topline{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }

    .preview-title{
      font-size:18px;
      font-weight:900;
      letter-spacing:-.3px;
    }

    .preview-chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      font-size:11px;
      font-weight:900;
      color:rgba(255,255,255,.80);
    }

    .preview-sub{
      color:rgba(255,255,255,.70);
      font-size:13px;
      line-height:1.7;
      font-weight:600;
    }

    .preview-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:10px;
    }

    .preview-box{
      min-height:96px;
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.09);
    }

    .preview-box strong{
      display:block;
      font-size:12px;
      font-weight:900;
      color:rgba(255,255,255,.86);
    }

    .lines{
      margin-top:10px;
      display:grid;
      gap:8px;
    }

    .line{
      height:10px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    }

    .w90{ width:90%; }
    .w72{ width:72%; }
    .w58{ width:58%; }

    .hero-note{
      margin-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    /* SECTION BASE */
    .section{
      padding:12px 0;
    }

    .section-head{
      max-width:720px;
      margin-bottom:16px;
    }

    .section-head .eyebrow{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      font-size:12px;
      font-weight:900;
      color:rgba(255,255,255,.82);
    }

    .section-head h2{
      margin:12px 0 0;
      font-size:clamp(24px, 3vw, 36px);
      line-height:1.08;
      letter-spacing:-.8px;
    }

    .section-head p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      font-weight:600;
    }

    /* CARDS */
    .card{
      position:relative;
      border-radius:var(--radius-lg);
      background:var(--panel);
      border:1px solid var(--stroke);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }

    .card::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        radial-gradient(500px 220px at 15% 0%, rgba(124,111,230,.12), transparent 60%),
        radial-gradient(500px 220px at 110% 20%, rgba(255,154,87,.10), transparent 60%);
    }

    .card-inner{
      position:relative;
      padding:18px;
    }

    /* HOW */
    .steps{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:12px;
    }

    .step .num{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      margin-bottom:12px;
      font-size:14px;
      font-weight:900;
      color:#091020;
      background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.70));
      box-shadow:0 12px 26px rgba(0,0,0,.24);
    }

    .step h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }

    .step p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
      font-weight:600;
    }

    /* GALLERY */
    .gallery-wrap{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }

    .gallery-highlight{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }

    .big-preview{
      min-height:380px;
      border-radius:26px;
      overflow:hidden;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      position:relative;
      box-shadow:var(--shadow-soft);
    }

    .big-preview img{
      width:100%;
      height:100%;
      object-fit:contain;
      background:#0a1020;
    }

    .big-preview .overlay{
      position:absolute;
      left:14px;
      right:14px;
      bottom:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(7,11,22,.70);
      border:1px solid rgba(255,255,255,.10);
      backdrop-filter:blur(10px);
    }

    .big-preview .overlay strong{
      display:block;
      font-size:14px;
      line-height:1.2;
    }

    .big-preview .overlay span{
      display:block;
      margin-top:4px;
      color:rgba(255,255,255,.72);
      font-size:12px;
      font-weight:600;
    }

    .mini-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:12px;
    }

    .shot{
      position:relative;
      min-height:164px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      cursor:pointer;
      transition:transform .14s ease, filter .14s ease, border-color .14s ease;
    }

    .shot:hover{
      transform:translateY(-2px);
      filter:brightness(1.04);
      border-color:rgba(255,255,255,.16);
    }

    .shot img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .shot .label{
      position:absolute;
      left:12px;
      bottom:12px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(7,11,22,.68);
      border:1px solid rgba(255,255,255,.10);
      color:#fff;
      font-size:12px;
      font-weight:800;
      backdrop-filter:blur(8px);
    }

    /* BENEFITS */
    .benefits{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:12px;
    }

    .benefit{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }

    .icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      font-size:18px;
    }

    .benefit strong{
      display:block;
      font-size:15px;
      letter-spacing:-.2px;
    }

    .benefit p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.72;
      font-weight:600;
    }

    /* PRICE */
    .pricing{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }

    .price-card{
      border-radius:26px;
      overflow:hidden;
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(255,255,255,.10), transparent 60%),
        radial-gradient(700px 260px at 110% 30%, rgba(124,111,230,.16), transparent 60%),
        rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
    }

    .price-top{
      padding:20px 20px 16px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .price-top .tag{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      font-size:12px;
      font-weight:900;
      color:rgba(255,255,255,.84);
    }

    .price-value{
      margin-top:14px;
      display:flex;
      align-items:flex-end;
      gap:12px;
      flex-wrap:wrap;
    }

    .price-value .big{
      font-size:48px;
      font-weight:900;
      line-height:1;
      letter-spacing:-1px;
    }

    .price-value .small{
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
      font-weight:700;
    }

    .price-list{
      padding:18px 20px;
      display:grid;
      gap:12px;
    }

    .price-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.82);
      font-size:13px;
      line-height:1.65;
      font-weight:650;
    }

    .tick{
      width:22px;
      height:22px;
      border-radius:10px;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      background:rgba(124,111,230,.16);
      border:1px solid rgba(124,111,230,.26);
    }

    .price-actions{
      padding:18px 20px 20px;
      border-top:1px solid rgba(255,255,255,.08);
      display:grid;
      gap:10px;
    }

    .side-points{
      display:grid;
      gap:12px;
    }

    .point{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }

    .point strong{
      display:block;
      font-size:15px;
    }

    .point p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      font-weight:600;
    }

    /* FAQ */
    .faq{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .qa{
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
    }

    .q{
      width:100%;
      border:none;
      background:transparent;
      color:var(--text);
      padding:15px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-family:inherit;
      font-size:13px;
      font-weight:900;
      text-align:left;
      cursor:pointer;
    }

    .q .chev{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      flex:0 0 auto;
      transition:transform .2s ease;
    }

    .a{
      max-height:0;
      overflow:hidden;
      transition:max-height .24s ease;
      padding:0 16px;
    }

    .a p{
      margin:0 0 15px;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
      font-weight:600;
    }

    .qa.open .a{
      max-height:240px;
    }

    .qa.open .chev{
      transform:rotate(180deg);
    }

    /* CONTACT */
    .contact{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:14px;
      align-items:stretch;
    }

    .mini-form{
      display:grid;
      gap:12px;
    }

    .form-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:12px;
    }

    label{
      display:block;
      margin-bottom:6px;
      font-size:12px;
      font-weight:900;
      color:rgba(255,255,255,.74);
    }

    .control{
      width:100%;
      border:none;
      outline:none;
      padding:13px 14px;
      border-radius:15px;
      font:700 14px/1.2 Poppins, sans-serif;
      color:var(--text);
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
    }

    .control:focus{
      border-color:rgba(124,111,230,.48);
      box-shadow:0 0 0 4px rgba(124,111,230,.14);
    }

    textarea.control{
      min-height:118px;
      resize:vertical;
      line-height:1.65;
    }

    .contact-card p,
    .aside-copy p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.78;
      font-weight:600;
    }

    .contact-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }

    .aside-stack{
      display:grid;
      gap:12px;
    }

    /* FOOTER */
    .footer{
      padding:28px 0 40px;
      text-align:center;
      color:rgba(255,255,255,.56);
      font-size:12px;
      font-weight:650;
    }

    /* FAB */
    .fab{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:999px;
      background:rgba(37,211,102,.96);
      border:1px solid rgba(37,211,102,.34);
      color:#071108;
      font-size:13px;
      font-weight:900;
      box-shadow:0 18px 50px rgba(37,211,102,.20);
      transition:transform .14s ease;
    }

    .fab:hover{
      transform:translateY(-2px);
    }

    .fab .bubble{
      width:34px;
      height:34px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.26);
      border:1px solid rgba(255,255,255,.22);
      font-size:16px;
    }

    /* MODAL */
    .modal{
      position:fixed;
      inset:0;
      z-index:90;
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      background:rgba(0,0,0,.66);
    }

    .modal.show{
      display:flex;
    }

    .modal-card{
      width:min(940px, 100%);
      border-radius:26px;
      overflow:hidden;
      background:rgba(10,15,28,.94);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
    }

    .modal-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border-bottom:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }

    .modal-top strong{
      font-size:14px;
      letter-spacing:-.2px;
    }

    .modal-close{
      border:none;
      cursor:pointer;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      color:rgba(255,255,255,.88);
      font-weight:900;
      font-family:inherit;
    }

    .modal-body{
      padding:16px;
    }

    .modal-shot{
      width:100%;
      min-height:420px;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.10);
      background:#091020;
      position:relative;
    }

    .modal-shot img{
      width:100%;
      height:100%;
      object-fit:contain;
      background:#091020;
    }

    .modal-shot .label{
      position:absolute;
      left:14px;
      bottom:14px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(7,11,22,.72);
      border:1px solid rgba(255,255,255,.10);
      color:#fff;
      font-size:12px;
      font-weight:900;
      backdrop-filter:blur(10px);
    }

    /* REVEAL */
    .reveal{
      opacity:0;
      transform:translateY(14px);
      transition:opacity .45s ease, transform .45s ease;
    }

    .reveal.show{
      opacity:1;
      transform:translateY(0);
    }

    /* RESPONSIVE */
    @media (max-width: 1020px){
      .hero-grid,
      .gallery-highlight,
      .pricing,
      .contact{
        grid-template-columns:1fr;
      }

      .steps,
      .benefits,
      .faq{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 900px){
      :root{
        --header-h:132px;
      }

      .topbar{
        flex-direction:column;
        align-items:stretch;
      }

      .nav{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:8px;
      }

      .nav-link{
        text-align:center;
      }

      .header-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
      }

      .header-actions .btn{
        width:100%;
      }

      .form-grid{
        grid-template-columns:1fr;
      }
    }

    @media (max-width: 720px){
      .container{
        width:min(100% - 20px, var(--maxw));
      }

      .hero{
        padding-top:24px;
      }

      .hero h1{
        max-width:100%;
        font-size:clamp(28px, 9vw, 40px);
      }

      .hero-preview-card{
        padding:12px;
      }

      .preview-grid,
      .mini-grid{
        grid-template-columns:1fr;
      }

      .big-preview{
        min-height:280px;
      }

      .modal-shot{
        min-height:280px;
      }

      .big-preview .overlay{
        flex-direction:column;
        align-items:flex-start;
      }

      .contact-actions{
        flex-direction:column;
        align-items:stretch;
      }

      .contact-actions .btn{
        width:100%;
      }

      .fab{
        right:10px;
        bottom:10px;
        padding:11px 13px;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    .menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  flex:0 0 auto;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:var(--text);
  transition:.2s ease;
}

@media (max-width: 900px){
  :root{
    --header-h:88px;
  }

  .topbar{
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
  }

  .brand{
    flex:1;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    display:none;
    width:100%;
    grid-template-columns:1fr;
    gap:8px;
    margin-top:12px;
    padding:12px;
    border-radius:20px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
  }

  .nav.open{
    display:grid;
  }

  .header-actions{
    display:none;
    width:100%;
    grid-template-columns:1fr 1fr;
    margin-top:10px;
  }

  .header-actions.open{
    display:grid;
  }

  .nav-link{
    text-align:center;
    width:100%;
  }
}