:root{
  --bg:#050507;
  --bg2:#0b0c10;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.66);
  --dim:rgba(255,255,255,.45);
  --line:rgba(255,255,255,.10);
  --surface:rgba(255,255,255,.06);
  --surface2:rgba(255,255,255,.08);
  --accent:#c7a06a;
  --accent2:#e8d7bd;
  --glow:rgba(199,160,106,.35);
  --shadow:rgba(0,0,0,.75);
  --r:18px;
  --r2:28px;
  --r3:34px;
  --ease:cubic-bezier(.2,.85,.2,1);
  --ease2:cubic-bezier(.16,1,.3,1);
  --max:1120px;

  /* Fluid type scale */
  --fs-h1: clamp(44px, 6vw, 74px);
  --fs-h2: clamp(28px, 3.2vw, 40px);
  --fs-h3: clamp(15px, 1.4vw, 17px);
  --fs-body: clamp(15px, 1.2vw, 16.5px);

  /* Fluid spacing */
  --pad-x: clamp(16px, 3vw, 28px);
  --pad-top: calc(70px + env(safe-area-inset-top));
  --section-y: clamp(72px, 10vw, 112px);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(1400px 900px at 50% -10%, rgba(199,160,106,.12), transparent 55%),
             radial-gradient(900px 700px at 70% 20%, rgba(255,255,255,.05), transparent 50%),
             linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  accent-color: var(--accent);
}

a{color:inherit;text-decoration:none}
button{font:inherit}

/* Media elements should never overflow */
img, video, canvas{max-width:100%}

/* Subtle scrollbar (Chromium) */
@media (pointer:fine){
  ::-webkit-scrollbar{ width: 10px; height: 10px; }
  ::-webkit-scrollbar-track{ background: rgba(255,255,255,.02); }
  ::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(5,5,7,.55);
    border-radius: 999px;
  }
  ::-webkit-scrollbar-thumb:hover{ background: rgba(255,255,255,.12); }
}

::selection{
  background: rgba(199,160,106,.22);
  color: rgba(255,255,255,.95);
}

html.is-locked, html.is-locked body{
  overflow:hidden;
}

/* Premium focus (keyboard only) */
:where(a, button, [role="button"], .btn):focus{ outline:none; }
:where(a, button, [role="button"], .btn):focus-visible{
  outline:2px solid rgba(199,160,106,.72);
  outline-offset:3px;
  box-shadow:0 0 0 6px rgba(199,160,106,.12);
  border-radius:999px;
}

.noise{
  position:fixed; inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.16;
}
.vignette{
  position:fixed; inset:-20%;
  pointer-events:none;
  background:radial-gradient(closest-side at 50% 40%, transparent 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.78) 100%);
  opacity:.7;
}

.intro{
  position:fixed; inset:0;
  z-index:50;
  background:#000;
  display:grid;
  place-items:center;
}
.intro__video{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:contrast(1.04) saturate(1.08);
}
.intro__scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 55% 40%, rgba(199,160,106,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65));
}
.intro__brand{
  position:absolute;
  left:18px; right:18px;
  bottom:calc(18px + env(safe-area-inset-bottom));
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  max-width:var(--max);
  margin:0 auto;
}
.intro__mark{
  letter-spacing:-.04em;
  font-weight:700;
  font-size:18px;
}
.intro__tag{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.intro.is-done{
  opacity:0;
  pointer-events:none;
  transition:opacity .65s var(--ease2);
}

.topbar{
  position:fixed; top:0; left:0; right:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(5,5,7,.78), rgba(5,5,7,.18));
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  transform:translateY(-120%);
  transition:transform .8s var(--ease2);
}
.topbar.is-on{transform:translateY(0)}
.topbar__brand{
  font-weight:700;
  letter-spacing:-.03em;
}
.topbar__nav{display:none; gap:18px}
.topbar__actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar__link{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.02em;
  padding:10px 8px;
  border-radius:999px;
  transition: background .35s var(--ease2), color .35s var(--ease2);
}
.topbar__link:hover{
  color:var(--text);
  background: rgba(255,255,255,.04);
}
.topbar__cta{
  font-size:12px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.topbar__cta:active{ transform: translateY(0px) scale(.99); }
.topbar__cta:hover{
  border-color:rgba(199,160,106,.55);
  box-shadow:0 0 0 6px rgba(199,160,106,.10);
}

.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:3px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}

.lang-switch__btn{
  min-width:34px;
  min-height:30px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;
  cursor:pointer;
  transition:all .3s var(--ease2);
}

.lang-switch__btn:hover{
  color:var(--text);
}

.lang-switch__btn.is-on{
  color:#101115;
  border-color:rgba(219,187,142,.9);
  background:linear-gradient(180deg, rgba(219,187,142,1), rgba(183,140,83,.96));
  box-shadow:0 8px 22px rgba(169,122,59,.35);
}

@media (min-width:900px){
  .topbar{padding:16px 28px}
  .topbar__nav{display:flex}
}

@media (max-width:760px){
  .topbar__actions{
    gap:6px;
  }

  .lang-switch{
    gap:3px;
    padding:2px;
  }

  .lang-switch__btn{
    min-width:30px;
    min-height:28px;
    font-size:10px;
  }
}

.app{position:relative}

.hero{
  min-height:100dvh;
  display:grid;
  align-items:center;
  padding:
    var(--pad-top)
    var(--pad-x)
    18px
    var(--pad-x);
  position:relative;
  isolation:isolate;
}
.hero__bg{position:absolute; inset:0; overflow:hidden}
.hero__loop{
  width:100%; height:100%;
  object-fit:cover;
  opacity:.18;
  filter:blur(.4px) contrast(1.06) saturate(1.08);
  transform:scale(1.03);
}
.hero__glow{
  position:absolute; inset:0;
  background:
    radial-gradient(750px 520px at 50% 42%, rgba(199,160,106,.20), transparent 65%),
    radial-gradient(900px 700px at 50% 85%, rgba(255,255,255,.06), transparent 55%);
  mix-blend-mode:screen;
  opacity:.75;
}

.hero__content{
  position:relative;
  max-width:560px;
  z-index:2;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.kicker::before{
  content:"";
  width:32px; height:1px;
  background:linear-gradient(90deg, transparent, rgba(199,160,106,.8));
}
.hero__title{
  margin:12px 0 0 0;
  font-size:var(--fs-h1);
  line-height:1.02;
  letter-spacing:-.06em;
}
.hero__sub{
  margin:10px 0 0 0;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--accent2);
  max-width: 40ch;
}
.hero__support{
  margin:14px 0 0 0;
  color:var(--muted);
  font-size:var(--fs-body);
  line-height:1.5;
  max-width: 46ch;
}
.hero__actions{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  border-radius:999px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  transition:transform .45s var(--ease2), box-shadow .45s var(--ease2), border-color .45s var(--ease2), background .45s var(--ease2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
  will-change: transform;
}
.btn:active{ transform: translateY(0px) scale(.99); }
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(199,160,106,.52);
  box-shadow:0 10px 40px rgba(0,0,0,.55), 0 0 0 6px rgba(199,160,106,.10);
}
.btn--primary{
  background:linear-gradient(180deg, rgba(199,160,106,.95), rgba(158,120,74,.92));
  color:#0b0c10;
  border-color:rgba(199,160,106,.88);
}
.btn--primary:hover{
  box-shadow:0 12px 45px rgba(199,160,106,.18), 0 0 0 6px rgba(199,160,106,.10);
}
.btn--ghost{
  background:rgba(255,255,255,.04);
}

