:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0c121b;
  --text:#e8eef7;
  --muted:#aab6c6;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.45);

  --accent:#ff2d55;
  --accent2:#00e5ff;
  --ok:#2ee59d;

  --radius:22px;
  --radius2:16px;

  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color:var(--text);
  line-height:1.5;
  position: relative;
  overflow-x: hidden;
}

/* Modern animated mesh gradient background */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse 1200px 800px at 15% 15%, rgba(255,45,85,.25), transparent 50%),
    radial-gradient(ellipse 1000px 700px at 85% 25%, rgba(0,229,255,.20), transparent 50%),
    radial-gradient(ellipse 900px 600px at 50% 80%, rgba(138,43,226,.15), transparent 50%),
    radial-gradient(ellipse 800px 500px at 30% 60%, rgba(46,229,157,.12), transparent 45%),
    linear-gradient(135deg, rgba(11,15,20,1) 0%, rgba(15,22,32,1) 50%, rgba(11,15,20,1) 100%);
  filter: blur(40px);
  opacity:1;
  animation: bgMesh 20s ease-in-out infinite alternate;
  transform: translate3d(0,0,0);
  z-index:-2;
}

/* Secondary animated layer for depth */
body::after{
  content:"";
  position:fixed;
  inset:-20%;
  pointer-events:none;
  background:
    radial-gradient(circle 600px at 20% 30%, rgba(255,45,85,.15), transparent 50%),
    radial-gradient(circle 500px at 80% 70%, rgba(0,229,255,.12), transparent 50%),
    radial-gradient(circle 400px at 50% 50%, rgba(138,43,226,.10), transparent 50%);
  filter: blur(60px);
  opacity:.8;
  animation: bgMesh2 25s ease-in-out infinite alternate;
  transform: translate3d(0,0,0);
  z-index:-1;
}

@keyframes bgMesh{
  0%{ 
    transform: translate3d(-2%, -1.5%, 0) scale(1) rotate(0deg); 
    opacity:1; 
  }
  33%{ 
    transform: translate3d(1.5%, -0.8%, 0) scale(1.01) rotate(1deg); 
    opacity:.95; 
  }
  66%{ 
    transform: translate3d(0.8%, 1.2%, 0) scale(1.02) rotate(-0.5deg); 
    opacity:.98; 
  }
  100%{ 
    transform: translate3d(2%, 1.5%, 0) scale(1.01) rotate(0.5deg); 
    opacity:1; 
  }
}

@keyframes bgMesh2{
  0%{ 
    transform: translate3d(1%, 1.5%, 0) scale(1.02) rotate(-1deg); 
    opacity:.8; 
  }
  50%{ 
    transform: translate3d(-1.2%, -0.5%, 0) scale(1.01) rotate(1deg); 
    opacity:.75; 
  }
  100%{ 
    transform: translate3d(-0.8%, 1%, 0) scale(1.03) rotate(-0.5deg); 
    opacity:.85; 
  }
}

a{color:inherit; text-decoration:none}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.skip{
  position:absolute; left:-999px; top:0;
  background:#fff; color:#000; padding:8px 12px; border-radius:10px;
}
.skip:focus{left:12px; top:12px; z-index:9999}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.68);
  border-bottom:1px solid var(--line);
  transition: box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.header--scrolled{
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  background: rgba(11,15,20,.78);
  border-bottom-color: rgba(255,255,255,.14);
}
.header__inner{
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  position:relative;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,45,85,.28), rgba(0,229,255,.14));
  border:1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  font-size:18px;
}
.brand__name{font-weight:800; letter-spacing:.2px}

