:root{
  --ui-scale:0.9;
  --bg:#0b0b0b;          /* menu.cpp mainBg 11 */
  --panel:#0d0d0d;       /* sidebar fill 13 */
  --card:#181818;        /* child bg vibe */
  --card2:#101010;
  --stroke:rgba(255,255,255,.06);
  --stroke2:rgba(255,255,255,.10);
  --text:#f8fafc;        /* menu.cpp */
  --muted:rgba(148,163,184,.9);
  --dim:rgba(100,116,139,.9);
  --accent:#fe793e;      /* HexLab accentColour default: #FE793E */
  --accent2:#ee6644;     /* Menu::Accent (imgui_menu.h): IM_COL32(238,102,68,255) */
  --accentRgb:254 121 62;
  --accent2Rgb:238 102 68;
  --shadow:0 22px 70px rgba(0,0,0,.55);
  --shadowSoft:0 10px 34px rgba(0,0,0,.32);
  --radius:14px;
  --radiusSm:10px;       /* menu.cpp profile rounding */
  --max:1120px;
  --scrollbarTrack:rgba(255,255,255,.06);
  --scrollbarThumb:rgba(255,255,255,.20);
  --scrollbarThumbHover:rgba(255,255,255,.30);
}

*{box-sizing:border-box}
html{
  height:100%;
  zoom:var(--ui-scale);
}

@supports not (zoom: 1){
  body{
    transform:scale(var(--ui-scale));
    transform-origin:top center;
    width:calc(100% / var(--ui-scale));
    min-height:calc(100dvh / var(--ui-scale));
  }
}

body{
  min-height:100%;
  min-height:calc(100dvh / var(--ui-scale));
  margin:0;
  display:grid;
  grid-template-rows:auto 1fr auto;
  overflow-x:hidden;
  font-family:Lexend,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

body > .siteHeader{grid-row:1}
body > main{grid-row:2;min-width:0}
body > .footer{grid-row:3}

/* Custom scrollbars — Firefox */
html{scrollbar-width:thin;scrollbar-color:var(--scrollbarThumb) var(--scrollbarTrack)}
*{scrollbar-width:thin;scrollbar-color:var(--scrollbarThumb) var(--scrollbarTrack)}

/* Custom scrollbars — Chromium, Safari, Edge */
*::-webkit-scrollbar{width:10px;height:10px}
*::-webkit-scrollbar-track{background:var(--scrollbarTrack);border-radius:999px}
*::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:var(--scrollbarThumb);
  border:2px solid var(--bg);
  min-height:40px;
}
*::-webkit-scrollbar-thumb:hover{background:var(--scrollbarThumbHover);border-color:var(--bg)}
*::-webkit-scrollbar-corner{background:transparent}

/* Subtle signature background (clean, not flashy) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:none;
  opacity:0;
}

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

.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;
  left:12px;top:12px;
  background:var(--card);
  border:1px solid var(--stroke2);
  padding:10px 12px;
  border-radius:10px;
  transform:translateY(-160%);
  transition:transform .2s ease;
  z-index:1000;
}
.skip-link:focus{transform:translateY(0)}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}

/* Slightly tighter section rhythm */
.hero{scroll-margin-top:122px}
.section,.sectionTight,.cta{scroll-margin-top:122px}

.siteHeader{
  position:sticky;
  top:0;
  z-index:50;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  background:rgba(11,11,11,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--stroke);
}

.topbar{
  border-bottom:1px solid transparent;
}
.topbar.isRaised{border-bottom-color:var(--stroke)}
body:not(.homePage) .announceBar{display:none}

.announceBar{
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.04);
  background:rgba(8,8,8,.65);
  padding:9px 0;
  margin:0;
  width:100%;
  max-width:100%;
}
.announceTrack{
  display:flex;
  width:max-content;
  will-change:transform;
  animation:announceMarquee 38s linear infinite;
}
.announceGroup{
  display:flex;
  flex-shrink:0;
  align-items:center;
  gap:10px;
  padding-right:3.5rem;
  font-size:12px;
  font-weight:500;
  letter-spacing:.02em;
  color:rgba(200,210,230,.88);
  white-space:nowrap;
}
.announceEm{
  font-weight:700;
  color:rgb(var(--accentRgb) / .95);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:10px;
}
.announceGroup a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}
.announceGroup a:hover{color:rgb(var(--accentRgb) / .95)}
.announceDot{
  display:inline-block;
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgb(var(--accentRgb) / .6);
  margin:0 10px;
  vertical-align:middle;
}

@keyframes announceMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

@keyframes heroDrift{
  0%{transform:translate3d(0,0,0) scale(1)}
  100%{transform:translate3d(0,10px,0) scale(1.02)}
}