.hero__meta{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__product{
  position:absolute;
  right: max(-8px, calc(var(--pad-x) - 24px));
  bottom:-18px;
  width:min(52vw, 320px);
  z-index:1;
  pointer-events:none;
  opacity: .96;
}
.product{
  position:relative;
  transform-style:preserve-3d;
}
.product img{
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 40px 70px rgba(0,0,0,.62));
  -webkit-user-drag:none;
}
.product__shadow{
  position:absolute;
  left:10%;
  right:10%;
  bottom:-16px;
  height:50px;
  background:radial-gradient(closest-side, rgba(0,0,0,.55), transparent);
  filter:blur(2px);
  opacity:.8;
  transform:translateZ(-1px);
}
.product__specular{
  position:absolute; inset:0;
  background:
    radial-gradient(350px 420px at 35% 18%, rgba(255,255,255,.16), transparent 62%),
    radial-gradient(420px 520px at 60% 40%, rgba(199,160,106,.16), transparent 70%);
  mix-blend-mode:screen;
  opacity:.55;
  pointer-events:none;
  mask-image:linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.product--float{
  animation:float 5.5s var(--ease2) infinite;
}
@keyframes float{
  0%,100%{ transform:translate3d(0,0,0) rotateZ(.15deg) }
  50%{ transform:translate3d(0,-10px,0) rotateZ(-.15deg) }
}

.scrollhint{
  position:absolute;
  left:16px;
  bottom:calc(14px + env(safe-area-inset-bottom));
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.78;
  z-index:3;
}
.scrollhint__line{
  width:48px; height:1px;
  background:linear-gradient(90deg, rgba(199,160,106,.8), transparent);
}
.scrollhint__txt{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--dim);
}

@media (min-width:900px){
  .hero{
    grid-template-columns: 1.05fr .95fr;
    column-gap: clamp(22px, 4vw, 44px);
    align-items:center;
  }
  .hero__content{max-width: 600px;}
  .hero__product{
    position:relative;
    right:auto;
    bottom:auto;
    width:min(28vw, 420px);
    justify-self:end;
    align-self:end;
    transform: translateY(22px);
  }
}

.panel{
  padding:var(--section-y) var(--pad-x);
  position:relative;
  content-visibility:auto;
  contain-intrinsic-size: 900px;
}
.panel__inner{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  gap:18px;
  align-items:center;
}
.panel__inner--split{
  gap:22px;
}
.panel__inner--center{
  place-items:center;
  text-align:center;
}
.panel__copy{
  max-width:560px;
}
.h2{
  margin:0;
  font-size:var(--fs-h2);
  letter-spacing:-.04em;
  line-height:1.08;
}
.p{
  margin:12px 0 0 0;
  color:var(--muted);
  line-height:1.6;
  font-size:var(--fs-body);
}

.panel--problem{
  padding-top:84px;
  padding-bottom:84px;
}
.problem-lines{
  margin-top:16px;
  display:grid;
  gap:10px;
}
.problem-line{
  font-size:clamp(20px, 3.2vw, 30px);
  letter-spacing:-.03em;
  color:rgba(255,255,255,.88);
}
.panel--story .panel__copy{max-width:620px}
.story-break{
  display:block;
  margin-top:10px;
  color:rgba(255,255,255,.78);
}
.story-card{
  width:min(92vw, 520px);
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(800px 520px at 35% 20%, rgba(199,160,106,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:18px;
  box-shadow:0 40px 90px rgba(0,0,0,.35);
}
.story-card__kicker{
  color:var(--dim);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.story-card__title{
  margin-top:10px;
  font-weight:700;
  letter-spacing:-.04em;
  font-size:20px;
}
.story-card__sub{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.bullets{
  margin:16px 0 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  color:var(--muted);
}
.bullets li{
  padding-left:16px;
  position:relative;
}
.bullets li::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:rgba(199,160,106,.9);
  box-shadow:0 0 18px rgba(199,160,106,.35);
  position:absolute;
  left:0;
  top:.55em;
}
.bullets--big li{padding-left:18px}

.panel__visual{
  display:grid;
  place-items:center;
}

.product--stage{
  width:min(82vw, 520px);
  border-radius:var(--r2);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  padding:10px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 40px 110px rgba(0,0,0,.35);
}
.product--stage img{
  border-radius: calc(var(--r2) - 8px);
}
.sweep{
  position:absolute; inset:-40%;
  background:linear-gradient(120deg, transparent 40%, rgba(255,255,255,.14) 50%, transparent 60%);
  transform:translateX(-60%) rotate(10deg);
  opacity:.0;
}
.roller-highlight{
  position:absolute;
  left:12%;
  top:12%;
  width:76%;
  height:18%;
  border-radius:999px;
  background:radial-gradient(closest-side, rgba(199,160,106,.22), transparent);
  opacity:.0;
  filter:blur(2px);
}

.panel--how .panel__visual{min-height:380px}
.how{
  width:min(92vw, 520px);
  aspect-ratio:1 / 1;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(800px 520px at 50% 20%, rgba(199,160,106,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  position:relative;
  overflow:hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.30);
}

.how--video{
  background: rgba(7, 10, 16, 0.88);
}

.how__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.02) contrast(1.04);
}

.how--video::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(4, 7, 12, 0.12), rgba(4, 7, 12, 0.46) 88%),
    radial-gradient(700px 420px at 18% 16%, rgba(217, 183, 138, 0.14), transparent 66%);
}
.how__skin{
  position:absolute;
  inset:50% -10% -20% -10%;
  background:
    radial-gradient(closest-side at 50% 30%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.10);
  transform:skewY(-6deg);
  filter:saturate(.95);
}
.how__roller{
  position:absolute;
  left:50%;
  top:42%;
  width:72%;
  height:42px;
  border-radius:999px;
  transform:translate(-50%,-50%);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    repeating-linear-gradient(90deg, rgba(0,0,0,.30) 0 6px, rgba(255,255,255,.06) 6px 10px);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 26px 55px rgba(0,0,0,.55);
}
.how__particles{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.78;
}

.panel--features .panel__inner{
  gap:22px;
}
.features{
  display:grid;
  gap:14px;
}
.feature{
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 520px at 30% 20%, rgba(199,160,106,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border-radius:var(--r);
  padding:16px;
  overflow:hidden;
  transform:translateY(10px);
  opacity:0;
  box-shadow:0 26px 70px rgba(0,0,0,.30);
  position:relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.feature::after{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.09), transparent 35%, transparent 70%, rgba(199,160,106,.08));
  opacity:.35;
  mix-blend-mode:screen;
}
.feature:hover{
  border-color:rgba(199,160,106,.28);
  box-shadow:0 34px 110px rgba(0,0,0,.44), 0 0 0 6px rgba(199,160,106,.08);
}
.feature__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.h3{
  margin:0;
  font-size:var(--fs-h3);
  letter-spacing:-.02em;
}
.chip{
  font-size:10px;
  color:rgba(255,255,255,.42);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  padding:5px 9px;
  border-radius:999px;
  letter-spacing:.14em;
}
.feature__ui{margin-top:14px}

.speed-ui{
  display:grid;
  gap:10px;
  align-items:center;
}
.speed-ui{
  grid-template-columns:auto 1fr;
  grid-template-rows:auto auto;
  column-gap:12px;
}
.speed-ui__btn:nth-child(1){ grid-column:1; grid-row:1; }
.speed-ui__btn:nth-child(2){ grid-column:1; grid-row:2; }
.speed-ui__bar{ grid-column:2; grid-row:1 / span 2; align-self:center; }
.speed-ui__btn{
  width:44px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.74);
  cursor:pointer;
  transition:transform .35s var(--ease2), border-color .35s var(--ease2), background .35s var(--ease2), box-shadow .35s var(--ease2);
  letter-spacing:.10em;
}
.speed-ui__btn:hover{ transform:translateY(-1px); }
.speed-ui__btn.is-on{
  border-color:rgba(199,160,106,.38);
  box-shadow:0 0 0 6px rgba(199,160,106,.08);
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.04);
}
.speed-ui__bar{
  height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  overflow:hidden;
}
.speed-ui__fill{
  display:block;
  width:55%;
  height:100%;
  background:linear-gradient(90deg, rgba(199,160,106,.62), rgba(255,255,255,.06));
  box-shadow:0 0 18px rgba(199,160,106,.16);
}

