:root{
  --blue:#005fff;
  --blue2:#3f8cff;
  --blue3:#83b4ff;
  --ink:#08111f;
  --muted:#667085;
  --bg:#f6f8fc;
  --card:rgba(255,255,255,.72);
  --card-strong:rgba(255,255,255,.86);
  --stroke:rgba(10,28,55,.12);
  --shadow:0 24px 80px rgba(0,34,90,.13);
  --radius:28px;
  --max:1160px;
  color-scheme:light;
}

html[data-theme=dark]{
  --ink:#f5f8ff;
  --muted:#9aa7ba;
  --bg:#05070d;
  --card:rgba(13,18,30,.62);
  --card-strong:rgba(17,24,40,.82);
  --stroke:rgba(255,255,255,.12);
  --shadow:0 32px 90px rgba(0,0,0,.42);
  color-scheme:dark;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"SF Pro Display",Segoe UI,sans-serif;
  background:var(--bg);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 78% 12%,rgba(0,95,255,.28),transparent 34%),
    radial-gradient(circle at 20% 2%,rgba(0,95,255,.10),transparent 30%),
    radial-gradient(circle at 50% 110%,rgba(0,95,255,.10),transparent 38%),
    linear-gradient(180deg,var(--bg),var(--bg));
}

body:after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background-image:
    linear-gradient(rgba(0,95,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,95,255,.03) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,black,transparent 68%);
  pointer-events:none;
}

.wrap{width:min(var(--max),calc(100% - 44px));margin-inline:auto}

.nav{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  z-index:50;
  width:min(1080px,calc(100% - 28px));
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:7px 8px 7px 14px;
  border:1px solid var(--stroke);
  background:color-mix(in srgb,var(--card-strong) 86%,transparent);
  backdrop-filter:blur(28px) saturate(150%);
  -webkit-backdrop-filter:blur(28px) saturate(150%);
  border-radius:999px;
  box-shadow:0 12px 40px rgba(0,0,0,.10);
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  font-weight:760;
  letter-spacing:-.02em;
  white-space:nowrap;
  text-decoration:none;
  color:var(--ink);
  flex:0 0 auto;
}

.logo{
  width:31px;
  height:31px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--blue),var(--blue3));
  box-shadow:0 10px 26px rgba(0,95,255,.36);
  display:grid;
  place-items:center;
  color:white;
  font-weight:850;
}

.brand-image{
  min-width:98px;
  min-height:28px;
}

.brand-logo,
.logo-dark,
.logo-light,
.dark-logo,
.light-logo,
.logo-img,
.footer-logo{
  display:block;
  width:auto;
  max-width:104px;
  height:22px;
  object-fit:contain;
}

.footer-brand .brand-logo,
.footer-brand .logo-dark,
.footer-brand .logo-light,
.footer-brand .dark-logo,
.footer-brand .light-logo,
.footer-brand .footer-logo{
  max-width:92px;
  height:22px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  color:var(--ink);
  white-space:nowrap;
}

html[data-theme=dark] .logo-dark,
html[data-theme=dark] .dark-logo,
html[data-theme=light] .logo-light,
html[data-theme=light] .light-logo{
  display:none;
}

html:not([data-theme]) .logo-light,
html:not([data-theme]) .light-logo{
  display:none;
}

.brand:after{
  content:"";
  height:22px;
  width:1px;
  background:var(--stroke);
  margin-left:8px;
}

.footer .brand:after{
  display:none;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:4px;
  margin-right:auto;
  margin-left:2px;
  min-width:0;
}

.navlinks a,.nav-actions a,.nav button{
  color:var(--muted);
  text-decoration:none;
  border:0;
  background:transparent;
  font:inherit;
  font-size:13px;
  padding:9px 12px;
  border-radius:999px;
  transition:background .22s ease,color .22s ease,transform .22s ease;
  white-space:nowrap;
}