@media (prefers-reduced-motion: reduce){
  .announceTrack{
    animation:none;
    width:100%;
    max-width:var(--max);
    margin:0 auto;
    padding:0 18px;
    flex-wrap:wrap;
    justify-content:center;
  }
  .announceGroup:nth-child(2){display:none}
  .announceGroup{
    padding-right:0;
    white-space:normal;
    text-align:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:6px;
  }
  .heroBg{animation:none}
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{display:flex;align-items:center;gap:0}
.brandText{
  font-family:Poppins,Lexend,system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size:18px;
}
.brandTextAccent{color:var(--accent)}
.brandTextRest{color:var(--text)}

.navMenu{
  display:flex;
  align-items:center;
  gap:16px;
}
.navLink{
  color:rgba(200,210,230,.92);
  font-size:13px;
  padding:8px 10px;
  border-radius:10px;
  transition:background .2s ease,color .2s ease;
  position:relative;
}
.navLink:hover{background:rgba(255,255,255,.06);color:var(--text)}
.navLink:focus-visible{
  outline:2px solid rgb(var(--accentRgb) / .55);
  outline-offset:2px;
}
.navLink::after{
  content:"";
  position:absolute;
  left:10px;right:10px;bottom:4px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgb(var(--accentRgb) / 0), rgb(var(--accentRgb) / .9), rgb(var(--accentRgb) / 0));
  opacity:0;
  transform:translateY(2px);
  transition:opacity .18s ease, transform .18s ease;
}
.navLink:hover::after{opacity:.55;transform:translateY(0)}

.iconBtn{
  appearance:none;
  border:1px solid var(--stroke);
  background:rgba(24,24,24,.65);
  color:rgba(240,240,240,.92);
  border-radius:12px;
  padding:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
}
.iconBtn:hover{background:rgba(24,24,24,.85);border-color:var(--stroke2)}
.iconBtn:active{transform:translateY(1px)}
.iconBtn:focus-visible{
  outline:2px solid rgb(var(--accentRgb) / .55);
  outline-offset:2px;
}
.navToggle{display:none}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:12px;
  padding:11px 16px;
  border:1px solid transparent;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  user-select:none;
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn:focus-visible{
  outline:2px solid rgb(var(--accentRgb) / .55);
  outline-offset:2px;
}
.btnWide{width:100%}
.btnIcon{display:inline-flex}

.btnPrimary{
  background:linear-gradient(180deg, rgb(var(--accentRgb) / .98), rgb(var(--accent2Rgb) / .92));
  color:#101010;
  box-shadow:0 2px 8px rgb(var(--accentRgb) / .07), 0 6px 18px rgb(var(--accentRgb) / .09);
}
.btnPrimary:hover{
  box-shadow:0 3px 10px rgb(var(--accentRgb) / .09), 0 8px 22px rgb(var(--accentRgb) / .11);
  filter:saturate(1.05);
}

.btnSoft{
  background:rgba(24,24,24,.70);
  border-color:var(--stroke);
  color:rgba(248,250,252,.96);
}
.btnSoft:hover{background:rgba(24,24,24,.86);border-color:var(--stroke2)}

.btnGhost{
  background:transparent;
  border-color:var(--stroke);
  color:rgba(200,210,230,.95);
}
.btnGhost:hover{border-color:var(--stroke2);background:rgba(255,255,255,.05);color:var(--text)}

.btnSmall{
  padding:8px 12px;
  font-size:12px;
  border-radius:10px;
}

/* Premium polish (no scroll-reveal) */
main, .footer{
  opacity:0;
  transform:translateY(6px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
html.isLoaded main,
html.isLoaded .footer{
  opacity:1;
  transform:translateY(0);
}

.hero{
  position:relative;
  padding:clamp(56px, 8vw, 96px) 0 48px;
  overflow:visible;
}
.heroBg{
  position:absolute;
  inset:-120px 0 auto 0;
  height:480px;
  background:none;
  filter:none;
  opacity:0;
  pointer-events:none;
  transform:none;
  will-change:auto;
  animation:none;
}
.heroInner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:22px;
  align-items:center;
  min-width:0;
}

.heroLeft{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:12px;
  padding-top:0;
}

.heroBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:rgba(148,163,184,.95);
  background:rgba(24,24,24,.60);
  border:1px solid var(--stroke);
  border-radius:999px;
  padding:7px 12px;
}
.dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgb(var(--accentRgb) / .10);
}

.heroTitle{
  margin:8px 0 0;
  font-size:clamp(38px, 5vw, 62px);
  letter-spacing:-.02em;
  line-height:1.06;
  text-align:left;
}
.heroAccent{
  color:var(--accent);
  text-shadow:0 0 24px rgb(var(--accentRgb) / .2);
}
.heroSub{
  margin:0;
  max-width:620px;
  color:rgba(148,163,184,.92);
  font-size:13.5px;
  text-align:left;
}
.heroCtas{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-start;margin-top:8px}

.stats{
  width:min(640px, 100%);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:12px 0 0;
}
.statCard{
  padding:18px 16px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(24,24,24,.62), rgba(14,14,14,.55));
  border:1px solid var(--stroke);
  box-shadow:var(--shadowSoft);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.statCard:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.10);
}
.statLabel{
  font-size:11px;
  color:rgba(100,116,139,.95);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
  text-align:left;
}
.statValue{
  font-size:26px;
  margin:0;
  color:rgba(248,250,252,.98);
  font-weight:700;
  text-align:left;
}