.led-ui__frame{
  display:flex;
  align-items:baseline;
  gap:6px;
  border-radius:18px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(500px 120px at 35% 30%, rgba(255,255,255,.06), transparent 60%),
    rgba(0,0,0,.26);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 22px 60px rgba(0,0,0,.28);
}
.led-ui__digits{
  font-size:40px;
  letter-spacing:-.06em;
  font-weight:700;
  color:rgba(255,255,255,.92);
  text-shadow:0 0 24px rgba(255,255,255,.12);
}
.led-ui__unit{
  color:var(--dim);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.usb-ui{
  position:relative;
  height:96px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(500px 140px at 35% 40%, rgba(255,255,255,.06), transparent 60%),
    rgba(255,255,255,.028);
  overflow:hidden;
}
.usb-ui__port{
  position:absolute;
  left:50%;
  top:50%;
  width:132px;
  height:44px;
  border-radius:14px;
  transform:translate(-50%,-50%);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 70px rgba(0,0,0,.52);
}
.usb-ui__cable{
  position:absolute;
  left:-40%;
  top:50%;
  width:44%;
  height:10px;
  border-radius:999px;
  transform:translateY(-50%);
  background:linear-gradient(90deg, rgba(255,255,255,.10), rgba(199,160,106,.55));
  box-shadow:0 0 22px rgba(199,160,106,.22);
}

.rollers{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(520px 150px at 45% 35%, rgba(255,255,255,.06), transparent 60%),
    rgba(255,255,255,.028);
  overflow:hidden;
  padding:14px;
}
.rollers__track{
  display:flex;
  width:300%;
  transform:translateX(0%);
}
.rollers__item{
  width:33.3333%;
  min-height:76px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.84);
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.08));
}
.rollers__dots{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.06);
  cursor:pointer;
}
.dot.is-on{
  background:rgba(199,160,106,.85);
  border-color:rgba(199,160,106,.75);
  box-shadow:0 0 0 6px rgba(199,160,106,.10);
}

.panel--benefits .panel__inner{
  gap:18px;
}
.benefits__visual{
  position:relative;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  min-height: clamp(320px, 44vw, 520px);
  background:rgba(255,255,255,.02);
}
.benefits__video{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.55;
  filter:contrast(1.04) saturate(1.05);
  transform:scale(1.02);
}
.benefits__glass{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 500px at 30% 25%, rgba(199,160,106,.14), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42));
}

.quotes{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.quote{
  margin:0;
  padding:16px 16px;
  border-radius:var(--r);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 160px at 30% 30%, rgba(255,255,255,.05), transparent 60%),
    rgba(255,255,255,.025);
  color:rgba(255,255,255,.88);
  letter-spacing:-.02em;
  transform:translateY(10px);
  opacity:0;
}

.panel--final{
  padding-bottom:92px;
}
.final__spot{
  width:min(92vw, 720px);
  height:320px;
  position:absolute;
  left:50%;
  top:10%;
  transform:translateX(-50%);
  background:radial-gradient(closest-side, rgba(199,160,106,.20), transparent 70%);
  filter:blur(1px);
  opacity:.9;
}
.final__product{
  width:min(60vw, 240px);
  margin:0 auto;
  position:relative;
  z-index:2;
  transform:translateY(10px);
  opacity:0;
  filter: drop-shadow(0 46px 90px rgba(0,0,0,.58));
}
.final__copy{
  position:relative;
  z-index:3;
  margin-top:16px;
  max-width:620px;
  transform:translateY(10px);
  opacity:0;
}
.final__actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}
.final__fine{
  margin-top:14px;
  font-size:12px;
  color:var(--dim);
  letter-spacing:.02em;
}
.sep{margin:0 6px; opacity:.35}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 16px calc(26px + env(safe-area-inset-bottom));
  background:rgba(0,0,0,.22);
}
.footer__inner{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  gap:12px;
}
.footer__brand{
  font-weight:700;
  letter-spacing:-.03em;
}
.footer__links{
  display:flex;
  gap:14px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.02em;
}
.footer__links a:hover{color:var(--text)}
.footer__legal{
  color:var(--dim);
  font-size:12px;
}

@media (min-width:900px){
  .panel{padding:var(--section-y) var(--pad-x)}
  .panel__inner{
    grid-template-columns: 1.1fr .9fr;
    align-items:center;
    gap:32px;
  }
  .panel--features .panel__inner{grid-template-columns: 1fr}
  .features{grid-template-columns: 1fr 1fr; gap:14px}
  .panel__inner--split{grid-template-columns: 1fr 1fr}
  .product--stage{ width:min(46vw, 560px); }
  .final__product{ width:min(26vw, 260px); }
  .footer__inner{
    grid-template-columns: 1fr 1fr 1fr;
    align-items:center;
  }
  .footer__links{justify-content:center}
  .footer__legal{text-align:right}
  .problem-line{font-size:clamp(24px, 2.6vw, 34px)}
}

@media (prefers-reduced-motion: reduce){
  html:focus-within{scroll-behavior:auto}
  .product--float{animation:none}
  .topbar{transition:none}
  .btn{transition:none}
  .noise, .vignette{display:none}
}
/* ===== Frontend Refinement Pass (April 2026) ===== */
:root {
  --bg: #060709;
  --bg2: #0a0b0f;
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.7);
  --dim: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --accent: #d3b48a;
  --accent2: #eadbc5;
  --glow: rgba(211, 180, 138, 0.24);
  --max: 1180px;
  --r: 16px;
  --r2: 24px;
}