.nav{display:flex; gap:18px; align-items:center}
.nav__link{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav__link:hover{color:var(--text); background:rgba(255,255,255,.06); transform: translateY(-1px)}

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

/* Mobile menu */
.mobileMenuBtn{
  display:none;
  width:44px; 
  height:44px;
  min-width:44px;
  min-height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background .15s ease, transform .15s ease;
  flex-direction:column;
  gap:5px;
  padding:0;
  margin:0;
  flex-shrink:0;
}
.mobileMenuBtn:hover{background: rgba(255,255,255,.08); transform: translateY(-1px)}
.mobileMenuBtn:active{transform: translateY(0);}
.mobileMenuBtn span{
  width:20px; 
  height:2px;
  background: var(--text);
  border-radius:2px;
  transition: transform .25s ease, opacity .25s ease;
  display:block;
}
.mobileMenuBtn.is-open span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}
.mobileMenuBtn.is-open span:nth-child(2){
  opacity:0;
  transform: translateX(-10px);
}
.mobileMenuBtn.is-open span:nth-child(3){
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobileMenu{
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: rgba(11,15,20,.98);
  backdrop-filter: blur(20px);
  z-index:9999;
  padding:80px 20px 20px;
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.mobileMenu.is-open{
  transform: translateX(0);
}
.mobileMenu__inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:100%;
  margin:0 auto;
  width:100%;
}
.mobileMenu__link{
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:800;
  font-size:15px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  width:100%;
  box-sizing:border-box;
  -webkit-tap-highlight-color: transparent;
}
.mobileMenu__link:active{
  transform: scale(0.98);
}
.mobileMenu__link:hover,
.mobileMenu__link:focus{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  transform: translateX(4px);
  outline:none;
}
.mobileMenu__link--active{
  background: rgba(255,45,85,.12);
  border-color: rgba(255,45,85,.28);
  color:var(--accent);
}
.mobileMenu__cta{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  width:100%;
}

/* Buttons */
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  font-size:14px;
  white-space:nowrap;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--lg{padding:14px 16px; border-radius:16px; font-size:15px}
.btn--block{width:100%}
.btn--primary{
  border-color: rgba(255,45,85,.40);
  background: linear-gradient(135deg, rgba(255,45,85,.95), rgba(255,45,85,.65));
  box-shadow: 0 18px 50px rgba(255,45,85,.20);
}
.btn--primary:hover{border-color: rgba(255,45,85,.70)}
.btn--ghost{
  background: rgba(255,255,255,.05);
}
.btn--ghost:hover{background: rgba(255,255,255,.08)}

/* button shine */
.btn::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity:0;
}
.btn:hover::after{
  opacity:1;
  animation: shine .9s ease;
}
@keyframes shine{
  from{ left:-60%; }
  to{ left:140%; }
}

/* CTA glow pulse */
.glow{
  animation: glowPulse 2.4s ease-in-out infinite;
}
@keyframes glowPulse{
  0%,100%{ filter: drop-shadow(0 0 0 rgba(255,45,85,.0)); }
  50%{ filter: drop-shadow(0 0 18px rgba(255,45,85,.20)); }
}

/* Hero */
.hero{
  position:relative;
  padding:42px 0 26px;
  overflow:hidden;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .85fr;
  gap:28px;
  align-items:stretch;
}
.hero__bg{
  position:absolute; inset:-200px -200px -250px -200px;
  background:
    radial-gradient(ellipse 800px 500px at 25% 35%, rgba(255,45,85,.22), transparent 65%),
    radial-gradient(ellipse 700px 450px at 75% 40%, rgba(0,229,255,.18), transparent 65%),
    radial-gradient(ellipse 600px 400px at 50% 20%, rgba(138,43,226,.12), transparent 60%);
  filter: blur(50px);
  pointer-events:none;
  animation: heroGlow 12s ease-in-out infinite alternate;
  opacity:.9;
}
@keyframes heroGlow{
  0%{ 
    transform: translate3d(-1%, -0.5%, 0) scale(1) rotate(0deg); 
    filter: blur(50px) saturate(1); 
    opacity:.85;
  }
  50%{ 
    transform: translate3d(0.5%, 0.3%, 0) scale(1.01) rotate(0.5deg); 
    filter: blur(55px) saturate(1.1); 
    opacity:.95;
  }
  100%{ 
    transform: translate3d(1%, 0.8%, 0) scale(1.02) rotate(-0.5deg); 
    filter: blur(50px) saturate(1.05); 
    opacity:.9;
  }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(46,229,157,.14);
}

