:root{
  --bg:#0b1020;
  --bg-soft:#10172a;
  --surface:#151b2e;
  --surface-2:#202a44;
  --text:#f8fafc;
  --muted:#94a3b8;
  --line:rgba(148,163,184,.18);
  --accent:#3b82f6;
  --accent-2:#2dd4bf;
  --duplicate:#f59e0b;
  --missing:#b8b8c7;
  --danger:#fb7185;
  --shadow:0 24px 64px rgba(0,0,0,.28);
  --radius:8px;
  --container:1240px;
  --gutter:clamp(28px,5vw,72px);
  --ease:cubic-bezier(.22,1,.36,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
section[id]{scroll-margin-top:108px}
body{
  margin:0;
  overflow-x:hidden;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    linear-gradient(180deg,#0b1020 0%,#111827 48%,#0b1020 100%);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img,svg{max-width:100%}
a:hover{color:var(--accent)}
:focus-visible{outline:3px solid rgba(96,165,250,.82);outline-offset:4px}
.skip-link{position:fixed;top:12px;left:12px;z-index:100;padding:10px 14px;border-radius:8px;background:#fff;color:#0b1020;font-weight:900;transform:translateY(-160%)}
.skip-link:focus{transform:translateY(0)}
.site-header{
  width:min(var(--container),calc(100% - var(--gutter)));
  margin:14px auto 0;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:sticky;
  top:10px;
  z-index:20;
  background:rgba(11,16,32,.78);
  border:1px solid var(--line);
  border-radius:12px;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
  transition:background .24s ease,border-color .24s ease,box-shadow .24s ease;
}
.site-header.is-scrolled{background:rgba(11,16,32,.9);border-color:rgba(148,163,184,.25);box-shadow:0 18px 50px rgba(0,0,0,.3)}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.1rem;
  font-weight:900;
  letter-spacing:0;
  white-space:nowrap;
}
.logo img{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border-radius:12px;
  box-shadow:0 12px 28px rgba(59,130,246,.25);
}
.primary-nav{display:flex;gap:4px;align-items:center;justify-content:flex-end}
.primary-nav a{
  padding:8px 11px;
  border-radius:8px;
  color:var(--muted);
  font-size:.92rem;
  font-weight:750;
}
.primary-nav a:hover{background:rgba(255,255,255,.07);color:var(--text)}
.studio-home-link{
  color:var(--accent-2);
}
.language-switch{
  display:inline-flex;
  gap:4px;
  padding:5px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(11,16,32,.68);
}
.menu-toggle{display:none;width:44px;height:44px;padding:10px;border:1px solid var(--line);border-radius:9px;background:rgba(21,27,46,.88);cursor:pointer}
.menu-toggle span{display:block;width:20px;height:2px;margin:4px auto;border-radius:999px;background:var(--text);transition:transform .2s ease,opacity .2s ease}
.site-header.is-menu-open .menu-toggle span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.site-header.is-menu-open .menu-toggle span:nth-child(2){opacity:0}
.site-header.is-menu-open .menu-toggle span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.language-switch button{
  min-width:36px;
  min-height:32px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  font:inherit;
  font-size:.78rem;
  font-weight:900;
}
.language-switch button:hover,
.language-switch button.is-active{
  background:rgba(59,130,246,.18);
  color:var(--accent);
}
main,.site-footer{width:min(var(--container),calc(100% - var(--gutter)));margin:0 auto}
.hero{
  min-height:680px;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  align-items:center;
  gap:clamp(42px,6vw,80px);
  padding:clamp(64px,7vw,90px) 0 64px;
}
.hero-copy{position:relative;z-index:1;min-width:0}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 18px;
  padding:0;
  border:0;
  background:transparent;
  color:#60a5fa;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
  max-width:780px;
  margin-bottom:22px;
  font-size:clamp(3.6rem,6vw,4.8rem);
  line-height:1;
  letter-spacing:0;
}
h2{
  margin-bottom:14px;
  font-size:clamp(2.35rem,4.5vw,3.5rem);
  line-height:1.06;
  letter-spacing:0;
}
h3{
  margin-bottom:9px;
  font-size:1.25rem;
  line-height:1.2;
}
.lead{
  max-width:690px;
  margin-bottom:30px;
  color:var(--muted);
  font-size:1.16rem;
}
.buttons{display:flex;flex-wrap:wrap;gap:12px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(21,27,46,.9);
  color:var(--text);
  font-weight:900;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  transition:transform .22s var(--ease),box-shadow .22s ease,border-color .22s ease,background .22s ease;
}
.button.primary{
  border-color:transparent;
  background:linear-gradient(135deg,#2563eb,#0d9488);
  color:#fff;
}
.button:hover{transform:translateY(-2px);color:var(--text);box-shadow:0 18px 42px rgba(37,99,235,.22)}
.hero-metrics{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.hero-metrics span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(21,27,46,.7);
  color:var(--muted);
  font-size:.92rem;
  font-weight:750;
}
.hero-metrics strong{color:var(--text)}
.phone-stage{
  position:relative;
  display:grid;
  place-items:center;
  min-height:620px;
  border:1px solid var(--line);
  border-radius:8px;
  background:
    linear-gradient(145deg,rgba(59,130,246,.18),rgba(45,212,191,.09)),
    var(--bg-soft);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.phone-stage::before{
  content:"Collector+";
  position:absolute;
  right:-24px;
  bottom:12px;
  color:rgba(248,250,252,.04);
  font-size:7rem;
  font-weight:900;
}
.phone{
  position:relative;
  z-index:1;
  width:min(330px,80%);
  height:570px;
  min-height:0;
  padding:16px;
  border:10px solid #050816;
  border-radius:42px;
  background:var(--bg);
  box-shadow:0 34px 70px rgba(0,0,0,.45);
  transform:rotate(1deg);
  overflow:hidden;
}
.phone-status,.app-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.phone-status{
  margin-bottom:22px;
  color:var(--muted);
  font-size:.76rem;
  font-weight:850;
}
.app-topbar{
  justify-content:flex-end;
  gap:8px;
  margin-bottom:18px;
}
.app-topbar span{
  width:34px;
  height:34px;
  border:1px solid var(--line);
  border-radius:50%;
  background:var(--surface);
}
.screen-kicker{margin-bottom:4px;color:var(--muted);font-weight:750}
.screen-title{
  margin-bottom:18px;
  color:var(--text);
  font-size:1.72rem;
  font-weight:900;
  line-height:1.08;
}
.stats-card{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-bottom:14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--surface);
}
.stats-card div{display:grid;gap:3px}
.stats-card small{color:var(--muted);font-size:.68rem;font-weight:800}
.stats-card strong{font-size:1.25rem}
.collection-preview{
  margin-bottom:16px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--surface);
}
.collection-preview strong,.collection-preview span{display:block}
.collection-preview span{margin-top:4px;color:var(--muted);font-size:.82rem;font-weight:750}
.progress{
  height:7px;
  margin-top:12px;
  border-radius:999px;
  background:#293449;
  overflow:hidden;
}
.progress-value{display:block;height:100%;background:var(--accent-2)}
.progress-value-19{width:19%}
.sticker-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.sticker-grid span{
  display:grid;
  place-items:center;
  aspect-ratio:1.08;
  border:3px solid #31384a;
  border-radius:8px;
  background:var(--missing);
  color:#0b1020;
  font-weight:950;
}
.sticker-grid .owned{background:var(--accent-2)}
.sticker-grid .duplicate{background:var(--accent-2);position:relative}
.sticker-grid .duplicate::after{
  content:"2";
  position:absolute;
  top:-9px;
  right:-9px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:var(--duplicate);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:.75rem;
}
.section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:end;
  padding:72px 0 30px;
}
.hero,.section,.showcase,.premium-section,.download-section,.feature-grid,.trade-item,.site-header,nav{
  min-width:0;
}
.section p{color:var(--muted);font-size:1.05rem}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:18px 0 110px;
}
.feature-grid article,.trade-panel,.price-card,.download-section,.page.legal,.info-box,.product-intro,.promise-card,.faq-section article{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(21,27,46,.84);
  box-shadow:0 20px 54px rgba(0,0,0,.2);
}
.product-intro{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:26px;
  align-items:center;
  margin:0 0 84px;
  padding:38px;
}
.product-intro h2{
  max-width:620px;
  font-size:2.65rem;
}
.promise-card{
  padding:30px;
  background:linear-gradient(135deg,rgba(21,27,46,.96),rgba(32,42,68,.7));
}
.promise-card p{
  margin-bottom:18px;
  color:var(--muted);
  font-size:1.05rem;
}
.promise-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.promise-points span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:8px 11px;
  border:1px solid rgba(45,212,191,.24);
  border-radius:8px;
  background:rgba(45,212,191,.08);
  color:var(--accent-2);
  font-weight:850;
}
.faq-section{
  margin:0 0 84px;
  padding-top:28px;
}
.faq-section > h2{
  max-width:820px;
  font-size:2.35rem;
}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.faq-section article{
  padding:22px;
}
.faq-section p{
  color:var(--muted);
}
.feature-grid article{
  min-height:240px;
  padding:28px;
  transition:transform .28s var(--ease),border-color .28s ease,box-shadow .28s ease;
}
.feature-grid article:hover,.faq-section article:hover{transform:translateY(-5px);border-color:rgba(96,165,250,.38);box-shadow:0 28px 64px rgba(0,0,0,.28)}
.feature-grid p,.showcase p,.premium-section p,.download-section p,.page p{color:var(--muted)}
.feature-icon{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  margin-bottom:18px;
  border:1px solid rgba(96,165,250,.24);
  border-radius:8px;
  background:rgba(59,130,246,.1);
  color:#60a5fa;
  font-size:.88rem;
  font-weight:950;
}
.showcase,.premium-section,.download-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:center;
  margin-bottom:96px;
}
.showcase{
  padding:clamp(30px,5vw,54px);
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(21,27,46,.96),rgba(32,42,68,.8));
}
.trade-panel{padding:18px}
.panel-header{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
  color:var(--muted);
  font-weight:850;
}
.panel-header strong{color:var(--accent-2)}
.trade-item{
  display:grid;
  grid-template-columns:1fr auto;
  gap:3px 12px;
  padding:14px 0;
  border-top:1px solid var(--line);
}
.trade-item span,.trade-item em{color:var(--muted);font-size:.86rem;font-style:normal}
.trade-item strong{font-size:1.05rem}
.premium-section{
  padding:clamp(30px,5vw,54px);
  border:1px solid rgba(59,130,246,.28);
  border-radius:8px;
  background:rgba(59,130,246,.08);
}
.price-card{
  padding:26px;
  background:var(--surface);
}
.price-card span{color:var(--muted);font-weight:850}
.price-card strong{
  display:block;
  margin:4px 0 10px;
  font-size:2.55rem;
  line-height:1;
}
.download-section{
  margin-bottom:84px;
  min-height:300px;
  padding:clamp(30px,5vw,54px);
}
.download-section h2{font-size:2rem}
.status-page{
  min-height:62vh;
  display:grid;
  place-items:center;
  padding:70px 0 84px;
}
.status-panel{
  width:min(780px,100%);
  padding:38px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(135deg,rgba(21,27,46,.96),rgba(32,42,68,.78));
  box-shadow:var(--shadow);
}
.status-panel h1{
  margin-bottom:18px;
  font-size:4rem;
  line-height:1;
}
.status-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 26px;
}
.status-list span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(11,16,32,.5);
  color:var(--muted);
  font-weight:800;
}
.site-footer{
  padding:64px 0 32px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer-main{display:grid;grid-template-columns:minmax(260px,1.45fr) repeat(3,minmax(150px,1fr));gap:clamp(36px,5vw,68px);align-items:start}
.footer-brand{max-width:340px}
.footer-brand p{margin:22px 0 16px;line-height:1.7}
.footer-email{color:#bfdbfe;font-weight:800}
.footer-column{display:grid;align-content:start;justify-content:stretch;gap:12px}
.footer-column h2{margin:0 0 8px;color:var(--text);font-size:.76rem;letter-spacing:.13em;text-transform:uppercase}
.footer-column a{padding:0;color:var(--muted);font-size:.92rem;font-weight:700}
.footer-column a:hover,.footer-email:hover{background:transparent;color:var(--accent)}
.footer-bottom{margin-top:clamp(46px,6vw,72px);padding-top:24px;border-top:1px solid rgba(148,163,184,.13)}
.footer-bottom p{margin:0}
.back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:30;
  width:52px;
  height:52px;
  border:1px solid rgba(59,130,246,.52);
  border-radius:999px;
  background:rgba(11,16,32,.72);
  color:var(--accent);
  box-shadow:0 14px 36px rgba(0,0,0,.24);
  cursor:pointer;
  font:900 .9rem/1 Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  opacity:0;
  pointer-events:none;
  transform:translateY(12px);
  transition:opacity .18s ease,transform .18s ease,box-shadow .18s ease;
}
.back-to-top::before{
  content:none;
}
.back-to-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.back-to-top:hover{
  background:rgba(59,130,246,.14);
  box-shadow:0 18px 44px rgba(59,130,246,.18);
}
.primary-nav a.is-active{background:rgba(59,130,246,.15);color:#bfdbfe}
.studio-home-link{margin-left:4px;border-left:1px solid var(--line)}
.motion-ready .reveal-item{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s var(--ease);transition-delay:var(--reveal-delay,0ms)}
.motion-ready .reveal-item.is-revealed{opacity:1;transform:translateY(0)}
.feature-grid article,.faq-section article,.promise-card,.trade-panel,.price-card{transition:transform .28s var(--ease),border-color .28s ease,box-shadow .28s ease}
.page{
  max-width:900px;
  padding:70px 0 84px;
}
.page h1{font-size:3.8rem;line-height:1.02}
.page h2{margin-top:34px;font-size:1.55rem}
.page h3{margin-bottom:5px}
.page a{text-decoration:underline;text-underline-offset:3px;color:var(--accent-2)}
.page.legal,.info-box{padding:28px}
.legal strong{color:var(--text)}
.privacy-page{
  max-width:980px;
}
.privacy-page .lead{
  max-width:820px;
}
.privacy-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0 16px;
}
.privacy-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(32,42,68,.7);
  color:var(--muted);
  font-weight:750;
}
.privacy-meta strong{
  color:var(--text);
}
.legal-note{
  margin:0 0 22px;
  padding:16px 18px;
  border:1px solid rgba(245,158,11,.32);
  border-radius:18px;
  background:rgba(245,158,11,.08);
  color:#f8d28a;
}
.privacy-accordion{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.privacy-accordion details{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(21,27,46,.86);
  box-shadow:0 14px 38px rgba(0,0,0,.18);
  overflow:hidden;
}
.privacy-accordion summary{
  position:relative;
  display:flex;
  align-items:center;
  min-height:64px;
  padding:18px 58px 18px 20px;
  color:var(--text);
  cursor:pointer;
  font-size:1.05rem;
  font-weight:900;
  list-style:none;
}
.privacy-accordion summary::-webkit-details-marker{
  display:none;
}
.privacy-accordion summary::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--surface-2);
  color:var(--accent-2);
  transform:translateY(-50%);
  font-size:1.3rem;
  line-height:1;
}
.privacy-accordion details[open] summary{
  border-bottom:1px solid var(--line);
}
.privacy-accordion details[open] summary::after{
  content:"−";
}
.privacy-accordion details > div{
  padding:18px 20px 20px;
}
.privacy-accordion p{
  margin-bottom:12px;
}
.privacy-accordion p:last-child{
  margin-bottom:0;
}
@media(max-width:900px){
  .hero,.section,.showcase,.premium-section,.download-section,.product-intro{grid-template-columns:1fr}
  .hero{min-height:auto;padding:54px 0 38px;gap:34px}
  h1{font-size:4.15rem}
  h2{font-size:2.75rem}
  .page h1{font-size:3.1rem}
  .phone-stage{min-height:560px}
  .feature-grid{grid-template-columns:1fr 1fr}
  .footer-main{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-brand{grid-column:1 / -1;max-width:520px}
}
@media(max-width:760px){
  body{line-height:1.55}
  .site-header{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    width:calc(100% - 20px);
    margin-top:8px;
    padding:9px 10px;
    border-radius:12px;
    gap:0;
  }
  .logo img{width:34px;height:34px;flex-basis:34px;border-radius:10px}
  .logo{font-size:1rem}
  .menu-toggle{display:block}
  .primary-nav{
    position:absolute;
    top:calc(100% + 8px);
    right:0;
    left:0;
    display:grid;
    max-height:0;
    gap:6px;
    padding:0 10px;
    border:1px solid transparent;
    border-radius:12px;
    background:rgba(11,16,32,.96);
    box-shadow:0 22px 54px rgba(0,0,0,.34);
    opacity:0;
    overflow:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:max-height .28s var(--ease),padding .28s var(--ease),opacity .2s ease,transform .28s var(--ease),border-color .2s ease;
  }
  .site-header.is-menu-open .primary-nav{max-height:430px;padding:10px;border-color:var(--line);opacity:1;pointer-events:auto;transform:translateY(0)}
  .primary-nav a{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:0;
    min-height:48px;
    padding:10px 12px;
    text-align:left;
  }
  .language-switch{justify-self:start;margin:4px 0 2px}
  main,.site-footer{width:calc(100% - 24px)}
  .hero{padding:40px 0 28px}
  .lead{max-width:100%;font-size:1.05rem}
  .hero-metrics{margin-top:22px}
  .phone-stage{min-height:auto;padding:22px 0;border-radius:24px}
  .phone-stage::before{font-size:4rem;right:-16px}
  .phone{
    width:min(290px,84%);
    height:530px;
    min-height:auto;
    padding:15px;
    border-width:8px;
    border-radius:34px;
    transform:none;
  }
  .phone-status{margin-bottom:14px}
  .app-topbar{margin-bottom:12px}
  .app-topbar span{width:30px;height:30px}
  .screen-title{font-size:1.45rem}
  .stats-card{padding:11px;gap:6px}
  .stats-card strong{font-size:1.08rem}
  .sticker-grid{gap:7px}
  .section{padding:24px 0 18px;gap:12px}
  .feature-grid{margin-bottom:46px}
  .faq-section{margin-bottom:46px}
  .faq-section > h2{font-size:1.85rem}
  .faq-grid{grid-template-columns:1fr;gap:12px}
  .feature-grid article{min-height:auto;padding:20px}
  .showcase,.premium-section,.download-section{margin-bottom:46px}
  .product-intro{margin-bottom:46px;padding:22px}
  .trade-item{grid-template-columns:1fr}
  .price-card strong{font-size:2rem}
  .page{padding:46px 0 58px}
  .page.legal,.info-box{padding:22px}
  .privacy-meta span{width:100%;align-items:flex-start;justify-content:space-between}
  .privacy-accordion summary{min-height:58px;padding:15px 52px 15px 16px;font-size:.98rem}
  .privacy-accordion details > div{padding:15px 16px 17px}
  .site-footer{padding-top:48px;padding-bottom:84px}
}
@media(max-width:620px){
  main,.site-footer{width:calc(100% - 24px)}
  h1{font-size:2.6rem}
  h2{font-size:2rem}
  .page h1{font-size:2.45rem}
  .buttons{flex-direction:column}
  .button{width:100%}
  .hero-metrics span{width:100%}
  .phone{width:min(290px,84%);height:530px;min-height:auto;transform:none}
  .phone-stage{min-height:auto;border-radius:24px}
  .feature-grid{grid-template-columns:1fr}
  .showcase,.premium-section,.download-section{padding:22px}
  .status-panel{padding:24px}
  .status-panel h1{font-size:2.45rem}
}
@media(max-width:480px){
  main,.site-footer{width:calc(100% - 20px)}
  h1{font-size:2.15rem;line-height:1.05}
  h2{font-size:1.72rem;line-height:1.08}
  h3{font-size:1.12rem}
  .page h1{font-size:2rem}
  .lead{font-size:1rem;margin-bottom:22px}
  .eyebrow{font-size:.78rem;max-width:100%;white-space:normal}
  .button{min-height:46px;padding:0 14px;border-radius:14px}
  .hero{padding-top:30px}
  .hero-metrics span{min-height:40px;font-size:.86rem}
  .phone-stage{padding:16px 0}
  .phone{width:min(280px,82%);height:500px;padding:12px;border-width:7px;border-radius:30px}
  .screen-title{font-size:1.28rem}
  .stats-card small{font-size:.62rem}
  .stats-card strong{font-size:1rem}
  .collection-preview{padding:12px}
  .sticker-grid span{border-width:2px}
  .feature-grid{gap:12px}
  .feature-grid article,.showcase,.premium-section,.download-section,.page.legal,.info-box,.product-intro,.promise-card,.faq-section article{
    border-radius:18px;
  }
  .feature-icon{width:36px;height:36px;border-radius:12px;margin-bottom:14px}
  .showcase,.premium-section,.download-section,.product-intro{padding:18px}
  .price-card{padding:20px}
  .price-card strong{font-size:1.65rem}
  .download-section{align-items:start}
  .status-page{padding:42px 0 58px}
  .status-panel{border-radius:22px}
  .status-panel h1{font-size:2rem}
  .status-list span{width:100%;justify-content:center;text-align:center}
  .page{padding-top:34px}
  .page h2{font-size:1.28rem;margin-top:26px}
  .privacy-accordion{gap:9px}
  .privacy-accordion summary{font-size:.92rem}
  .back-to-top{
    right:14px;
    bottom:14px;
    width:52px;
    height:52px;
    border-radius:999px;
    font-size:.78rem;
  }
  .footer-main{grid-template-columns:1fr;gap:34px}
  .footer-brand{grid-column:auto}
  .footer-bottom{margin-top:44px}
}