body {
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.002em;
  background: radial-gradient(1300px 780px at 50% -8%, rgba(211, 180, 138, 0.09), transparent 56%),
    radial-gradient(980px 560px at 82% 14%, rgba(255, 255, 255, 0.045), transparent 54%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.hero__title,
.h2,
.h3,
.topbar__brand,
.footer__brand {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
}

.topbar {
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.88), rgba(6, 7, 9, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.topbar__cta {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__content {
  max-width: 600px;
}

.hero__sub {
  color: rgba(234, 219, 197, 0.9);
}

.hero__meta {
  margin-top: 18px;
  gap: 10px;
}

.pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.panel {
  padding-top: clamp(76px, 10vw, 120px);
  padding-bottom: clamp(76px, 10vw, 120px);
}

.panel--story .panel__copy,
.panel--features .panel__copy,
.panel--reviews .panel__copy {
  max-width: 660px;
}

.story-card,
.product--stage,
.how,
.benefits__visual,
.quote,
.feature,
.rollers,
.usb-ui,
.led-ui__frame {
  border-color: rgba(255, 255, 255, 0.11);
}

.story-card {
  background: radial-gradient(860px 480px at 32% 18%, rgba(211, 180, 138, 0.09), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.panel--features .panel__inner {
  gap: 30px;
}

.features {
  gap: 16px;
}

.feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 20px;
}

.feature::after {
  display: none;
}

.feature:hover {
  border-color: rgba(211, 180, 138, 0.42);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
}

.feature__head {
  align-items: center;
}

.h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: -0.018em;
}

.feature__desc {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  max-width: 38ch;
}

.chip {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.feature__ui {
  margin-top: 18px;
}

.speed-ui__btn {
  width: 42px;
  height: 32px;
  background: rgba(255, 255, 255, 0.02);
}

.speed-ui__bar {
  background: rgba(255, 255, 255, 0.03);
}

.speed-ui__fill {
  background: linear-gradient(90deg, rgba(211, 180, 138, 0.72), rgba(255, 255, 255, 0.09));
}

.led-ui__frame,
.usb-ui,
.rollers {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.led-ui__digits {
  font-size: clamp(34px, 3vw, 40px);
}

.rollers__item {
  min-height: 70px;
}

.quotes {
  gap: 14px;
}

.quote {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.012));
}

.final__spot {
  opacity: 0.75;
}

.final__fine {
  color: rgba(255, 255, 255, 0.58);
}

.footer {
  background: rgba(0, 0, 0, 0.26);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 32px;
    align-items: end;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__product {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 24px auto 0;
    width: min(78vw, 336px);
  }

  .panel__inner,
  .panel__inner--split {
    gap: 24px;
  }

  .panel--benefits .panel__inner {
    grid-template-columns: 1fr;
  }

  .benefits__visual {
    min-height: clamp(280px, 66vw, 440px);
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 12px 14px;
    gap: 10px;
  }

  .topbar__brand {
    font-size: 14px;
  }

  .topbar__cta {
    padding: 9px 11px;
    font-size: 11px;
  }

  .hero {
    padding-top: calc(78px + env(safe-area-inset-top));
  }

  .hero__title {
    letter-spacing: -0.05em;
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
  }

  .scrollhint {
    display: none;
  }

  .feature {
    padding: 18px;
    border-radius: 14px;
  }

  .feature__desc {
    max-width: none;
    font-size: 13px;
  }

  .led-ui__frame {
    padding: 12px 14px;
  }

  .usb-ui {
    height: 88px;
  }

  .usb-ui__port {
    width: 116px;
    height: 40px;
  }

  .final__actions {
    width: 100%;
    gap: 8px;
  }

  .final__actions .btn {
    width: 100%;
  }

  .footer__inner {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .hero__meta {
    gap: 7px;
  }

  .pill {
    font-size: 11px;
    padding: 7px 9px;
  }

  .panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .how {
    border-radius: 18px;
  }
}

/* ===== Mobile Polish v2 (April 2026) ===== */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    row-gap: 14px;
    align-items: start;
    padding-bottom: 24px;
  }

  .hero__bg {
    opacity: 0.78;
  }

  .hero__loop {
    opacity: 0.13;
  }

  .hero__content {
    padding-top: 4px;
  }

  .hero__support {
    max-width: 100%;
  }

  .hero__meta {
    max-width: 100%;
  }

  .panel {
    contain-intrinsic-size: auto;
  }

  .panel__copy {
    max-width: 100%;
  }

  .panel__visual {
    width: 100%;
  }

  .product--stage {
    width: min(100%, 560px);
  }

  .how {
    width: min(100%, 520px);
  }

  .quotes {
    margin-top: 14px;
  }

  .final__product {
    width: min(64vw, 250px);
  }
}

@media (max-width: 760px) {
  .noise,
  .vignette {
    opacity: 0.08;
  }

  .intro__brand {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .topbar {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .topbar__nav {
    display: none;
  }

  .topbar__cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: calc(74px + env(safe-area-inset-top));
  }

  .kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero__title {
    font-size: clamp(40px, 14vw, 62px);
    margin-top: 10px;
  }

  .hero__sub {
    margin-top: 9px;
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1.45;
  }

  .hero__support {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.52;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
  }

  .hero__meta {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .pill {
    width: 100%;
    text-align: center;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__product {
    margin-top: 18px;
    width: min(70vw, 290px);
  }

  .panel {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .panel__inner,
  .panel__inner--split,
  .panel--benefits .panel__inner {
    gap: 18px;
  }

  .h2 {
    font-size: clamp(25px, 8.8vw, 34px);
    line-height: 1.12;
  }

  .p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.58;
  }

  .problem-lines {
    margin-top: 12px;
    gap: 7px;
  }

  .problem-line {
    font-size: clamp(18px, 6.3vw, 24px);
  }

  .story-card {
    width: 100%;
    border-radius: 16px;
    padding: 16px;
  }

  .product--stage {
    width: min(100%, 520px);
    border-radius: 16px;
    padding: 9px;
  }

  .panel--how .panel__visual {
    min-height: 280px;
  }

  .how {
    aspect-ratio: 1 / 1;
    min-height: 280px;
    border-radius: 16px;
  }

  .how__roller {
    width: 82%;
    height: 36px;
  }

  .panel--features .panel__inner {
    gap: 18px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature {
    padding: 16px;
    border-radius: 14px;
  }

  .feature__head {
    gap: 8px;
  }

  .h3 {
    font-size: 15px;
    line-height: 1.35;
    max-width: calc(100% - 44px);
  }

  .chip {
    padding: 4px 8px;
    font-size: 9px;
  }

  .feature__desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .feature__ui {
    margin-top: 14px;
  }

  .speed-ui {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
  }

  .speed-ui__btn:nth-child(1),
  .speed-ui__btn:nth-child(2),
  .speed-ui__bar {
    grid-column: auto;
    grid-row: auto;
  }

  .speed-ui__btn {
    width: 100%;
    min-height: 36px;
  }

  .led-ui__digits {
    font-size: 34px;
  }

  .usb-ui {
    height: 82px;
  }

  .usb-ui__port {
    width: 104px;
    height: 34px;
    border-radius: 11px;
  }

  .rollers {
    padding: 10px;
  }

  .rollers__item {
    min-height: 62px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .bullets {
    gap: 8px;
  }

  .bullets li {
    font-size: 14px;
    line-height: 1.5;
  }

  .benefits__visual {
    min-height: 260px;
    border-radius: 16px;
  }

  .quotes {
    gap: 10px;
  }

  .quote {
    padding: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .panel--final {
    padding-bottom: 66px;
  }

  .final__spot {
    width: min(100%, 520px);
    height: 200px;
    top: 6%;
  }

  .final__product {
    width: min(58vw, 220px);
  }

  .final__copy {
    margin-top: 10px;
  }

  .final__actions {
    margin-top: 12px;
  }

  .final__actions .btn {
    min-height: 46px;
  }

  .final__fine {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.45;
  }

  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar__brand {
    font-size: 13px;
  }

  .topbar__cta {
    font-size: 10px;
    padding: 8px 10px;
  }

  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .panel {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero__title {
    font-size: clamp(36px, 13vw, 52px);
  }

  .h2 {
    font-size: clamp(22px, 8.6vw, 30px);
  }

  .btn,
  .final__actions .btn,
  .hero__actions .btn {
    font-size: 14px;
  }

  .pill {
    font-size: 10px;
  }

  .feature {
    padding: 14px;
  }
}

/* ===== Flagship Product Polish (April 2026) ===== */
:root {
  --bg: #06080d;
  --bg2: #0d1118;
  --text: rgba(248, 250, 255, 0.96);
  --muted: rgba(218, 226, 240, 0.72);
  --dim: rgba(198, 206, 220, 0.5);
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.035);
  --surface2: rgba(255, 255, 255, 0.07);
  --accent: #d9b78a;
  --accent2: #f0e0c9;
  --glow: rgba(217, 183, 138, 0.26);
  --max: 1200px;
  --r: 18px;
  --r2: 28px;
}

body {
  background:
    radial-gradient(1500px 900px at 15% -12%, rgba(217, 183, 138, 0.14), transparent 58%),
    radial-gradient(1200px 700px at 85% 0%, rgba(111, 147, 204, 0.11), transparent 52%),
    linear-gradient(180deg, #05070b 0%, #0b0f16 58%, #090d14 100%);
}

.noise {
  opacity: 0.055;
}

.vignette {
  opacity: 0.44;
  background: radial-gradient(closest-side at 52% 38%, transparent 0%, rgba(0, 0, 0, 0.5) 74%, rgba(0, 0, 0, 0.76) 100%);
}

.topbar {
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.9), rgba(5, 8, 13, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.topbar__brand {
  letter-spacing: -0.04em;
}

.topbar__link {
  font-weight: 500;
}

.topbar__cta {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  padding-top: calc(86px + env(safe-area-inset-top));
  padding-bottom: 34px;
}

.hero__glow {
  opacity: 0.9;
  background:
    radial-gradient(880px 620px at 52% 30%, rgba(217, 183, 138, 0.28), transparent 65%),
    radial-gradient(980px 680px at 86% 72%, rgba(122, 175, 255, 0.11), transparent 56%);
}

.hero__content {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border-radius: 26px;
  padding: clamp(18px, 2.6vw, 28px);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kicker {
  color: rgba(222, 230, 241, 0.76);
  letter-spacing: 0.1em;
}

.kicker::before {
  width: 26px;
  background: linear-gradient(90deg, transparent, rgba(217, 183, 138, 0.9));
}

.hero__title {
  margin-top: 8px;
  font-size: clamp(46px, 7.5vw, 88px);
  letter-spacing: -0.062em;
  line-height: 0.95;
}

.hero__sub {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(240, 224, 201, 0.94);
}

.hero__support {
  margin-top: 14px;
  color: rgba(222, 230, 241, 0.8);
}

.hero__actions {
  margin-top: 20px;
  gap: 10px;
}

.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 18px;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.045);
}

.btn--primary {
  border-color: rgba(222, 190, 145, 0.92);
  background: linear-gradient(180deg, rgba(219, 186, 139, 0.98), rgba(188, 144, 88, 0.96));
}

.hero__meta {
  margin-top: 16px;
  gap: 10px;
}

.pill {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.034);
  color: rgba(225, 233, 244, 0.76);
}

.hero__proof {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 10px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.42s var(--ease2),
    box-shadow 0.42s var(--ease2),
    background 0.42s var(--ease2),
    transform 0.42s var(--ease2);
}

.proof::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: conic-gradient(
    from 0deg,
    rgba(227, 195, 152, 0) 0deg,
    rgba(227, 195, 152, 0) 290deg,
    rgba(227, 195, 152, 0.92) 330deg,
    rgba(227, 195, 152, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  transition: opacity 0.36s var(--ease2);
}

.proof.is-cycling {
  border-color: rgba(227, 195, 152, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(227, 195, 152, 0.15) inset;
  transform: translateY(-1px);
}

.proof.is-cycling::after {
  opacity: 0.96;
  animation: proof-orbit 1.32s linear infinite;
}

.proof__icon {
  width: 18px;
  height: 18px;
}

.proof__icon path,
.proof__icon rect,
.proof__icon circle {
  fill: none;
  stroke: rgba(230, 200, 157, 0.95);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof__icon path:first-child {
  fill: rgba(230, 200, 157, 0.14);
}

.proof.is-cycling .proof__icon {
  filter: drop-shadow(0 0 8px rgba(227, 195, 152, 0.38));
}

.proof__label {
  display: grid;
  gap: 2px;
}

.proof__label strong {
  font-size: 12px;
  letter-spacing: 0.01em;
}

.proof__label span {
  font-size: 10px;
  color: rgba(213, 221, 236, 0.65);
  letter-spacing: 0.02em;
}

.proof.is-cycling .proof__label span {
  color: rgba(236, 228, 213, 0.82);
}

@keyframes proof-orbit {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof,
  .proof::after {
    transition: none;
  }

  .proof.is-cycling {
    transform: none;
  }

  .proof.is-cycling::after {
    animation: none;
    opacity: 0.22;
  }
}

.hero__product {
  width: min(40vw, 448px);
  bottom: -8px;
  opacity: 1;
}

.product img {
  filter: drop-shadow(0 46px 92px rgba(0, 0, 0, 0.58));
}

.panel {
  padding-top: clamp(84px, 10vw, 126px);
  padding-bottom: clamp(84px, 10vw, 126px);
}

.h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.p {
  color: rgba(214, 223, 237, 0.76);
}

.story-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(850px 500px at 20% 18%, rgba(217, 183, 138, 0.15), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  padding: clamp(18px, 2.4vw, 26px);
}

.product--stage,
.how,
.benefits__visual,
.quote {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
}

.features {
  gap: 18px;
}

.feature {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(760px 420px at 15% 10%, rgba(217, 183, 138, 0.13), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(14px);
}

.feature:hover {
  border-color: rgba(227, 195, 152, 0.55);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.feature::after {
  display: none;
}

.feature__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feature__title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature__icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon svg {
  width: 20px;
  height: 20px;
}

.feature__icon path,
.feature__icon rect,
.feature__icon circle,
.feature__icon line {
  fill: none;
  stroke: rgba(232, 203, 163, 0.95);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.h3 {
  font-size: clamp(16px, 1.4vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.chip {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(211, 220, 236, 0.62);
  background: rgba(255, 255, 255, 0.035);
}

.feature__desc {
  margin-top: 10px;
  color: rgba(213, 221, 236, 0.74);
}

.speed-ui__btn,
.speed-ui__bar,
.led-ui__frame,
.usb-ui,
.rollers {
  border-color: rgba(255, 255, 255, 0.13);
}

.speed-ui__fill {
  background: linear-gradient(90deg, rgba(217, 183, 138, 0.9), rgba(255, 255, 255, 0.18));
}

.quotes {
  gap: 14px;
}

.quote {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.final__spot {
  opacity: 0.66;
  filter: blur(3px);
}

.final__copy {
  max-width: 680px;
}

.final__fine {
  color: rgba(213, 221, 236, 0.6);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 4, 8, 0.44);
}

.footer__links {
  color: rgba(213, 221, 236, 0.66);
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.02fr 0.98fr;
    column-gap: clamp(30px, 4.6vw, 66px);
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .feature {
    min-height: 238px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .hero__content {
    max-width: 100%;
    padding: 18px;
    border-radius: 20px;
  }

  .hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof:last-child {
    grid-column: 1 / -1;
  }

  .hero__product {
    position: relative;
    width: min(74vw, 326px);
    right: auto;
    bottom: auto;
    margin: 10px auto 0;
  }
}

@media (max-width: 760px) {
  .noise,
  .vignette {
    display: none;
  }

  .topbar {
    padding: 11px 14px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 22px;
  }

  .hero__content {
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  }

  .hero__title {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof:last-child {
    grid-column: auto;
  }

  .panel {
    padding-top: 58px;
    padding-bottom: 58px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.04;
  }

  .p {
    font-size: 15px;
    line-height: 1.58;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature {
    border-radius: 16px;
    padding: 16px;
  }

  .feature__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .feature__icon svg {
    width: 17px;
    height: 17px;
  }

  .h3 {
    font-size: 15px;
  }

  .feature__desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .feature__ui {
    margin-top: 12px;
  }

  .speed-ui {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
  }

  .speed-ui__btn:nth-child(1),
  .speed-ui__btn:nth-child(2),
  .speed-ui__bar {
    grid-column: auto;
    grid-row: auto;
  }

  .speed-ui__btn {
    width: 100%;
    min-height: 36px;
  }

  .quote {
    padding: 14px;
    font-size: 14px;
  }

  .final__actions .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .topbar__brand {
    font-size: 13px;
  }

  .topbar__cta {
    font-size: 10px;
    padding: 8px 10px;
  }

  .hero,
  .panel,
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero__title {
    font-size: clamp(36px, 13vw, 54px);
  }
}

/* ===== Commerce + Logo Integration (April 2026) ===== */
.intro__brand {
  justify-content: center;
}

.intro__logo {
  width: min(62vw, 330px);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 5, 10, 0.8);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.topbar__logo {
  width: 48px;
  height: auto;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(3, 5, 10, 0.85);
}

.topbar__brandtxt {
  display: none;
}

.offer-card {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  padding: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.offer-card__price {
  display: grid;
  gap: 2px;
}

.offer-card__label {
  color: rgba(240, 224, 201, 0.92);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card__price strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(24px, 3.4vw, 30px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.offer-card__price span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.offer-card__qty {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.offer-card__qty select {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 8px 10px;
  font: inherit;
}

.offer-card__qty select:focus-visible {
  outline: 2px solid rgba(217, 183, 138, 0.78);
  outline-offset: 2px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  width: 44px;
  height: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 0 10px rgba(214, 183, 132, 0.22));
}

.mobile-buybar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.mobile-buybar__price {
  display: grid;
  gap: 2px;
}

.mobile-buybar__price strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mobile-buybar__price span {
  color: var(--muted);
  font-size: 11px;
}

.mobile-buybar__btn {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(222, 190, 145, 0.95);
  background: linear-gradient(180deg, rgba(219, 186, 139, 1), rgba(188, 144, 88, 0.96));
  color: #101115;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .topbar__logo {
    width: 42px;
  }

  .offer-card {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .intro__logo {
    width: min(72vw, 284px);
  }

  .topbar__logo {
    width: 36px;
    border-radius: 7px;
  }

  .offer-card {
    margin-top: 10px;
    padding: 10px;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .offer-card__price strong {
    font-size: 24px;
  }

  .offer-card__qty select {
    min-height: 42px;
    width: 100%;
  }

  .footer__logo {
    width: 36px;
  }

  .mobile-buybar {
    display: flex;
  }

  .panel--final {
    padding-bottom: 116px;
  }
}

@media (max-width: 390px) {
  .mobile-buybar {
    left: 10px;
    right: 10px;
  }

  .mobile-buybar__btn {
    padding: 0 12px;
    min-height: 40px;
    font-size: 13px;
  }
}

/* ===== Features Gold Glow UI (April 2026) ===== */
.panel--features .panel__inner {
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.7vw, 30px);
}

.panel__copy--center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.panel--features .panel__copy--center .h2 {
  background: linear-gradient(180deg, #f4ecd8 0%, #dfbf88 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.panel--features .panel__copy--center .p {
  color: rgba(245, 231, 206, 0.84);
}

.feature-box {
  position: relative;
  width: min(100%, 1120px);
  min-height: clamp(470px, 60vw, 710px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(231, 202, 154, 0.38);
  background:
    radial-gradient(1100px 760px at 18% 12%, rgba(216, 181, 126, 0.14), transparent 58%),
    radial-gradient(900px 580px at 78% 72%, rgba(120, 87, 45, 0.18), transparent 62%),
    #07090e;
  box-shadow:
    0 36px 128px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(232, 205, 159, 0.13) inset;
  isolation: isolate;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(239, 216, 176, 0.16), transparent 35%, rgba(239, 216, 176, 0.12) 72%, transparent);
  z-index: 0;
}

.feature-box::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -72px;
  height: 150px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(227, 194, 142, 0.46), rgba(227, 194, 142, 0) 78%);
  filter: blur(22px);
  z-index: 0;
}

.feature-box__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
  transition: transform 0.7s var(--ease2), filter 0.7s var(--ease2), opacity 0.5s var(--ease2);
  z-index: 1;
}

.feature-box__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 9, 14, 0.14), rgba(6, 9, 14, 0.86) 78%),
    radial-gradient(760px 500px at 17% 30%, rgba(219, 184, 130, 0.34), transparent 66%);
}

.feature-box__overlay {
  position: absolute;
  left: clamp(12px, 1.9vw, 22px);
  right: clamp(12px, 1.9vw, 22px);
  bottom: clamp(12px, 1.9vw, 22px);
  border: 1px solid rgba(238, 210, 164, 0.28);
  background:
    linear-gradient(145deg, rgba(11, 15, 24, 0.93), rgba(10, 14, 22, 0.72)),
    radial-gradient(500px 300px at 24% 16%, rgba(204, 157, 92, 0.12), transparent 72%);
  border-radius: clamp(15px, 1.8vw, 22px);
  padding: clamp(14px, 1.9vw, 22px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.65s var(--ease2), transform 0.65s var(--ease2);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(236, 206, 158, 0.07) inset;
  z-index: 3;
}

.feature-box.is-revealed .feature-box__video {
  transform: scale(1);
  filter: saturate(0.96) contrast(1.03) brightness(0.9);
}

.feature-box.is-revealed .feature-box__overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.feature-box__tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(239, 214, 173, 0.32);
  color: rgba(248, 236, 213, 0.94);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(204, 160, 96, 0.2), rgba(204, 160, 96, 0.08));
  box-shadow: 0 0 28px rgba(213, 177, 121, 0.2);
}

.feature-box__title {
  margin: 12px 0 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(24px, 3.25vw, 48px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: rgba(251, 245, 235, 0.98);
  max-width: 24ch;
}

.feature-box__lead {
  margin: 10px 0 0;
  max-width: 64ch;
  color: rgba(236, 220, 193, 0.84);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.52;
}

.feature-points {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(9px, 1vw, 12px);
}

.feature-point {
  border: 1px solid rgba(239, 209, 160, 0.2);
  border-radius: 15px;
  background:
    linear-gradient(150deg, rgba(232, 194, 136, 0.12), rgba(23, 29, 41, 0.6) 34%, rgba(13, 18, 27, 0.68)),
    rgba(255, 255, 255, 0.03);
  padding: clamp(10px, 1vw, 13px);
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: start;
  gap: 10px;
  transition: transform 0.35s var(--ease2), border-color 0.35s var(--ease2), box-shadow 0.35s var(--ease2);
}

.feature-point__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  background: #e8cb98;
  box-shadow: 0 0 24px rgba(231, 200, 149, 0.62);
}

.feature-point__body {
  display: grid;
  gap: 6px;
}

.feature-point__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 20px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(238, 211, 170, 0.24);
  color: rgba(239, 213, 172, 0.9);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: rgba(240, 208, 158, 0.08);
}

.feature-point strong {
  display: block;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(250, 244, 233, 0.98);
}

.feature-point p {
  margin: 0;
  color: rgba(233, 218, 192, 0.8);
  font-size: clamp(12px, 1vw, 13px);
  line-height: 1.45;
}

.feature-box__actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-box__actions .btn {
  min-height: 46px;
  font-weight: 600;
}

.feature-box__actions .btn--primary {
  color: #121212;
  border: 1px solid rgba(255, 239, 206, 0.52);
  background: linear-gradient(135deg, #f0d6a7 0%, #d8b06f 58%, #b98943 100%);
  box-shadow: 0 12px 36px rgba(169, 122, 59, 0.45), 0 0 0 1px rgba(255, 238, 204, 0.16) inset;
}

.feature-box__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(186, 136, 67, 0.48), 0 0 0 1px rgba(255, 246, 225, 0.24) inset;
}

.feature-box__actions .btn--ghost {
  color: rgba(247, 234, 208, 0.96);
  border: 1px solid rgba(238, 210, 163, 0.32);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(236, 204, 154, 0.07) inset;
}

.feature-box__actions .btn--ghost:hover {
  border-color: rgba(245, 223, 182, 0.56);
  background: rgba(219, 181, 120, 0.09);
}

@media (hover: hover) and (pointer: fine) {
  .feature-point:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 218, 172, 0.38);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 980px) {
  .feature-box {
    min-height: clamp(500px, 85vw, 660px);
  }

  .feature-box__title {
    max-width: none;
  }

  .feature-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .panel--features {
    padding-top: 44px;
  }

  .feature-box {
    min-height: 560px;
    border-radius: 20px;
  }

  .feature-box__overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 14px;
    padding: 12px;
  }

  .feature-box__title {
    font-size: clamp(22px, 6.8vw, 30px);
  }

  .feature-box__lead {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .feature-point {
    border-radius: 12px;
    grid-template-columns: 9px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .feature-box__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-box__actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .feature-box {
    min-height: 540px;
  }

  .feature-box__tag {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .feature-point strong {
    font-size: 13px;
  }

  .feature-point p {
    font-size: 12px;
  }
}

/* ===== Header + Logo Stability Polish (April 2026) ===== */
html.intro-skip .intro {
  display: none !important;
}

.topbar {
  transform: none;
  opacity: 1;
  transition:
    background 0.35s var(--ease2),
    border-color 0.35s var(--ease2),
    box-shadow 0.35s var(--ease2);
}

.topbar.is-on {
  transform: none;
}

.intro__logo {
  width: min(72vw, 520px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(238, 210, 168, 0.15) inset;
}

.topbar__brand {
  gap: 12px;
}

.topbar__logo {
  width: 62px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 13, 0.9);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(239, 214, 175, 0.13) inset;
}

.topbar__brandtxt {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(250, 244, 233, 0.98);
  white-space: nowrap;
}

.topbar__cta {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .topbar__logo {
    width: 56px;
  }

  .topbar__brandtxt {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .intro__logo {
    width: min(84vw, 360px);
  }

  .topbar__logo {
    width: 48px;
    border-radius: 10px;
  }

  .topbar__brandtxt {
    display: none;
  }
}

@media (max-width: 430px) {
  .topbar__logo {
    width: 44px;
  }
}

/* ===== Final Product Size Fix (April 2026) ===== */
.panel--final .final__product {
  width: clamp(140px, 19vw, 220px);
  max-width: 40vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.panel--final .final__product img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(58vh, 560px);
}

@media (max-width: 980px) {
  .panel--final .final__product {
    width: clamp(128px, 28vw, 196px);
    max-width: 52vw;
  }

  .panel--final .final__product img {
    max-height: min(50vh, 460px);
  }
}

@media (max-width: 760px) {
  .panel--final .final__product {
    width: clamp(118px, 38vw, 176px);
    max-width: 62vw;
  }

  .panel--final .final__product img {
    max-height: min(42vh, 360px);
  }
}

/* ===== Smart Stage Scroll (April 2026) ===== */
html.stage-snap,
html.stage-snap body {
  scroll-behavior: auto;
}

html.stage-snap body {
  scroll-snap-type: y proximity;
}

main[data-scroll-container].is-step-scroll > .hero,
main[data-scroll-container].is-step-scroll > .panel {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

@media (max-width: 1023px) {
  html.stage-snap body {
    scroll-snap-type: none;
  }

  main[data-scroll-container].is-step-scroll > .hero,
  main[data-scroll-container].is-step-scroll > .panel {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

/* ===== Border Blend Polish (April 2026) ===== */
.panel--reveal .product--stage,
.panel--how .how,
.panel--benefits .benefits__visual {
  border: 1px solid transparent;
  box-shadow:
    0 34px 108px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(228, 202, 159, 0.07) inset,
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.panel--reveal .product--stage::before,
.panel--how .how::before,
.panel--benefits .benefits__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  background:
    linear-gradient(140deg, rgba(246, 223, 186, 0.36), rgba(255, 255, 255, 0.05) 35%, rgba(246, 223, 186, 0.24) 70%, rgba(255, 255, 255, 0.03))
      border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.42;
}

.panel--features .feature-box {
  border-color: rgba(231, 202, 154, 0.18);
  box-shadow:
    0 34px 118px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(232, 205, 159, 0.09) inset,
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.panel--features .feature-box::before {
  opacity: 0.72;
  background: linear-gradient(
    150deg,
    rgba(239, 216, 176, 0.12),
    transparent 34%,
    rgba(239, 216, 176, 0.08) 72%,
    transparent
  );
}

.panel--features .feature-box__overlay {
  border-color: rgba(238, 210, 164, 0.19);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(236, 206, 158, 0.05) inset;
}

/* ===== Hero Background Crop Cleanup (April 2026) ===== */
.hero__loop {
  object-position: 50% 6%;
  transform: scale(1.14);
  opacity: 0.15;
}

.hero__bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(170px, 30vh, 410px);
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(92% 72% at 52% 100%, rgba(6, 9, 14, 0.82) 0%, rgba(6, 9, 14, 0.54) 48%, rgba(6, 9, 14, 0) 78%),
    linear-gradient(180deg, rgba(6, 9, 14, 0) 0%, rgba(6, 9, 14, 0.34) 56%, rgba(6, 9, 14, 0.78) 100%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(200px, 36vh, 470px);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 14, 0) 0%,
    rgba(6, 9, 14, 0.56) 44%,
    rgba(6, 9, 14, 0.94) 100%
  );
}

@media (max-width: 980px) {
  .hero__loop {
    object-position: 50% 4%;
    transform: scale(1.16);
  }

  .hero__bg::after {
    height: clamp(220px, 41vh, 520px);
  }
}

@media (max-width: 760px) {
  .hero__loop {
    object-position: 50% 0%;
    transform: scale(1.2);
  }

  .hero__bg::after {
    height: clamp(250px, 46vh, 560px);
  }

  .hero__bg::before {
    height: clamp(220px, 40vh, 500px);
  }
}

/* ===== Hero Energy Glow Ring (April 2026) ===== */
.hero__product {
  isolation: isolate;
}

.hero__product .product {
  position: relative;
  isolation: isolate;
}

.hero__product .product::before {
  content: "";
  position: absolute;
  inset: -4% -12%;
  border-radius: 48% 52% 50% 50% / 12% 12% 88% 88%;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 38deg,
    rgba(234, 198, 136, 0.86) 56deg,
    transparent 90deg 170deg,
    rgba(110, 170, 255, 0.66) 196deg,
    transparent 228deg 288deg,
    rgba(234, 198, 136, 0.78) 314deg,
    transparent 346deg
  );
  filter: blur(12px) saturate(1.08);
  opacity: 0.42;
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(58% 92% at 50% 50%, transparent 63%, #000 76%);
  mask: radial-gradient(58% 92% at 50% 50%, transparent 63%, #000 76%);
  animation: hero-energy-spin 7.4s linear infinite;
}

.hero__product .product::after {
  content: "";
  position: absolute;
  inset: 10% -22%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(227, 193, 137, 0.38), rgba(227, 193, 137, 0) 74%);
  filter: blur(20px);
  opacity: 0.44;
  transform: scaleX(0.62);
  animation: hero-energy-pulse 3.9s ease-in-out infinite;
}

.hero__product .product img,
.hero__product .product__specular {
  position: relative;
  z-index: 2;
}

.hero__product .product__shadow {
  position: relative;
  z-index: 1;
}

@keyframes hero-energy-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-energy-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.56) scaleY(0.96);
  }
  50% {
    opacity: 0.56;
    transform: scaleX(0.72) scaleY(1.04);
  }
}

@media (max-width: 980px) {
  .hero__product .product::before {
    inset: -5% -10%;
    opacity: 0.36;
  }

  .hero__product .product::after {
    inset: 12% -18%;
    opacity: 0.36;
  }
}

@media (max-width: 760px) {
  .hero__product {
    width: min(52vw, 228px);
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__product .product::before,
  .hero__product .product::after {
    animation: none;
    opacity: 0.22;
  }
}

/* ===== Header Logo Blend + Random Shine (April 2026) ===== */
.topbar__brand {
  position: relative;
  overflow: visible;
}

.topbar__logo {
  width: 58px;
  height: auto;
  display: block;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0.96;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
  transition: filter 0.45s var(--ease2), opacity 0.45s var(--ease2), transform 0.45s var(--ease2);
}

.topbar__brand::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 78px;
  height: 78px;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(236, 209, 167, 0.26), rgba(236, 209, 167, 0) 64%),
    linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(243, 224, 190, 0.72), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  transform: translate(-68%, -50%) rotate(17deg);
  filter: blur(10px);
}

.topbar__brand.is-shining::after {
  animation: topbar-logo-shine 1.25s var(--ease2) 1;
}

.topbar__brand.is-shining .topbar__logo {
  filter: drop-shadow(0 0 12px rgba(236, 209, 167, 0.34)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

@keyframes topbar-logo-shine {
  0% {
    opacity: 0;
    transform: translate(-78%, -50%) rotate(17deg);
  }
  28% {
    opacity: 0.64;
  }
  100% {
    opacity: 0;
    transform: translate(24%, -50%) rotate(17deg);
  }
}

@media (max-width: 980px) {
  .topbar__logo {
    width: 52px;
  }
}

@media (max-width: 760px) {
  .topbar__logo {
    width: 44px;
  }

  .topbar__brand::after {
    left: -7px;
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 430px) {
  .topbar__logo {
    width: 40px;
  }
}

/* ===== Intro Logo Background Fix (April 2026) ===== */
.intro__brand {
  justify-content: center;
}

.intro__logo {
  width: min(44vw, 246px);
  height: auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0.98;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
}

@media (max-width: 760px) {
  .intro__logo {
    width: min(58vw, 208px);
  }
}

/* ===== Reviews Cards Refresh (April 2026) ===== */
.panel--reviews .quotes {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.panel--reviews .quote {
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(680px 220px at 20% 15%, rgba(220, 186, 137, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(226, 194, 149, 0.08) inset;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    border-color 0.3s var(--ease2),
    transform 0.3s var(--ease2),
    box-shadow 0.3s var(--ease2);
}

.panel--reviews .quote__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel--reviews .quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
  flex: 0 0 48px;
}

.panel--reviews .quote__person {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.panel--reviews .quote__name {
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(248, 242, 232, 0.98);
}

.panel--reviews .quote__meta {
  font-size: 12px;
  color: rgba(216, 224, 235, 0.68);
  line-height: 1.3;
}

.panel--reviews .quote__rating {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(233, 201, 154, 0.98);
  text-shadow: 0 0 12px rgba(233, 201, 154, 0.24);
}

.panel--reviews .quote__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(233, 240, 248, 0.88);
}

@media (hover: hover) and (pointer: fine) {
  .panel--reviews .quote:hover {
    transform: translateY(-3px);
    border-color: rgba(233, 200, 154, 0.44);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(233, 200, 154, 0.14) inset;
  }
}

@media (max-width: 980px) {
  .panel--reviews .quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .panel--reviews .quote {
    padding: 14px;
    border-radius: 14px;
    gap: 10px;
  }

  .panel--reviews .quote__avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .panel--reviews .quote__name {
    font-size: 14px;
  }

  .panel--reviews .quote__meta {
    font-size: 11px;
  }

  .panel--reviews .quote__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ===== Ultra-Wide Layout Balance (April 2026) ===== */
@media (min-width: 1500px) {
  .topbar {
    padding-left: max(24px, calc((100vw - 1540px) / 2 + 18px));
    padding-right: max(24px, calc((100vw - 1540px) / 2 + 18px));
  }

  .hero {
    padding-left: max(26px, calc((100vw - 1540px) / 2 + 20px));
    padding-right: max(26px, calc((100vw - 1540px) / 2 + 20px));
    column-gap: clamp(24px, 3vw, 58px);
  }

  .hero__content {
    max-width: clamp(600px, 39vw, 740px);
  }

  .hero__title {
    font-size: clamp(64px, 5.2vw, 96px);
  }

  .hero__sub {
    font-size: 14px;
  }

  .hero__support {
    font-size: clamp(17px, 1.1vw, 20px);
  }

  .hero__actions .btn {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 17px;
  }

  .hero__meta .pill {
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero__product {
    width: min(30vw, 520px);
    justify-self: end;
    transform: translateY(8px);
  }

  .hero__loop {
    transform: scale(1.08);
    object-position: 50% 4%;
    opacity: 0.14;
  }
}

@media (min-width: 1900px) {
  .hero {
    padding-left: max(34px, calc((100vw - 1700px) / 2 + 26px));
    padding-right: max(34px, calc((100vw - 1700px) / 2 + 26px));
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__product {
    width: min(31vw, 560px);
  }

  .hero__loop {
    transform: scale(1.02);
    object-position: 50% 3%;
  }
}

/* ===== Topbar Logo Framing Fix (April 2026) ===== */
.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar__logo {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain;
  object-position: center center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34)) !important;
  transform: translateZ(0);
}

@media (max-width: 760px) {
  .topbar__logo {
    width: 46px !important;
    height: 46px !important;
    border-radius: 0 !important;
  }

  .topbar__brand {
    gap: 10px;
  }
}

/* ===== Final Offer Card Polish (April 2026) ===== */
.panel--final .final__copy {
  max-width: 680px;
}

.panel--final .offer-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(235, 206, 163, 0.22);
  background:
    radial-gradient(800px 260px at 12% 6%, rgba(225, 191, 139, 0.16), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(239, 212, 169, 0.08) inset;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.panel--final .offer-card__price {
  display: grid;
  gap: 4px;
}

.panel--final .offer-card__label {
  color: rgba(239, 221, 190, 0.92);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel--final .offer-card__price strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(40px, 4.8vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.panel--final .offer-card__amount {
  display: grid;
  align-items: baseline;
  gap: 2px;
  position: relative;
}

.panel--final .offer-price {
  display: inline-block;
  width: fit-content;
  transition:
    opacity 0.36s var(--ease2),
    transform 0.36s var(--ease2),
    color 0.36s var(--ease2);
}

.panel--final .offer-price--old {
  font-size: clamp(22px, 2.2vw, 30px);
  color: rgba(246, 233, 214, 0.66);
  opacity: 0;
  max-height: 0;
  transform: translateY(3px);
  overflow: hidden;
}

.panel--final .offer-price--current {
  position: relative;
}

.panel--final .offer-price--current::before {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(252, 236, 215, 0.1), rgba(255, 112, 112, 0.9), rgba(252, 236, 215, 0.1));
  opacity: 0;
  transform: scaleX(0.1);
  transform-origin: 0 50%;
  pointer-events: none;
}

.panel--final .offer-card.is-discount-on .offer-price--old {
  opacity: 0.98;
  max-height: 80px;
  transform: translateY(0);
}

.panel--final .offer-card.is-discount-on .offer-price--current {
  color: rgba(236, 206, 158, 1);
  text-shadow: 0 0 24px rgba(233, 202, 155, 0.35);
}

.panel--final .offer-card.is-discount-on .offer-price--current::before {
  opacity: 0;
}

.panel--final .offer-card.is-claiming .offer-price--current::before {
  opacity: 1;
  animation: offer-strike 0.65s var(--ease2) forwards;
}

.panel--final .offer-card__discount {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.panel--final .claim-btn {
  appearance: none;
  min-height: 44px;
  border-radius: 12px;
  border: 1px dashed rgba(239, 211, 171, 0.46);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(243, 230, 210, 0.96);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease2),
    border-color 0.28s var(--ease2),
    box-shadow 0.28s var(--ease2),
    background 0.28s var(--ease2);
}

.panel--final .claim-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(243, 220, 185, 0.8);
  background: rgba(214, 170, 104, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.panel--final .claim-btn.is-on {
  border-style: solid;
  border-color: rgba(236, 206, 158, 0.92);
  background: linear-gradient(180deg, rgba(236, 206, 158, 0.2), rgba(152, 112, 56, 0.18));
  color: rgba(255, 246, 231, 0.98);
  box-shadow: 0 8px 24px rgba(188, 141, 75, 0.32);
}

.panel--final .claim-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.panel--final .claim-hint,
.panel--final .claim-timer {
  margin: 0;
  font-size: 12px;
  color: rgba(224, 232, 244, 0.74);
}

.panel--final .claim-timer {
  color: rgba(240, 217, 179, 0.95);
  letter-spacing: 0.02em;
}

@keyframes offer-strike {
  0% {
    opacity: 0;
    transform: scaleX(0.08);
  }
  25% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: scaleX(1.02);
  }
}

.panel--final .offer-card__price span:last-child {
  color: rgba(222, 227, 237, 0.78);
  font-size: 14px;
}

.panel--final .offer-card__qty {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.panel--final .offer-card__qty-label {
  color: rgba(232, 220, 198, 0.88);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel--final .qty-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(44px, 52px));
  gap: 6px;
  padding: 5px;
  border-radius: 14px;
  border: 1px solid rgba(235, 206, 163, 0.28);
  background: rgba(11, 17, 28, 0.78);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.panel--final .qty-switch__btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 42px;
  background: transparent;
  color: rgba(232, 236, 245, 0.84);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease2),
    background 0.25s var(--ease2),
    color 0.25s var(--ease2),
    border-color 0.25s var(--ease2),
    box-shadow 0.25s var(--ease2);
}

.panel--final .qty-switch__btn:hover {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(235, 206, 163, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.panel--final .qty-switch__btn.is-on {
  color: #111316;
  border-color: rgba(242, 216, 176, 0.95);
  background: linear-gradient(180deg, rgba(232, 201, 153, 1), rgba(198, 154, 97, 0.98));
  box-shadow:
    0 8px 22px rgba(170, 126, 66, 0.42),
    0 0 0 1px rgba(255, 238, 205, 0.3) inset;
}

.panel--final .qty-switch__btn:focus-visible {
  outline: 2px solid rgba(239, 211, 168, 0.86);
  outline-offset: 2px;
}

.panel--final #heroQty[type="hidden"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.panel--final .final__actions {
  margin-top: 18px;
  gap: 12px;
}

.panel--final .final__actions .btn {
  min-height: 56px;
  padding: 0 26px;
  font-size: 18px;
  font-weight: 700;
}

.panel--final .final__actions .btn--primary {
  border-color: rgba(232, 200, 149, 0.98);
  background: linear-gradient(180deg, rgba(225, 195, 148, 1), rgba(189, 145, 88, 0.96));
  box-shadow:
    0 16px 40px rgba(171, 125, 64, 0.34),
    0 0 0 1px rgba(255, 240, 210, 0.22) inset;
}

.panel--final .final__actions .btn--primary:hover {
  box-shadow:
    0 20px 48px rgba(186, 139, 72, 0.42),
    0 0 0 1px rgba(255, 244, 219, 0.3) inset;
}

.panel--final .final__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.panel--final .final__fine {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(220, 226, 238, 0.74);
}

@media (max-width: 980px) {
  .panel--final .offer-card__price strong {
    font-size: clamp(34px, 6.6vw, 46px);
  }
}

@media (max-width: 760px) {
  .panel--final .offer-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 16px;
    padding: 12px;
    gap: 12px;
  }

  .panel--final .offer-card__qty {
    justify-items: stretch;
  }

  .panel--final .offer-card__amount {
    gap: 0;
  }

  .panel--final .qty-switch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .panel--final .qty-switch__btn {
    min-height: 40px;
    font-size: 15px;
  }

  .panel--final .final__actions {
    gap: 10px;
  }

  .panel--final .final__actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: 17px;
  }

  .panel--final .final__fine {
    font-size: 13px;
  }
}
