html{overflow-x:hidden}
/* ============ TOKENS ============ */
:root{
  --bg:#0b0d0e;
  --header-grad:linear-gradient(180deg,#23272b 0%,#16191c 100%);
  --surface:#15181a;
  --surface-2:#1c2023;
  --surface-step:#101315;
  --border:rgba(255,255,255,.07);
  --border-strong:rgba(255,255,255,.12);
  --text-0:#ffffff;
  --text-1:#cfd4d8;
  --text-2:rgba(255,255,255,.66);
  --text-3:rgba(255,255,255,.66);
  --footer:rgba(255,255,255,.66);
  --green:#1fad66;
  --green-hover:#23c074;
  --green-text:#1cd478;
  --grad:linear-gradient(180deg,#27c074 0%,#1a9a59 100%);
  --grad-glow:rgba(31,173,102,.42);
  --green-pill-bg:#12291d;
  --green-pill-border:rgba(31,173,102,.35);
  --red:#f31830;
  --red-deep:#d52b1e;
  --glow-strong:.55;
  --glow-soft:.32;
  --qr-bg:#ffffff;
  --shadow-card:0 2px 8px rgba(0,0,0,.35);
}
[data-theme="light"]{
  --bg:#eef1f5;
  --header-grad:linear-gradient(180deg,#ffffff 0%,#e8edf2 100%);
  --surface:#ffffff;
  --surface-2:#f3f6f9;
  --surface-step:#ffffff;
  --border:rgba(11,13,14,.09);
  --border-strong:rgba(11,13,14,.14);
  --text-0:#0b0d0e;
  --text-1:#32383e;
  --text-2:#4c555e;
  --text-3:#8b929a;
  --footer:#9aa1a8;
  --green-pill-bg:#e2f6ec;
  --green-pill-border:rgba(20,200,120,.4);
  --glow-strong:.30;
  --glow-soft:.16;
  --qr-bg:#ffffff;
  --shadow-card:0 2px 14px rgba(20,30,45,.10);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text-1);
  font-family:"Roboto",system-ui,sans-serif;
  letter-spacing:.15px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  transition:background .35s ease,color .35s ease;
}
.wrap{max-width:1152px;margin:0 auto;padding:0 24px}
h1,h2,h3{color:var(--text-0);letter-spacing:.1px}

/* ============ HEADER ============ */
header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .3s ease,backdrop-filter .3s ease,border-color .3s ease,box-shadow .3s ease,transform .3s cubic-bezier(.4,0,.2,1);
}
@media (max-width:768px){
  header{padding-top:max(env(safe-area-inset-top),0px)}
  header.hide-nav{transform:translateY(-100%)}
  .nav{margin:10px 16px 0 !important;padding:0 16px !important;max-width:calc(100% - 32px) !important;box-sizing:border-box !important}
}
header.scrolled{
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
}
.nav{display:flex;align-items:center;justify-content:space-between;height:62px;max-width:1152px;margin:10px auto 0;padding:0 24px;box-sizing:border-box;
  border:1px solid transparent;border-radius:16px;
  transition:background .3s ease,backdrop-filter .3s ease,border-color .3s ease,box-shadow .3s ease;}
@media (max-width:1192px){.nav{margin:10px 20px 0}}
header.scrolled .nav{
  background:rgba(28,18,38,.45);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 10px 34px rgba(0,0,0,.4);
  backdrop-filter:blur(16px) saturate(1.3);-webkit-backdrop-filter:blur(16px) saturate(1.3);
}
[data-theme="light"] header.scrolled .nav{
  background:rgba(255,255,255,.6);
  border-color:rgba(20,30,45,.1);
  box-shadow:0 10px 34px rgba(20,30,45,.14);
}
.logo{display:inline-flex;align-items:center;color:#fff;user-select:none;-webkit-tap-highlight-color:transparent;transition:transform .15s cubic-bezier(.25,.1,.25,1),opacity .15s ease,color .3s ease}
[data-theme="light"] .logo{color:#0b0d0e}
.logo:active{transform:scale(.95);opacity:.7}
.logo svg{display:block;height:22px;width:auto}
.logo .logo-mark{display:none;height:24px}
@media (max-width:768px){
  .logo .logo-full{display:none}
  .logo .logo-mark{display:block}
}
[data-theme="light"] header.scrolled .logo{color:#0b0d0e}
[data-theme="light"] .hero h1{color:#0b0d0e}
[data-theme="light"] .hero p.sub{color:rgba(11,13,14,.7)}
/* button: dark bg, white text+icon */
[data-theme="light"] .hero-cta{background:#0b0d0e;color:#fff}
[data-theme="light"] .hero-cta svg{stroke:#fff !important}
/* meta text */
[data-theme="light"] .hero-cta-meta{color:rgba(11,13,14,.55)}
/* BONUS accent — keep red/visible on light */
[data-theme="light"] .hero p.sub b{color:#0b0d0e !important}
[data-theme="light"] .hero-cta-meta{color:rgba(11,13,14,.66) !important}
.nav-right{display:flex;align-items:center;gap:18px}
.theme-toggle{
  width:54px;height:28px;border-radius:999px;border:1px solid var(--border-strong);
  background:rgba(0,0,0,.35);position:relative;cursor:pointer;flex-shrink:0;
  display:flex;align-items:center;justify-content:space-between;padding:0 7px;
  -webkit-tap-highlight-color:transparent;
  transition:transform .15s cubic-bezier(.25,.1,.25,1),background .2s ease,opacity .15s ease;
}
.theme-toggle:active{transform:scale(.93);opacity:.85}
[data-theme="light"] .theme-toggle{background:rgba(11,13,14,.06)}
.theme-toggle svg{width:13px;height:13px;z-index:2;transition:color .3s ease}
.theme-toggle svg:first-of-type{color:#16191c}
.theme-toggle svg:last-of-type{color:rgba(255,255,255,.55)}
[data-theme="light"] .theme-toggle svg:first-of-type{color:rgba(11,13,14,.4)}
[data-theme="light"] .theme-toggle svg:last-of-type{color:#16191c}
.theme-knob{
  position:absolute;top:2.5px;left:2.5px;width:22px;height:22px;border-radius:50%;
  background:#f2f4f6;box-shadow:0 1px 3px rgba(0,0,0,.4);transition:transform .25s ease;z-index:1;
}
[data-theme="light"] .theme-knob{transform:translateX(26px)}
.btn-green{
  position:relative;
  background:var(--grad);color:#fff;border:none;border-radius:8px;
  font-family:inherit;font-weight:700;font-size:13.5px;letter-spacing:.2px;
  padding:9px 18px;cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:transform .16s cubic-bezier(.25,.1,.25,1),filter .2s ease,box-shadow .2s ease;
  white-space:nowrap;
  box-shadow:0 2px 10px var(--grad-glow),inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-green:hover{filter:brightness(1.06)}
.btn-green:active{transform:scale(.96);filter:brightness(.95)}
.btn-light{
  background:#fff;color:#16191c;border:none;border-radius:8px;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;
  font-family:inherit;font-weight:700;font-size:13.5px;letter-spacing:.2px;
  padding:9px 18px;cursor:pointer;white-space:nowrap;
  -webkit-tap-highlight-color:transparent;
  box-shadow:0 1px 4px rgba(0,0,0,.18);
  will-change:transform,filter;
  transition:transform 0.45s cubic-bezier(0.16,1,0.3,1),filter 0.45s cubic-bezier(0.16,1,0.3,1),box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
}
.btn-light:hover{transform:scale(1.04);filter:brightness(1.06);box-shadow:0 8px 24px rgba(0,0,0,.3)}
.btn-light:active{transform:scale(0.96);filter:brightness(0.94);transition:transform 0.1s cubic-bezier(0.4,0,1,1),filter 0.1s cubic-bezier(0.4,0,1,1)}
[data-theme="light"] .btn-light{background:#0b0d0e;color:#fff}

/* ============ HERO ============ */
.hero{
  position:relative;overflow:visible;
  isolation:isolate;
  margin:0;border-radius:0;
  background:transparent;
}
.hero::before{display:none}
.hero-visual{
  position:absolute;left:380px;top:40px;z-index:1;
  width:558px;pointer-events:none;
}
.hero-visual::before{
  content:"";position:absolute;
  left:calc(50% - 3.6%);top:calc(50% + 10px);
  width:540px;height:540px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(210,1,1,.70) 0%, rgba(210,1,1,.20) 45%, rgba(210,1,1,0) 68%);
  pointer-events:none;z-index:-1;
  animation:orbit-cw-a 6s linear infinite;
}

@keyframes orbit-cw-a{
  0%   {transform:translate(calc(-50% + 0px),   calc(-50% - 40px));border-radius:50%}
  12.5%{transform:translate(calc(-50% + 28px),  calc(-50% - 28px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 40px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 28px),  calc(-50% + 28px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 40px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 28px),  calc(-50% + 28px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 40px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 28px),  calc(-50% - 28px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 40px));border-radius:50%}
}
@keyframes orbit-ccw-b{
  0%   {transform:translate(calc(-50% + 0px),   calc(-50% + 40px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  12.5%{transform:translate(calc(-50% - 28px),  calc(-50% + 28px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  25%  {transform:translate(calc(-50% - 40px),  calc(-50% + 0px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  37.5%{transform:translate(calc(-50% - 28px),  calc(-50% - 28px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% - 40px));border-radius:50%}
  62.5%{transform:translate(calc(-50% + 28px),  calc(-50% - 28px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  75%  {transform:translate(calc(-50% + 40px),  calc(-50% + 0px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  87.5%{transform:translate(calc(-50% + 28px),  calc(-50% + 28px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% + 40px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
}

.hero-visual::after{
  content:"";position:absolute;
  left:calc(50% - 3.6%);top:calc(50% + 10px);
  width:990px;height:990px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(210,1,1,.40) 0%, rgba(210,1,1,.10) 45%, rgba(210,1,1,0) 68%);
  pointer-events:none;z-index:-2;
  animation:orbit-ccw-b 6s linear infinite;
}

.hero-3d{
  display:block;width:100%;height:auto;
  position:relative;z-index:1;
  filter:none;
}
.hero-wrap{
  position:relative;z-index:2;
  max-width:1152px;margin:0 auto;padding:154px 44px 64px;
  display:flex;align-items:flex-start;
  min-height:540px;
}
.hero-left{text-align:left;position:relative;z-index:2;max-width:400px}
.hero-3d-mobile{display:none}
.hero-visual-mobile{
  position:relative;
  width:100%;max-width:440px;margin:18px auto 0;
  display:none;
}
.hero-visual-mobile::before{
  content:"";
  position:absolute;
  width:344px;height:344px;
  left:calc(50% - 3.6%);top:calc(50% + 10px);
  will-change:transform;
  transform:translate(-50%,-50%);
  border-radius:50%;pointer-events:none;
  background:radial-gradient(circle, rgba(210,1,1,.85) 0%, rgba(210,1,1,.25) 45%, rgba(210,1,1,0) 68%);
  z-index:-1;
  animation:orbit-cw-a-m 8s linear infinite;
}
.hero-visual-mobile::after{
  content:"";
  position:absolute;
  width:781px;height:781px;
  left:calc(50% - 3.6%);top:calc(50% + 10px);
  transform:translate(-50%,-50%);
  border-radius:50%;z-index:-2;pointer-events:none;
  background:radial-gradient(circle, rgba(210,1,1,.40) 0%, rgba(210,1,1,.10) 42%, transparent 68%);
  animation:orbit-ccw-b-m 8s linear infinite;
}

[data-theme="light"] .hero-visual::before{
  background:radial-gradient(circle, rgba(255,255,255,1.0) 0%, rgba(255,255,255,.45) 45%, rgba(255,255,255,0) 68%);
}
[data-theme="light"] .hero-visual::after{
  background:radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,.25) 45%, rgba(255,255,255,0) 68%);
}
@keyframes orbit-cw-a-t{
  0%   {transform:translate(calc(-50% + 0px),   calc(-50% - 34px));border-radius:50%}
  12.5%{transform:translate(calc(-50% + 24px),  calc(-50% - 24px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 34px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 24px),  calc(-50% + 24px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 34px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 24px),  calc(-50% + 24px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 34px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 24px),  calc(-50% - 24px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 34px));border-radius:50%}
}
@keyframes orbit-ccw-b-t{
  0%   {transform:translate(calc(-50% + 0px),   calc(-50% + 34px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  12.5%{transform:translate(calc(-50% + 24px),  calc(-50% + 24px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  25%  {transform:translate(calc(-50% + 34px),  calc(-50% + 0px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  37.5%{transform:translate(calc(-50% + 24px),  calc(-50% - 24px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% - 34px));border-radius:50%}
  62.5%{transform:translate(calc(-50% - 24px),  calc(-50% - 24px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  75%  {transform:translate(calc(-50% - 34px),  calc(-50% + 0px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  87.5%{transform:translate(calc(-50% - 24px),  calc(-50% + 24px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% + 34px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
}
@keyframes orbit-cw-a-m{
  0%   {transform:translate(calc(-50% + 0px),   calc(-50% - 15px));border-radius:50%}
  12.5%{transform:translate(calc(-50% + 11px),  calc(-50% - 11px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 15px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 11px),  calc(-50% + 11px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 15px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 11px),  calc(-50% + 11px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 15px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 11px),  calc(-50% - 11px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 15px));border-radius:50%}
}
  12.5%{transform:translate(calc(-50% + 14px),  calc(-50% - 14px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 20px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 14px),  calc(-50% + 14px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 20px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 14px),  calc(-50% + 14px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 20px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 14px),  calc(-50% - 14px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 20px));border-radius:50%}
}
  12.5%{transform:translate(calc(-50% + 28px),  calc(-50% - 28px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 40px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 28px),  calc(-50% + 28px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 40px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 28px),  calc(-50% + 28px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 40px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 28px),  calc(-50% - 28px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 40px));border-radius:50%}
}
  12.5%{transform:translate(calc(-50% + 42px),  calc(-50% - 42px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 60px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 42px),  calc(-50% + 42px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 60px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 42px),  calc(-50% + 42px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 60px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 42px),  calc(-50% - 42px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 60px));border-radius:50%}
}
  12.5%{transform:translate(calc(-50% + 23px),  calc(-50% - 23px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  25%  {transform:translate(calc(-50% + 32px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  37.5%{transform:translate(calc(-50% + 23px),  calc(-50% + 23px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 32px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  62.5%{transform:translate(calc(-50% - 23px),  calc(-50% + 23px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  75%  {transform:translate(calc(-50% - 32px),  calc(-50% + 0px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  87.5%{transform:translate(calc(-50% - 23px),  calc(-50% - 23px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 32px));border-radius:50%}
}
  12.5%{transform:translate(calc(-50% + 23px),  calc(-50% - 23px))}
  25%  {transform:translate(calc(-50% + 32px),  calc(-50% + 0px))}
  37.5%{transform:translate(calc(-50% + 23px),  calc(-50% + 23px))}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% + 32px))}
  62.5%{transform:translate(calc(-50% - 23px),  calc(-50% + 23px))}
  75%  {transform:translate(calc(-50% - 32px),  calc(-50% + 0px))}
  87.5%{transform:translate(calc(-50% - 23px),  calc(-50% - 23px))}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% - 32px))}
}
@keyframes orbit-ccw-b-m{
  0%   {transform:translate(calc(-50% + 0px),   calc(-50% + 60px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  12.5%{transform:translate(calc(-50% + 42px),  calc(-50% + 42px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  25%  {transform:translate(calc(-50% + 60px),  calc(-50% + 0px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  37.5%{transform:translate(calc(-50% + 42px),  calc(-50% - 42px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% - 60px));border-radius:50%}
  62.5%{transform:translate(calc(-50% - 42px),  calc(-50% - 42px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  75%  {transform:translate(calc(-50% - 60px),  calc(-50% + 0px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  87.5%{transform:translate(calc(-50% - 42px),  calc(-50% + 42px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% + 60px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
}
  12.5%{transform:translate(calc(-50% + 23px),  calc(-50% + 23px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  25%  {transform:translate(calc(-50% + 32px),  calc(-50% + 0px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  37.5%{transform:translate(calc(-50% + 23px),  calc(-50% - 23px));border-radius:20% 80% 30% 70% / 75% 25% 75% 25%}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% - 32px));border-radius:50%}
  62.5%{transform:translate(calc(-50% - 23px),  calc(-50% - 23px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
  75%  {transform:translate(calc(-50% - 32px),  calc(-50% + 0px));border-radius:75% 25% 80% 20% / 30% 70% 20% 80%}
  87.5%{transform:translate(calc(-50% - 23px),  calc(-50% + 23px));border-radius:80% 20% 70% 30% / 25% 75% 25% 75%}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% + 32px));border-radius:25% 75% 20% 80% / 70% 30% 80% 20%}
}
  12.5%{transform:translate(calc(-50% + 23px),  calc(-50% + 23px))}
  25%  {transform:translate(calc(-50% + 32px),  calc(-50% + 0px))}
  37.5%{transform:translate(calc(-50% + 23px),  calc(-50% - 23px))}
  50%  {transform:translate(calc(-50% + 0px),   calc(-50% - 32px))}
  62.5%{transform:translate(calc(-50% - 23px),  calc(-50% - 23px))}
  75%  {transform:translate(calc(-50% - 32px),  calc(-50% + 0px))}
  87.5%{transform:translate(calc(-50% - 23px),  calc(-50% + 23px))}
  100% {transform:translate(calc(-50% + 0px),   calc(-50% + 32px))}
}
}
.hero-visual-mobile::after{
  content:"";
  position:absolute;
  width:380px;height:380px;
  left:50%;top:50%;
  border-radius:50%;pointer-events:none;
  background:radial-gradient(circle, rgba(210,1,1,.50) 0%, rgba(210,1,1,.12) 45%, rgba(210,1,1,0) 68%);
  z-index:-1;
  animation:orbit-ccw-b-m 8s linear infinite;
}

[data-theme="light"] .hero-visual-mobile::before{
  background:radial-gradient(circle, rgba(255,255,255,1.0) 0%, rgba(255,255,255,.45) 45%, rgba(255,255,255,0) 68%);
}
[data-theme="light"] .hero-visual-mobile::after{
  background:radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,.25) 45%, rgba(255,255,255,0) 68%);
}
.hero-visual-mobile .hero-3d-mobile{
  position:relative;z-index:1;
  width:100%;max-width:440px;height:auto;margin:0;display:block;
}

.hero::after{display:none}
@media (min-width:769px) and (max-width:1280px){
  .hero{margin:0;border-radius:0}
  .hero-wrap{padding:128px 32px 40px !important;min-height:440px;align-items:flex-start}
  .hero-left{max-width:380px}
  .hero h1{font-size:clamp(40px,4.6vw,52px)}
  .hero-visual{width:480px;left:380px}
  .hero-visual::before{width:464px;height:464px;animation:orbit-cw-a-t 6s linear infinite}
  .hero-visual::after{width:851px;height:851px;animation:orbit-ccw-b-t 6s linear infinite}
  .qr-card{right:24px;bottom:32px;max-width:180px;padding:14px;gap:10px}
  .qr-box{width:100px;height:100px}
  .qr-text h3{font-size:15px}
  .qr-text .desc{font-size:12.5px}
}
@media (max-width:768px){
  .hero-wrap{display:block;height:auto !important;padding:104px 18px 16px !important;text-align:center}
  .hero-left{max-width:none;width:100% !important;display:flex;flex-direction:column;align-items:center;margin:0 !important}
  .hero h1{font-size:40px;margin-bottom:16px}
  .hero p.sub{margin:0 auto 24px;text-align:center}
  .hero-cta{width:100% !important;max-width:400px !important}
  .hero-cta-meta{width:100% !important;max-width:400px;text-align:center !important;margin:12px auto 0 !important}
  .hero-visual{display:none}
  .qr-card{display:none}
  .hero-visual-mobile{display:block}.hero-3d-mobile{display:block;width:100%;max-width:440px;height:auto;margin:0}
}
.badge-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;border:none;padding:0;
  margin-bottom:26px;
  transform-origin:center;opacity:1;
  animation:badgeIn .55s cubic-bezier(.2,.8,.25,1);
}
.badge-gift{
  flex-shrink:0;width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#cc1111;
  box-shadow:0 0 16px rgba(200,0,0,.5),inset 0 1px 0 rgba(255,255,255,.18);
}
.badge-gift .gift-icon{width:20px;height:20px;display:block;transform-origin:center;animation:gift-shake 3s ease-in-out infinite}
.badge-label{
  display:inline-flex;align-items:center;justify-content:center;height:40px;
  background:#cc1111;border-radius:50px;
  padding:9px 22px;
  color:#fff;font-weight:700;font-size:15px;letter-spacing:-.2px;
  box-shadow:0 0 16px rgba(200,0,0,.5),inset 0 1px 0 rgba(255,255,255,.15);
  white-space:nowrap;
}

@keyframes gift-shake{
  0%,100%{transform:rotate(0deg)}
  5%{transform:rotate(-18deg)}
  10%{transform:rotate(18deg)}
  15%{transform:rotate(-13deg)}
  20%{transform:rotate(13deg)}
  25%{transform:rotate(-6deg)}
  30%{transform:rotate(6deg)}
  35%,100%{transform:rotate(0deg)}
}
.badge-pill .b50{font-weight:700;color:#fff;margin-left:4px}
@keyframes badgeIn{
  0%{transform:translateY(12px) scale(.82)}
  60%{transform:translateY(0) scale(1.05)}
  100%{transform:translateY(0) scale(1)}
}

  50%{box-shadow:0 0 20px rgba(255,255,255,.7)}
}
/* mobile: keep the same outline pill */
@media (max-width:1024px){
  .badge-pill{
    animation:badgeIn .5s ease;
  }
}
@media (prefers-reduced-motion:reduce){.badge-pill,.hero-cta{animation:none}}
.hero h1{font-size:40px;font-weight:800;line-height:1.02;margin-bottom:16px;letter-spacing:-.3px;color:#fff;text-align:left}
.hero p.sub{font-size:15px;font-weight:400;color:rgba(255,255,255,.7);line-height:1.6;max-width:470px;margin:0 0 32px}
.hero-cta{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;text-decoration:none;width:400px;height:44px;text-align:center;
  background:#fff;color:#16191c;
  will-change:transform,filter;
  transition:transform 0.45s cubic-bezier(0.16,1,0.3,1),filter 0.45s cubic-bezier(0.16,1,0.3,1),box-shadow 0.45s cubic-bezier(0.16,1,0.3,1);
  padding:16px 32px;font-size:16px;font-weight:700;border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,.32);
  -webkit-tap-highlight-color:transparent;
}
.hero-cta svg{width:18px;height:18px;fill:none;display:block}
.hero-cta:hover{transform:scale(1.04);filter:brightness(1.06);box-shadow:0 8px 28px rgba(255,255,255,.22)}
.hero-cta:active{transform:scale(0.96);filter:brightness(0.94);transition:transform 0.1s cubic-bezier(0.4,0,1,1),filter 0.1s cubic-bezier(0.4,0,1,1)}
.hero-cta-meta{width:380px;max-width:400px;margin:12px 0 0;font-size:13px;line-height:1.4;color:rgba(255,255,255,.66);text-align:center;font-weight:400;white-space:normal}
@media (min-width:769px) and (max-width:1280px){.hero-cta-meta{width:100% !important;max-width:400px;text-align:left !important}}
@media (max-width:768px){
  .nav{margin-top:0;padding-top:max(env(safe-area-inset-top),0px)}
  .hero h1{text-align:center !important}
}
/* ---- infoAcc: ghost trigger, dashed underline, centered ---- */
#infoAcc .acc-item{background:none !important;border:none !important;box-shadow:none !important;margin:0}
#infoAcc .acc-item:hover{border:none !important;box-shadow:none !important}
#infoAcc .acc-item.open{border:none !important;box-shadow:none !important}
#infoAcc .acc-trigger{
  justify-content:center;gap:6px;padding:8px 0;
  text-decoration:underline;text-decoration-style:dashed;text-decoration-color:rgba(255,255,255,.45);
  text-underline-offset:3px;color:var(--text-2);font-size:14px;
}
#infoAcc .acc-trigger:hover{color:var(--text-0)}
[data-theme="light"] #infoAcc .acc-trigger{text-decoration-color:rgba(0,0,0,.35);color:var(--text-2)}
#infoAcc .acc-panel{background:none}
#infoAcc .acc-panel-inner{font-size:13px;line-height:1.6}
[data-theme="light"] .steps-intro{color:var(--text-2) !important}
@media (max-width:768px){.steps-intro{width:100% !important;max-width:500px !important;margin:16px auto 0 !important;text-align:center !important}}
@media (max-width:768px){
  #infoAcc{width:100%}
  #infoAcc .acc-item{width:100% !important;max-width:500px}
  #infoAcc .acc-trigger{width:100% !important}
}

/* QR card — floating glass card over the 3D image */
.qr-card{
  position:absolute;right:40px;bottom:48px;z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center;
  width:auto;
  background:rgba(18,20,23,.72);
  border:1px solid rgba(255,255,255,.14);border-radius:16px;
  padding:18px;
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 50px rgba(0,0,0,.55),inset 0 1px 0 rgba(255,255,255,.1);
}
.qr-card>*{position:relative;z-index:1}
[data-theme="light"] .qr-card{background:rgba(18,20,23,.72)}
.qr-box{width:128px;height:128px;border-radius:12px;background:var(--qr-bg);padding:8px;flex-shrink:0}
.qr-box svg{width:100%;height:100%;display:block}
.qr-text{min-width:0;text-align:center;width:128px;white-space:normal}
.qr-text h3{font-size:16px;font-weight:700;margin-bottom:6px;color:#fff}
.qr-text .desc{font-size:13.5px;color:rgba(255,255,255,.66);line-height:1.6}
@media (max-width:768px){.qr-card{display:none}}

/* ============ SECTION TITLES ============ */
.section{padding:32px 0;position:relative;z-index:5}
.sec-head{text-align:center;max-width:680px;margin:0 auto 24px}
.sec-head h2{font-size:34px;font-weight:500;margin-bottom:16px;letter-spacing:-.3px}
.sec-head p{font-size:16px;color:var(--text-2);line-height:1.6}

/* Accordion (Informação Importante + FAQ) */
.acc{border-radius:12px;overflow:hidden}
.acc-item{
  background:linear-gradient(180deg,#24292d 0%,#191c1f 100%);border:1px solid var(--border);border-radius:12px;
  margin-bottom:12px;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease;
}
.acc-item:hover{border-color:var(--border-strong)}
.acc-item.open{border-color:var(--border-strong);box-shadow:0 8px 24px rgba(0,0,0,.32)}
[data-theme="light"] .acc-item{background:linear-gradient(180deg,#ffffff 0%,#eef2f6 100%)}
.acc-trigger{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:none;border:none;cursor:pointer;text-align:left;
  font-family:inherit;color:var(--text-0);font-size:16px;font-weight:500;
  padding:18px 22px;
  -webkit-tap-highlight-color:transparent;
  transition:opacity .15s ease;
}
.acc-trigger:active{opacity:.55}
.acc-trigger .chev{transition:transform .25s ease;flex-shrink:0;color:var(--text-2)}
.acc-item.open .chev{transform:rotate(180deg)}
.acc-panel{max-height:0;overflow:hidden;transition:max-height .3s ease}
.acc-panel-inner{padding:0 22px 20px;color:var(--text-2);font-size:15px;line-height:1.6}
#install-steps{scroll-margin-top:90px}
@media (max-width:768px){#install-steps{scroll-margin-top:80px}}
#step-2{scroll-margin-top:90px}
#step-4{scroll-margin-top:90px}
.step-link{color:#fff;cursor:pointer;font-weight:700;text-decoration:underline;text-decoration-style:dashed;text-decoration-color:rgba(255,255,255,.45);text-underline-offset:3px}
.step-link:hover{text-decoration-color:rgba(255,255,255,.85)}
[data-theme="light"] .step-link{color:#0b0d0e;text-decoration-color:rgba(11,13,14,.4)}
[data-theme="light"] .step-link:hover{text-decoration-color:rgba(11,13,14,.8)}

/* ============ STEPS TIMELINE ============ */
.steps-head{text-align:center;margin-bottom:16px}
.steps-head h2{font-size:32px;font-weight:600;text-align:center;letter-spacing:-.3px}
.steps-head p{font-size:16px;color:var(--text-2);line-height:1.6;max-width:560px;margin:14px auto 0}

.timeline{position:relative;max-width:1000px;margin:0 auto}
/* the vertical spine */
.tl-spine{position:absolute;top:10px;bottom:10px;left:50%;width:3px;transform:translateX(-50%);
  background:var(--border-strong);border-radius:999px;overflow:hidden;z-index:1}
.tl-spine-fill{position:absolute;top:0;left:0;width:100%;height:0;border-radius:999px;
  background:var(--grad);
  box-shadow:0 0 18px var(--grad-glow);transition:height .12s linear}

.tl-step{position:relative;display:grid;grid-template-columns:1fr 96px 1fr;align-items:start;margin-bottom:64px}
.tl-step:last-child{margin-bottom:0}

/* numbered node on the spine */
.tl-node{grid-column:2;justify-self:center;z-index:3;
  width:74px;height:74px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-style:italic;font-size:25px;letter-spacing:-1px;color:#fff;
  background:var(--grad);border:2px solid var(--green);
  box-shadow:0 6px 18px var(--grad-glow),inset 0 1px 0 rgba(255,255,255,.18);
  transition:color .35s ease,border-color .35s ease,background .35s ease,box-shadow .35s ease;}
.tl-step.active .tl-node{color:#fff;border-color:var(--green);
  background:var(--grad);
  box-shadow:0 0 0 6px rgba(31,173,102,.16),0 10px 26px var(--grad-glow)}

/* alternating content / media */
.tl-content{grid-column:1;grid-row:1;padding-right:52px;text-align:right;padding-top:4px;margin-bottom:16px}
.tl-media{grid-column:3;grid-row:1;padding-left:52px;justify-self:start;align-self:start}
.tl-step:nth-child(even) .tl-content{grid-column:3;padding-right:0;padding-left:52px;text-align:left}
.tl-step:nth-child(even) .tl-media{grid-column:1;padding-left:0;padding-right:52px;justify-self:end}

.tl-pill{display:none;font-size:14px}
.tl-content h3{font-size:20px;font-weight:700;line-height:1.25;margin-bottom:12px}
.tl-content p{font-size:15px;color:var(--text-2);line-height:1.6}
.tl-btn{display:none}

/* media frame — glass outer bezel (iPhone-like) */
.tl-frame{position:relative;display:inline-block;padding:8px;border-radius:24px;
  background:rgba(255,255,255,.08);
  box-shadow:0 0 0 1px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.3), 0 18px 44px rgba(0,0,0,.5);
  transition:transform .4s ease,box-shadow .4s ease}
.tl-step.active .tl-frame{transform:translateY(-4px);box-shadow:0 0 0 1px rgba(255,255,255,.12), inset 0 1px 0 rgba(255,255,255,.35), 0 24px 52px rgba(0,0,0,.55)}

  100%{background-position:200% center}
}
@media (prefers-reduced-motion:reduce){.tl-frame{animation:none}}
/* inner screen — clipped & rounded */
.tl-screen{display:block;border-radius:20px;overflow:hidden;background:linear-gradient(180deg,#23282c,#14171a);line-height:0}
[data-theme="light"] .tl-screen{background:linear-gradient(180deg,#ffffff,#e9eef3)}
.tl-frame img{display:block;border-radius:0}
/* natural aspect ratio: 864×1752 ≈ 1:2.028 */
.step-gif{display:block;width:300px;height:auto}
/* crop 40px off the bottom of every step screen (clipped by .tl-screen overflow) */
.tl-frame .step-gif{margin-bottom:-40px}

@media (max-width:767.98px){
  .steps-head{margin-bottom:18px}
  .tl-spine{left:27px}
  .tl-step{grid-template-columns:54px 1fr;align-items:start;margin-bottom:44px}
  .tl-node{grid-column:1;grid-row:1;width:54px;height:54px;font-size:19px}
  .tl-content,.tl-step:nth-child(even) .tl-content{grid-column:2;grid-row:1;padding:4px 0 0 18px;text-align:left}
  .tl-media,.tl-step:nth-child(even) .tl-media{grid-column:2;grid-row:2;padding:18px 0 0 18px;justify-self:start}
  .tl-frame{width:100%;max-width:300px}
  .tl-frame img{width:100%;height:auto}
  .step-gif{width:100% !important;height:auto !important}
  .tl-btn{display:flex;align-items:center;justify-content:center;text-align:center;text-decoration:none;
    margin:18px 0 2px;padding:0 22px;font-size:15px;border-radius:9px;min-height:44px}
}
/* generic image placeholder (gray, swappable) */

/* ============ BONUS CARDS ============ */
.bonus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.bonus-card{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,#23282c 0%,#14171a 100%);border:1px solid var(--border);border-radius:16px;
  padding:0;display:flex;flex-direction:column;gap:16px;
  box-shadow:0 1px 4px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.06);
  -webkit-tap-highlight-color:transparent;
  will-change:transform,filter;
  transition:transform 0.5s cubic-bezier(0.16,1,0.3,1),filter 0.5s cubic-bezier(0.16,1,0.3,1),box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),border-color 0.5s cubic-bezier(0.16,1,0.3,1);
}
.bonus-card:hover,
.bonus-grid .bonus-card.in:hover{
  transform:scale(1.02);
  filter:saturate(110%) brightness(1.05);
  border-color:rgba(255,255,255,.2);
  box-shadow:0 8px 24px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.08);
}
.bonus-grid .bonus-card{transition:transform 0.5s cubic-bezier(0.16,1,0.3,1),filter 0.5s cubic-bezier(0.16,1,0.3,1),box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),border-color 0.5s cubic-bezier(0.16,1,0.3,1)}

[data-theme="light"] .bonus-card{background:linear-gradient(180deg,#ffffff 0%,#e9eef3 100%)}
.bonus-media{
  display:block;width:100%;overflow:hidden;margin-top:auto;
  background:transparent;padding:0 16px 0;
}
.bonus-art{display:block;width:100%;max-width:100%;height:auto;object-fit:contain;object-position:bottom center;background:transparent}
.bonus-body{display:flex;flex-direction:column;padding:16px 16px 0}
.bonus-card h3{font-size:20px;font-weight:700;color:#fff;margin-bottom:10px;text-align:left}
[data-theme="light"] .bonus-card h3{color:#16191c}
.bonus-card p{font-size:15px;color:var(--text-2);line-height:1.6;text-align:left;margin:0}

/* ============ FAQ ============ */
.faq-box{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,#22272b 0%,#15181b 100%);border:1px solid var(--border-strong);border-radius:20px;
  max-width:800px;margin:0 auto;padding:34px 30px 30px;
  box-shadow:0 18px 50px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.06);
}
[data-theme="light"] .faq-box{background:linear-gradient(180deg,#ffffff 0%,#eaeff4 100%);box-shadow:0 8px 24px rgba(20,30,45,.08),inset 0 1px 0 rgba(255,255,255,.06)}
/* light theme: make all shadows barely visible */
[data-theme="light"] .qr-card{box-shadow:0 6px 18px rgba(20,30,45,.08),inset 0 1px 0 rgba(255,255,255,.4)}
[data-theme="light"] .acc-item.open{box-shadow:0 2px 8px rgba(20,30,45,.06)}
[data-theme="light"] 
[data-theme="light"] .tl-frame{box-shadow:0 0 0 1px rgba(20,30,45,.06),inset 0 1px 0 rgba(255,255,255,.5),0 6px 18px rgba(20,30,45,.08)}
[data-theme="light"] .tl-step.active .tl-frame{box-shadow:0 0 0 1px rgba(20,30,45,.08),inset 0 1px 0 rgba(255,255,255,.6),0 8px 22px rgba(20,30,45,.1)}
[data-theme="light"] .bonus-grid .bonus-card:hover{box-shadow:0 6px 18px rgba(20,30,45,.1),inset 0 1px 0 rgba(255,255,255,.5)}
[data-theme="light"] .faq-box .acc-item.open{box-shadow:0 2px 8px rgba(20,30,45,.06)}
[data-theme="light"] .eu-bar-inner{box-shadow:0 6px 18px rgba(20,30,45,.06),inset 0 1px 0 rgba(255,255,255,.4)}
[data-theme="light"] .hero-cta{box-shadow:0 3px 12px rgba(20,30,45,.12)}
[data-theme="light"] .btn-light:hover{box-shadow:0 4px 14px rgba(20,30,45,.12)}
.faq-box h2{text-align:center;font-size:30px;font-weight:700;margin-bottom:26px}
.faq-box .acc-item{background:linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.01) 100%);transition:box-shadow .3s ease,border .3s ease}
.faq-box .acc-item.open{box-shadow:0 0 12px rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12)}
[data-theme="light"] .faq-box .acc-item{background:#fff}
.faq-box .acc-trigger{font-size:15px;font-weight:700}
@media (max-width:768px){
  .faq-box{width:100%;max-width:100%;padding-left:12px;padding-right:12px}
  .acc-trigger{padding:12px !important}
  .acc-panel-inner{padding:0 12px 16px !important}
}

/* ============ FOOTER ============ */
[data-theme="light"] .eu-bar-inner{background:linear-gradient(180deg,rgba(255,255,255,.3) 0%,rgba(234,239,244,.3) 100%)}
.eu-bar p{font-size:13px;line-height:1.5;color:#8a9ab0;margin:0}
footer{border-top:1px solid var(--border);margin-top:24px;padding:24px 0 40px;position:relative;z-index:1}
.copy{font-size:13px;color:var(--text-2);margin-bottom:22px}
.legal p{font-size:12.5px;color:var(--footer);line-height:1.65;margin-bottom:14px}
.legal a{color:var(--footer);text-decoration:underline;-webkit-tap-highlight-color:transparent;transition:opacity .15s ease}
.legal a:hover{opacity:.75}
.legal a:active{opacity:.5}

/* ============ SCROLL REVEAL ============ */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .4s ease,transform .4s ease}
.reveal.in{opacity:1;transform:none}
.bonus-grid .bonus-card.reveal{transition-delay:calc(var(--i,0)*90ms)}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

/* ============ SECTION REVEAL (whole-section fade-up) ============ */
.reveal-sect{opacity:0;transition:opacity .45s ease}
.reveal-sect.in-view{opacity:1}
@media (prefers-reduced-motion:reduce){.reveal-sect{opacity:1;transform:none;transition:none}}

/* ============ SCROLL TO TOP ============ */
.scroll-top{
  position:fixed;right:24px;bottom:24px;z-index:90;
  width:48px;height:48px;border-radius:50%;border:none;cursor:pointer;
  background:var(--grad);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 18px var(--grad-glow),inset 0 1px 0 rgba(255,255,255,.2);
  opacity:0;visibility:hidden;transform:translateY(12px);
  -webkit-tap-highlight-color:transparent;
  transition:opacity .25s ease,transform .2s cubic-bezier(.25,.1,.25,1),visibility .25s ease,filter .2s ease;
}
.scroll-top.show{opacity:1;visibility:visible;transform:translateY(0)}
.scroll-top:hover{filter:brightness(1.08)}
.scroll-top:active{transform:scale(.9);filter:brightness(.95)}
.scroll-top svg{width:22px;height:22px;display:block}
@media (max-width:640px){
  .scroll-top{right:16px;bottom:16px;width:42px;height:42px}
  .scroll-top svg{width:19px;height:19px}
}

@media (max-width:640px){
  .bonus-grid{gap:16px}
  .bonus-body{padding:4px 6px 10px}
}
/* ============ RESPONSIVE ============ */
@media (max-width:900px){
  .bonus-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto;height:auto !important}
  .bonus-media{height:auto !important}
  .bonus-media .bonus-art{height:auto !important;max-height:none}
  .step-card{flex:0 0 86%;min-width:0}
}
@media (max-width:640px){
  .nav{padding:0 18px;height:56px}
  .logo{font-size:22px}
  .nav-right{gap:12px}
  .btn-green{padding:8px 14px;font-size:12.5px}
  .tl-btn.btn-green{font-size:15px}
  .hero{padding-bottom:56px}
  .hero h1{font-size:31px}
  .hero p.sub{font-size:15.5px}
  .qr-card{flex-direction:column;align-items:center;text-align:center;padding:20px;gap:18px}
  .qr-text{text-align:center}
  .section{padding:12px 0}
  #install-steps{padding-top:36px !important}
  .sec-head h2,.steps-head h2{font-size:30px !important}
  .faq-box{padding:24px 16px 20px}
  .faq-box h2{font-size:30px !important}
  .legal p{font-size:11.5px}
}
/* ============ MOBILE LAYOUT SAFETY NET (≤768px) ============ */
@media (max-width:768px){
  /* everything in normal flow — no leftover desktop fixed heights */
  .section,.eu-bar,footer{position:static !important;display:block;height:auto !important;overflow:visible}
  .hero{height:auto !important;overflow:visible}
  /* clear inter-section spacing, no overlap */
  .hero,.section,.eu-bar{margin-bottom:12px !important}
  footer{margin-bottom:0 !important}
  /* neutralise desktop inline fixed heights on bonus cards */
  .bonus-grid{height:auto !important}
  .bonus-card{height:auto !important}
  .bonus-media{height:auto !important}
  .bonus-body{height:auto !important;padding:12px 12px 0 !important}
  .bonus-media{padding:0 12px !important}
  .bonus-body h3{height:auto !important}
  /* images never spill out of their container */
  img{max-width:100%}
  .tl-media{max-width:100%;overflow:visible}
  .tl-frame{max-width:300px !important}
  .tl-frame img{width:100%;max-width:100%;height:auto}
  .step-gif{width:100% !important;height:auto !important}
  /* keep decorative layers behind content */
  .hero::after{z-index:0}
  .hero-left{z-index:2}
}
.hero-visual::before,
.hero-visual::after,
.hero-visual-mobile::before,
.hero-visual-mobile::after{will-change:transform}

#install-steps{padding-top:72px}
.steps-intro{color:rgba(255,255,255,.66);font-size:13px;text-align:center;max-width:500px;margin:16px auto 0;width:100%}
#faqAcc{max-width:800px;margin:0 auto;text-align:left}
.faq-section{text-align:center}
#infoAcc{text-align:center;margin:0 0 24px}
#infoAcc .acc-item{width:500px;margin:0 auto}
#infoAcc .acc-trigger{padding:8px 0;width:500px;font-size:15px;justify-content:center;gap:6px}
.faq-box.info-wrap{text-align:left;padding:0;border-radius:16px;margin:0 auto 40px;background:none;box-shadow:none;border:none}
.qr-card-default{margin:0 0 20px;padding:12px}
.tl-step{margin:24px 0 64px}
.sec-head h2{font-size:32px;letter-spacing:-.3px}
.faq-section .sec-head h2{font-size:32px;letter-spacing:-.3px}
.tl-content>p{margin-bottom:16px}
.faq-box:has(#infoAcc){background:none;box-shadow:none;border:none;padding:0;margin-bottom:0}