/* ===========================================================
   tharinduw.me
   Dark, depth-led. No CSS framework.
   =========================================================== */

:root {
  /* surface */
  --bg:         #08090c;
  --bg-2:       #0b0d12;
  --panel:      rgba(255,255,255,.035);
  --panel-2:    rgba(255,255,255,.055);
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.16);

  /* ink */
  --text:       #eceef4;
  --muted:      #9aa2b4;
  --faint:      #6a7182;

  /* accents */
  --a1:         #7c6cff;   /* violet   */
  --a2:         #22d3ee;   /* cyan     */
  --a3:         #ff7a59;   /* coral    */
  --a1-soft:    rgba(124,108,255,.14);

  --serif: "Instrument Serif", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --r: 16px;
  --r-lg: 22px;

  color-scheme: dark;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.025em; line-height: 1.1; }

::selection { background: var(--a1); color: #fff; }

:focus-visible { outline: 2px solid var(--a2); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--a1); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 0; font-weight: 500; text-decoration: none;
}
.skip:focus { left: 0; }

/* ===========================================================
   AMBIENT BACKGROUND
   =========================================================== */
.ambient {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  will-change: transform;
}
.aurora-1 {
  width: 58vw; height: 58vw; max-width: 760px; max-height: 760px;
  top: -22vw; left: -12vw;
  background: radial-gradient(circle at 30% 30%, rgba(124,108,255,.85), transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 48vw; height: 48vw; max-width: 640px; max-height: 640px;
  top: -6vw; right: -14vw;
  background: radial-gradient(circle at 60% 40%, rgba(34,211,238,.55), transparent 65%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 44vw; height: 44vw; max-width: 560px; max-height: 560px;
  top: 46vh; left: 32vw;
  background: radial-gradient(circle at 50% 50%, rgba(255,122,89,.32), transparent 65%);
  animation: drift3 38s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate3d(10vw, 8vh, 0) scale(1.15); } }
@keyframes drift2 { to { transform: translate3d(-8vw, 12vh, 0) scale(1.2); } }
@keyframes drift3 { to { transform: translate3d(-14vw, -10vh, 0) scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .aurora { animation: none; } }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 100% 62% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 100% 62% at 50% 0%, #000 35%, transparent 78%);
}

.noise {
  position: absolute; inset: 0; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ===========================================================
   GLASS
   =========================================================== */
.glass {
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  position: relative;
}
/* top hairline highlight */
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding-top: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8,9,12,.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}

.header-inner { display: flex; align-items: center; gap: 22px; min-height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 9px;
  font-family: var(--serif); font-size: 18px; line-height: 1;
  color: #fff;
  background: linear-gradient(140deg, var(--a1), #4f46e5);
  box-shadow: 0 4px 14px rgba(124,108,255,.4), inset 0 1px 0 rgba(255,255,255,.3);
}
.brand-text { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.brand .dot { color: var(--a2); }

.nav { display: flex; gap: 4px; }
.nav a {
  font-size: 14.5px; color: var(--muted); text-decoration: none;
  padding: 7px 13px; border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--text); background: var(--panel-2); }

.menu-btn {
  display: none;
  width: 38px; height: 38px; padding: 0;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; position: relative;
}
.menu-btn span {
  position: absolute; left: 11px; width: 16px; height: 1.6px; border-radius: 2px;
  background: var(--text); transition: transform .25s ease, opacity .2s ease;
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: grid; gap: 2px;
  padding: 10px 26px 20px;
  background: rgba(8,9,12,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  padding: 12px 4px; text-decoration: none; color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.mobile-nav a:last-child { border-bottom: 0; color: var(--text); }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-size: 15px; font-weight: 500;
  padding: 13px 24px; border-radius: 12px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease,
              background .18s ease, border-color .18s ease, color .18s ease;
}
.btn svg { flex: none; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { padding: 9px 17px; font-size: 14px; border-radius: 10px; }
.full { width: 100%; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--a1), #5b4bdb);
  box-shadow: 0 6px 22px -6px rgba(124,108,255,.65), inset 0 1px 0 rgba(255,255,255,.24);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -8px rgba(124,108,255,.8), inset 0 1px 0 rgba(255,255,255,.3);
}

.btn-glass {
  color: var(--text);
  background: var(--panel-2);
  border-color: var(--line-2);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.09); }
.btn:active { transform: translateY(0); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding-top: clamp(48px, 7vw, 86px); padding-bottom: clamp(40px, 6vw, 72px); }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 28px;
  font-size: 13px; font-weight: 500; letter-spacing: .01em;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px 7px 12px;
  backdrop-filter: blur(10px);
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #34d399; flex: none;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.15rem);
  margin-bottom: 26px;
}
.hero-title .line { display: block; }
.hero-title em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: -.01em;
  background: linear-gradient(100deg, var(--a2), var(--a1) 55%, var(--a3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-right: .06em;
}

.lede { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--muted); max-width: 54ch; margin: 0 0 34px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.stat-row {
  list-style: none; margin: 52px 0 0; padding: 30px 0 0;
  display: flex; flex-wrap: wrap; gap: 20px 52px;
  border-top: 1px solid var(--line);
}
.stat-row li { display: flex; flex-direction: column; }
.stat-row strong {
  font-size: 2.15rem; font-weight: 600; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(140deg, #fff, #b9bdcc);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* direct child only — the counter lives in a span inside <strong> */
.stat-row li > span { font-size: 13px; color: var(--faint); margin-top: 8px; max-width: 18ch; }

/* ---------- hero visual ---------- */
.hero-visual { position: relative; min-height: 440px; }

.float-slow { animation: floatY 9s ease-in-out infinite; }
.float-fast {
  position: absolute; right: -8px; bottom: -18px; z-index: 3;
  animation: floatY 6.5s ease-in-out infinite reverse;
}
.float-mid { animation: floatY 7.5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) {
  .float-slow, .float-fast, .float-mid { animation: none; }
}

/* ---------- Lighthouse gauge ---------- */
.lh-card {
  position: absolute; left: -22px; top: 30px; z-index: 4;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px 14px 14px; border-radius: 16px;
  background: rgba(12,14,20,.88);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px -16px rgba(0,0,0,.95);
}

.lh-ring { position: relative; width: 58px; height: 58px; flex: none; }
.lh-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.lh-ring circle { fill: none; stroke-width: 6; }
.lh-track { stroke: rgba(255,255,255,.09); }
.lh-bar {
  stroke: var(--lh-good, #0cce6b);
  stroke-linecap: round;
  stroke-dasharray: 213.6;
  /* fully drawn by default — JS only animates it in */
  stroke-dashoffset: calc(213.6px * (1 - var(--score, 100) / 100));
}
.anim .lh-bar { stroke-dashoffset: 213.6px; }
.anim .hero-visual.in .lh-bar {
  stroke-dashoffset: calc(213.6px * (1 - var(--score, 100) / 100));
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.75,.3,1) .25s;
}

.lh-score {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 17px; font-weight: 600; letter-spacing: -.02em;
  color: var(--lh-good, #0cce6b);
}

.lh-meta b { display: block; font-size: 13px; font-weight: 600; line-height: 1.2; }
.lh-meta > span { display: block; font-size: 11px; color: var(--faint); margin-top: 2px; }

.lh-more { list-style: none; margin: 9px 0 0; padding: 0; display: grid; gap: 4px; }
.lh-more li {
  display: flex; align-items: center; gap: 7px;
  font-size: 10.6px; color: var(--muted); white-space: nowrap;
}
.lh-more i {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--lh-good, #0cce6b);
}
.lh-more li::after {
  content: attr(data-score);
  margin-left: auto; padding-left: 10px;
  font-weight: 600; color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .anim .lh-bar,
  .anim .hero-visual.in .lh-bar {
    transition: none;
    stroke-dashoffset: calc(213.6px * (1 - var(--score, 100) / 100));
  }
}

/* ===========================================================
   ABSTRACT UI MOCKUPS  (illustrative only, no client data)
   =========================================================== */
.browser {
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #14161d, #0d0f14);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.95), 0 0 0 1px rgba(255,255,255,.03);
  transform-style: preserve-3d;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,.045);
  border-bottom: 1px solid var(--line);
}
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.browser-url {
  flex: 1; height: 15px; margin-left: 8px; border-radius: 5px;
  background: rgba(255,255,255,.06);
}
.browser-body { padding: 16px; display: grid; gap: 14px; }

.mock-nav { display: flex; align-items: center; justify-content: space-between; }
.mock-logo { width: 46px; height: 9px; border-radius: 3px; background: linear-gradient(90deg, var(--a1), var(--a2)); }
.mock-links { display: flex; gap: 8px; align-items: center; }
.mock-links i { width: 26px; height: 6px; border-radius: 3px; background: rgba(255,255,255,.16); }
.mock-links i.cta { width: 40px; height: 16px; border-radius: 5px; background: rgba(124,108,255,.55); }

.mock-hero { display: grid; gap: 8px; padding: 10px 0 4px; }
.mock-h1 { height: 16px; width: 88%; border-radius: 5px; background: rgba(255,255,255,.22); }
.mock-h1.short { width: 58%; }
.mock-p { height: 7px; width: 76%; border-radius: 4px; background: rgba(255,255,255,.1); }
.mock-p.short { width: 52%; }
.mock-btn { margin-top: 6px; width: 84px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--a1), #5b4bdb); }

.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-card {
  background: rgba(255,255,255,.045); border: 1px solid var(--line);
  border-radius: 9px; padding: 10px; display: grid; gap: 7px;
}
.mock-card i { width: 16px; height: 16px; border-radius: 5px; background: rgba(34,211,238,.4); }
.mock-card b { height: 6px; width: 70%; border-radius: 3px; background: rgba(255,255,255,.18); }
.mock-card s { height: 5px; width: 90%; border-radius: 3px; background: rgba(255,255,255,.08); }

.mock-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; align-items: center; }
.ms-left { display: grid; gap: 8px; }
.ms-right .ph { height: 96px; border-radius: 10px; }

.ph { border-radius: 8px; }
.ph.a { background: linear-gradient(135deg, rgba(124,108,255,.5), rgba(34,211,238,.28)); }
.ph.b { background: linear-gradient(135deg, rgba(34,211,238,.42), rgba(124,108,255,.22)); }
.ph.c { background: linear-gradient(135deg, rgba(255,122,89,.42), rgba(124,108,255,.24)); }
.ph.d { background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.05)); }

/* phone */
.phone {
  width: 172px; padding: 8px;
  border-radius: 26px;
  background: linear-gradient(165deg, #1b1e27, #0c0e13);
  border: 1px solid var(--line-2);
  box-shadow: 0 34px 70px -26px rgba(0,0,0,.95);
  position: relative;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.14);
}
.phone-body {
  border-radius: 20px; padding: 20px 12px 12px;
  background: #0a0c10; display: grid; gap: 10px;
}
.shop-head { display: grid; gap: 6px; }
.shop-head b { height: 8px; width: 56%; border-radius: 3px; background: rgba(255,255,255,.22); }
.shop-head s { height: 5px; width: 38%; border-radius: 3px; background: rgba(255,255,255,.09); }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.shop-item { display: grid; gap: 5px; }
.shop-item .ph { height: 44px; }
.shop-item i { height: 5px; width: 80%; border-radius: 3px; background: rgba(255,255,255,.16); }
.shop-item s { height: 4px; width: 46%; border-radius: 3px; background: rgba(255,255,255,.08); }
.shop-bar {
  margin-top: 2px; display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 26px; border-radius: 8px;
  font-size: 9.5px; font-weight: 500; color: #fff;
  background: linear-gradient(135deg, var(--a1), #5b4bdb);
}

/* storefront + dashboard mocks inside case cards */
.shop-toolbar { display: flex; align-items: center; gap: 7px; }
.pillbar { height: 16px; width: 44px; border-radius: 6px; background: rgba(255,255,255,.08); }
.pillbar.w2 { width: 60px; } .pillbar.w3 { width: 36px; }
.pillbar.right { margin-left: auto; width: 52px; background: rgba(124,108,255,.4); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.prod { display: grid; gap: 5px; }
.prod .ph { height: 52px; }
.prod i { height: 6px; width: 78%; border-radius: 3px; background: rgba(255,255,255,.16); }
.prod s { height: 5px; width: 42%; border-radius: 3px; background: rgba(34,211,238,.4); }

.browser-body.dash { grid-template-columns: 48px 1fr; display: grid; gap: 12px; }
.dash-side { display: grid; gap: 8px; align-content: start; }
.dash-side i { height: 9px; border-radius: 4px; background: rgba(255,255,255,.08); }
.dash-side i.on { background: linear-gradient(90deg, var(--a1), var(--a2)); }
.dash-main { display: grid; gap: 12px; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.kpi {
  background: rgba(255,255,255,.045); border: 1px solid var(--line);
  border-radius: 8px; padding: 8px; display: grid; gap: 5px;
}
.kpi b { height: 10px; width: 62%; border-radius: 3px; background: rgba(255,255,255,.25); }
.kpi s { height: 4px; width: 88%; border-radius: 3px; background: rgba(255,255,255,.08); }
.chart {
  display: flex; align-items: flex-end; gap: 7px; height: 78px;
  padding: 10px; border-radius: 9px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.chart span {
  flex: 1; height: var(--h); border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--a1), rgba(34,211,238,.35));
}
.rows { display: grid; gap: 6px; }
.row { height: 7px; border-radius: 3px; background: rgba(255,255,255,.07); }
.row:nth-child(2) { width: 86%; } .row:nth-child(3) { width: 68%; }

/* ===========================================================
   TECH STRIP
   =========================================================== */
.techstrip { margin-block: clamp(24px, 4vw, 44px); }
.techstrip-label {
  margin: 0 0 16px; text-align: center;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint);
}

.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  overflow: hidden; padding-block: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px 40px;
}
.marquee-track.looping {
  flex-wrap: nowrap; justify-content: flex-start;
  width: max-content;
  animation: scroll 46s linear infinite;
}
.tech {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
  color: var(--faint); white-space: nowrap;
  transition: color .2s ease;
}
.tech svg { width: 21px; height: 21px; flex: none; color: var(--a1); opacity: .8; }
.marquee:hover .tech { color: var(--muted); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ===========================================================
   SECTIONS
   =========================================================== */
.section { padding-block: clamp(64px, 9vw, 118px); }

.section-head { max-width: 68ch; margin-bottom: 52px; }
.kicker {
  display: inline-block; margin: 0 0 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--a2);
}
.section-head h2 { font-size: clamp(1.95rem, 3.7vw, 3rem); margin-bottom: 16px; }
.section-sub { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- services ---------- */
.svc-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.svc {
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.2,.8,.3,1), border-color .28s ease, box-shadow .28s ease;
}
.svc:hover { border-color: var(--line-2); box-shadow: 0 26px 60px -30px rgba(124,108,255,.55); }
.svc-icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(124,108,255,.28), rgba(34,211,238,.14));
  border: 1px solid var(--line-2);
  color: #cfd3ff;
}
.svc-icon svg { width: 21px; height: 21px; }
.svc h3 { font-size: 1.22rem; margin-bottom: 10px; }
.svc p { margin: 0 0 18px; font-size: 14.6px; color: var(--muted); }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: auto 0 0; padding: 0; }
.chips li {
  font-size: 11.5px; color: var(--faint);
  border: 1px solid var(--line); border-radius: 7px; padding: 4px 9px;
  background: rgba(255,255,255,.02);
}