.heroShowcase{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(24,24,24,.88), rgba(13,13,13,.9));
  padding:16px 16px 18px;
  box-shadow:var(--shadowSoft);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
  align-self:center;
}
.showcaseKicker{
  margin:0;
  font-size:11px;
  color:rgb(var(--accentRgb) / .9);
  text-transform:uppercase;
  letter-spacing:.14em;
}
.showcaseTitle{
  margin:0;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.02em;
}
.showcaseText{
  margin:0 0 6px;
  color:rgba(148,163,184,.9);
  font-size:13px;
}
.showcaseMedia{
  position:relative;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  min-height:0;
  aspect-ratio:3/2;
  overflow:hidden;
  background:
    radial-gradient(110% 90% at 40% 0%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(140deg, rgba(26,26,26,.96), rgba(8,8,8,.98));
}
.showcaseImage{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:0;
  pointer-events:none;
  opacity:0;
  transition:opacity .45s ease;
}
.showcaseImage.isReady{opacity:1}
.showcaseArrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(6,6,6,.55);
  color:rgba(248,250,252,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.showcaseArrow:hover{
  background:rgba(12,12,12,.82);
  border-color:rgb(var(--accentRgb) / .45);
  color:rgb(var(--accentRgb) / .98);
}
.showcaseArrow.isPrev{left:10px}
.showcaseArrow.isNext{right:10px}
.showcaseFoot{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:wrap;
  min-width:0;
  padding-top:2px;
}
.showcaseFoot .btn{
  flex:0 0 auto;
  margin-left:auto;
}
.showcaseDots{
  display:flex;
  gap:8px;
  flex:0 1 auto;
  min-width:0;
}
.showcaseDots button{
  border:0;
  padding:0;
  cursor:pointer;
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  transition:transform .16s ease, background .16s ease;
}
.showcaseDots button:hover{transform:scale(1.1)}
.showcaseDots .isActive{
  background:var(--accent);
  box-shadow:0 0 6px rgb(var(--accentRgb) / .22);
}

.section{padding:72px 0}
.sectionTight{padding:58px 0}
.sectionHead{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin-bottom:24px}
.sectionHead.center{flex-direction:column;align-items:center;text-align:center}
.sectionTitle{margin:0;font-size:26px;letter-spacing:-.01em}
.sectionSub{margin:0;color:rgba(148,163,184,.92);font-size:13px;max-width:640px}

.sectionHead:not(.center){
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.04);
}

.featureGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.feature{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.72), rgba(16,16,16,.65));
  padding:20px 20px 22px;
  box-shadow:var(--shadowSoft);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
  min-height:120px;
}
.feature:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(24,24,24,.78), rgba(14,14,14,.68));
}
.featureTitle{margin:0 0 8px;font-size:14px}
.featureText{margin:0;color:rgba(148,163,184,.92);font-size:13px}

/* Product feature showcase cards */
.showcaseCardGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.showcaseCard{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.78), rgba(12,12,12,.88));
  box-shadow:var(--shadowSoft);
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease;
  min-width:0;
}
.showcaseCard:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.12);
}
.showcaseCardMedia{
  aspect-ratio:16/9;
  background:#0d0d0d;
  position:relative;
}
.showcaseCardMedia::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.60));
}
.showcaseCardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.95;
  filter:saturate(1.03) contrast(1.03);
}
.showcaseCardMedia img.showcaseCardImgContain{
  object-fit:contain;
  object-position:center center;
  background:#0d0d0d;
}
.showcaseCardMedia img.showcaseCardImgPlayer{
  object-fit:cover;
  object-position:50% 24%;
}
.showcaseCardBody{padding:14px 14px 16px}
.showcaseCardTitle{
  margin:0 0 6px;
  font-size:14px;
  letter-spacing:-.01em;
}
.showcaseCardText{
  margin:0;
  color:rgba(148,163,184,.92);
  font-size:12.5px;
  line-height:1.55;
}

.videoGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.videoCard{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.78), rgba(13,13,13,.82));
  overflow:hidden;
  box-shadow:var(--shadowSoft);
  transition:transform .18s ease, border-color .18s ease;
}
.videoCard:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.11);
}
.videoFrame{
  position:relative;
  aspect-ratio:16/9;
  background:radial-gradient(60% 60% at 30% 40%, rgb(var(--accentRgb) / .18), transparent 62%),
             rgba(0,0,0,.65);
}
.videoFrame iframe{
  position:absolute;inset:0;
  width:100%;height:100%;
  border:0;
}
.videoFrameLink{
  position:absolute;
  inset:0;
  display:block;
  color:inherit;
}
.videoThumb{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.88;
  filter:saturate(1.02) contrast(1.03);
  transform:scale(1.01);
  transition:transform .25s ease, opacity .25s ease, filter .25s ease;
}
.videoFrameLink::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55));
  opacity:1;
  pointer-events:none;
}
.playPill{
  position:absolute;
  left:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(12,12,12,.55);
  backdrop-filter:blur(10px);
  color:rgba(248,250,252,.95);
  font-size:12px;
  font-weight:600;
  letter-spacing:.01em;
}
.playIcon{
  width:18px;
  height:18px;
  border-radius:999px;
  background:rgb(var(--accentRgb) / .18);
  border:1px solid rgb(var(--accentRgb) / .35);
  position:relative;
  box-shadow:0 10px 26px rgb(var(--accentRgb) / .08);
}
.playIcon::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-42%,-50%);
  width:0;height:0;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
  border-left:7px solid rgba(248,250,252,.9);
}
.videoCard:hover .videoThumb{
  transform:scale(1.05);
  opacity:.98;
  filter:saturate(1.08) contrast(1.06);
}
.videoFrameLink:focus-visible{
  outline:2px solid rgb(var(--accentRgb) / .55);
  outline-offset:3px;
  border-radius:calc(var(--radius) - 2px);
}
.cardBody{padding:18px 18px 20px}
.cardTitle{margin:0 0 6px;font-size:14px}
.cardText{margin:0;color:rgba(148,163,184,.92);font-size:13px}

/* Short text bridge between sections */
.bridgeCopy{
  padding:24px 0 10px;
}
.bridgeCopy .container{
  max-width:720px;
  text-align:center;
}
.bridgeKicker{
  margin:0 0 8px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:rgb(var(--accentRgb) / .80);
}
.bridgeText{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:rgba(200,210,230,.90);
}

.pricingGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:16px;
  align-items:stretch;
}
.priceCard{
  position:relative;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.74), rgba(14,14,14,.86));
  padding:22px 22px 20px;
  box-shadow:var(--shadowSoft);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  display:flex;
  flex-direction:column;
}
.priceCard:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.11);
}
.priceCard.best{
  border-color:rgb(var(--accentRgb) / .42);
  box-shadow:0 8px 28px rgb(var(--accentRgb) / .06);
}
.bestBadge{
  position:absolute;top:14px;right:14px;
  font-size:11px;
  color:#0b0b0b;
  background:linear-gradient(180deg, rgb(var(--accentRgb) / .98), rgb(var(--accent2Rgb) / .92));
  padding:6px 10px;
  border-radius:999px;
}

.priceCard.best::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:calc(var(--radius) + 1px);
  padding:1px;
  background:linear-gradient(135deg, rgb(var(--accentRgb) / .55), rgb(var(--accent2Rgb) / .10), rgba(255,255,255,.06));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.85;
}
.priceHead{margin-bottom:12px}
.priceName{margin:0;font-size:16px}
.priceTag{margin:4px 0 0;color:rgba(148,163,184,.9);font-size:12px}
.priceValue{display:flex;align-items:baseline;gap:8px;margin:12px 0 16px}
.priceMoney{font-size:32px;font-weight:800;letter-spacing:-.02em;color:rgba(248,250,252,.98)}
.pricePeriod{font-size:12px;color:rgba(148,163,184,.92)}
.priceList{
  margin:0 0 16px;
  padding:0 0 0 16px;
  color:rgba(200,210,230,.90);
  font-size:13px;
  flex:1;
}
.priceList li{margin:8px 0}

.notice{
  margin-top:14px;
  border-radius:var(--radius);
  border:1px dashed rgb(var(--accentRgb) / .30);
  background:rgb(var(--accentRgb) / .06);
  padding:14px 14px;
  color:rgba(200,210,230,.95);
  font-size:13px;
}

