
/* ══════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════ */
:root {
  /* Brand colors */
  --c-purple: #7C3AED;
  --c-violet: #8B5CF6;
  --c-pink:   #EC4899;
  --c-orange: #F97316;
  --c-cyan:   #06B6D4;
  --c-teal:   #14B8A6;
  --c-lime:   #84CC16;
  --c-amber:  #F59E0B;

  /* Gradients */
  --g-brand: linear-gradient(135deg, #7C3AED, #EC4899);
  --g-warm:  linear-gradient(135deg, #F97316, #F59E0B);
  --g-cool:  linear-gradient(135deg, #06B6D4, #14B8A6);
  --g-punch: linear-gradient(135deg, #EC4899, #F97316);
  --g-full:  linear-gradient(135deg, #7C3AED 0%, #EC4899 40%, #F97316 70%, #F59E0B 100%);

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px; --s-6: 24px;  --s-8: 32px;  --s-10: 40px;
  --s-12: 48px;--s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Radius */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 36px;

  /* Section padding */
  --section-y: 100px;
}

/* ── DARK ─────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:       #060612;
  --bg-2:     #0B0B20;
  --bg-3:     #0F0F2A;
  --surface:  #13132E;
  --surface-2:#18184A;
  --border:   rgba(255,255,255,.07);
  --border-2: rgba(255,255,255,.12);
  --text-1:   #FFFFFF;
  --text-2:   rgba(255,255,255,.72);
  --text-3:   rgba(255,255,255,.42);
  --text-4:   rgba(255,255,255,.22);
  --nav-bg:   rgba(6,6,18,.82);
  --orb-op:   .15;
  --inv: 0;
}

/* ── LIGHT ────────────────────────────────────────── */
[data-theme="light"] {
  --bg:       #F7F7FE;
  --bg-2:     #EEEEFF;
  --bg-3:     #E8E8FF;
  --surface:  #FFFFFF;
  --surface-2:#F2F2FF;
  --border:   rgba(0,0,0,.06);
  --border-2: rgba(0,0,0,.1);
  --text-1:   #09090F;
  --text-2:   rgba(9,9,15,.65);
  --text-3:   rgba(9,9,15,.42);
  --text-4:   rgba(9,9,15,.22);
  --nav-bg:   rgba(247,247,254,.88);
  --orb-op:   .06;
  --inv: 1;
}

/* ══════════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'General Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background .35s ease, color .35s ease;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════════
   AMBIENT MESH
══════════════════════════════════════════════════════ */
.mesh {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(130px);
  opacity: var(--orb-op);
  will-change: transform;
  transition: opacity .5s;
}
.o1 { width: 800px; height: 800px; background: #7C3AED; top: -250px; left: -150px; animation: o1 22s ease-in-out infinite; }
.o2 { width: 600px; height: 600px; background: #EC4899; top: 25vh; right: -120px; animation: o2 28s ease-in-out infinite; }
.o3 { width: 500px; height: 500px; background: #06B6D4; bottom: 5vh; left: 10vw; animation: o3 20s ease-in-out infinite; }
.o4 { width: 380px; height: 380px; background: #F97316; bottom: -80px; right: 15vw; animation: o1 24s ease-in-out infinite 7s; }
@keyframes o1 { 0%,100%{transform:translate(0,0)} 30%{transform:translate(70px,-50px)} 70%{transform:translate(-45px,70px)} }
@keyframes o2 { 0%,100%{transform:translate(0,0)} 40%{transform:translate(-80px,45px)} 75%{transform:translate(55px,-65px)} }
@keyframes o3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-60px,-45px) scale(1.08)} }

body::after {
  content: ''; position: fixed; inset: 0; z-index: 9997;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03; mix-blend-mode: overlay;
  transition: opacity .35s;
}

/* ══════════════════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════════════════ */
.pbar { position: fixed; top: 0; left: 0; height: 2px; z-index: 9999; background: var(--g-full); width: 0; transition: width .1s; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 clamp(20px, 5%, 60px);
  background: var(--nav-bg);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-bottom: 1px solid var(--border);
  transition: background .35s, border-color .35s;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; height: 68px; gap: 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Clash Display', 'General Sans', sans-serif;
  font-weight: 700; font-size: 1.3rem; 
  flex-shrink: 0; margin-right: 48px;
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--g-brand); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 18px rgba(124,58,237,.45);
}
.logo-text {
  background: var(--g-full); background-size: 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%,100%{background-position:0%} 50%{background-position:100%} }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  padding: 7px 14px; border-radius: 9px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text-1); background: rgba(124,58,237,.08); }

.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* Theme toggle */
.toggle {
  width: 46px; height: 26px; border-radius: 100px; position: relative;
  background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.28);
  cursor: pointer; transition: all .3s; flex-shrink: 0;
}
[data-theme="light"] .toggle { background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.25); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #A78BFA; transition: transform .3s, background .3s;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; line-height: 1;
}
[data-theme="light"] .toggle-knob { transform: translateX(20px); background: #F97316; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  font-family: 'General Sans', sans-serif;
  font-size: .875rem; font-weight: 600; white-space: nowrap;
  transition: all .25s cubic-bezier(.23,1,.32,1); cursor: pointer;
}
.btn-pill { border-radius: 100px; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--text-1); background: var(--surface-2); }
.btn-primary {
  background: var(--g-brand); color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.38), 0 0 0 1px rgba(124,58,237,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(124,58,237,.52), 0 0 0 1px rgba(236,72,153,.3); }