/* ---------- work / cases ---------- */
.case-list { display: grid; gap: 22px; }
.case {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(26px, 3.4vw, 44px);
  overflow: hidden;
}
.case.reverse .case-copy { order: 2; }
.case.reverse .case-visual { order: 1; }

.tag {
  display: inline-block; margin-bottom: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: var(--a2);
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.22);
  padding: 5px 11px; border-radius: 999px;
}
.case h3 { font-size: clamp(1.4rem, 2.3vw, 1.85rem); margin-bottom: 14px; }
.case p { margin: 0 0 20px; color: var(--muted); font-size: 15.2px; }

.feat { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.feat li { font-size: 14.4px; color: var(--text); padding-left: 24px; position: relative; }
.feat li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 13px; height: 13px; border-radius: 50%;
  background: rgba(124,108,255,.2);
  border: 1px solid rgba(124,108,255,.55);
}
.feat li::after {
  content: ""; position: absolute; left: 4px; top: .78em;
  width: 5px; height: 2.5px; border-left: 1.6px solid var(--a2); border-bottom: 1.6px solid var(--a2);
  transform: rotate(-45deg);
}

.case-visual { perspective: 1400px; }
.case-visual .browser {
  transform: rotateY(-9deg) rotateX(3deg);
  transition: transform .5s cubic-bezier(.2,.8,.3,1);
}
.case.reverse .case-visual .browser { transform: rotateY(9deg) rotateX(3deg); }
.case:hover .case-visual .browser { transform: rotateY(0) rotateX(0) translateY(-6px); }