.navlinks a:hover,.nav-actions a:hover,.nav button:hover{background:rgba(0,95,255,.10);color:var(--ink)}
.nav-actions{display:flex;align-items:center;gap:6px;flex:0 0 auto}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid var(--stroke);
  text-decoration:none;
  border-radius:999px;
  padding:13px 18px;
  font-weight:700;
  font-size:14px;
  color:var(--ink);
  background:color-mix(in srgb,var(--card-strong) 82%,transparent);
  box-shadow:0 12px 34px rgba(0,0,0,.08);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,border-color .25s ease;
}

.btn:hover{transform:translateY(-2px);box-shadow:0 18px 50px rgba(0,95,255,.20);border-color:rgba(0,95,255,.24)}
.btn.primary{background:linear-gradient(135deg,var(--blue),var(--blue2));color:white;border-color:rgba(255,255,255,.18)}

.setapp-btn{
  color:#ffffff;
  border-color:rgba(255,255,255,.20);
  background:
    linear-gradient(135deg,#ff4ecd 0%,#8b5cf6 44%,#00c2ff 100%);
  box-shadow:0 16px 42px rgba(139,92,246,.24),0 10px 28px rgba(0,194,255,.14);
}

.setapp-btn:hover{
  color:#ffffff;
  border-color:rgba(255,255,255,.32);
  box-shadow:0 22px 60px rgba(139,92,246,.30),0 16px 42px rgba(0,194,255,.18);
}

.btn.small{padding:9px 13px;font-size:13px}
.hamb{display:none}

.floating-theme{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:70;
  width:auto;
  max-width:none;
  min-width:0;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 16px;
  border:1px solid var(--stroke);
  border-radius:999px;
  color:var(--ink);
  background:color-mix(in srgb,var(--card-strong) 88%,transparent);
  backdrop-filter:blur(26px) saturate(150%);
  -webkit-backdrop-filter:blur(26px) saturate(150%);
  box-shadow:0 18px 54px rgba(0,34,90,.18);
  cursor:pointer;
  font:inherit;
  font-size:13px;
  font-weight:760;
  line-height:1;
  white-space:nowrap;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.floating-theme:hover{transform:translateY(-2px);box-shadow:0 24px 70px rgba(0,95,255,.22)}
.floating-theme-icon{font-size:18px;line-height:1;color:var(--ink)}
.floating-theme:empty::before{
  content:"◐";
  font-size:18px;
  line-height:1;
  color:var(--ink);
}
.floating-theme-label{
  display:inline-block;
}

.hero{
  min-height:92vh;
  display:grid;
  align-items:center;
  padding:138px 0 78px;
}

.eyebrow{font-size:11px;font-weight:800;letter-spacing:.20em;text-transform:uppercase;color:var(--blue)}
.page > .eyebrow,
.legal > .eyebrow{
  color:var(--blue) !important;
}
h1,h2,h3,p{margin-top:0}

h1{
  font-size:clamp(56px,8vw,108px);
  line-height:.92;
  letter-spacing:-.075em;
  margin:16px 0 22px;
  max-width:940px;
}

.hero-title{
  padding-right:.08em;
  overflow:visible;
  max-width:min(960px,100%);
}

.grad{
  display:inline-block;
  padding-right:.08em;
  margin-right:-.08em;
  background:linear-gradient(90deg,var(--blue),#7bb0ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{font-size:clamp(18px,2.2vw,23px);line-height:1.55;color:var(--muted);max-width:710px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:32px}

.hero-panel{
  margin-top:72px;
  border:1px solid var(--stroke);
  border-radius:36px;
  background:linear-gradient(135deg,rgba(255,255,255,.78),rgba(255,255,255,.42));
  backdrop-filter:blur(30px);
  -webkit-backdrop-filter:blur(30px);
  box-shadow:var(--shadow);
  padding:18px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:18px;
}

html[data-theme=dark] .hero-panel{background:linear-gradient(135deg,rgba(13,18,30,.78),rgba(13,18,30,.42))}

.mock{
  min-height:390px;
  aspect-ratio:16/10;
  border-radius:26px;
  background:
    radial-gradient(circle at 72% 30%,rgba(0,95,255,.18),transparent 32%),
    linear-gradient(135deg,rgba(255,255,255,.92),rgba(238,244,255,.72));
  position:relative;
  overflow:hidden;
  border:1px solid var(--stroke);
  transition:transform .42s cubic-bezier(.2,.8,.2,1),box-shadow .42s cubic-bezier(.2,.8,.2,1),border-color .42s ease;
}

.hero-panel:hover .mock{
  transform:translateY(-4px) scale(1.012);
  box-shadow:0 28px 90px rgba(0,95,255,.18);
  border-color:rgba(0,95,255,.28);
}

html[data-theme=dark] .mock{
  background:
    radial-gradient(circle at 72% 30%,rgba(0,95,255,.42),transparent 32%),
    linear-gradient(135deg,#0b1222,#06070b);
  border-color:rgba(255,255,255,.12);
}

.mock:before{
  content:"Drop your DMGKit screenshot here";
  position:absolute;
  inset:28px;
  border:1px dashed rgba(255,255,255,.24);
  border-radius:20px;
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.58);
  font-weight:700;
}

.mock:has(img):before{
  display:none;
}

.hero-shot{
  position:relative;
}

.hero-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  padding:0;
  transition:transform .7s cubic-bezier(.2,.8,.2,1),filter .7s ease;
}

.hero-panel:hover .hero-shot img{
  transform:scale(1.035);
  filter:saturate(1.06) contrast(1.03);
}

.hero-shot .hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}


html[data-theme=dark] .hero-dark,
html[data-theme=light] .hero-light{
  display:block;
}

html[data-theme=dark] .hero-light,
html[data-theme=light] .hero-dark{
  display:none;
}

html:not([data-theme]) .hero-light{
  display:none;
}

.compatibility-shot,
.distribution-shot,
.sparkle-shot{
  position:relative;
}

.compatibility-shot img,
.distribution-shot img,
.sparkle-shot img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
}

html[data-theme=dark] .b4-light,
html[data-theme=dark] .b6-dark,
html[data-theme=light] .b4-dark,
html[data-theme=light] .b6-light{
  display:block;
}

html[data-theme=dark] .b4-dark,
html[data-theme=dark] .b6-light,
html[data-theme=light] .b4-light,
html[data-theme=light] .b6-dark{
  display:none;
}

html:not([data-theme]) .b4-light,
html:not([data-theme]) .b6-dark{
  display:none;
}

.stats{display:grid;gap:14px}
.stat{padding:24px;border:1px solid var(--stroke);border-radius:24px;background:var(--card)}
.stat strong{display:block;font-size:28px;letter-spacing:-.04em}
.stat span{color:var(--muted);line-height:1.55}

.section{padding:94px 0}
.section-head{display:grid;grid-template-columns:1fr .7fr;gap:36px;align-items:end;margin-bottom:30px}
.section h2{font-size:clamp(38px,5vw,66px);letter-spacing:-.06em;line-height:.98;margin-bottom:0}
.section-head p{color:var(--muted);line-height:1.6}

.bento{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.card{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:var(--card);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:0 14px 42px rgba(0,0,0,.06);
  overflow:hidden;
  position:relative;
}

.feature{
  min-height:460px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:28px;
  transition:transform .34s cubic-bezier(.2,.8,.2,1),border-color .34s ease,box-shadow .34s ease,background .34s ease;
}

.feature:hover{
  transform:translateY(-4px);
  border-color:rgba(0,95,255,.24);
  box-shadow:0 24px 76px rgba(0,95,255,.13);
}

.feature.large{grid-column:span 7;min-height:540px}
.feature.side{grid-column:span 5;min-height:540px}
.feature.half{grid-column:span 6;min-height:480px}
.feature-stack{
  grid-column:span 6;
  display:grid;
  grid-template-rows:minmax(0,1fr) minmax(0,1fr);
  gap:18px;
  align-self:stretch;
  height:100%;
  min-height:480px;
}
.feature-stack .feature.half{
  grid-column:auto;
  min-height:0;
  height:100%;
  overflow:hidden;
}
.feature.compact{
  height:100%;
  padding:22px;
  gap:14px;
  justify-content:flex-start;
}
.feature.compact > div:first-child{
  flex:0 0 auto;
}
.feature.compact .tag{
  font-size:11px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blue);
  line-height:1.2;
  margin-bottom:12px;
}
.feature .tag{font-size:11px;font-weight:850;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);line-height:1.2;margin-bottom:12px}
.feature h3{font-size:30px;line-height:1.02;letter-spacing:-.04em;margin-bottom:12px}
.feature p{color:var(--muted);line-height:1.6;max-width:520px}