.cta{
  padding:76px 0;
  background:linear-gradient(180deg, rgba(24,24,24,.18), rgba(11,11,11,.95));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.ctaInner{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.ctaTitle{margin:0;font-size:30px;letter-spacing:-.01em}
.ctaSub{margin:0;color:rgba(148,163,184,.92);font-size:13px}

.supportCard{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.72), rgba(14,14,14,.86));
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.supportTitle{margin:0 0 6px;font-size:18px}
.supportText{margin:0;color:rgba(148,163,184,.92);font-size:13px}
.supportActions{display:flex;gap:10px;flex-wrap:wrap}

.footer{
  padding:34px 0 22px;
  background:rgba(0,0,0,.35);
  border-top:1px solid rgba(255,255,255,.04);
}
.footerInner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.footerBrand{
  font-family:Poppins,Lexend,system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:lowercase;
}
.footerSmall{font-size:12px;color:rgba(148,163,184,.85);margin-top:6px}
.footerLinks{
  display:flex;
  gap:16px;
  font-size:12px;
  color:rgba(200,210,230,.88);
}
.footerLinks a{padding:6px 8px;border-radius:10px}
.footerLinks a:hover{background:rgba(255,255,255,.06);color:var(--text)}
.footerBottom{
  padding-top:18px;
  font-size:12px;
  color:rgba(148,163,184,.78);
}

.modal{
  position:fixed;inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:200;
}
.modal[aria-hidden="false"]{display:flex}
.modalBackdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(10px);
}
.modalDialog{
  position:relative;
  width:min(520px, 100%);
  border-radius:var(--radius);
  border:1px solid var(--stroke2);
  background:var(--bg);
  box-shadow:0 30px 120px rgba(0,0,0,.75);
  overflow:hidden;
}
.modalHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(16,16,16,.96), rgba(11,11,11,.96));
}
.modalTitle{margin:0;font-size:15px}
.form{padding:14px}
.field{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
.fieldLabel{font-size:12px;color:rgba(148,163,184,.9)}
.input{
  background:linear-gradient(180deg, rgba(24,24,24,.85), rgba(14,14,14,.85));
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:12px 12px;
  color:rgba(248,250,252,.95);
  outline:none;
}
.input:focus{
  border-color:rgb(var(--accentRgb) / .35);
  box-shadow:0 0 0 4px rgb(var(--accentRgb) / .10);
}
.formHint{
  margin:10px 0 0;
  font-size:12px;
  color:rgba(148,163,184,.85);
}

/* —— Store / product / support pages —— */
.pageMain{
  padding:28px 0 48px;
}
.storePage{padding-top:8px}
.storeBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:20px 22px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.82), rgba(14,14,14,.88));
  box-shadow:var(--shadowSoft);
  margin-bottom:28px;
}
.storeTitle{margin:0;font-size:26px;letter-spacing:-.02em}
.storeLead{margin:6px 0 0;font-size:13px;color:rgba(148,163,184,.92);max-width:520px}
.storeGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
  gap:16px;
  align-items:stretch;
}
.storeCard{
  display:flex;
  flex-direction:column;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.78), rgba(14,14,14,.86));
  overflow:hidden;
  box-shadow:var(--shadowSoft);
  transition:transform .18s ease, border-color .18s ease;
  color:inherit;
  height:100%;
}
.storeCard:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.12);
}
.storeCardMedia{
  /* Fixed responsive height so all cards line up perfectly */
  height:clamp(190px, 18vw, 240px);
  background:#0d0d0d;
  position:relative;
}
.storeCardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.storeBadge{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(248,250,252,.95);
  background:rgba(11,11,11,.55);
  border:1px solid rgb(var(--accentRgb) / .35);
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}
.storeCardMediaSoon{
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(420px 220px at 50% 30%, rgb(var(--accentRgb) / .18), transparent 70%),
    radial-gradient(320px 220px at 30% 60%, rgba(255,255,255,.06), transparent 72%),
    linear-gradient(180deg, rgba(24,24,24,.85), rgba(11,11,11,.92));
  overflow:hidden;
}
.storeSoonInner{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  padding:18px;
}
.storeSoonIcon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(248,250,252,.9);
  background:rgb(var(--accentRgb) / .12);
  border:1px solid rgb(var(--accentRgb) / .22);
}
.storeSoonTitle{
  font-weight:700;
  letter-spacing:-.01em;
  color:rgba(248,250,252,.95);
}
.storeSoonSub{
  font-size:12px;
  color:rgba(148,163,184,.95);
}
.storeCard.isDisabled{
  cursor:not-allowed;
  transform:none !important;
  border-color:rgba(255,255,255,.07);
  opacity:.92;
}
.storeCard.isDisabled:hover{
  transform:none;
  border-color:rgba(255,255,255,.07);
}
.storeCard.isDisabled .storeCardLink{
  color:rgba(148,163,184,.9);
}
.storeCardBody{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.storeCardBody h2{margin:0;font-size:18px}
.storeCardBody p{margin:0;font-size:13px;color:rgba(148,163,184,.92);flex:1}
.storeCardLink{
  margin-top:4px;
  font-size:12px;
  font-weight:600;
  color:var(--accent);
}

.crumbs{font-size:12px;color:rgba(148,163,184,.9);margin-bottom:18px}
.crumbs a{color:rgba(200,210,230,.95)}
.crumbs a:hover{color:var(--text)}
.crumbs .sep{color:rgba(148,163,184,.45);padding:0 8px}

.productLayout{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:28px;
  align-items:start;
}
.productGallery{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.productMain{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:#0d0d0d;
  overflow:hidden;
  aspect-ratio:16/10;
}
.productMain img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  cursor:zoom-in;
}
.productThumbs{display:flex;gap:10px;flex-wrap:wrap}
.productThumbs button{
  padding:0;
  border:2px solid transparent;
  border-radius:10px;
  overflow:hidden;
  width:76px;
  height:50px;
  cursor:pointer;
  background:#111;
  flex-shrink:0;
}
.productThumbs button img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.productThumbs button.isActive,
.productThumbs button:focus-visible{
  border-color:var(--accent);
}
.imageLightbox{
  position:fixed;
  inset:0;
  z-index:260;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(0,0,0,.84);
}
.imageLightbox[aria-hidden="false"]{display:flex}
.imageLightbox img{
  max-width:min(1200px, 94vw);
  max-height:90vh;
  width:auto;
  height:auto;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:#0d0d0d;
}
.imageLightboxClose{
  position:absolute;
  top:18px;
  right:18px;
}
.productDetail{min-width:0}
.productDetail h1{margin:0 0 10px;font-size:clamp(28px, 4vw, 36px);letter-spacing:-.02em}
.productDetail .lead{
  margin:0 0 18px;
  color:rgba(148,163,184,.92);
  font-size:14px;
  line-height:1.55;
}
.productList{
  margin:0;
  padding:0 0 0 18px;
  color:rgba(200,210,230,.92);
  font-size:13px;
}
.productList li{margin:8px 0}
.productActions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}