.hero__title{
  margin:16px 0 10px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.accent{
  color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
}
.hero__subtitle{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width: 60ch;
}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin:18px 0 18px;
}
.badge{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  display:flex;
  gap:10px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.badge:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.badge__icon{font-size:18px}
.badge__title{font-weight:900; font-size:13px}
.badge__desc{color:var(--muted); font-size:12px; margin-top:2px}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 12px}
.hero__fineprint{
  display:flex; gap:10px; flex-wrap:wrap; color:rgba(232,238,247,.78);
  font-size:13px;
}
.fineprint__sep{opacity:.4}

/* Cards */
.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:18px;
  height:100%;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.glass{backdrop-filter: blur(10px)}

.floaty{
  animation: float 3.6s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

.card__top{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
}
.card__title{font-weight:900}
.card__tag{
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,45,85,.40);
  background: rgba(255,45,85,.12);
}

.price{margin:18px 0 12px}
.price__main{display:flex; align-items:baseline; gap:10px}
.price__value{
  font-size:42px;
  font-weight:1000;
  letter-spacing:-.8px;
}
.price__period{color:var(--muted); font-weight:800}
.price__sub{color:var(--muted); margin-top:6px}

.card__list{margin:12px 0 14px; display:grid; gap:8px}
.li{display:flex; gap:10px; align-items:center; color:rgba(232,238,247,.92)}
.li__ok{
  width:22px; height:22px; border-radius:8px;
  display:grid; place-items:center;
  background: rgba(46,229,157,.12);
  border:1px solid rgba(46,229,157,.25);
  color:var(--ok);
  font-weight:900;
  flex:0 0 auto;
}

.mini{
  margin-top:14px;
  display:grid;
  gap:8px;
  padding:12px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.15);
}
.mini__row{display:flex; justify-content:space-between; color:var(--muted); font-weight:700}
.mini__row b{color:var(--text)}
.hint{margin:12px 0 0; color:rgba(232,238,247,.76); font-size:13px}

/* Strip */
.strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.strip__inner{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  flex-wrap:wrap;
}
.strip__item{display:flex; gap:10px; align-items:baseline}
.strip__k{font-weight:1000}
.strip__v{color:var(--muted); font-weight:700; font-size:13px}
.strip__sep{width:1px; height:18px; background: var(--line)}

/* Sections */
.section{padding:54px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:22px}
.section__title{
  margin:0 0 8px;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing:-.4px;
}
.section__subtitle{margin:0; color:var(--muted); max-width: 76ch}
.subnote{
  display:inline-block;
  margin-top:8px;
  color: rgba(232,238,247,.78);
  font-size: 13px;
}