.shot{
  width:100%;
  min-height:0;
  height:auto;
  aspect-ratio:1/1;
  border-radius:24px;
  background:
    radial-gradient(circle at 70% 25%,rgba(0,95,255,.24),transparent 32%),
    linear-gradient(135deg,rgba(0,95,255,.15),rgba(0,95,255,.04));
  border:1px solid var(--stroke);
  display:grid;
  place-items:center;
  color:var(--muted);
  font-weight:700;
  margin-top:auto;
  overflow:hidden;
  transition:transform .38s cubic-bezier(.2,.8,.2,1),box-shadow .38s cubic-bezier(.2,.8,.2,1),border-color .38s ease,background .38s ease;
}

.feature:hover .shot{
  transform:translateY(-8px) scale(1.025);
  border-color:rgba(0,95,255,.34);
  box-shadow:0 28px 88px rgba(0,95,255,.20);
  background:
    radial-gradient(circle at 70% 25%,rgba(0,95,255,.32),transparent 34%),
    linear-gradient(135deg,rgba(0,95,255,.18),rgba(0,95,255,.06));
}

.shot img,.shot picture,.shot video{
  width:100%;
  height:100%;
  display:block;
}

.shot img{
  object-fit:contain;
  object-position:center;
  padding:12px;
  transition:transform .65s cubic-bezier(.2,.8,.2,1),filter .65s ease;
}

