*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #03030A;
  --surface: #0A0A18;
  --border:  rgba(255,255,255,.07);
  --text:    #F1F5F9;
  --muted:   #64748B;
  --sky:     #0EA5E9;
  --violet:  #8B5CF6;
  --emerald: #10B981;
  --amber:   #F59E0B;
  --pink:    #EC4899;
  --cyan:    #06B6D4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Background ── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(130px); animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px; top: -280px; left: -180px;
  background: radial-gradient(circle, rgba(14,165,233,.16), transparent 70%);
}
.orb-2 {
  width: 550px; height: 550px; top: 40%; right: -160px;
  background: radial-gradient(circle, rgba(139,92,246,.15), transparent 70%);
  animation-duration: 17s; animation-delay: -6s;
}
.orb-3 {
  width: 480px; height: 480px; bottom: -120px; left: 20%;
  background: radial-gradient(circle, rgba(16,185,129,.09), transparent 70%);
  animation-duration: 24s; animation-delay: -12s;
}
@keyframes orbFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  25%      { transform:translate(40px,-55px) scale(1.06); }
  50%      { transform:translate(-25px,35px) scale(.94); }
  75%      { transform:translate(50px,22px) scale(1.03); }
}

.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 64px 64px;
}

#particles { position: fixed; inset: 0; z-index: 0; opacity: .4; pointer-events: none; }
.content { position: relative; z-index: 1; }

/* ── Focus styles ── */
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

/* ══════════════════════════════════════
   NAV — mobile-first (drawer by default)
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 1.1rem 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(3,3,10,.9);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav-logo img { height: 26px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  letter-spacing: -.5px; display: none;
}
.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Hamburger — visible by default on mobile */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 1001; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .25s, width .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav links — mobile drawer (base) */
.nav-links {
  list-style: none;
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 72%; max-width: 300px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0; z-index: 998;
  background: rgba(5,5,18,.97);
  backdrop-filter: blur(24px) saturate(1.5);
  border-left: 1px solid var(--border);
  padding: 5.5rem 2rem 2rem;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.nav-links.open { right: 0; }
.nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
.nav-links li:last-child { border-bottom: none; }
.nav-links li:not(:last-child) a { display: block; padding: 1rem 0; font-size: 1rem; color: var(--text); text-decoration: none; transition: color .2s; }
.nav-links li:not(:last-child) a:hover { color: var(--sky); }
.nav-links .nav-cta {
  margin-top: 1.5rem; border-radius: 10px;
  padding: .85rem 1.5rem; font-size: .95rem;
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  color: #fff; font-weight: 600;
}

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 997;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* ══════════════════════════════════════
   HERO — mobile-first (single column, centered)
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr;
  align-items: start; gap: 2rem;
  padding: 7rem 5% 4rem;
}
.hero-left { text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.28);
  color: #38BDF8; padding: .38rem 1rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1.8rem;
  animation: fadeDown .6s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sky); animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.6)} }

