:root {
  --bg0: #06080f;
  --bg1: #0a0e1e;
  --txt: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .6);
  --faint: rgba(255, 255, 255, .38);
  --stroke: rgba(255, 255, 255, .07);
  --stroke-glow: rgba(59, 130, 246, .18);
  --glass: rgba(12, 14, 28, .45);
  --glass-hi: rgba(255, 255, 255, .03);
  --shadow: 0 16px 60px rgba(0, 0, 0, .5);
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 10px;
  --pad: clamp(16px, 3vw, 28px);
  --max: 1080px;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --teal: #2dd4bf;
  --grad: linear-gradient(135deg, var(--blue), var(--cyan) 55%, var(--teal));
  --ease: cubic-bezier(.22, .8, .22, 1);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  color: var(--txt);
  font-family: var(--sans);
  background: transparent;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Background layers ──
   Stack order (bottom → top):
   .bg-base  z:0  solid dark colour
   #particles z:1  canvas particle animation
   .bg        z:2  gradient orbs + dot grid
   content    z:3  topbar / main / mobileNav
*/
.bg-base {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg0);
  pointer-events: none;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.bg::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background:
    radial-gradient(ellipse 900px 600px at 18% 22%, rgba(59, 130, 246, .30), transparent 55%),
    radial-gradient(ellipse 700px 500px at 78% 28%, rgba(34, 211, 238, .22), transparent 55%),
    radial-gradient(ellipse 800px 600px at 55% 85%, rgba(45, 212, 191, .18), transparent 55%),
    radial-gradient(circle 400px at 30% 60%, rgba(59, 130, 246, .12), transparent 50%),
    radial-gradient(circle 350px at 70% 50%, rgba(34, 211, 238, .10), transparent 50%);
  animation: orbDrift 20s var(--ease) infinite alternate;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(59, 130, 246, .06) 1px, transparent 1px),
    radial-gradient(rgba(34, 211, 238, .04) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
  background-position: 0 0, 16px 16px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 35%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 35%, black, transparent 75%);
  opacity: .45;
}

@keyframes orbDrift {
  0% { transform: translate3d(-12px, -8px, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(16px, 12px, 0) rotate(3deg) scale(1.06); }
}

/* ── Content sits above background ── */
.topbar, main, .mobileNav { position: relative; z-index: 3; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Glass ── */
.glass {
  background: rgba(12, 14, 28, .35);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -1px 0 rgba(0, 0, 0, .15),
    0 0 0 1px rgba(59, 130, 246, .06);
  position: relative;
}

.glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, .15),
    rgba(34, 211, 238, .08) 40%,
    rgba(45, 212, 191, .1) 70%,
    transparent 90%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: rgba(12, 14, 28, .92); }
}

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 12px var(--pad) 0;
  border-radius: 999px;
  background: rgba(8, 10, 20, .45);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3), 0 0 40px rgba(59, 130, 246, .06);
}

.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  user-select: none;
}

.logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: url("../images/app.jpg") center / cover no-repeat;
  flex: 0 0 auto;
  box-shadow: 0 0 16px rgba(59, 130, 246, .2);
}

.brand__name { font-weight: 700; font-size: 14px; letter-spacing: -.1px; }
.brand__sub { display: block; font-size: 11px; color: var(--faint); font-weight: 500; margin-top: 1px; }

.nav { display: flex; gap: 2px; align-items: center; }
.nav a {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--muted);
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav a:hover { color: var(--txt); background: rgba(59, 130, 246, .08); }

.actions { display: inline-flex; align-items: center; gap: 6px; }

.btn {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  color: var(--txt);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, border-color .18s, box-shadow .18s, transform .18s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  user-select: none;
  position: relative;
}
.btn:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  transform: translateY(-1px);
}
.btn--primary {
  border-color: rgba(59, 130, 246, .3);
  background: linear-gradient(135deg, rgba(59, 130, 246, .18), rgba(34, 211, 238, .1));
  box-shadow: 0 0 20px rgba(59, 130, 246, .1), 0 0 40px rgba(34, 211, 238, .05);
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, .28), rgba(34, 211, 238, .16));
  border-color: rgba(59, 130, 246, .5);
  box-shadow: 0 0 30px rgba(59, 130, 246, .18), 0 0 60px rgba(34, 211, 238, .08);
}
.btn--icon { padding: 8px 10px; }
.btn svg { width: 15px; height: 15px; flex: 0 0 auto; opacity: .85; }
.lang-pill { font-family: var(--mono); letter-spacing: .3px; font-weight: 700; font-size: 12px; }

/* ── Mobile menu ── */
.menuBtn { display: none; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: var(--txt); padding: 8px 10px; border-radius: 999px; cursor: pointer; }
.menuBtn svg { width: 16px; height: 16px; display: block; }
.mobileNav { display: none; position: fixed; top: 60px; left: var(--pad); right: var(--pad); z-index: 19; border-radius: var(--r-md); padding: 12px; flex-direction: column; gap: 2px; }
.mobileNav.open { display: flex; }
.mobileNav a { padding: 10px 14px; border-radius: var(--r-sm); font-size: 13px; color: var(--muted); transition: color .15s, background .15s; }
.mobileNav a:hover { color: var(--txt); background: rgba(59,130,246,.08); }

