    :root{
      --bg:#08090b;
      --bg-soft:#0e1014;
      --surface:#12151a;
      --surface-2:#171b21;
      --line:rgba(255,255,255,.09);
      --text:#f6f7f9;
      --muted:#9ba3af;
      --accent:#f5b83d;
      --accent-2:#ffcf70;
      --dark:#171107;
      --radius:24px;
      --container:1180px;
      --shadow:0 24px 70px rgba(0,0,0,.38);
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:
        radial-gradient(circle at 80% 0%,rgba(245,184,61,.10),transparent 30%),
        var(--bg);
      color:var(--text);
      line-height:1.6;
      overflow-x:hidden;
    }
    a{text-decoration:none;color:inherit}
    img{display:block;max-width:100%}
    button{font:inherit}
    .container{width:min(var(--container),calc(100% - 40px));margin:auto}

    /* HEADER */
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(8,9,11,.78);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }
    .brand{display:flex;align-items:center;gap:12px;flex-shrink:0}
    .brand-mark{
      width:42px;height:42px;
      display:grid;place-items:center;
      border-radius:13px;
      background:linear-gradient(135deg,#ffd777,#d68d16);
      color:#1b1305;
      font-size:13px;
      font-weight:900;
      box-shadow:0 8px 25px rgba(245,184,61,.2);
    }
    .brand-text{display:grid;line-height:1.05}
    .brand-text strong{font-size:16px;letter-spacing:.02em}
    .brand-text small{font-size:10px;color:var(--muted);margin-top:5px}
    .main-nav{display:flex;align-items:center;gap:4px}
    .main-nav a{
      color:#aeb5bf;
      font-size:13px;
      font-weight:600;
      padding:9px 11px;
      border-radius:10px;
      transition:.2s ease;
    }
    .main-nav a:hover,.main-nav a.active{
      color:var(--text);
      background:rgba(255,255,255,.06);
    }
    .header-actions{display:flex;align-items:center;gap:10px}
    .order-check{font-size:13px;color:#c5cad2;font-weight:600;padding:10px}
    .header-button,.btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:12px;
      font-weight:800;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .header-button{
      padding:11px 17px;
      color:#171107;
      background:var(--accent);
      font-size:12px;
    }
    .header-button:hover,.btn:hover{transform:translateY(-2px)}
    .mobile-toggle{
      display:none;
      width:42px;height:42px;
      border:1px solid var(--line);
      background:var(--surface);
      border-radius:12px;
      cursor:pointer;
    }
    .mobile-toggle span{
      display:block;width:18px;height:2px;
      background:#fff;margin:4px auto;
      transition:.2s;
    }
    .mobile-nav{
      display:none;
      border-bottom:1px solid var(--line);
      background:#0b0d10;
      padding:14px 20px;
    }
    .mobile-nav.is-open{display:grid}
    .mobile-nav a{padding:11px 0;color:#c9ced5;font-size:14px}
    .mobile-nav-divider{height:1px;background:var(--line);margin:5px 0}

    /* HERO */
    .hero{
      position:relative;
      min-height:680px;
      display:flex;
      align-items:center;
      padding:80px 0 70px;
      border-bottom:1px solid var(--line);
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      width:600px;height:600px;
      border-radius:50%;
      right:-180px;top:-180px;
      background:radial-gradient(circle,rgba(245,184,61,.16),transparent 68%);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.03fr .97fr;
      gap:70px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      color:#d6dbe2;
      font-size:11px;
      font-weight:800;
      letter-spacing:.14em;
      text-transform:uppercase;
      margin-bottom:22px;
    }
    .eyebrow::before{
      content:"";
      width:28px;height:2px;
      background:var(--accent);
    }
    .hero h1{
      max-width:700px;
      font-size:clamp(42px,5.4vw,74px);
      line-height:.98;
      letter-spacing:-.055em;
      font-weight:900;
    }
    .hero h1 span{
      display:block;
      color:var(--accent);
    }
    .hero-description{
      max-width:590px;
      color:var(--muted);
      font-size:16px;
      margin:25px 0 30px;
    }
    .hero-buttons{display:flex;flex-wrap:wrap;gap:12px}
    .btn{min-height:50px;padding:0 20px;font-size:13px}
    .btn-primary{
      color:#171107;
      background:linear-gradient(135deg,#ffd979,#e6a52d);
      box-shadow:0 15px 35px rgba(245,184,61,.16);
    }
    .btn-secondary{
      color:#eef0f3;
      background:#15181d;
      border:1px solid var(--line);
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:20px;
      margin-top:28px;
    }
    .hero-point{
      display:flex;align-items:center;gap:8px;
      color:#b8bec7;font-size:12px;font-weight:600;
    }
    .hero-point i{
      width:20px;height:20px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(245,184,61,.12);
      color:var(--accent);
      font-style:normal;font-size:11px;
    }

    /* PRODUCT VISUAL */
    .hero-product{
      position:relative;
      min-height:500px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .hero-product::before{
      content:"";
      position:absolute;
      width:390px;height:390px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(245,184,61,.20),transparent 67%);
      filter:blur(5px);
    }
    .product-image-wrap{
      position:relative;
      width:min(470px,100%);
      z-index:2;
    }
    .product-image{
      width:100%;
      aspect-ratio:1/1;
      object-fit:cover;
      border-radius:30px;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
      background:
        linear-gradient(135deg,rgba(245,184,61,.18),rgba(255,255,255,.02)),
        #111;
    }
    .product-image-wrap::after{
      content:"";
      position:absolute;
      inset:14px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:22px;
      pointer-events:none;
    }
    .floating-price{
      position:absolute;
      left:-24px;
      bottom:28px;
      z-index:3;
      min-width:190px;
      padding:16px 18px;
      border-radius:17px;
      background:rgba(18,21,26,.92);
      border:1px solid var(--line);
      box-shadow:0 20px 50px rgba(0,0,0,.4);
      backdrop-filter:blur(14px);
    }
    .floating-price small{display:block;color:#858d98;font-size:10px;text-transform:uppercase;letter-spacing:.12em}
    .floating-price strong{display:block;color:#fff;font-size:18px;margin-top:4px}
    .floating-badge{
      position:absolute;
      right:-16px;
      top:32px;
      z-index:3;
      padding:10px 13px;
      border-radius:13px;
      color:#171107;
      background:var(--accent);
      font-size:11px;
      font-weight:900;
      box-shadow:0 14px 30px rgba(245,184,61,.18);
    }

    /* TRUST STRIP */
    .trust-strip{border-bottom:1px solid var(--line);background:#0b0d10}
    .trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
    .trust-item{
      padding:24px 20px;
      border-right:1px solid var(--line);
      text-align:center;
    }
    .trust-item:last-child{border-right:0}
    .trust-item strong{display:block;font-size:14px}
    .trust-item span{display:block;color:#7f8792;font-size:11px;margin-top:4px}

    /* SECTION */
    .section{padding:105px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:30px;
      margin-bottom:38px;
    }
    .section-label{
      color:var(--accent);
      font-size:10px;
      font-weight:900;
      letter-spacing:.16em;
      text-transform:uppercase;
    }
    .section-head h2{
      font-size:clamp(30px,4vw,48px);
      line-height:1.05;
      letter-spacing:-.04em;
      margin-top:9px;
    }
    .section-head p{max-width:480px;color:var(--muted);font-size:14px}
    .section-link{color:#dce0e6;font-size:12px;font-weight:800;white-space:nowrap}

    /* CATEGORIES */
    .category-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .category-card{
      min-height:160px;
      padding:23px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      border:1px solid var(--line);
      border-radius:20px;
      background:linear-gradient(145deg,#14171c,#0e1014);
      transition:.25s ease;
    }
    .category-card:hover{
      transform:translateY(-5px);
      border-color:rgba(245,184,61,.38);
      box-shadow:0 18px 45px rgba(0,0,0,.25);
    }
    .category-top{display:flex;justify-content:space-between;align-items:flex-start}
    .category-icon{
      width:44px;height:44px;border-radius:13px;
      display:grid;place-items:center;
      background:rgba(245,184,61,.10);
      color:var(--accent);
      font-size:17px;font-weight:900;
    }
    .category-arrow{color:#777f8a;font-size:20px}
    .category-info h3{font-size:16px;margin-top:23px}
    .category-info p{font-size:11px;color:#7f8792;margin-top:4px}

    /* PRODUCTS */
    .products-section{background:#0b0d10;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
    .product-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .store-card{
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:20px;
      background:#12151a;
      transition:.25s ease;
    }
    .store-card:hover{transform:translateY(-5px);border-color:rgba(245,184,61,.3)}
    .store-thumb{
      aspect-ratio:1.18/1;
      display:grid;
      place-items:center;
      position:relative;
      background:
        radial-gradient(circle at 50% 35%,rgba(245,184,61,.24),transparent 35%),
        linear-gradient(145deg,#202127,#0d0f12);
      overflow:hidden;
    }
    .store-thumb::after{
      content:"";
      width:130px;height:130px;border-radius:35px;
      border:1px solid rgba(245,184,61,.22);
      transform:rotate(16deg);
      position:absolute;
    }
    .thumb-icon{font-size:42px;position:relative;z-index:1}
    .store-body{padding:19px}
    .store-category{font-size:9px;text-transform:uppercase;letter-spacing:.12em;color:var(--accent);font-weight:900}
    .store-body h3{font-size:16px;margin:7px 0}
    .store-body p{font-size:11px;color:#818995;min-height:36px}
    .store-bottom{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:17px}
    .store-price{font-size:14px;font-weight:900}
    .store-link{
      width:34px;height:34px;border-radius:10px;
      display:grid;place-items:center;
      background:rgba(245,184,61,.11);
      color:var(--accent);
      font-weight:900;
    }

    /* FEATURE */
    .feature{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:70px;
      align-items:center;
    }
    .feature-copy h2{
      font-size:clamp(32px,4vw,54px);
      line-height:1.02;
      letter-spacing:-.045em;
      margin:10px 0 20px;
    }
    .feature-copy p{color:var(--muted);font-size:14px;max-width:520px}
    .feature-list{display:grid;gap:15px}
    .feature-item{
      display:grid;
      grid-template-columns:42px 1fr;
      gap:15px;
      padding:19px;
      border-bottom:1px solid var(--line);
    }
    .feature-number{
      color:var(--accent);
      font-weight:900;
      font-size:12px;
    }
    .feature-item h3{font-size:14px}
    .feature-item p{font-size:11px;color:#818995;margin-top:4px}

    /* PROCESS */
    .process-section{background:#0b0d10;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
    .process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border:1px solid var(--line)}
    .process-card{padding:28px;background:#0e1014;min-height:200px}
    .process-number{font-size:11px;color:var(--accent);font-weight:900}
    .process-card h3{font-size:17px;margin:48px 0 7px}
    .process-card p{font-size:11px;color:#818995}

    /* CTA */
    .final-cta{padding:30px 0 105px}
    .cta-box{
      position:relative;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:35px;
      padding:48px;
      border:1px solid rgba(245,184,61,.24);
      border-radius:28px;
      background:
        radial-gradient(circle at 80% 50%,rgba(245,184,61,.14),transparent 32%),
        linear-gradient(135deg,#18150f,#111317);
    }
    .cta-box h2{font-size:clamp(27px,4vw,43px);line-height:1.05;letter-spacing:-.04em;margin:9px 0}
    .cta-box p{font-size:13px;color:#8d95a0}

    /* FOOTER */
    .site-footer{border-top:1px solid var(--line);background:#07080a}
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr 1fr 1fr 1fr;
      gap:45px;
      padding:65px 0 45px;
    }
    .footer-brand p{max-width:360px;color:#737b86;font-size:12px;margin-top:18px}
    .footer-column{display:grid;align-content:start;gap:10px}
    .footer-column h3{font-size:12px;margin-bottom:7px}
    .footer-column a,.footer-column p{font-size:11px;color:#737b86}
    .footer-column a:hover{color:#fff}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:20px;
      padding:20px 0;
      border-top:1px solid var(--line);
      color:#606872;
      font-size:10px;
    }
    .footer-bottom-links{display:flex;gap:18px}

    /* REVEAL */
    .reveal{
      opacity:0;
      transform:translateY(20px);
      transition:opacity .65s ease,transform .65s ease;
    }
    .reveal.visible{opacity:1;transform:none}

    @media(max-width:1000px){
      .main-nav{display:none}
      .mobile-toggle{display:block}
      .header-actions{margin-left:auto}
      .hero-grid{grid-template-columns:1fr;gap:45px}
      .hero{padding-top:65px}
      .hero-content{text-align:center}
      .hero-description{margin-left:auto;margin-right:auto}
      .hero-buttons,.hero-points{justify-content:center}
      .hero-product{min-height:440px}
      .category-grid{grid-template-columns:repeat(2,1fr)}
      .product-grid{grid-template-columns:repeat(2,1fr)}
      .feature{grid-template-columns:1fr;gap:40px}
      .process-grid{grid-template-columns:repeat(2,1fr)}
    }

    @media(max-width:650px){
      .container{width:min(var(--container),calc(100% - 28px))}
      .header-inner{min-height:68px}
      .order-check{display:none}
      .header-button{padding:10px 13px}
      .hero{padding:55px 0 45px;min-height:auto}
      .hero h1{font-size:43px}
      .hero-description{font-size:14px}
      .hero-product{min-height:350px}
      .floating-price{left:0;bottom:10px}
      .floating-badge{right:0;top:10px}
      .trust-grid{grid-template-columns:repeat(2,1fr)}
      .trust-item{border-bottom:1px solid var(--line)}
      .trust-item:nth-child(2){border-right:0}
      .section{padding:75px 0}
      .section-head{display:block}
      .section-head p{margin-top:10px}
      .section-link{display:inline-block;margin-top:15px}
      .category-grid,.product-grid,.process-grid{grid-template-columns:1fr}
      .category-card{min-height:145px}
      .cta-box{display:block;padding:30px}
      .cta-box .btn{margin-top:22px}
      .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
      .footer-brand{grid-column:1/-1}
      .footer-bottom{display:block}
      .footer-bottom-links{margin-top:10px}
    }

    @media(prefers-reduced-motion:reduce){
      html{scroll-behavior:auto}
      .reveal{opacity:1;transform:none;transition:none}
      *,*::before,*::after{transition:none!important}
    }