.feature:hover .shot img{
  transform:scale(1.07);
  filter:saturate(1.12) contrast(1.06);
}

.feature:hover .compatibility-shot img,
.feature:hover .distribution-shot img{
  transform:scale(1.035) rotate(-.6deg);
}


.feature.split{
  display:flex;
  flex-direction:column;
  gap:28px;
  align-items:stretch;
}
.feature.split > div:first-child{
  max-width:760px;
}
.feature.split .shot{
  flex:1 1 auto;
  aspect-ratio:auto;
  margin:0;
  min-height:0;
  height:auto;
}
.feature.side .shot{aspect-ratio:1/1;min-height:0;height:auto}
.feature.half .shot{aspect-ratio:1/1;min-height:0;height:auto}
.feature.compact .shot{
  flex:1 1 0;
  aspect-ratio:auto;
  height:auto;
  min-height:0;
  border-radius:20px;
  margin-top:0;
}
.feature.compact .compatibility-shot img,
.feature.compact .sparkle-shot img{
  object-fit:cover;
  object-position:center;
  padding:0 12px;
}

.pricing{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.price{padding:34px;min-height:460px;display:flex;flex-direction:column}
.price h3{font-size:30px;letter-spacing:-.04em;line-height:1.05}
.price .amount{font-size:48px;letter-spacing:-.055em;font-weight:720;margin:12px 0 8px;line-height:1}
.price .amount span{display:block;font-size:14px;letter-spacing:0;font-weight:760;color:var(--muted);margin-top:8px;text-transform:uppercase}
.price ul{padding:0;margin:26px 0 30px;list-style:none;display:grid;gap:12px;color:var(--muted)}
.price li:before{content:"✓";color:var(--blue);font-weight:900;margin-right:10px}
.price-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:auto}
.price-actions .btn{padding-inline:17px}

.setapp-section{padding-top:28px}
.setapp-card{
  padding:34px;
  min-height:260px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  background:
    radial-gradient(circle at 88% 16%,rgba(0,95,255,.20),transparent 30%),
    var(--card);
}

.setapp-card h2{font-size:clamp(34px,4vw,54px);letter-spacing:-.055em;line-height:1;margin-bottom:14px}
.setapp-copy .lead{max-width:720px;margin-bottom:0}
.setapp-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}

.reviews-shell{overflow:hidden;border-radius:30px}
.reviews-track{display:flex;gap:16px;width:max-content;animation:scroll 38s linear infinite;will-change:transform}
.review{width:360px;min-height:220px;padding:26px}
.review p{color:var(--muted);line-height:1.58}
.review strong{display:block;margin-top:20px}
.reviews-shell:hover .reviews-track{animation-play-state:paused}
@keyframes scroll{to{transform:translateX(-50%)}}