.productPricing{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.06);
}
.productSection{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.06);
}
.productPricingTitle{
  margin:0 0 8px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(148,163,184,.9);
}
.productPricingHint{
  margin:0 0 12px;
  font-size:12px;
  color:rgba(148,163,184,.88);
  line-height:1.45;
}
.productTiers{
  display:flex;
  flex-direction:column;
  margin:0;
  padding:10px 14px;
  border:1px solid var(--stroke);
  border-radius:12px;
  overflow:visible;
  box-sizing:border-box;
}
button.productTier{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
  padding:16px 18px;
  margin:0;
  border:0;
  border-bottom:1px solid var(--stroke);
  border-radius:0;
  background:transparent;
  font:inherit;
  color:inherit;
  text-align:left;
  cursor:pointer;
  transition:background .15s ease, box-shadow .15s ease;
  box-sizing:border-box;
}
button.productTier:first-of-type{
  border-top-left-radius:8px;
  border-top-right-radius:8px;
}
button.productTier:last-of-type{
  border-bottom:0;
  border-bottom-left-radius:8px;
  border-bottom-right-radius:8px;
}
button.productTier:hover{
  background:rgba(255,255,255,.06);
}
button.productTier:focus-visible{
  outline:2px solid rgb(var(--accentRgb) / .65);
  outline-offset:2px;
  position:relative;
  z-index:1;
}
.productTier.isSelected{
  background:rgba(254,121,62,.10);
  box-shadow:inset 0 0 0 1px rgb(var(--accentRgb) / .4);
}
.productTier.isSelected:hover{
  background:rgba(254,121,62,.14);
}
.tierName{font-size:14px;font-weight:600;color:rgba(248,250,252,.96)}
.tierPrice{font-size:17px;font-weight:700;color:var(--accent);letter-spacing:-.02em}

/* Legal / terms */
.legalPage{padding-top:36px}
.termsDoc{
  max-width:720px;
  margin:0 auto;
}
.termsDoc h1{
  margin:0 0 8px;
  font-size:clamp(26px, 4vw, 34px);
  letter-spacing:-.02em;
}
.termsUpdated{
  margin:0 0 22px;
  font-size:12px;
  color:rgba(148,163,184,.85);
}
.termsDoc h2{
  margin:28px 0 10px;
  font-size:15px;
  font-weight:600;
  letter-spacing:-.01em;
}
.termsDoc p{
  margin:0 0 14px;
  font-size:13px;
  line-height:1.65;
  color:rgba(200,210,230,.92);
}
.termsDoc p strong{color:rgba(248,250,252,.95)}
.termsFoot{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.06);
}
.termsFoot a{color:var(--accent)}
.termsFoot a:hover{text-decoration:underline}

.productTermsNotice{
  margin:18px 0 0;
  font-size:12px;
  line-height:1.55;
  color:rgba(148,163,184,.92);
}
.productTermsNotice a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}
.productTermsNotice a:hover{color:rgb(var(--accentRgb) / .95)}

.supportPage{padding-top:48px}
.supportPanel{
  max-width:760px;
  margin:0 auto;
  padding:30px 28px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(24,24,24,.82), rgba(12,12,12,.92));
  box-shadow:var(--shadowSoft);
}
.supportKicker{
  margin:0 0 8px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.13em;
  color:rgb(var(--accentRgb) / .86);
}
.supportPanel h1{margin:0 0 14px;font-size:28px;letter-spacing:-.02em}
.supportLead{
  margin:0 0 22px;
  color:rgba(148,163,184,.92);
  font-size:14px;
  line-height:1.68;
}
.supportMethodGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.supportMethodCard{
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(255,255,255,.02);
  padding:14px 14px 13px;
}
.supportMethodCard h2{
  margin:0 0 6px;
  font-size:14px;
  letter-spacing:-.01em;
}
.supportMethodCard p{
  margin:0;
  font-size:12.5px;
  line-height:1.6;
  color:rgba(160,176,196,.94);
}
.supportMethodCard a{
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}
.supportChecklist{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.06);
}
.supportChecklist h2{
  margin:0 0 8px;
  font-size:13px;
  font-weight:600;
  color:rgba(234,240,248,.96);
}
.supportChecklist ul{
  margin:0;
  padding-left:18px;
  color:rgba(176,192,212,.92);
  font-size:12.5px;
}
.supportChecklist li{margin:6px 0}