h1.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem,9vw,3rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; color: #fff;
  margin-bottom: 1.4rem;
  animation: fadeUp .8s .18s ease both;
}
.grad {
  background: linear-gradient(135deg, var(--sky) 0%, var(--violet) 55%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.typed-cursor {
  display: inline-block; width: 3px; height: .82em;
  background: var(--sky); margin-left: 2px; vertical-align: middle;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.typed-row { display: block; min-height: 2.2em; }

.hero-sub {
  font-size: .95rem; color: var(--muted);
  max-width: 100%; line-height: 1.82; margin-bottom: 2rem;
  animation: fadeUp .8s .36s ease both;
}
.hero-ctas {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  animation: fadeUp .8s .5s ease both;
}

/* ── Buttons — full-width on mobile ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  color: #fff; padding: .84rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: .94rem; text-decoration: none;
  width: 100%; max-width: 320px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 35px rgba(14,165,233,.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(14,165,233,.36); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: rgba(255,255,255,.05); color: var(--text);
  padding: .84rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: .94rem; text-decoration: none;
  border: 1px solid var(--border);
  width: 100%; max-width: 320px;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ── Code Window ── */
.hero-visual { animation: fadeUp .9s .5s ease both; min-width: 0; }
.code-win {
  background: #0D0D20;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04),
              0 40px 80px rgba(0,0,0,.5),
              0 0 80px rgba(14,165,233,.1);
  width: 100%; max-width: 100%;
}
@keyframes codeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.cw-header {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cw-dots { display: flex; gap: .35rem; }
.cw-dot { width: 8px; height: 8px; border-radius: 50%; }
.cw-dot.r { background: #FF5F57; }
.cw-dot.y { background: #FFBD2E; }
.cw-dot.g { background: #28C840; }
.cw-fname {
  margin-left: .4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; color: rgba(255,255,255,.35);
}
.cw-body {
  padding: 1rem 1.3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem; line-height: 1.75;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.cw-body pre { margin: 0; white-space: pre; }
.tk  { color: #C792EA; }
.ts  { color: #C3E88D; }
.tf  { color: #82AAFF; }
.tv  { color: #FFCB6B; }
.tp  { color: #F07178; }
.tc  { color: rgba(255,255,255,.28); font-style: italic; }
.tn  { color: #89DDFF; }
.cw-body pre .line {
  display: block; overflow: hidden;
  max-height: 0; opacity: 0;
  animation: codeLine .2s ease forwards;
}
.line:nth-child(1)  { animation-delay: .4s; }
.line:nth-child(2)  { animation-delay: .55s; }
.line:nth-child(3)  { animation-delay: .7s; }
.line:nth-child(4)  { animation-delay: .85s; }
.line:nth-child(5)  { animation-delay: 1s; }
.line:nth-child(6)  { animation-delay: 1.15s; }
.line:nth-child(7)  { animation-delay: 1.3s; }
.line:nth-child(8)  { animation-delay: 1.45s; }
.line:nth-child(9)  { animation-delay: 1.6s; }
.line:nth-child(10) { animation-delay: 1.75s; }
.line:nth-child(11) { animation-delay: 1.9s; }
.line:nth-child(12) { animation-delay: 2.05s; }
.line:nth-child(13) { animation-delay: 2.2s; }
.line:nth-child(14) { animation-delay: 2.35s; }
.line:nth-child(15) { animation-delay: 2.5s; }
@keyframes codeLine { to { max-height: 2em; opacity: 1; } }
.cw-terminal {
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: .6rem 1.3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; display: flex; align-items: center; gap: .6rem;
}
.term-prompt { color: var(--emerald); }
.term-cmd    { color: rgba(255,255,255,.7); }
.term-cursor {
  display: inline-block; width: 7px; height: .85em;
  background: var(--emerald); opacity: .8;
  animation: blink .9s step-end infinite;
}

/* ── Platforms ── */
.platforms-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.platforms-label {
  text-align: center; font-size: .68rem; color: var(--muted);
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.marquee-wrap::before { left:0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-wrap::after  { right:0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track { display: flex; gap: 3rem; align-items: center; width: max-content; animation: scroll 30s linear infinite; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.plat {
  display: flex; align-items: center; gap: .45rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.28); white-space: nowrap;
  transition: color .3s;
}
.plat:hover { color: rgba(255,255,255,.65); }

/* ── Section shared — centered on mobile ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 5%; }
.section-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--sky); margin-bottom: .7rem;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700; color: #fff; letter-spacing: -1px; line-height: 1.2; margin-bottom: .9rem;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.8; margin: 0 auto; }
.section-header { margin-bottom: 3rem; text-align: center; }

/* ── Reveal ── */
@keyframes revealUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; }
.reveal.in { animation: revealUp .65s ease forwards; }
.d1.in{animation-delay:.07s} .d2.in{animation-delay:.14s} .d3.in{animation-delay:.21s}
.d4.in{animation-delay:.28s} .d5.in{animation-delay:.35s} .d6.in{animation-delay:.42s}
@keyframes fadeDown { from{opacity:0;transform:translateY(-15px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)}  to{opacity:1;transform:translateY(0)} }

/* ── Services — 1 col on mobile ── */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.svc {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border); border-radius: 20px; padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  cursor: default; will-change: transform;
}
.svc:active { transform: scale(.985); border-color: rgba(255,255,255,.14); transition: transform .1s; }
.svc-glow {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  filter: blur(65px); opacity: 0; transition: opacity .4s; pointer-events: none;
  top: -70px; left: -70px;
}
.svc:hover .svc-glow { opacity: .13; }
.svc-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem;
}
.svc-icon svg { width: 23px; height: 23px; stroke-width: 1.65; }
.svc h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600; color: #fff;
  margin-bottom: .6rem; line-height: 1.35;
}
.svc p { font-size: .845rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.25rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .32rem; }
.svc-tag {
  font-size: .67rem; font-weight: 500;
  padding: .2rem .55rem; border-radius: 5px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); color: var(--muted);
}
.svc-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); color: var(--muted);
  transition: background .2s, color .2s, transform .2s;
}
.svc:hover .svc-arrow { background: rgba(255,255,255,.09); color: var(--text); transform: translate(2px,-2px); }

.c1 .svc-icon { background:rgba(14,165,233,.12);  color:var(--sky);     }
.c1 .svc-glow { background:var(--sky);   }
.c1:hover     { box-shadow:0 20px 50px rgba(14,165,233,.09), 0 0 0 1px rgba(14,165,233,.22); }
.c2 .svc-icon { background:rgba(245,158,11,.12);  color:var(--amber);   }
.c2 .svc-glow { background:var(--amber);  }
.c2:hover     { box-shadow:0 20px 50px rgba(245,158,11,.09), 0 0 0 1px rgba(245,158,11,.22); }
.c3 .svc-icon { background:rgba(16,185,129,.12);  color:var(--emerald); }
.c3 .svc-glow { background:var(--emerald);}
.c3:hover     { box-shadow:0 20px 50px rgba(16,185,129,.09), 0 0 0 1px rgba(16,185,129,.22); }
.c4 .svc-icon { background:rgba(139,92,246,.12);  color:var(--violet);  }
.c4 .svc-glow { background:var(--violet); }
.c4:hover     { box-shadow:0 20px 50px rgba(139,92,246,.09), 0 0 0 1px rgba(139,92,246,.22); }
.c5 .svc-icon { background:rgba(236,72,153,.12);  color:var(--pink);    }
.c5 .svc-glow { background:var(--pink);   }
.c5:hover     { box-shadow:0 20px 50px rgba(236,72,153,.09), 0 0 0 1px rgba(236,72,153,.22); }
.c6 .svc-icon { background:rgba(6,182,212,.12);   color:var(--cyan);    }
.c6 .svc-glow { background:var(--cyan);   }
.c6:hover     { box-shadow:0 20px 50px rgba(6,182,212,.09), 0 0 0 1px rgba(6,182,212,.22); }

/* ── Process — 1 col on mobile, centered ── */
.process-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.012);
}
.process-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0; position: relative;
}
.process-grid::before { display: none; }
.step {
  padding: 2rem 1.5rem;
  text-align: center; position: relative;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem; font-weight: 500; color: var(--muted);
  position: relative; z-index: 1;
  transition: border-color .3s, color .3s;
}
.step:hover .step-num { border-color: var(--sky); color: var(--sky); }
.step h4 { font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.step p { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* ── Stats — stacked on mobile, centered text ── */
.stats-wrap { background: rgba(255,255,255,.012); }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.stats-text { text-align: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.stat-card {
  padding: 1.2rem 1rem; text-align: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: 18px;
  transition: border-color .3s;
}
.stat-card:hover  { border-color: rgba(14,165,233,.3); }
.stat-card:active { border-color: rgba(14,165,233,.35); }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: .35rem;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: .77rem; color: var(--muted); font-weight: 500; }

/* Why checklist */
.why-list { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.why-list-item {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  font-size: .875rem; color: var(--muted);
}

/* ── CTA — centered always ── */
.cta-section {
  padding: 5rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 700px; height: 450px;
  background: radial-gradient(ellipse, rgba(14,165,233,.1), transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-section .section-title { margin: .7rem auto 1rem; max-width: 560px; }
.cta-section .section-sub   { margin: 0 auto 2.5rem; }
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* ── Footer — stacked on mobile ── */
footer {
  padding: 2.5rem 5%; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.2rem;
}
.footer-brand { font-family:'Space Grotesk',sans-serif; font-size:1rem; font-weight:600; color:#fff; }
.footer-sub   { font-size:.76rem; color:var(--muted); margin-top:.15rem; }
.footer-links { display:flex; gap:1.4rem; list-style:none; justify-content: center; }
.footer-links a { color:var(--muted); text-decoration:none; font-size:.82rem; transition:color .2s; }
.footer-links a:hover { color:var(--text); }
.footer-copy { font-size:.76rem; color:var(--muted); }

/* ══════════════════════════════════════
   TABLET — min-width: 768px
══════════════════════════════════════ */
@media (min-width: 768px) {
  /* Nav — switch to horizontal row */
  .hamburger { display: none; }
  .nav-links {
    position: static;
    flex-direction: row; align-items: center;
    width: auto; max-width: none;
    background: none; backdrop-filter: none; border: none;
    padding: 0; gap: 2rem;
    transition: none;
  }
  .nav-links li { width: auto; border: none; }
  .nav-links li:not(:last-child) a { display: inline; padding: 0; font-size: .875rem; color: var(--muted); font-weight: 500; }
  .nav-links li:not(:last-child) a:hover { color: var(--text); }
  .nav-links .nav-cta {
    margin-top: 0; border-radius: 8px;
    padding: .5rem 1.3rem; font-size: .875rem;
    display: inline-block; text-align: center;
    background: linear-gradient(135deg, var(--sky), var(--violet));
    color: #fff; font-weight: 600;
    transition: opacity .2s, transform .15s;
  }
  .nav-links .nav-cta:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

  /* Buttons — auto width */
  .btn-primary, .btn-ghost { width: auto; max-width: none; }
  .hero-ctas { flex-direction: row; align-items: initial; }
  .cta-btns  { flex-direction: row; justify-content: center; align-items: initial; }

  /* Grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }

  /* Padding */
  .section-inner { padding: 5rem 6%; }
  .cta-section   { padding: 7rem 6%; }
  .stats-inner   { padding: 5rem 6%; gap: 3.5rem; }

  /* Stat cards */
  .stat-card { padding: 1.75rem; }
  .stat-num  { font-size: 2.4rem; }

  /* Footer — row */
  footer { flex-direction: row; justify-content: space-between; text-align: left; gap: 1rem; }
  .footer-links { justify-content: initial; }

  /* Platforms */
  .platforms-strip { padding: 2.5rem 0; }
}

/* ══════════════════════════════════════
   DESKTOP — min-width: 1024px
══════════════════════════════════════ */
@media (min-width: 1024px) {
  /* Hero — two columns, left-aligned text */
  .hero { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 9rem 6% 6rem; }
  .hero-left { text-align: left; }
  h1.hero-h1 { font-size: clamp(2.6rem,5.5vw,4.4rem); letter-spacing: -2px; }
  .typed-row { min-height: 2.4em; }
  .hero-sub  { font-size: 1.05rem; max-width: 500px; margin-bottom: 2.4rem; }
  .code-win  { animation: codeFloat 6s ease-in-out infinite; }
  .cw-body   { font-size: .7rem; line-height: 1.85; }

  /* Section headers — left-aligned */
  .section-header { text-align: left; margin-bottom: 4rem; }
  .section-sub { margin: 0; }

  /* Services 3 col */
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .svc { padding: 2.1rem; }

  /* Process 4 col + connector line */
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid::before {
    display: block; content: '';
    position: absolute; top: 28px;
    left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 1px;
    background: linear-gradient(to right, var(--sky), var(--violet), var(--pink));
    opacity: .3;
  }
  .step { padding: 2.5rem 2rem; }

  /* Stats — two columns, left-aligned text */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 6rem 6%; }
  .stats-text { text-align: left; }
  .why-list-item { justify-content: flex-start; }

  /* Padding */
  .section-inner { padding: 6rem 6%; }
  .cta-section   { padding: 8rem 6%; }
}