.faq{display:grid;gap:12px}
.faq-item{padding:0;overflow:hidden}
.faq-q{
  width:100%;
  text-align:left;
  padding:16px 22px;
  min-height:58px;
  border:0;
  background:transparent;
  color:var(--ink);
  font:inherit;
  font-size:17px;
  font-weight:720;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
}

.faq-icon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:var(--blue);
  background:rgba(0,95,255,.10);
  transition:transform .28s ease,background .28s ease;
}

.faq-a{
  max-height:0;
  opacity:0;
  overflow:hidden;
  padding:0 22px;
  color:var(--muted);
  line-height:1.62;
  transition:max-height .34s cubic-bezier(.2,.8,.2,1),opacity .22s ease,padding .34s cubic-bezier(.2,.8,.2,1);
}

.faq-item.open .faq-a,
.faq-item:hover .faq-a{
  max-height:260px;
  opacity:1;
  padding:0 22px 20px;
}

.faq-item.open .faq-icon,
.faq-item:hover .faq-icon{
  transform:rotate(45deg);
  background:rgba(0,95,255,.16);
}

.final{
  padding:74px 28px;
  text-align:center;
  border-radius:36px;
  background:radial-gradient(circle at 50% 0,rgba(0,95,255,.24),transparent 54%),var(--card);
}

.final h2{max-width:760px;margin:0 auto 16px;line-height:1}
.final .lead{margin-inline:auto;max-width:650px}
.final .hero-actions{justify-content:center}

.footer{border-top:1px solid var(--stroke);padding:38px 0 48px}
.foot{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px}
.footnav{display:flex;gap:18px;flex-wrap:wrap;justify-content:center}
.foot a{color:var(--muted);text-decoration:none;font-size:13px}
.copy{text-align:right;color:var(--muted);font-size:13px}

.page{padding:132px 0 80px}
.article-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.article{
  padding:28px;
  min-height:280px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
  color:var(--ink);
  text-decoration:none;
  transition:transform .32s cubic-bezier(.2,.8,.2,1),border-color .32s ease,box-shadow .32s ease,background .32s ease;
}

.article:hover{
  transform:translateY(-5px);
  border-color:rgba(0,95,255,.28);
  box-shadow:0 24px 76px rgba(0,95,255,.14);
  background:
    radial-gradient(circle at 80% 8%,rgba(0,95,255,.14),transparent 36%),
    var(--card);
}

.article h3{
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.04em;
  color:var(--ink);
  margin-bottom:12px;
  text-decoration:none;
}

.article p{
  color:var(--muted);
  line-height:1.6;
  margin:0;
  text-decoration:none;
}

.article .eyebrow{
  align-self:flex-start;
  margin-top:auto;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,95,255,.18);
  background:rgba(0,95,255,.08);
  color:var(--blue);
  letter-spacing:.13em;
  text-decoration:none;
}

.article *,
.article:hover *,
.article:visited,
.article:visited *,
.article:active,
.article:active *{
  text-decoration:none;
}

.article:visited{
  color:var(--ink);
}

.article:focus-visible{
  outline:3px solid rgba(0,95,255,.35);
  outline-offset:4px;
}
.search{width:100%;border:1px solid var(--stroke);background:var(--card);color:var(--ink);border-radius:999px;padding:16px 20px;font:inherit;margin:26px 0 28px}
.legal{max-width:850px}
.legal p,.legal li{color:var(--muted);line-height:1.75}
.press-kit{display:block}
.press-kit .grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.grid{display:grid;gap:18px}
.grid-3cols{grid-template-columns:repeat(3,1fr)}
.product-summary{
  max-width:960px;
}
.product-summary p{
  color:var(--muted);
  line-height:1.75;
  font-size:18px;
}
.mobile-only{display:none}

@media(max-width:980px){
  .nav{width:calc(100% - 22px)}
  .navlinks a{padding-inline:9px}
  .btn.small{padding-inline:11px}
}