/* —— FAQ —— */
.pageHead{
  max-width:760px;
  margin:0 auto 22px;
}
.pageTitle{
  margin:0 0 10px;
  font-size:clamp(26px, 4vw, 34px);
  letter-spacing:-.02em;
}
.pageLead{
  margin:0;
  color:rgba(160,176,198,.9);
  font-size:13.5px;
  line-height:1.7;
}
.faqList{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
/* DayZ features page: stacked accordion (cleaner than multi-column uneven cards) */
.featureAccordion{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:760px;
  margin:0 auto;
  width:100%;
}
.featureAccordion .faqItem{margin:0}
.featureAccordion .faqItem summary{
  padding:16px 18px;
  font-size:13.5px;
}
.featureAccordion .faqBody{padding:0 18px 16px}
.featureAccordion .productList{margin:12px 0 0}
.featureAccordion .faqBody .featuresSubLabel{margin-top:14px}
.featureAccordion .faqBody .featuresSubLabel:first-child{margin-top:0}
.featureAccordion .faqBody .productList{margin:6px 0 0}
.featureAccordion .faqItem summary{font-weight:600}

/* Features page: centered section title, no heavy divider under heading */
.featuresSectionHead.sectionHead.center{
  padding-bottom:4px;
  margin-bottom:14px;
  border-bottom:0;
}
.featuresSectionHead .sectionSub{
  max-width:600px;
}

.featureDropdownGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:12px;
  align-items:start;
}
.featureDropdownGrid .faqItem{margin:0}
.featureDropdownGrid .faqItem summary{padding:16px 18px}
.featureDropdownGrid .faqBody{padding:0 18px 16px}
.featureDropdownGrid .productList{margin:12px 0 0}
.featuresPageIntro{
  max-width:760px;
  margin:0 auto 24px;
  padding:20px 22px;
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(24,24,24,.62), rgba(12,12,12,.74));
  box-shadow:var(--shadowSoft);
}
.featuresBackAction{margin-top:12px}
.featuresSubLabel{
  margin:16px 0 8px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.11em;
  color:rgb(var(--accentRgb) / .82);
}
.featuresSubLabel:first-child{margin-top:4px}
.featureDropdownGrid .faqBody .featuresSubLabel{margin-top:14px}
.featureDropdownGrid .faqBody .featuresSubLabel:first-child{margin-top:4px}
.featureDropdownGrid .faqBody .productList{margin:6px 0 0}
.featureDropdownGrid .faqItem summary{font-weight:600}
.faqItem{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(16,16,16,.82);
  overflow:hidden;
  transition:border-color .16s ease, background .16s ease;
}
.faqItem:hover{
  border-color:rgba(255,255,255,.14);
  background:rgba(18,18,18,.86);
}
.faqItem summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  font-size:13.5px;
  font-weight:600;
  color:rgba(244,248,252,.97);
}
.faqItem summary::-webkit-details-marker{display:none}
.faqChevron{
  width:10px;height:10px;
  border-right:2px solid rgba(248,250,252,.65);
  border-bottom:2px solid rgba(248,250,252,.65);
  transform:rotate(45deg);
  transition:transform .16s ease, border-color .16s ease;
  flex-shrink:0;
  opacity:.85;
}
.faqItem[open] .faqChevron{border-color:rgb(var(--accentRgb) / .9)}
.faqItem[open] .faqChevron{transform:rotate(225deg)}
.faqBody{
  padding:8px 18px 18px;
  border-top:1px solid rgba(255,255,255,.07);
}
.faqBody p{
  margin:12px 0 0;
  font-size:13.5px;
  line-height:1.68;
  color:rgba(190,206,228,.92);
}
.faqBody .featuresSubLabel{
  margin:16px 0 8px;
}
.faqBody .featuresSubLabel:first-child{
  margin-top:12px;
}
.faqBody .productList{
  padding-left:20px;
  color:rgba(198,212,232,.92);
}
.faqBody .productList li{
  margin:7px 0;
  line-height:1.58;
}
.faqCta{
  max-width:760px;
  margin:20px auto 0;
  padding:14px 16px;
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(24,24,24,.58), rgba(12,12,12,.72));
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.faqCtaText{
  margin:0;
  color:rgba(170,186,206,.92);
  font-size:13.5px;
  font-weight:500;
  flex:1 1 220px;
}

/* —— Purchase complete —— */
.purchasedPage .container{max-width:560px}
.purchasedPage .crumbs{margin-bottom:20px}

.orderPanel{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(165deg, rgba(24,24,24,.92) 0%, rgba(12,12,12,.94) 45%, rgba(14,14,14,.88) 100%);
  box-shadow:var(--shadowSoft);
  padding:28px 28px 26px;
  position:relative;
  overflow:hidden;
}
.orderPanel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(520px 180px at 50% -40%, rgb(var(--accentRgb) / .12), transparent 70%);
  opacity:.9;
}
.orderPanel > *{position:relative;z-index:1}

.orderPanelHead{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:14px;
}
.orderSuccessIcon{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgb(var(--accentRgb) / .12);
  border:1px solid rgb(var(--accentRgb) / .28);
  color:var(--accent);
}
.orderSuccessIcon svg{
  width:26px;
  height:26px;
  display:block;
}