@media (max-width: 860px) {
  .nav { display: none; }
  .menuBtn { display: flex; }
}

/* ── Hero ── */
.hero { padding: clamp(28px, 4.5vw, 56px) 0 20px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: stretch;
}
.card { padding: clamp(18px, 2.6vw, 26px); position: relative; z-index: 1; }
.hero__grid > .glass.card { display: flex; flex-direction: column; }
.hero__grid > .glass.card .cta-spacer { flex: 1 1 0; min-height: 8px; }

.hero-steps__title {
  font-size: 12px;
  font-weight: 650;
  margin: 0 0 8px;
  color: var(--faint);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hero-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }

.hero-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--stroke);
  background: rgba(59, 130, 246, .04);
  transition: background .18s, border-color .18s;
}
.hero-step:hover {
  background: rgba(59, 130, 246, .08);
  border-color: rgba(59, 130, 246, .2);
}
.hero-step__num {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(34,211,238,.15));
  color: #93c5fd;
  font-size: 11px; font-weight: 750;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  box-shadow: 0 0 10px rgba(59, 130, 246, .15);
}
.hero-step__text { font-size: 12px; font-weight: 600; color: var(--muted); }

.hero-footer { display: flex; flex-wrap: wrap; gap: 6px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.15);
  background: rgba(59, 130, 246, .06);
  color: var(--muted);
  font-size: 12px;
  width: fit-content;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(59, 130, 246, .4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(59,130,246,.4); }
  50% { box-shadow: 0 0 16px rgba(59,130,246,.7); }
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -.8px;
}
.grad {
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subtitle { font-size: 14.5px; color: var(--muted); line-height: 1.7; max-width: 58ch; margin: 0 0 16px; }
.cta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 12px; align-items: center; }
.ctaNote { font-size: 11.5px; color: var(--faint); margin-left: 4px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.12);
  background: rgba(59, 130, 246, .05);
  font-size: 11.5px;
  color: var(--muted);
  transition: border-color .18s, background .18s;
}
.badge:hover { border-color: rgba(59,130,246,.25); background: rgba(59,130,246,.1); }
.badge b { color: rgba(255,255,255,.82); font-weight: 650; }

/* ── Hero highlights ── */
.highlights { display: grid; gap: 8px; margin-top: 16px; }

.hl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .02);
  transition: border-color .18s, background .18s;
}
.hl:hover { border-color: rgba(59,130,246,.15); background: rgba(59,130,246,.04); }