.btn-outline {
  background: var(--surface); color: var(--text-2);
  border: 1px solid var(--border-2);
  position: relative; overflow: hidden;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: var(--g-brand); opacity: 0; transition: opacity .3s;
}
.btn-outline:hover { color: #fff; border-color: transparent; transform: translateY(-2px); }
.btn-outline:hover::before { opacity: 1; }
.btn-outline span { position: relative; z-index: 1; }

.m-tog { display: none !important; flex-direction: column; gap: 5px; padding: 8px; margin-left: 4px; }
.m-tog span { display: block; width: 22px; height: 1.5px; background: var(--text-3); border-radius: 2px; transition: .3s; }

/* ══════════════════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════════════════ */
.m-nav {
  display: none !important; position: fixed; inset: 0; z-index: 300;
  background: var(--bg); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.m-nav.open { display: flex !important; }
.m-nav a {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem); font-weight: 700;
  color: var(--text-2);  transition: color .2s;
}
.m-nav a:hover { color: var(--text-1); }
.m-close { position: absolute; top: 22px; right: 24px; font-size: 1.5rem; color: var(--text-3); cursor: pointer; transition: color .2s; padding: 8px; }
.m-close:hover { color: var(--text-1); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px clamp(20px,5%,60px) 80px;
  position: relative; z-index: 1; text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.28);
  padding: 7px 18px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; color: #C084FC;
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 32px;
  animation: slideDown .7s ease both;
}
.eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #C084FC;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(192,132,252,.5);transform:scale(1)} 50%{box-shadow:0 0 0 5px rgba(192,132,252,0);transform:scale(1.25)} }
@keyframes slideDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:none} }
@keyframes slideUp   { from{opacity:0;transform:translateY(28px)}  to{opacity:1;transform:none} }

.hero-h1 {
  font-family: 'Clash Display', 'General Sans', sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 700; line-height: .96;
   margin-bottom: 28px;
  animation: slideUp .8s ease both .1s;word-spacing: 8px;
}
.hero-h1 .line-1 { display: block; color: var(--text-1); }
.hero-h1 .line-2 {
  display: block;
  background: var(--g-full); background-size: 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.1rem);
    font-weight: 400;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.85;
    animation: slideUp .8s ease both .18s;
}
.hero-sub strong { font-weight: 600; color: var(--text-2); }