/* Grids */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.feature:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.feature__icon{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,45,85,.20), rgba(0,229,255,.12));
  border:1px solid var(--line);
  font-size:20px;
}
.feature__title{margin:12px 0 6px; font-weight:1000}
.feature__text{margin:0; color:var(--muted)}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.step{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.step:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.step__num{
  width:42px; height:42px; border-radius:16px;
  display:grid; place-items:center;
  font-weight:1000;
  background: rgba(255,45,85,.10);
  border:1px solid rgba(255,45,85,.25);
  color: rgba(255,45,85,.95);
}
.step__title{margin:10px 0 4px; font-weight:1000}
.step__text{margin:0; color:var(--muted)}

.ctaRow{
  margin-top:18px;
  display:flex;
  gap:14px;
  align-items:stretch;
  flex-wrap:wrap;
}
.ctaRow__note{flex:1 1 420px}
.noteBox{
  height:100%;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(0,0,0,.15);
}
.noteBox__title{font-weight:1000; margin-bottom:6px}
.noteBox__text{color:var(--muted)}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.pricingGroupTitle{
  margin:4px 0 10px;
  font-weight:900;
  font-size:15px;
  color:rgba(232,238,247,.82);
}
.pricingGroupTitle--family{
  margin-top:22px;
}
.plan{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  position:relative;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.plan:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.plan__top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.plan__name{margin:0; font-weight:1000}
.plan__badge{
  font-size:12px;
  font-weight:1000;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,45,85,.12);
  border:1px solid rgba(255,45,85,.28);
}
.plan__badge--soon{
  background: rgba(0,229,255,.10);
  border:1px solid rgba(0,229,255,.22);
}
.plan__price{margin:14px 0 6px}
.plan__value{font-size:36px; font-weight:1000; letter-spacing:-.6px}
.plan__period{color:var(--muted); font-weight:900; margin-left:6px}
.plan__desc{margin:0 0 12px; color:var(--muted)}
.plan__list{display:grid; gap:8px; margin-bottom:14px}
.plan__fine{margin:12px 0 0; color:rgba(232,238,247,.70); font-size:12px}

.plan--hot{
  border-color: rgba(255,45,85,.35);
  background: radial-gradient(600px 240px at 20% 0%, rgba(255,45,85,.12), transparent 60%),
              rgba(255,255,255,.03);
}

.plan--coming{
  background: radial-gradient(520px 260px at 80% 0%, rgba(0,229,255,.10), transparent 60%),
              rgba(255,255,255,.03);
}

/* old/new price helpers */
.price__old, .plan__old{
  text-decoration: line-through;
  opacity: .7;
  margin: 0 6px;
}
.price__save, .plan__save{
  color: rgba(46,229,157,.92);
  font-weight: 900;
}

/* Note */
.note{
  margin-top:18px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: transform .16s ease, border-color .16s ease;
}
.note:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}
.note__icon{font-size:18px}
.note__text{color:rgba(232,238,247,.86)}

/* FAQ */
.faq{display:grid; gap:10px}
.qa{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  transition: border-color .16s ease, background .16s ease;
}
.qa:hover{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}
.qa__q{
  cursor:pointer;
  padding:16px 16px;
  font-weight:900;
  list-style:none;
}
.qa__q::-webkit-details-marker{display:none}
.qa__a{
  padding:0 16px 16px;
  color:var(--muted);
}
.qa[open]{border-color: rgba(0,229,255,.22)}

/* Final CTA */
.finalCta{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(0,229,255,.20);
  background: radial-gradient(700px 240px at 80% 0%, rgba(0,229,255,.12), transparent 60%),
              rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  transition: transform .16s ease, border-color .16s ease;
}
.finalCta:hover{
  transform: translateY(-2px);
  border-color: rgba(0,229,255,.28);
}
.finalCta__title{margin:0 0 6px; font-weight:1000}
.finalCta__sub{margin:0; color:var(--muted)}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
  padding:22px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer__brand{font-size:15px}
.footer__meta{color:var(--muted); font-size:13px; margin-top:6px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap}
.footer__link{color:var(--muted); font-weight:800}
.footer__link:hover{color:var(--text)}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .mobileMenuBtn{
    display:flex;
    order:3;
  }
  .mobileMenu{display:block}
  .header__cta{
    order:2;
  }
  .header__inner{
    flex-wrap:wrap;
  }
  .hero__inner{grid-template-columns: 1fr}
  .hero__badges{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .floaty{ animation: none; }
}

@media (max-width: 520px){
  .header__cta{display:none}
  .mobileMenuBtn{
    width:40px;
    height:40px;
    min-width:40px;
    min-height:40px;
  }
  .mobileMenu{
    padding:70px 16px 16px;
  }
  .mobileMenu__link{
    padding:14px 16px;
    font-size:14px;
  }
  .container{width:min(var(--container), calc(100% - 28px))}
  .price__value{font-size:38px}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal{ opacity:1 !important; transform:none !important; filter:none !important; }
}