.hl-icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hl-icon svg { width: 16px; height: 16px; opacity: .9; }
.hl-icon--blue { background: rgba(59,130,246,.15); color: #60a5fa; box-shadow: 0 0 12px rgba(59,130,246,.12); }
.hl-icon--cyan { background: rgba(34,211,238,.12); color: #67e8f9; box-shadow: 0 0 12px rgba(34,211,238,.1); }
.hl-icon--teal { background: rgba(45,212,191,.12); color: #5eead4; box-shadow: 0 0 12px rgba(45,212,191,.1); }

.hl-body b { display: block; font-size: 12.5px; font-weight: 650; margin-bottom: 2px; }
.hl-body span { display: block; font-size: 12px; color: var(--muted); line-height: 1.55; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,.15), rgba(34,211,238,.1), transparent); margin: 14px 0; }

/* ── Phone mockup ── */
.phone {
  padding: 10px;
  border-radius: 24px;
  background: rgba(8, 10, 20, .55);
  border: 1px solid rgba(59,130,246,.12);
  box-shadow:
    var(--shadow),
    0 0 60px rgba(59, 130, 246, .08),
    0 0 120px rgba(34, 211, 238, .04);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(59,130,246,.2), rgba(34,211,238,.1) 50%, rgba(45,212,191,.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.phone__screen {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  aspect-ratio: 9 / 19.5;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

.shotBar { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.thumb {
  width: 42px; height: 42px; padding: 0;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  overflow: hidden; cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s var(--ease);
  position: relative;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .65; transition: opacity .18s; }
.thumb:hover { transform: translateY(-2px); border-color: rgba(59,130,246,.3); box-shadow: 0 8px 24px rgba(59,130,246,.1); }
.thumb:hover img { opacity: .9; }
.thumb[aria-pressed="true"] { border-color: rgba(59,130,246,.5); box-shadow: 0 0 20px rgba(59,130,246,.15); }
.thumb[aria-pressed="true"] img { opacity: 1; }

/* ── Sections ── */
.section { padding: 16px 0; }
.secTitle { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.2px; }
.secDesc { margin: 0 0 14px; color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.pill {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faint);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.12);
  background: rgba(59,130,246,.05);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 8px;
}
.pill i { font-style: normal; width: 6px; height: 6px; border-radius: 999px; background: var(--blue); box-shadow: 0 0 6px rgba(59,130,246,.4); }

/* ── Features ── */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.feat {
  padding: 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  transition: border-color .22s, background .22s, box-shadow .22s, transform .22s var(--ease);
  position: relative;
}
.feat:hover {
  border-color: rgba(59,130,246,.18);
  background: rgba(59,130,246,.04);
  box-shadow: 0 8px 32px rgba(59,130,246,.06);
  transform: translateY(-2px);
}
.feat h3 { margin: 0 0 5px; font-size: 13.5px; font-weight: 650; letter-spacing: -.1px; }
.feat p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.65; }

/* ── Split / How / Themes ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.li {
  padding: 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  transition: border-color .18s, background .18s;
}
.li:hover { border-color: rgba(59,130,246,.15); background: rgba(59,130,246,.04); }
.li b { display: block; font-size: 13px; margin-bottom: 3px; }
.li span { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

/* ── Theme swatches ── */
.themeGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.themeCard {
  padding: 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--stroke);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color .18s, transform .18s var(--ease), box-shadow .18s;
}
.themeCard:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.15); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.themeCard::before { content: ""; display: block; width: 28px; height: 28px; border-radius: 8px; margin: 0 auto 6px; box-shadow: 0 0 12px rgba(0,0,0,.2); }
.themeCard[data-theme="neon"]::before  { background: linear-gradient(135deg, #6d28d9, #06b6d4); box-shadow: 0 0 14px rgba(109,40,217,.3); }
.themeCard[data-theme="sunset"]::before{ background: linear-gradient(135deg, #f97316, #ec4899); box-shadow: 0 0 14px rgba(249,115,22,.25); }
.themeCard[data-theme="aurora"]::before{ background: linear-gradient(135deg, #10b981, #3b82f6); box-shadow: 0 0 14px rgba(16,185,129,.2); }
.themeCard[data-theme="star"]::before  { background: linear-gradient(135deg, #1e3a5f, #60a5fa); box-shadow: 0 0 14px rgba(96,165,250,.2); }
.themeCard[data-theme="sakura"]::before{ background: linear-gradient(135deg, #fda4af, #f9a8d4); box-shadow: 0 0 14px rgba(253,164,175,.2); }
.themeCard[data-theme="ocean"]::before { background: linear-gradient(135deg, #0284c7, #22d3ee); box-shadow: 0 0 14px rgba(2,132,199,.2); }
.themeCard[data-theme="paper"]::before { background: linear-gradient(135deg, #d6d3d1, #fafaf9); box-shadow: 0 0 14px rgba(214,211,209,.15); }
.themeCard[data-theme="candy"]::before { background: linear-gradient(135deg, #f472b6, #facc15); box-shadow: 0 0 14px rgba(244,114,182,.2); }

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 8px; }
.shot {
  grid-column: span 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.01);
  min-height: 140px;
  transition: border-color .22s, box-shadow .22s, transform .22s var(--ease);
}
.shot:hover { border-color: rgba(59,130,246,.18); box-shadow: 0 12px 40px rgba(59,130,246,.08); transform: translateY(-3px); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .9; transition: opacity .22s; }
.shot:hover img { opacity: 1; }

/* ── Pricing ── */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.priceCard {
  padding: 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  transition: border-color .18s, transform .18s var(--ease);
}
.priceCard:hover { border-color: rgba(255,255,255,.12); transform: translateY(-2px); }
.priceCard--pro {
  border-color: rgba(59,130,246,.2);
  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(34,211,238,.04));
  position: relative;
}
.priceCard--pro:hover { border-color: rgba(59,130,246,.35); }
.proBadge {
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,.25);
  background: rgba(59,130,246,.1);
  padding: 3px 8px; border-radius: 999px;
  box-shadow: 0 0 12px rgba(59,130,246,.1);
  margin-right: auto;
}
.priceHead { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.priceName { font-weight: 750; font-size: 15px; }
.priceTag {
  font-family: var(--mono); font-weight: 750; letter-spacing: .3px;
  color: rgba(255,255,255,.8); font-size: 12px;
  border: 1px solid rgba(59,130,246,.15);
  background: rgba(59,130,246,.06);
  padding: 5px 10px; border-radius: 999px;
}
.priceList { margin: 8px 0 0; padding-left: 16px; color: var(--muted); line-height: 1.7; font-size: 13px; }

/* ── Specs ── */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.spec {
  padding: 12px; border-radius: var(--r-md);
  border: 1px solid var(--stroke); background: rgba(255,255,255,.02);
  transition: border-color .18s;
}
.spec:hover { border-color: rgba(59,130,246,.15); }
.spec b { display: block; font-size: 12px; color: rgba(255,255,255,.78); margin-bottom: 3px; }
.spec span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.footer { padding: 20px 0 36px; color: var(--faint); font-size: 12px; text-align: center; line-height: 1.7; }
.srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .shot { grid-column: span 3; }
  .themeGrid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .grid3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .themeGrid { grid-template-columns: repeat(2, 1fr); }
  .hero-steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .bg::before { animation: none; }
  .grad { animation: none; }
  .dot { animation: none; }
  #particles { display: none; }
}