.work-note {
  margin: 26px 0 0; padding: 22px 26px;
  border: 1px dashed var(--line-2); border-radius: var(--r);
  font-size: 15px; color: var(--muted);
  background: rgba(255,255,255,.02);
}
.work-note strong { color: var(--text); font-weight: 600; }
.work-note a { color: var(--a2); text-decoration: none; font-weight: 500; white-space: nowrap; }
.work-note a:hover { text-decoration: underline; }

/* ---------- process ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
.steps-line {
  position: absolute; top: 21px; left: 6%; right: 6%; height: 1px;
  background: var(--line);
}
.steps-line span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  box-shadow: 0 0 12px rgba(124,108,255,.8);
}
.step { position: relative; padding-top: 62px; }
.step-num {
  position: absolute; top: 0; left: 0;
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 13px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--text);
  background: linear-gradient(150deg, rgba(124,108,255,.3), rgba(12,14,20,.9));
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}
.step h3 { font-size: 1.16rem; margin-bottom: 10px; }
.step p { margin: 0; font-size: 14.4px; color: var(--muted); }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { padding: 28px 26px; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.stars { color: #fbbf24; font-size: 14px; letter-spacing: 3px; }
.quote blockquote { margin: 0; }
.quote blockquote p { margin: 0; font-size: 15.4px; color: var(--text); line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 15px; font-weight: 600; color: #fff;
  background: linear-gradient(140deg, rgba(124,108,255,.6), rgba(34,211,238,.4));
  border: 1px solid var(--line-2);
}
.quote figcaption b { display: block; font-size: 14.4px; font-weight: 600; }
.quote figcaption i { display: block; font-style: normal; font-size: 12.8px; color: var(--faint); }

/* ---------- mid-page CTA band ---------- */
.cta-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 26px 40px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  border-color: rgba(124,108,255,.32);
}
.cta-glow {
  position: absolute; inset: -60% 40% auto -10%; height: 220%;
  background: radial-gradient(closest-side, rgba(124,108,255,.35), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.cta-copy { position: relative; max-width: 46ch; }
.cta-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 10px; }
.cta-copy p { margin: 0; color: var(--muted); font-size: 15.2px; }
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- testimonial flags ---------- */
.flag { margin-right: 7px; font-size: 13px; line-height: 1; }

/* ---------- estimator ---------- */
.est {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: clamp(24px, 3.5vw, 44px);
  padding: clamp(24px, 3.4vw, 40px);
  align-items: start;
}
.est-form { display: grid; gap: 26px; }

.est-group { border: 0; margin: 0; padding: 0; min-width: 0; }
.est-group[hidden] { display: none; }
.est-group legend {
  padding: 0 0 13px;
  font-size: 14px; font-weight: 600; letter-spacing: -.01em; color: var(--text);
}
.legend-note {
  font-weight: 400; color: var(--faint); font-size: 13px;
  margin-left: 4px;
}

.opts { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.opts-4 { grid-template-columns: repeat(2, 1fr); }
.opt { position: relative; cursor: pointer; }
.opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.opt-body {
  display: block; padding: 14px 16px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: rgba(255,255,255,.025);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.opt-body b { display: block; font-size: 14.6px; font-weight: 600; margin-bottom: 3px; }
.opt-body i { display: block; font-style: normal; font-size: 12.6px; color: var(--faint); }
.opt:hover .opt-body { border-color: rgba(255,255,255,.3); transform: translateY(-1px); }
.opt input:checked + .opt-body {
  border-color: var(--a1);
  background: linear-gradient(150deg, rgba(124,108,255,.18), rgba(124,108,255,.05));
  box-shadow: 0 0 0 1px rgba(124,108,255,.35), 0 12px 30px -18px rgba(124,108,255,.9);
}
.opt input:focus-visible + .opt-body { outline: 2px solid var(--a2); outline-offset: 2px; }

.segs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  padding: 5px; border-radius: 12px;
  background: rgba(8,9,12,.55); border: 1px solid var(--line);
}
.segs-2 { grid-template-columns: repeat(2, 1fr); }
.seg { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.seg span {
  display: block; text-align: center; padding: 10px 8px;
  border-radius: 8px; font-size: 13.6px; font-weight: 500; color: var(--muted);
  transition: background .18s ease, color .18s ease;
}
.seg:hover span { color: var(--text); }
.seg input:checked + span {
  color: #fff;
  background: linear-gradient(135deg, var(--a1), #5b4bdb);
  box-shadow: 0 4px 14px -6px rgba(124,108,255,.9);
}
.seg input:focus-visible + span { outline: 2px solid var(--a2); outline-offset: 2px; }

.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.chk { position: relative; cursor: pointer; }
.chk input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chk span {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  font-size: 13.8px; color: var(--muted);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.chk span::before {
  content: ""; flex: none;
  width: 16px; height: 16px; border-radius: 5px;
  border: 1px solid var(--line-2); background: rgba(8,9,12,.6);
  transition: background .18s ease, border-color .18s ease;
}
.chk:hover span { color: var(--text); border-color: var(--line-2); }
.chk input:checked + span { color: var(--text); border-color: rgba(124,108,255,.5); background: rgba(124,108,255,.09); }
.chk input:checked + span::before {
  border-color: var(--a1);
  background: var(--a1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.6 4 7.6 10 1.4' fill='none' stroke='%23fff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
.chk input:focus-visible + span { outline: 2px solid var(--a2); outline-offset: 2px; }

.est-out {
  position: sticky; top: 92px;
  padding: 26px 24px;
  border-radius: var(--r);
  border: 1px solid rgba(124,108,255,.35);
  background: linear-gradient(160deg, rgba(124,108,255,.16), rgba(255,255,255,.03));
}
.est-label {
  margin: 0 0 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--a2);
}
.est-range {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 2.15rem); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.1;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
}
.est-range em { font-style: normal; color: var(--faint); font-weight: 400; }

.est-meta { list-style: none; margin: 0 0 18px; padding: 0 0 18px; display: grid; gap: 9px; border-bottom: 1px solid var(--line); }
.est-meta li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.6px; }
.est-meta span { color: var(--faint); }
.est-meta b { font-weight: 600; }

.est-summary { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 7px; }
.est-summary li {
  font-size: 13.2px; color: var(--muted);
  padding-left: 18px; position: relative;
}
.est-summary li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 2px; background: var(--a2); opacity: .8;
}

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price { padding: 30px 26px; display: flex; flex-direction: column; }
.price.featured {
  border-color: rgba(124,108,255,.45);
  box-shadow: 0 30px 70px -34px rgba(124,108,255,.8);
  background: linear-gradient(160deg, rgba(124,108,255,.14), var(--panel));
}
.badge {
  position: absolute; top: -11px; left: 26px;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(135deg, var(--a1), #5b4bdb);
  box-shadow: 0 6px 18px -6px rgba(124,108,255,.9);
}
.price h3 { font-size: 1.15rem; margin-bottom: 12px; }
.price-tag { margin: 0 0 6px; font-size: 2.35rem; font-weight: 600; letter-spacing: -.035em; line-height: 1; }
.price-tag .from { font-size: .82rem; font-weight: 400; color: var(--faint); letter-spacing: 0; margin-right: 6px; }
.price-sub { margin: 0 0 22px; font-size: 14px; color: var(--muted); }

.ticks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; }
.ticks li { font-size: 14.3px; padding-left: 26px; position: relative; color: var(--text); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .3em;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(52,211,153,.16); border: 1px solid rgba(52,211,153,.4);
}
.ticks li::after {
  content: ""; position: absolute; left: 5px; top: .62em;
  width: 5px; height: 2.5px; border-left: 1.7px solid #34d399; border-bottom: 1.7px solid #34d399;
  transform: rotate(-45deg);
}
.price .btn { margin-top: auto; }
.price-note { margin: 24px 0 0; text-align: center; font-size: 14px; color: var(--faint); }

/* ---------- faq ---------- */
.faq-list { display: grid; gap: 12px; max-width: 880px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: border-color .22s ease, background .22s ease;
}
.faq-list details[open] { border-color: var(--line-2); background: rgba(255,255,255,.045); }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 19px 56px 19px 24px;
  font-size: 15.6px; font-weight: 500;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 24px; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 1.8px solid var(--a2); border-bottom: 1.8px solid var(--a2);
  transform: rotate(45deg); transform-origin: 65% 65%;
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: rotate(-135deg); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; color: var(--muted); font-size: 15px; max-width: 72ch; }

/* ---------- contact ---------- */
.contact {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.contact .section-sub { max-width: 42ch; }

.contact-links { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 10px; }
.contact-links a {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; text-decoration: none; color: var(--muted);
  padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  transition: color .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}
.contact-links svg { width: 18px; height: 18px; flex: none; color: var(--a2); }
.contact-links a:hover {
  color: var(--text); border-color: var(--line-2);
  background: rgba(255,255,255,.05); transform: translateX(4px);
}

.response {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 22px 0 0; font-size: 13.5px; color: var(--faint);
}

.contact-form { padding: 30px; display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 500; }
.field .opt { color: var(--faint); font-weight: 400; }

input, select, textarea {
  font: inherit; font-size: 15px;
  color: var(--text);
  background: rgba(8,9,12,.6);
  border: 1px solid var(--line-2); border-radius: 11px;
  padding: 12px 14px; width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
textarea { resize: vertical; min-height: 122px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%239aa2b4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--a1);
  background: rgba(8,9,12,.85);
  box-shadow: 0 0 0 3px rgba(124,108,255,.22);
}
input::placeholder, textarea::placeholder { color: var(--faint); }

.form-note { margin: 0; font-size: 12.8px; color: var(--faint); text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- stepped form ---------- */
.fsteps {
  list-style: none; margin: 0 0 4px; padding: 0;
  display: flex; gap: 10px;
}
.fstep-dot {
  display: flex; align-items: center; gap: 8px;
  flex: 1; padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  font-size: 13px; color: var(--faint);
  transition: color .22s ease, border-color .22s ease;
}
.fstep-dot span {
  display: grid; place-items: center;
  width: 21px; height: 21px; border-radius: 50%; flex: none;
  font-size: 11.5px; font-weight: 600;
  background: rgba(255,255,255,.06); color: var(--faint);
  transition: background .22s ease, color .22s ease;
}
.fstep-dot.is-on { color: var(--text); border-bottom-color: var(--a1); }
.fstep-dot.is-on span { background: linear-gradient(135deg, var(--a1), #5b4bdb); color: #fff; }

/* without JS both steps show and the form works as one long form */
.fstep { display: grid; gap: 16px; }
.contact-form.stepped .fstep { display: none; }
.contact-form.stepped .fstep.is-on { display: grid; }

.form-actions { display: flex; gap: 10px; }
.form-actions .btn { flex: 1; }
.form-actions .btn-glass { flex: 0 0 auto; }

.reassure {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center;
}
.reassure li {
  font-size: 12.4px; color: var(--faint);
  display: flex; align-items: center; gap: 6px;
}
.reassure li::before {
  content: ""; flex: none;
  width: 13px; height: 13px; border-radius: 50%;
  background: rgba(52,211,153,.16); border: 1px solid rgba(52,211,153,.45);
}

/* ---------- thanks page ---------- */
.thanks { min-height: 68vh; display: grid; place-content: center; text-align: center; gap: 20px; padding-block: 90px; }
.thanks .tick {
  width: 62px; height: 62px; border-radius: 50%; justify-self: center;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(52,211,153,.28), rgba(34,211,238,.14));
  border: 1px solid rgba(52,211,153,.4);
  color: #34d399;
}
.thanks h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); }
.thanks p { color: var(--muted); margin: 0; max-width: 46ch; justify-self: center; }
.thanks .btn { justify-self: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: rgba(255,255,255,.015); padding-block: 34px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand b { display: block; font-size: 14.5px; font-weight: 600; }
.footer-brand span { display: block; font-size: 12.8px; color: var(--faint); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--a2); }
.footer-legal { margin: 0; font-size: 13px; color: var(--faint); }

/* ===========================================================
   REVEAL
   The hidden state exists ONLY under html.anim, which JavaScript
   adds. No JS, no IntersectionObserver, or reduced motion => the
   page renders fully visible. html.anim-done is a 3-second
   failsafe that un-hides anything still waiting.
   =========================================================== */
/* The reveal offset uses `translate`, not `transform`, so it never
   collides with the hover tilt (which owns `transform`). */
.anim [data-reveal],
.anim [data-hero],
.anim .hero-visual {
  opacity: 0;
  translate: 0 28px;
}
.anim [data-reveal].in,
.anim [data-hero].in,
.anim .hero-visual.in {
  opacity: 1;
  translate: none;
  transition: opacity .62s ease, translate .62s cubic-bezier(.2,.75,.3,1);
}

/* hover tilt */
[data-tilt] { transform: var(--tilt, none); }

/* ===========================================================
   HOST CHROME
   Netlify injects a fixed "Powered by Netlify" badge iframe into
   the page on some plans. Hiding it here is presentational only —
   if you would rather remove it at the source, do it from the
   Netlify dashboard or by changing plan.
   =========================================================== */
#nl-badge-frame { display: none !important; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .est { grid-template-columns: 1fr; }
  .est-out { position: static; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .steps-line { display: none; }
}

@media (max-width: 980px) {
  .quote-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price.featured { order: -1; }
  .nav, .header-cta { display: none; }
  .menu-btn { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .case, .case.reverse { grid-template-columns: 1fr; }
  .case.reverse .case-copy, .case.reverse .case-visual { order: 0; }
  .case-visual .browser, .case.reverse .case-visual .browser { transform: none; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { gap: 22px 36px; }
  .stat-row strong { font-size: 1.85rem; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .opts, .opts-4, .checks { grid-template-columns: 1fr; }
  .segs { grid-template-columns: repeat(2, 1fr); }
  .segs-2 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* reduced motion: kill transforms that imply movement */
@media (prefers-reduced-motion: reduce) {
  .case-visual .browser, .case.reverse .case-visual .browser { transform: none !important; }
  * { scroll-behavior: auto !important; }
}