.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  animation: slideUp .8s ease both .26s; margin-bottom: 20px;
}
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--text-4);
    animation: slideUp .8s ease both .34s;
    color: var(--text-2);
    font-weight: 500;
}
.proof-item { display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════════════════
   3D BROWSER
══════════════════════════════════════════════════════ */
.mockup-wrap {
  width: 100%; max-width: 1080px;
  margin-top: 72px; position: relative; z-index: 1;
  perspective: 1400px;
  animation: slideUp .8s ease both .42s;
}
.mockup {
  transform: rotateX(13deg) rotateY(-1.5deg) scale(.96);
  transform-origin: center 65%;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow:
    0 0 0 1px rgba(124,58,237,.12),
    0 40px 80px rgba(0,0,0,.45),
    0 80px 160px rgba(124,58,237,.1),
    inset 0 1px 0 rgba(255,255,255,.07);
}
[data-theme="light"] .mockup {
  box-shadow:
    0 0 0 1px rgba(124,58,237,.1),
    0 40px 80px rgba(0,0,0,.12),
    0 80px 160px rgba(124,58,237,.07),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.mockup-wrap:hover .mockup { transform: rotateX(4deg) rotateY(0deg) scale(1); }
.m-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px;
  background: rgba(18,18,42,.95); border-bottom: 1px solid var(--border);
}
[data-theme="light"] .m-bar { background: rgba(238,238,255,.97); }
.m-dots { display: flex; gap: 6px; }
.m-dot { width: 12px; height: 12px; border-radius: 50%; }
.m-url {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px; padding: 6px 14px;
  display: flex; align-items: center; gap: 7px; font-size: .76rem;
}
[data-theme="light"] .m-url { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
.m-url-lock { color: #86efac; font-size: .68rem; }
.m-url-domain { color: var(--text-3); }
.m-url-slug { color: var(--text-2); font-weight: 600; }

.m-screen {
  display: grid; grid-template-columns: 260px 1fr;
  background: var(--bg-2); min-height: 460px;
}
.m-sidebar {
  background: rgba(255,255,255,.018); border-right: 1px solid var(--border);
  padding: 28px 22px; display: flex; flex-direction: column; gap: 18px;
}
[data-theme="light"] .m-sidebar { background: rgba(0,0,0,.018); }
.m-av {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--g-brand); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700; font-size: 1.25rem; color: #fff;
  box-shadow: 0 8px 28px rgba(124,58,237,.42);
}
.m-name { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-1); }
.m-role { font-size: .72rem; color: var(--c-violet); font-weight: 500; margin-top: 3px; }
.m-loc  { font-size: .68rem; color: var(--text-3); margin-top: 2px; }
.m-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.m-tag  { font-size: .65rem; padding: 3px 9px; border-radius: 100px; font-weight: 600; }
.mt-a { background: rgba(124,58,237,.16); border: 1px solid rgba(124,58,237,.25); color: #C084FC; }
.mt-b { background: rgba(236,72,153,.13); border: 1px solid rgba(236,72,153,.2);  color: #F9A8D4; }
.mt-c { background: rgba(6,182,212,.12);  border: 1px solid rgba(6,182,212,.2);   color: #67E8F9; }
.mt-d { background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.2);  color: #FDBA74; }
.m-sep { height: 1px; background: var(--border); }
.bs-nav-list { display: flex; flex-direction: column; gap: 3px; }
.m-ni {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 11px; border-radius: 9px;
  font-size: .76rem; color: var(--text-3); cursor: pointer; transition: all .18s;
}
.m-ni.on { background: rgba(124,58,237,.12); color: #C084FC; }
.m-ni:hover { background: rgba(124,58,237,.07); color: var(--text-2); }
.ni-pip { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.m-content { padding: 28px 26px; overflow: hidden; }
.m-sec-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 14px; }
.m-proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 22px; }
.m-proj {
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: 12px; padding: 15px; cursor: pointer; transition: all .25s;
}
[data-theme="light"] .m-proj { background: rgba(0,0,0,.02); }
.m-proj:hover { background: rgba(124,58,237,.07); border-color: rgba(124,58,237,.2); transform: translateY(-2px); }
.m-proj-ico { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .75rem; margin-bottom: 9px; }
.m-proj-t { font-size: .78rem; font-weight: 700; color: var(--text-1); margin-bottom: 3px; }
.m-proj-d { font-size: .68rem; color: var(--text-3); line-height: 1.5; }
.m-proj-tech { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 7px; }
.m-ptag { font-size: .6rem; padding: 2px 7px; border-radius: 100px; background: rgba(255,255,255,.05); color: var(--text-3); }
[data-theme="light"] .m-ptag { background: rgba(0,0,0,.05); }
.m-skills { display: flex; flex-direction: column; gap: 9px; }
.m-sk { display: flex; align-items: center; gap: 10px; }
.m-sk-n { font-size: .7rem; font-weight: 500; color: var(--text-3); width: 62px; flex-shrink: 0; }
.m-sk-tr { flex: 1; height: 4px; background: var(--surface); border-radius: 100px; }
.m-sk-f  { height: 100%; border-radius: 100px; }

/* Floating chips */
.chip {
  position: absolute; z-index: 5;
  background: var(--surface); border: 1px solid var(--border-2);
  backdrop-filter: blur(20px);
  border-radius: 14px; padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: .79rem; font-weight: 600; color: var(--text-1);
  box-shadow: 0 10px 36px rgba(0,0,0,.22); white-space: nowrap;
}
[data-theme="light"] .chip { box-shadow: 0 10px 36px rgba(0,0,0,.1); }
.chip-a { top: 52px; right: -32px; animation: chipf 5.5s ease-in-out infinite; }
.chip-b { bottom: 90px; left: -40px; animation: chipf 7s ease-in-out infinite 1.8s; }
.chip-c { top: 165px; left: -48px; animation: chipf 6.2s ease-in-out infinite 3.4s; }
@keyframes chipf { 0%,100%{transform:translateY(0) rotate(-.4deg)} 50%{transform:translateY(-13px) rotate(.4deg)} }
.chip-ico { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .88rem; flex-shrink: 0; }

/* Scroll hint */
.scroll-hint {
  margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 9px;
  animation: slideUp .8s ease both .7s;
}
.scroll-pill {
    width: 24px;
    height: 40px;
    border-radius: 100px;
    border: 1.5px solid var(--text-3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}
.scroll-ball {
    width: 4px;
    height: 8px;
    border-radius: 100px;
    background: var(--text-3);
    animation: scrollanim 2.1s ease-in-out infinite;
}
@keyframes scrollanim { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }
.scroll-lbl {
    font-size: .65rem;
    color: var(--text-3);
    letter-spacing: .1em;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   STATS — COMPLETELY NEW DESIGN
   Horizontal cards with gradient borders + large numbers
══════════════════════════════════════════════════════ */
.stats-section {
  padding: 80px clamp(20px,5%,60px);
  position: relative; z-index: 1;
}
.stats-inner { max-width: 1280px; margin: 0 auto; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  transition: opacity .35s;
}
.stat-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: var(--r-xl);
  opacity: 0; transition: opacity .35s;
}
.stat-card:hover { transform: translateY(-6px); }
.stat-card:hover::after { opacity: 1; }

.sc-1::before { background: linear-gradient(90deg, #7C3AED, #EC4899); opacity: 1; }
.sc-2::before { background: linear-gradient(90deg, #EC4899, #F97316); opacity: 1; }
.sc-3::before { background: linear-gradient(90deg, #06B6D4, #14B8A6); opacity: 1; }
.sc-4::before { background: linear-gradient(90deg, #F97316, #F59E0B); opacity: 1; }
.sc-1::after  { background: radial-gradient(circle at 0% 0%, rgba(124,58,237,.06), transparent 60%); }
.sc-2::after  { background: radial-gradient(circle at 0% 0%, rgba(236,72,153,.06), transparent 60%); }
.sc-3::after  { background: radial-gradient(circle at 0% 0%, rgba(6,182,212,.06), transparent 60%); }
.sc-4::after  { background: radial-gradient(circle at 0% 0%, rgba(249,115,22,.06), transparent 60%); }

.stat-number {
  font-family: 'Clash Display', 'General Sans', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700; 
  line-height: 1; margin-bottom: 10px;
  position: relative; z-index: 1;
}
.stat-label { font-size: .82rem; font-weight: 500; color: var(--text-3); position: relative; z-index: 1; }
.c-p { color: #A78BFA; }
.c-k { color: #F472B6; }
.c-c { color: #22D3EE; }
.c-o { color: #FB923C; }

/* Decorative big digit in background */
.stat-bg-num {
  position: absolute; right: 20px; bottom: -10px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700; font-size: 7rem;
  line-height: 1; 
  opacity: .04; color: var(--text-1);
  pointer-events: none; user-select: none;
  transition: opacity .35s;
}
.stat-card:hover .stat-bg-num { opacity: .07; }

/* ══════════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════════ */
.section {
  padding: var(--section-y) clamp(20px,5%,60px);
  position: relative; z-index: 1;
}
.section-alt { background: rgba(124,58,237,.025); }
[data-theme="light"] .section-alt { background: rgba(124,58,237,.02); }
.w { max-width: 1280px; margin: 0 auto; }

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

.s-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 18px;
}
.st-p { background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22); color: #A78BFA; }
.st-k { background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.2);  color: #F472B6; }
.st-c { background: rgba(6,182,212,.1);  border: 1px solid rgba(6,182,212,.2);   color: #22D3EE; }
.st-o { background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);  color: #FB923C; }
.st-l { background: rgba(132,204,22,.1); border: 1px solid rgba(132,204,22,.2);  color: #639f00; }
.st-t { background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.2);  color: #2DD4BF; }

.section-title {
    font-family: 'Clash Display', 'General Sans', sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 700;
    line-height: 1.06;
    color: var(--text-1);
    margin-bottom: 18px;
    word-spacing: 8px;
}
.section-title .grad {
  background: var(--g-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-2);
    line-height: 1.85;
    max-width: 540px;
}

/* ══════════════════════════════════════════════════════
   STEPS
══════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s !important;
}
.step::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; border-radius: var(--r-xl); }
.step:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,.15); }
.step:hover::before { opacity: 1; }
.step-1 { border-top: 2px solid #7C3AED; }
.step-2 { border-top: 2px solid #EC4899; }
.step-3 { border-top: 2px solid #06B6D4; }
.step-1::before { background: radial-gradient(150% 100% at 0% 100%, rgba(124,58,237,.08), transparent); }
.step-2::before { background: radial-gradient(150% 100% at 0% 100%, rgba(236,72,153,.08), transparent); }
.step-3::before { background: radial-gradient(150% 100% at 0% 100%, rgba(6,182,212,.08),  transparent); }
.step-n {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.sn-1 { background: var(--g-brand); box-shadow: 0 8px 24px rgba(124,58,237,.38); }
.sn-2 { background: var(--g-punch); box-shadow: 0 8px 24px rgba(236,72,153,.38); }
.sn-3 { background: var(--g-cool);  box-shadow: 0 8px 24px rgba(6,182,212,.38);  }
.step h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-1);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    word-spacing: 3px;
}
.step p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════
   THEMES
══════════════════════════════════════════════════════ */
.themes-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
  margin-bottom: 52px;
}
.themes-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.theme-card {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .4s cubic-bezier(.23,1,.32,1), border-color .3s;
  cursor: pointer; position: relative;
}
.theme-card:hover { transform: translateY(-10px) scale(1.022); z-index: 2; }
.t-glow { position: absolute; inset: -1px; border-radius: 18px; opacity: 0; transition: opacity .35s; pointer-events: none; }
.theme-card:hover .t-glow { opacity: 1; }
.tg-1 { box-shadow: 0 0 0 1.5px #7C3AED, 0 0 44px rgba(124,58,237,.28); }
.tg-2 { box-shadow: 0 0 0 1.5px #EC4899, 0 0 44px rgba(236,72,153,.28); }
.tg-3 { box-shadow: 0 0 0 1.5px #06B6D4, 0 0 44px rgba(6,182,212,.28);  }
.tg-4 { box-shadow: 0 0 0 1.5px #F97316, 0 0 44px rgba(249,115,22,.28); }
.tg-5 { box-shadow: 0 0 0 1.5px #14B8A6, 0 0 44px rgba(20,184,166,.28); }
.tg-6 { box-shadow: 0 0 0 1.5px #84CC16, 0 0 44px rgba(132,204,22,.28); }
.t-preview { height: 176px; padding: 14px; }
.t-footer { padding: 13px 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.t-name { font-size: .8rem; font-weight: 600; color: var(--text-2); }
.badge { font-size: .62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.b-free { background: rgba(132,204,22,.1); border: 1px solid rgba(132,204,22,.2); color: #639f00; }
.b-pro  { background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2); color: #A78BFA; }

/* Theme preview art */
.tp-w { background: #F8F8FF; border-radius: 10px; padding: 12px; height: 100%; }
.tw-a { width: 26px; height: 26px; border-radius: 50%; background: var(--g-brand); margin-bottom: 8px; }
.tw-n { height: 7px; width: 80px; background: #111; border-radius: 2px; margin-bottom: 5px; }
.tw-r { height: 5px; width: 54px; background: #7C3AED; border-radius: 2px; margin-bottom: 10px; }
.tw-c { display: flex; gap: 6px; }
.tw-cd { flex: 1; height: 46px; background: rgba(0,0,0,.03); border-radius: 8px; border: 1px solid #E5E5F0; }

.tp-d { background: #0A0A1A; border-radius: 10px; padding: 14px; height: 100%; }
.td-h { height: 17px; width: 110px; background: var(--g-brand); border-radius: 4px; margin-bottom: 8px; }
.td-s { height: 5px; width: 68px; background: rgba(255,255,255,.12); border-radius: 2px; margin-bottom: 12px; }
.td-c { display: flex; gap: 6px; }
.td-cd { flex: 1; height: 44px; background: rgba(124,58,237,.1); border-radius: 8px; border: 1px solid rgba(124,58,237,.18); }

.tp-t { background: #0D1117; border-radius: 10px; padding: 14px; height: 100%; }
.tt-b { display: flex; gap: 5px; margin-bottom: 10px; }
.tt-d { width: 8px; height: 8px; border-radius: 50%; }
.tt-l { height: 5px; border-radius: 2px; margin-bottom: 6px; }

.tp-c2 { background: #EEEEFF; border-radius: 10px; display: flex; align-items: center; justify-content: center; height: 100%; padding: 14px; }
.tc-box { background: #fff; border-radius: 12px; padding: 12px 16px; width: 90%; text-align: center; box-shadow: 0 4px 18px rgba(124,58,237,.1); }
.tc-av { width: 24px; height: 24px; border-radius: 50%; background: var(--g-brand); margin: 0 auto 7px; }
.tc-n { height: 6px; width: 68px; background: #111; border-radius: 2px; margin: 0 auto 5px; }
.tc-r { height: 4px; width: 48px; background: #7C3AED; border-radius: 2px; margin: 0 auto; }

.tp-sb { background: #F2F2FF; border-radius: 10px; display: flex; overflow: hidden; height: 100%; }
.ts-l { width: 42px; background: #111; display: flex; flex-direction: column; align-items: center; padding: 10px 0; gap: 8px; flex-shrink: 0; }
.ts-av { width: 24px; height: 24px; border-radius: 50%; background: var(--g-brand); }
.ts-d  { width: 16px; height: 2.5px; background: rgba(255,255,255,.12); border-radius: 1px; }
.ts-r  { flex: 1; padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.ts-l2 { height: 5px; background: #DDD; border-radius: 2px; }

.tp-g { background: linear-gradient(135deg, #667EEA28, #764BA218); border-radius: 10px; padding: 14px; position: relative; overflow: hidden; height: 100%; }
.tp-g::before { content: ''; position: absolute; width: 80px; height: 80px; border-radius: 50%; background: rgba(124,58,237,.22); top: -22px; right: -22px; }
.tg-card { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26); border-radius: 10px; padding: 12px; position: relative; }
.tg-av { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.42); margin-bottom: 7px; }
.tg-n  { height: 6px; width: 76px; background: rgba(255,255,255,.6); border-radius: 2px; margin-bottom: 5px; }
.tg-r  { height: 4px; width: 52px; background: rgba(255,255,255,.32); border-radius: 2px; }

/* ══════════════════════════════════════════════════════
   FEATURES BENTO
══════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 16px;
}
.feat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 34px;
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s !important;
    overflow: hidden;
    position: relative;
}
.feat::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; }
.feat:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,.12); }
.feat:hover::before { opacity: 1; }
.fa { grid-column: span 5; } .fb { grid-column: span 4; } .fc { grid-column: span 3; }
.fd { grid-column: span 3; } .fe { grid-column: span 4; } .ff { grid-column: span 5; }
.fa::before { background: radial-gradient(120% 80% at 0% 100%, rgba(124,58,237,.08), transparent); }
.fb::before { background: radial-gradient(120% 80% at 100% 0%,   rgba(236,72,153,.08), transparent); }
.fc::before { background: radial-gradient(120% 80% at 50% 50%,   rgba(6,182,212,.08),  transparent); }
.fd::before { background: radial-gradient(120% 80% at 50% 50%,   rgba(249,115,22,.08), transparent); }
.fe::before { background: radial-gradient(120% 80% at 0% 0%,     rgba(20,184,166,.08), transparent); }
.ff::before { background: radial-gradient(120% 80% at 100% 100%, rgba(132,204,22,.08), transparent); }
.feat-ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 22px; position: relative; z-index: 1; }
.fi-1 { background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2); }
.fi-2 { background: rgba(236,72,153,.1); border: 1px solid rgba(236,72,153,.2); }
.fi-3 { background: rgba(6,182,212,.1);  border: 1px solid rgba(6,182,212,.2);  }
.fi-4 { background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2); }
.fi-5 { background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.2); }
.fi-6 { background: rgba(132,204,22,.1); border: 1px solid rgba(132,204,22,.2); }
.feat h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-1);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    word-spacing: 3px;
}
.feat p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════
   URL DEMO
══════════════════════════════════════════════════════ */
.name-card {
  max-width: 660px; margin: 60px auto 0;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--r-2xl); padding: 48px 44px;
  box-shadow: 0 40px 80px rgb(0 0 0 / 4%), 0 0 0 1px rgba(124, 58, 237, .07);
  text-align: center; position: relative; overflow: hidden;
}
.name-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: var(--g-full); }
.demo-hint { font-size: .76rem; font-weight: 600; color: var(--text-4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 22px; }
.url-field {
  display: flex; align-items: center;
  background: var(--bg-2); border: 1.5px solid var(--border-2);
  border-radius: 13px; padding: 7px 7px 7px 20px;
  margin-bottom: 12px; transition: border-color .22s, box-shadow .22s;
}
.url-field:focus-within { border-color: rgba(124,58,237,.5); box-shadow: 0 0 0 4px rgba(124,58,237,.1); }
.url-prefix { font-size: .84rem; color: var(--text-4); white-space: nowrap; flex-shrink: 0; font-weight: 500; }
.url-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: 'General Sans', sans-serif;
  font-size: .96rem; font-weight: 600; color: var(--text-1);
  padding: 8px 10px; caret-color: #8B5CF6;
}
.url-input::placeholder { color: var(--text-4); font-weight: 400; }
.url-msg { font-size: .8rem; min-height: 22px; margin-bottom: 16px; transition: all .25s; }
.u-yes { color: #639f00; } .u-no { color: #FCA5A5; }
.go-btn {
  width: 100%; padding: 16px;
  border-radius: 12px;
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  background: var(--g-full); background-size: 200%;
  box-shadow: 0 6px 24px rgba(124,58,237,.38);
  border: none; cursor: pointer; 
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.go-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transition: left .65s;
}
.go-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(124,58,237,.5); }
.go-btn:hover::after { left: 100%; }
.demo-note { font-size: .74rem; color: var(--text-4); margin-top: 14px; line-height: 1.9; }
.demo-note span { color: #639f00; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 36px;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.feat-card {
  background: linear-gradient(160deg, rgba(124,58,237,.1), rgba(236,72,153,.05));
  border-color: rgba(124,58,237,.32);
  box-shadow: 0 0 0 1px rgba(124,58,237,.14), 0 44px 80px rgba(124,58,237,.1);
  transform: scale(1.04);
}
.price-card.feat-card:hover { transform: scale(1.04) translateY(-6px); }
.price-card.feat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -5%, rgba(124,58,237,.12), transparent 52%);
  pointer-events: none;
}
.popular-pill {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--g-brand); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em;
  padding: 5px 18px; border-radius: 0 0 11px 11px; white-space: nowrap;
}
.pc-plan { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.pc-price {
    font-family: 'Clash Display', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.pc-sym { font-size: 1.4rem; margin-top: 8px; font-weight: 600; }
.pc-billing { font-size: .84rem; color: var(--text-3); margin-top: 12px; margin-bottom: 28px; }
.pc-line { height: 1px; background: var(--border); margin: 28px 0; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pc-list li { font-size: .875rem; color: var(--text-2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.pc-yes { color: #639f00; font-weight: 700; flex-shrink: 0; }
.pc-no  { color: var(--text-4); flex-shrink: 0; }
.pc-off { opacity: .32; text-decoration: line-through; }
.pc-btn {
    width: 100%;
    margin-top: 32px;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Clash Display', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    border: none;
    letter-spacing: 1px;
}
.pc-info{
    text-align: center;
    font-size: .9rem;
    color: var(--text-2);
    margin-top: 28px;
    font-weight: 400;
}
.pcb-ghost { background: var(--surface-2); border: 1.5px solid var(--border-2); color: var(--text-2); }
.pcb-ghost:hover { background: var(--surface); color: var(--text-1); transform: translateY(-1px); }
.pcb-main { background: var(--g-brand); color: #fff; box-shadow: 0 6px 22px rgba(124,58,237,.32); }
.pcb-main:hover { box-shadow: 0 10px 38px rgba(124,58,237,.5); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 32px;
  transition: transform .35s cubic-bezier(.23,1,.32,1); position: relative; overflow: hidden;
}
.testi:hover { transform: translateY(-4px); }
.testi::before {
  content: '"'; position: absolute; top: -14px; right: 24px;
  font-family: 'Clash Display', sans-serif;
  font-size: 9rem; font-weight: 700; line-height: 1;
  opacity: .035; color: var(--text-1); pointer-events: none;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #F59E0B; font-size: .85rem; }
.t-quote {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-1);
    line-height: 1.4;
    margin-bottom: 15px;
}
.t-body {
    font-size: .875rem;
    color: var(--text-3);
    line-height: 1.78;
    margin-bottom: 24px;
    font-weight: 300;
    font-weight: 400;
}
.t-author { display: flex; align-items: center; gap: 13px; }
.t-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: .88rem; color: #fff; flex-shrink: 0; }
.t-name { font-size: .875rem; font-weight: 600; color: var(--text-1); }
.t-role {
    font-size: .73rem;
    color: var(--text-2);
    margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════ */
.cta-wrap {
  padding: var(--section-y) clamp(20px,5%,60px);
  position: relative; z-index: 1; overflow: hidden; text-align: center;
}
.cta-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(124,58,237,.16), rgba(236,72,153,.06) 45%, transparent 70%);
  pointer-events: none;
}
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note { font-size: .78rem; color: var(--text-4); margin-top: 22px; }
.cta-note {
    font-size: .9rem;
    color: var(--text-2);
    margin-top: 22px;
    font-weight: 400;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  padding: 80px clamp(20px,5%,60px) 40px;
  background: var(--bg-2); border-top: 1px solid var(--border);
  position: relative; z-index: 1; transition: background .35s, border-color .35s;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px;
}
.f-brand .logo { margin-bottom: 16px; }
.f-brand p {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.85;
    max-width: 270px;
    font-weight: 400;
}
.f-col h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 20px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.f-col ul li a {
    font-size: .875rem;
    color: var(--text-3);
    transition: color .18s;
    font-weight: 500;
}
.f-col ul li a:hover { color: var(--text-1); }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--border-2);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.f-copy {
    font-size: .8rem;
    color: var(--text-2);
    font-weight: 500;
}
.f-lns  { display: flex; gap: 20px; }
.f-lns a {
    font-size: .8rem;
    color: var(--text-2);
    transition: color .18s;
}
.f-lns a:hover { color: var(--text-2); }

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s}
.d4{transition-delay:.28s} .d5{transition-delay:.35s} .d6{transition-delay:.42s}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .themes-grid     { grid-template-columns: repeat(3,1fr); }
  .bento           { grid-template-columns: 1fr 1fr; }
  .fa,.fb,.fc,.fd,.fe,.ff { grid-column: span 1; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 960px) {
  .nav-links       { display: none; }
  .nav-right .btn-ghost { display: none; }
  .m-tog           { display: flex !important; }
  .stats-row       { grid-template-columns: repeat(2,1fr); }
  .steps-grid      { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .price-card.feat-card { transform: none; }
  .price-card.feat-card:hover { transform: translateY(-6px); }
  .testi-grid      { grid-template-columns: 1fr; }
  .m-screen        { grid-template-columns: 1fr; }
  .m-sidebar       { display: none; }
  .chip-c          { display: none; }
}
@media (max-width: 720px) {
  :root { --section-y: 72px; }
  .themes-grid     { grid-template-columns: repeat(2,1fr); }
  .hero-cta        { flex-direction: column; align-items: stretch; }
  .hero-cta .btn   { justify-content: center; }
  .chip-a, .chip-b { display: none; }
  .footer-grid     { grid-template-columns: 1fr; gap: 36px; }
  .bento           { grid-template-columns: 1fr; }
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .section-title   { font-size: clamp(1.9rem, 5.5vw, 2.4rem); }
}
@media (max-width: 460px) {
  :root { --section-y: 56px; }
  .stats-row       { grid-template-columns: 1fr; }
  .themes-grid     { grid-template-columns: 1fr 1fr; }
  .stats-section   { padding: 48px clamp(16px,5%,60px); }
}