.orderKicker{
  margin:0;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgb(var(--accentRgb) / .9);
}
.orderTitle{
  margin:6px 0 0;
  font-size:clamp(24px, 4.2vw, 30px);
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.15;
  color:rgba(248,250,252,.98);
}

.orderLead{
  margin:0 0 20px;
  font-size:13px;
  line-height:1.55;
  color:rgba(148,163,184,.95);
}

.orderSummary{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.orderChip{
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  min-width:0;
}
.orderChipLabel{
  font-size:10px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(148,163,184,.88);
}
.orderChipValue{
  font-size:13px;
  font-weight:600;
  color:rgba(248,250,252,.96);
  letter-spacing:-.01em;
}
.orderChipAccent .orderChipValue{color:var(--accent)}

.licenseBox{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
  padding:14px 16px 16px;
  margin-bottom:16px;
}
.licenseBoxHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.licenseLabel{
  font-size:10px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(148,163,184,.88);
}
.licenseKey{
  display:block;
  font-family:ui-monospace,SFMono-Regular,"Cascadia Mono","Consolas",monospace;
  font-size:13px;
  font-weight:500;
  letter-spacing:.04em;
  word-break:break-all;
  line-height:1.5;
  color:rgba(226,232,240,.98);
  background:rgba(0,0,0,.28);
  border-radius:10px;
  padding:12px 14px;
  margin:0;
  border:1px solid rgba(255,255,255,.06);
}

.orderEmailCallout{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
  margin-bottom:20px;
}
.orderEmailCallout svg{
  flex-shrink:0;
  width:20px;
  height:20px;
  margin-top:1px;
  color:rgba(148,163,184,.85);
}
.orderEmailNote{
  margin:0;
  font-size:12px;
  line-height:1.55;
  color:rgba(180,195,220,.9);
}

.orderActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.orderActions .btn{min-height:44px}

.orderPlaceholderNote{
  margin:0;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
  font-size:11px;
  line-height:1.5;
  color:rgba(100,116,139,.88);
}

/* —— Flat UI pass (reduced depth/shadows) —— */
:root{
  --shadow:none;
  --shadowSoft:none;
}

.btnPrimary{
  background:rgb(var(--accentRgb) / .95);
  box-shadow:none;
}

.heroShowcase,
.statCard,
.feature,
.showcaseCard,
.videoCard,
.priceCard,
.supportPanel,
.faqItem,
.storeBar,
.storeCard,
.cta,
.modalHead,
.modalDialog,
.orderPanel,
.licenseBox{
  box-shadow:none !important;
  background:rgba(16,16,16,.92) !important;
}

.showcaseMedia,
.videoFrame,
.storeCardMediaSoon{
  background:rgba(13,13,13,.95) !important;
}

.heroAccent{
  text-shadow:none;
}

@media (max-width: 520px){
  .orderPanel{padding:22px 18px 20px}
  .orderPanelHead{align-items:center}
  .licenseBoxHead{flex-wrap:wrap}
}

@media (max-width: 980px){
  :root{--ui-scale:1}
  .section{padding:62px 0}
  .sectionTight{padding:50px 0}
  .heroInner{grid-template-columns:1fr;gap:14px;align-items:stretch}
  .heroShowcase{align-self:stretch}
  .heroLeft{align-items:center;text-align:center;padding-top:0}
  .heroTitle,.heroSub,.statLabel,.statValue{text-align:center}
  .heroCtas{justify-content:center}
  .stats{width:min(760px,100%);margin-top:14px}
  .featureGrid{grid-template-columns:repeat(2,1fr)}
  .videoGrid{grid-template-columns:1fr;gap:12px}
  .pricingGrid{grid-template-columns:1fr}
  .sectionHead{flex-direction:column;align-items:flex-start}
  .sectionHead:not(.center){border-bottom:none;padding-bottom:0}
  .productLayout{grid-template-columns:1fr}
  .storeBar{flex-direction:column;align-items:flex-start}
  .supportMethodGrid{grid-template-columns:1fr}

  .showcaseCardGrid{grid-template-columns:1fr}
  .featureDropdownGrid{grid-template-columns:1fr}
}

@media (max-width: 860px){
  .navToggle{display:inline-flex}
  .navMenu{
    position:fixed;
    inset:102px 14px auto 14px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    border-radius:var(--radius);
    border:1px solid var(--stroke2);
    background:linear-gradient(180deg, rgba(24,24,24,.92), rgba(11,11,11,.92));
    box-shadow:0 24px 100px rgba(0,0,0,.70);
    opacity:0;
    transform:translateY(-8px);
    pointer-events:none;
    visibility:hidden;
    transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .navMenu.isOpen{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
    visibility:visible;
    transition:opacity .18s ease, transform .18s ease, visibility 0s;
  }
  .navLink{padding:10px 12px}
  .stats{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important;transition:none !important}
  .announceTrack{animation:none !important}
}