@media(max-width:820px){
  .wrap{width:min(100% - 26px,var(--max))}
  .nav{
    top:10px;
    width:calc(100% - 18px);
    height:auto;
    min-height:54px;
    border-radius:24px;
    align-items:center;
    flex-wrap:wrap;
  }
  .brand:after,.navlinks,.nav-actions a{display:none}
  .brand-image{min-width:92px}
  .brand-logo,.logo-dark,.logo-light,.dark-logo,.light-logo,.logo-img,.footer-logo{max-width:98px;height:21px}
  .hamb{display:inline-flex}
  .nav.open .navlinks{display:flex;order:3;width:100%;flex-direction:column;align-items:stretch;margin:8px 0 4px}
  .nav.open .navlinks a{font-size:15px;padding:12px}
  .floating-theme{
    width:52px;
    max-width:52px;
    min-width:52px;
    height:52px;
    min-height:52px;
    right:16px;
    bottom:16px;
    padding:0;
    justify-content:center;
    align-items:center;
    flex:0 0 52px;
  }
  .floating-theme-label{display:none}
  .hero{padding-top:118px;min-height:auto}
  .hero-panel,.section-head,.pricing,.press-kit,.setapp-card{grid-template-columns:1fr}
  .setapp-card{align-items:start;padding:28px}
  .setapp-actions{justify-content:stretch;flex-direction:column}
  .mock{min-height:280px}
  .feature.large,.feature.side,.feature.half{grid-column:span 12;min-height:auto}
  .feature-stack{grid-column:span 12;height:480px;min-height:480px;grid-template-rows:minmax(0,1fr) minmax(0,1fr)}
  .feature-stack .feature.half{height:100%;min-height:0}
  .feature.split{display:flex;flex-direction:column}
  .feature.split .shot{aspect-ratio:auto;order:0}
  .feature.side .shot,.feature.half .shot{aspect-ratio:1/1}
  .feature.compact .shot{aspect-ratio:auto;height:auto;min-height:0}
  .hero-shot img{object-fit:cover;padding:0}
  .shot img{padding:10px}
  .feature{padding:24px;min-height:auto}
  .article-grid{grid-template-columns:1fr}
  .grid-3cols{grid-template-columns:1fr}
  .press-kit .grid{grid-template-columns:1fr !important}
  .foot{grid-template-columns:1fr;text-align:center}
  .copy{text-align:center}
  .hero-actions,.price-actions{flex-direction:column}
  .btn{width:100%}
  .floating-theme{width:52px}
  .section{padding:68px 0}
  h1{font-size:clamp(48px,14vw,72px);line-height:.94;letter-spacing:-.065em}
  .reviews-track{animation-duration:32s}
  .review{width:300px}
}

@media(max-width:480px){
  .wrap{width:calc(100% - 22px)}
  .hero-title{padding-right:.12em}
  .hero-panel{margin-top:52px;border-radius:28px;padding:12px}
  .mock{border-radius:20px}
  .stats{gap:10px}
  .stat{padding:20px}
  .section h2{font-size:clamp(34px,11vw,48px)}
  .feature h3,.price h3{font-size:27px}
  .feature.compact h3{font-size:24px}
  .price .amount{font-size:42px}
  .final{padding:56px 20px}
}

@media(prefers-reduced-motion:reduce){
  .mock,
  .hero-shot img,
  .feature,
  .shot,
  .shot img,
  .faq-a,
  .faq-icon{
    transition:none;
  }

  .hero-panel:hover .mock,
  .hero-panel:hover .hero-shot img,
  .feature:hover,
  .feature:hover .shot,
  .feature:hover .shot img,
  .feature:hover .compatibility-shot img,
  .feature:hover .distribution-shot img,
  .faq-item.open .faq-icon,
  .faq-item:hover .faq-icon{
    transform:none;
    filter:none;
  }
}

html[data-theme=dark] .sparkle-dark,
html[data-theme=light] .sparkle-light{
  display:block;
}

html[data-theme=dark] .sparkle-light,
html[data-theme=light] .sparkle-dark{
  display:none;
}

html:not([data-theme]) .sparkle-light{
  display:none;
}
