/* ============================================================
   ShotCanvas — Studio Light
   A screenshot studio on a drafting table.
   Paper + ink + acid-lime · Instrument Serif + Inter Tight + JetBrains Mono
   ============================================================ */

/* ── Brand tokens ─────────────────────────────────────────── */
:root {
  /* Paper + ink */
  --paper:      #F4EFE6;
  --paper-2:    #EAE3D5;
  --paper-3:    #DDD4C2;
  --ink:        #16130E;
  --ink-2:      #2A251C;
  --ink-3:      #5B5245;
  --ink-muted:  #8B8273;

  /* Accents */
  --lime:       #D6FF4B;
  --lime-deep:  #A8CC2E;
  --tomato:     #E8502F;
  --cobalt:     #1E4FFF;
  --cream:      #FFF9EC;
  --plum:       #6B2AE0;
  --teal:       #3EC4B0;

  /* Type */
  --serif: "Instrument Serif", "Times New Roman", ui-serif, Georgia, serif;
  --sans:  "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Radii + shadows */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --shadow-soft: 0 1px 0 rgba(22,19,14,.04), 0 12px 30px -12px rgba(22,19,14,.18);
  --shadow-hard: 0 2px 0 rgba(22,19,14,.08), 0 30px 60px -20px rgba(22,19,14,.35);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
/* Root size scales smoothly on large monitors so everything
   (padding, spacing, rem-based sizes) grows in proportion. */
@media (min-width: 1600px) { html { font-size: 17px; } }
@media (min-width: 2000px) { html { font-size: 18px; } }
@media (min-width: 2600px) { html { font-size: 20px; } }
@media (min-width: 3400px) { html { font-size: 22px; } }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  /* Paper grain + atmospheric glow */
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(214,255,75,.12), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(30,79,255,.05), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

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

.mono { font-family: var(--mono); font-weight: 500; letter-spacing: 0.02em; }
.caps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--sans);
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
}
/* On large + ultrawide monitors, widen the content column so the layout
   doesn't feel squeezed into the middle of the screen. */
@media (min-width: 1600px) { .container { max-width: 1400px; } }
@media (min-width: 2000px) { .container { max-width: 1520px; } }
@media (min-width: 2600px) { .container { max-width: 1680px; } }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-accent  { background: var(--lime); color: var(--ink); box-shadow: 0 8px 24px -10px rgba(168,204,46,.7); }
.btn-accent:hover  { transform: translateY(-1px); box-shadow: 0 14px 34px -12px rgba(168,204,46,.9); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-outline-cream { background: transparent; color: var(--cream); border: 1px solid rgba(255,249,236,.3); }
.btn-outline-cream:hover { background: rgba(255,249,236,.08); border-color: rgba(255,249,236,.5); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn-store:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 14px 34px -16px rgba(22,19,14,.5); }
.btn-store__icon { width: 18px; height: 18px; flex: none; }
.btn-store__text { text-align: left; line-height: 1.1; }
.btn-store__label { display: block; font-size: 10px; font-family: var(--mono); color: var(--lime); letter-spacing: .08em; text-transform: uppercase; }
.btn-store__name  { display: block; font-size: 14px; font-weight: 600; font-family: var(--sans); letter-spacing: -0.01em; }

/* ── Chips, badges, tape ──────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--paper-3);
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
}
.chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(214,255,75,.3);
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 22px; color: var(--ink);
}
.nav-logo .mk { width: 28px; height: 28px; display: inline-block; flex: none; }
.nav-logo sup {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-muted); letter-spacing: .1em;
  margin-left: 2px;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; color: var(--ink-2);
  list-style: none; padding: 0; margin: 0;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--ink);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-right .btn { padding: 9px 16px; font-size: 13px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px; padding: 0;
  background: transparent; border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); }

/* CTA banner: mobile preference label */
.cta-mobile-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,249,236,.4);
  margin: 24px 0 10px !important;
}

@media (max-width: 860px) {
  .nav-inner { padding: 12px 0; gap: 10px; }
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-right { order: 2; }
  .nav-right .btn { padding: 8px 14px; font-size: 12px; }
  .nav-logo sup { display: none; }

  /* Drawer */
  .nav-links {
    position: fixed;
    top: 62px; left: 0; right: 0;
    padding: 20px 24px 28px;
    background: color-mix(in srgb, var(--paper) 96%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    flex-direction: column; align-items: flex-start; gap: 0;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    z-index: 39;
    box-shadow: 0 24px 40px -24px rgba(22,19,14,.18);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a {
    width: 100%; padding: 16px 0;
    font-family: var(--serif);
    font-size: 22px; letter-spacing: -0.01em;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none !important; }
  body.nav-open { overflow: hidden; }
}

/* ── Section anatomy ─────────────────────────────────────── */
.section { padding: 100px 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: end; margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(42px, 5.2vw, 80px);
  line-height: 0.98; letter-spacing: -0.02em;
}
.section-head .no {
  display: block;
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-3); letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-head p {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-2); max-width: 520px; margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 40px 0 90px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); margin-bottom: 28px;
  letter-spacing: .06em;
}
.eyebrow .tick { width: 24px; height: 1px; background: var(--ink); }

.hero h1 {
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.96; letter-spacing: -0.03em;
}
.hero h1 em { font-style: italic; color: var(--ink-2); }
.hero h1 .accent {
  background: linear-gradient(180deg, transparent 62%, var(--lime) 62%, var(--lime) 92%, transparent 92%);
  padding: 0 6px;
  font-style: italic;
}

.hero-sub {
  margin: 28px 0 36px;
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2); max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-meta {
  display: flex; gap: 32px; margin-top: 40px;
  color: var(--ink-3); font-size: 13px;
}
.hero-meta .n {
  font-family: var(--serif); font-size: 40px;
  color: var(--ink); line-height: 1; display: block;
}
.hero-meta small {
  display: block; margin-top: 4px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* Drafting-surface stage */
.stage {
  position: relative; aspect-ratio: 1 / 1.05;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0) 40%),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(22,19,14,.06) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(22,19,14,.06) 23px 24px),
    var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.stage::before {
  content: ""; position: absolute; inset: 16px; pointer-events: none;
  background:
    linear-gradient(var(--ink), var(--ink)) left top     / 18px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) left top     / 1px 18px no-repeat,
    linear-gradient(var(--ink), var(--ink)) right top    / 18px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) right top    / 1px 18px no-repeat,
    linear-gradient(var(--ink), var(--ink)) left bottom  / 18px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) left bottom  / 1px 18px no-repeat,
    linear-gradient(var(--ink), var(--ink)) right bottom / 18px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) right bottom / 1px 18px no-repeat;
  opacity: .5;
}
.stage-label {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--ink-3); letter-spacing: .12em;
}
.stage-label span { display: block; }

.pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff8080, #b3261e 70%);
  box-shadow: 0 2px 3px rgba(0,0,0,.35), inset 0 -2px 2px rgba(0,0,0,.25);
  z-index: 5;
}
.pin.p1 { top: 3.5%; left: 46%; }
.pin.p2 {
  top: 3.5%; right: 8%;
  background: radial-gradient(circle at 35% 30%, #d2ff80, #5a7c14 70%);
}

.ribbon {
  position: absolute; top: 14px; right: 14px; z-index: 6;
  background: var(--ink); color: var(--cream);
  padding: 12px 16px; border-radius: 10px;
  font-family: var(--serif); font-size: 18px; line-height: 1.15;
  max-width: 200px;
  box-shadow: var(--shadow-hard);
  transform: rotate(3deg);
}
.ribbon small {
  display: block; font-family: var(--mono); font-size: 10px;
  color: var(--lime); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 6px;
}

.tape-label {
  position: absolute; top: 46px; left: 10%; z-index: 5;
  background: #F6E05E; padding: 6px 12px;
  border: 1px dashed rgba(0,0,0,.25);
  font-family: var(--mono); font-size: 10px;
  color: var(--ink); letter-spacing: .1em;
  transform: rotate(-8deg);
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.35);
}

/* The "shot" — phone mockup showing a template */
.shot-wrap { position: absolute; inset: 0; display: grid; place-items: center; padding: 8%; }
.shot {
  width: min(74%, 420px); aspect-ratio: 4 / 5; position: relative;
  border-radius: 20px; padding: 10% 8%;
  background: linear-gradient(155deg, #FF7A59 0%, #D6FF4B 48%, #1E4FFF 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.4),
    0 40px 60px -20px rgba(22,19,14,.35),
    0 80px 100px -40px rgba(30,79,255,.22);
  transform: rotate(-3deg);
  display: flex; align-items: center; justify-content: center;
}
.shot .phone {
  height: 100%; aspect-ratio: 9 / 19.5;
  background: #0c0a06; border-radius: 22px;
  border: 2px solid #1e1a12;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.5);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 12px 10px 8px;
  gap: 4px;
}
.shot .phone::before {
  content: "";
  position: absolute; top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 28%; height: 9px;
  background: #000; border-radius: 6px;
  z-index: 2;
}
.shot .phone .hero-line {
  height: 5px; border-radius: 3px; background: var(--cream);
  width: 72%; margin-top: 6px;
}
.shot .phone .hero-sub-line {
  height: 3px; border-radius: 2px; background: rgba(255,249,236,.5);
  width: 50%;
}
.shot .phone .preview {
  flex: 1; margin-top: 6px; border-radius: 8px;
  background: linear-gradient(160deg, #D6FF4B 0%, #3EC4B0 55%, #1E4FFF 100%);
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.shot .phone .preview::before {
  content: "";
  position: absolute; left: 18%; right: 18%;
  top: 16%; height: 3px;
  background: rgba(22,19,14,.9); border-radius: 2px;
}
.shot .phone .preview::after {
  content: ""; position: absolute;
  inset: 28% 20% 22%;
  background: rgba(22,19,14,.88); border-radius: 5px;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.5);
}
.shot .phone .dots {
  display: flex; gap: 3px; justify-content: center;
  padding-top: 4px;
}
.shot .phone .dots i {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,249,236,.2); display: inline-block;
}
.shot .phone .dots i:first-child { background: var(--lime); }

.color-strip {
  position: absolute; bottom: 6%; right: 6%; z-index: 4;
  background: #fff; padding: 10px 12px 14px; border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transform: rotate(4deg);
  font-family: var(--mono); font-size: 10px; color: var(--ink-3);
}
.color-strip .swatches {
  display: flex; gap: 6px; margin-bottom: 8px;
}
.color-strip .swatches span {
  width: 22px; height: 22px; border-radius: 4px;
  border: 1px solid rgba(0,0,0,.06);
}

.spec-card {
  position: absolute; top: 62%; left: 4%; z-index: 4;
  background: var(--paper); padding: 12px 14px;
  border: 1px solid var(--ink); border-radius: 4px;
  transform: rotate(-4deg);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--mono); font-size: 10.5px;
  min-width: 180px;
}
.spec-card h5 {
  margin: 0 0 6px; font-family: var(--sans);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em;
}
.spec-card .row {
  display: flex; justify-content: space-between;
  color: var(--ink-3); padding: 2px 0;
}
.spec-card .row b { color: var(--ink); font-weight: 500; }

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.tick-strip {
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding: 18px 0; margin-top: 12px; overflow: hidden;
  background: color-mix(in srgb, var(--paper-2) 60%, transparent);
}
.tick-row {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap;
  animation: tick 48s linear infinite;
  font-family: var(--serif); font-size: 22px; color: var(--ink-2);
  width: max-content;
}
.tick-row span { display: inline-flex; align-items: center; gap: 10px; }
.tick-row .star { color: var(--lime-deep); font-size: 18px; }
@keyframes tick { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .tick-row { animation: none; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--r-lg); overflow: hidden;
}
.feat {
  background: var(--paper); padding: 36px 30px 32px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px; position: relative;
  transition: background .2s ease;
}
.feat:hover { background: var(--cream); }
.feat .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-muted); letter-spacing: .16em;
}
.feat h3 { font-size: 30px; line-height: 1.05; }
.feat p { margin: 0; color: var(--ink-3); font-size: 14.5px; line-height: 1.55; }
.feat .viz { flex: 1; display: grid; place-items: center; margin-top: 8px; }

/* Individual feature visuals */
.viz-gradient {
  width: 100%; height: 120px; border-radius: 10px;
  background: linear-gradient(135deg, #FF7A59, #D6FF4B 55%, #1E4FFF);
  position: relative; box-shadow: 0 10px 24px -10px rgba(22,19,14,.3);
}
.viz-gradient .dots {
  position: absolute; inset: auto 10px 10px 10px;
  display: flex; gap: 6px;
}
.viz-gradient .dots i {
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; opacity: .9;
}
.viz-gradient .dots i:nth-child(1) { background: #FF7A59; }
.viz-gradient .dots i:nth-child(2) { background: #D6FF4B; }
.viz-gradient .dots i:nth-child(3) { background: #1E4FFF; }
.viz-gradient .dots i:nth-child(4) { background: #fff; }

.viz-frames {
  width: 100%; display: flex; gap: 10px;
  justify-content: center; align-items: center;
}
.viz-frames .mini {
  width: 62px; height: 108px; background: #fff;
  border-radius: 10px; border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 10px 18px -10px rgba(0,0,0,.25);
  padding: 8px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .2s ease;
}
.viz-frames .mini .topbar {
  height: 6px; background: #EFE9DB; border-radius: 3px;
}
.viz-frames .mini .blk {
  flex: 1; background: linear-gradient(135deg, var(--paper-2), var(--paper-3));
  border-radius: 4px;
}
.viz-frames .mini.active {
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 18px 28px -12px rgba(0,0,0,.3);
  border-color: var(--ink);
}
.viz-frames .mini.active .blk { background: var(--lime); }

.viz-stack { position: relative; width: 200px; height: 140px; }
.viz-stack .lyr {
  position: absolute; inset: 0; border-radius: 10px;
  background: #fff; border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 10px 22px -10px rgba(0,0,0,.3);
  padding: 12px; font-family: var(--mono);
  font-size: 11px; color: var(--ink-3);
}
.viz-stack .lyr:nth-child(1) { transform: translate(-16px, -12px) rotate(-3deg); background: #FFF9EC; }
.viz-stack .lyr:nth-child(2) { transform: translate(0, 0) rotate(0deg); background: #fff; }
.viz-stack .lyr:nth-child(3) {
  transform: translate(16px, 12px) rotate(3deg);
  background: var(--lime); color: var(--ink);
  border-color: var(--ink);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 100px 0; position: relative;
}
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; counter-reset: step;
}
.how-card {
  background: var(--paper); border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  counter-increment: step;
  position: relative; overflow: hidden;
}
.how-card::before {
  content: "0" counter(step);
  position: absolute; top: 16px; right: 22px;
  font-family: var(--serif); font-size: 64px;
  color: var(--ink); opacity: .06; line-height: 1;
}
.how-card .step-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--lime-deep);
}
.how-card h3 { font-size: 24px; line-height: 1.1; }
.how-card p { margin: 0; font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: 110px 0; position: relative;
  background: linear-gradient(180deg, transparent, rgba(214,255,75,.22), transparent);
}
.quote .container { max-width: 1040px; }
.quote .overhead {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-3);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.08; letter-spacing: -0.015em;
  margin: 18px 0 0; color: var(--ink);
}
.quote blockquote em { color: var(--ink-2); }
.quote .attrib {
  display: flex; align-items: center; gap: 14px; margin-top: 34px;
}
.quote .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFD3A1, #D68B5A);
  border: 2px solid var(--ink);
  flex: none;
}
.quote .attrib .info {
  font-size: 14px; color: var(--ink-2); line-height: 1.4;
}
.quote .attrib .info b {
  display: block; color: var(--ink); font-weight: 500;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.g {
  border-radius: var(--r-md); overflow: hidden; position: relative;
  box-shadow: var(--shadow-soft); min-height: 220px;
  display: flex; align-items: end; padding: 18px;
  color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  transition: transform .25s ease, box-shadow .25s ease;
}
.g:hover { transform: translateY(-4px); box-shadow: 0 20px 48px -20px rgba(22,19,14,.35); }
.g .cap { position: relative; z-index: 2; text-transform: uppercase; }
.g1 { grid-column: span 5; background: linear-gradient(160deg, #1E4FFF, #6B2AE0); min-height: 340px; }
.g2 { grid-column: span 4; background: linear-gradient(160deg, #FF7A59, #E8502F); min-height: 340px; }
.g3 { grid-column: span 3; background: linear-gradient(160deg, #16130E, #3a3326); color: var(--lime); min-height: 340px; }
.g4 { grid-column: span 4; background: linear-gradient(160deg, #D6FF4B, #7FB300); color: var(--ink); min-height: 240px; }
.g5 {
  grid-column: span 4;
  background: linear-gradient(160deg, #F4EFE6, #DDD4C2);
  color: var(--ink); min-height: 240px;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.g6 { grid-column: span 4; background: linear-gradient(160deg, #3EC4B0, #18685D); min-height: 240px; }

.g .fake-ss {
  position: absolute; inset: 20px 20px 60px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 18px 30px -12px rgba(0,0,0,.35);
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.g .fake-ss .r {
  height: 6px; background: #EFE9DB; border-radius: 3px;
}
.g .fake-ss .head {
  height: 10px; background: var(--ink);
  width: 40%; border-radius: 3px; margin-bottom: 4px;
}
.g .fake-ss .chart {
  flex: 1; background: linear-gradient(180deg, #f5efe1, #e8e1cf);
  border-radius: 4px; position: relative; overflow: hidden;
}
.g .fake-ss .chart::after {
  content: ""; position: absolute;
  left: 10%; right: 10%; bottom: 20%;
  height: 2px; background: var(--lime-deep);
  box-shadow: 0 -30px 0 var(--tomato), 0 -20px 0 var(--cobalt);
  border-radius: 2px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.price-card {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
}
.price-card.pro {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.price-card.pro::before {
  content: ""; position: absolute;
  right: -140px; top: -100px; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,255,75,.35), transparent 70%);
  filter: blur(10px);
}
.price-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.price-name {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-3);
}
.price-card.pro .price-name { color: var(--lime); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase;
}
.tag-free { background: rgba(168,204,46,.15); color: var(--lime-deep); border: 1px solid rgba(168,204,46,.3); }
.tag-soon { background: rgba(232,80,47,.14); color: var(--tomato); border: 1px solid rgba(232,80,47,.3); }

.price-amt {
  font-family: var(--serif);
  font-size: 72px; line-height: 1; letter-spacing: -0.03em;
  margin: 6px 0 2px;
}
.price-amt .cur { font-size: 32px; vertical-align: top; margin-right: 2px; }
.price-amt .per {
  display: inline-block; margin-left: 10px;
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-3); letter-spacing: .06em;
  vertical-align: middle;
}
.price-card.pro .price-amt .per { color: rgba(255,249,236,.6); }

.price-desc {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-3);
  position: relative;
}
.price-card.pro .price-desc { color: rgba(255,249,236,.7); }

.price-divider {
  height: 1px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  margin: 6px 0 2px;
}
.price-card.pro .price-divider {
  background: rgba(255,249,236,.15);
}
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 14.5px; line-height: 1.45;
  color: var(--ink-2);
}
.price-card.pro .price-list li { color: rgba(255,249,236,.88); }
.price-list li::before {
  content: "→";
  font-family: var(--mono); color: var(--lime-deep);
  flex: none;
}
.price-card.pro .price-list li::before { color: var(--lime); }
.price-list li.limit::before { content: "·"; color: var(--ink-muted); font-size: 24px; line-height: 0.6; }
.price-list strong { font-weight: 600; color: var(--ink); }
.price-card.pro .price-list strong { color: var(--cream); }

.price-card .btn { align-self: stretch; justify-content: center; margin-top: 12px; }
.price-card.pro .btn-primary { background: var(--lime); color: var(--ink); }
.price-card.pro .btn-primary:hover { background: #E7FF75; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; }
.faq .container { max-width: 900px; }
.faq-list {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item:hover { border-color: color-mix(in srgb, var(--ink) 24%, transparent); }
.faq-item[open] {
  background: var(--cream);
  border-color: var(--ink);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; gap: 20px;
  font-family: var(--serif); font-size: 22px;
  color: var(--ink); cursor: pointer;
  list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ''; }
.faq-q::after {
  content: "+";
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 20px; font-weight: 400;
  color: var(--ink-3);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  transition: transform .3s ease, background .2s ease, color .2s ease;
}
.faq-item[open] .faq-q::after {
  content: "\2212";
  background: var(--lime);
  border-color: var(--ink);
  color: var(--ink);
}
.faq-a { padding: 0 28px 26px; animation: faqIn .25s ease; }
.faq-a p {
  margin: 0; font-size: 15px; line-height: 1.7;
  color: var(--ink-2); max-width: 70ch;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  margin: 60px 0 0; padding: 72px 60px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: end;
}
.cta-banner::before {
  content: ""; position: absolute;
  right: -120px; top: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--lime), transparent 70%);
  filter: blur(10px); opacity: .55;
}
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.02em;
  position: relative;
}
.cta-banner h2 em { color: var(--lime); font-style: italic; }
.cta-banner > div { position: relative; }
.cta-banner p {
  color: rgba(255,249,236,.7); font-size: 16px;
  line-height: 1.5; margin: 18px 0 28px;
  max-width: 500px;
}
.cta-banner .actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cta-banner .side {
  font-family: var(--mono); font-size: 12px;
  color: rgba(255,249,236,.6); letter-spacing: .1em;
}
.cta-banner .side ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.cta-banner .side li::before { content: "→ "; color: var(--lime); }

.cta-banner .btn-store-lg {
  padding: 12px 22px;
  background: var(--cream); color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
}
.cta-banner .btn-store-lg:hover { background: #fff; transform: translateY(-1px); }
.cta-banner .btn-store-lg .btn-store__label { color: var(--ink-muted); }
.cta-banner .btn-store-lg .btn-store__name { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  padding: 56px 0 40px; margin-top: 80px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h5 {
  font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .14em; font-size: 11px;
  color: var(--ink-muted); margin: 0 0 14px;
  font-weight: 600;
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink-2); font-size: 14px;
}
.footer ul a:hover { color: var(--ink); text-decoration: underline; }
.footer p {
  max-width: 320px; color: var(--ink-3);
  font-size: 14px; line-height: 1.5; margin: 0;
}
.footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-muted);
}

/* ============================================================
   LEGAL PAGES (terms + privacy)
   ============================================================ */
.legal-page {
  min-height: 100vh;
  padding: 64px 0 96px;
}
.legal-page .container { max-width: 780px; }

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.legal-header .no {
  display: block; font-family: var(--mono);
  font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 14px;
}
.legal-header h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.legal-meta {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-muted); letter-spacing: .04em;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 28px; letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 16px;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  line-height: 1.1;
}
.legal-content h2:first-child {
  border-top: none; padding-top: 0; margin-top: 0;
}
.legal-content h3 {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-content p,
.legal-content li {
  font-size: 15.5px; line-height: 1.75;
  color: var(--ink-2);
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul, .legal-content ol {
  padding-left: 22px; margin: 0 0 16px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-content a:hover { color: var(--ink); }
.legal-content strong { color: var(--ink); font-weight: 600; }

.legal-callout {
  background: var(--cream);
  border: 1px solid var(--ink);
  border-left-width: 3px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
  position: relative;
}
.legal-callout::before {
  content: "TL;DR";
  position: absolute; top: -11px; left: 18px;
  background: var(--lime); color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; padding: 3px 8px;
  border-radius: 3px; border: 1px solid var(--ink);
}
.legal-callout p {
  margin: 4px 0 0; font-size: 15px;
  line-height: 1.65; color: var(--ink-2);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }
.reveal-delay-4 { transition-delay: .24s; }
.reveal-delay-5 { transition-delay: .30s; }
.reveal-delay-6 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ── Tablet / narrow-desktop range (900–1080px) ──────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .stage { max-width: 560px; margin: 0 auto; width: 100%; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-head p { max-width: none; }
  .section { padding: 88px 0; }
  .how { padding: 88px 0; }
  .pricing { padding: 88px 0; }
  .faq { padding: 88px 0; }

  /* Features / gallery keep 2 columns on tablet to avoid full-width walls of text */
  .features { grid-template-columns: 1fr 1fr; }
  .features .feat:last-child { grid-column: span 2; }

  .gallery { gap: 14px; }
  .g1 { grid-column: span 8; }
  .g2 { grid-column: span 4; }
  .g3 { grid-column: span 6; }
  .g4 { grid-column: span 6; }
  .g5 { grid-column: span 6; }
  .g6 { grid-column: span 6; }

  .pricing-grid { max-width: 720px; }
  .cta-banner { padding: 56px 44px; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .how { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .quote { padding: 72px 0; }
  .hero { padding: 24px 0 56px; }

  .features { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery > * { grid-column: span 12 !important; min-height: 200px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }

  .section-head { margin-bottom: 36px; }
  .section-head h2 br { display: none; }

  .hero h1 {
    font-size: clamp(42px, 11vw, 72px);
    line-height: 1.0;
  }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 16px; margin: 22px 0 28px; }
  .eyebrow { font-size: 11px; margin-bottom: 20px; }

  .stage { aspect-ratio: 1 / 1; max-width: 480px; }
  .spec-card {
    top: auto; bottom: 12%; left: 6%;
    transform: rotate(-3deg) scale(.8);
    transform-origin: bottom left;
  }
  .color-strip {
    right: 4%; bottom: 4%;
    transform: rotate(3deg) scale(.85);
    transform-origin: bottom right;
  }
  .tape-label { top: 42px; }
  .ribbon {
    font-size: 15px;
    padding: 10px 14px;
    max-width: 170px;
    top: 10px; right: 10px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 44px 26px;
    gap: 24px;
  }
  .cta-banner h2 { font-size: clamp(32px, 7vw, 56px); }
  .cta-banner .side ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }

  .footer { margin-top: 48px; padding: 40px 0 28px; }
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer .grid > div:first-child { grid-column: span 2; }
  .footer .bottom { flex-direction: column; gap: 10px; align-items: flex-start; margin-top: 32px; }

  .hero-meta {
    flex-wrap: wrap; gap: 20px 28px;
    padding-top: 24px; margin-top: 28px;
    border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  }
  .hero-meta .n { font-size: 32px; }

  .how-card { padding: 26px 24px; }
  .how-card h3 { font-size: 22px; }
  .how-card::before { font-size: 52px; }

  .feat { min-height: 280px; padding: 28px 24px 24px; gap: 14px; }
  .feat h3 { font-size: 26px; }

  .price-card { padding: 32px 28px; }
  .price-amt { font-size: 56px; }

  .tick-row { font-size: 18px; gap: 32px; }

  .quote blockquote { font-size: clamp(28px, 5.2vw, 44px); }

  .faq-q { font-size: 19px; padding: 20px 22px; gap: 14px; }
  .faq-a { padding: 0 22px 22px; }
  .faq-q::after { width: 28px; height: 28px; font-size: 18px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }
  .how, .pricing, .faq { padding: 52px 0; }
  .quote { padding: 60px 0; }

  .hero-cta { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-cta .btn,
  .hero-cta .btn-store { width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }

  .hero h1 { font-size: clamp(40px, 13vw, 60px); letter-spacing: -0.025em; }
  .hero-sub { font-size: 15.5px; line-height: 1.5; }

  .stage { max-width: 100%; aspect-ratio: 1 / 1.1; }
  .stage-label { font-size: 9px; top: 14px; left: 14px; }
  .tape-label { display: none; }
  .spec-card, .color-strip { display: none; }
  .ribbon { font-size: 13px; padding: 8px 12px; max-width: 140px; }
  .ribbon small { font-size: 9px; margin-bottom: 4px; }
  .pin { width: 12px; height: 12px; }

  .hero-meta { gap: 16px 24px; }
  .hero-meta > div { flex: 1 1 40%; min-width: 110px; }
  .hero-meta .n { font-size: 28px; }
  .hero-meta small { font-size: 10px; }

  .section-head h2 { font-size: clamp(34px, 9vw, 52px); }

  .cta-banner { padding: 36px 22px; border-radius: var(--r-md); }
  .cta-banner h2 { font-size: clamp(30px, 8vw, 44px); }
  .cta-banner .side ul { grid-template-columns: 1fr; }
  .cta-banner .actions { flex-direction: column; align-items: stretch; }
  .cta-banner .actions .btn,
  .cta-banner .actions .btn-store { width: 100%; justify-content: center; }

  .feat { min-height: auto; padding: 24px 22px 22px; }
  .feat h3 { font-size: 22px; }

  .price-card { padding: 28px 24px; }
  .price-amt { font-size: 48px; }
  .price-amt .per { display: block; margin: 6px 0 0; }

  .quote .attrib { gap: 12px; }
  .quote .avatar { width: 40px; height: 40px; }

  .footer .grid { grid-template-columns: 1fr; }
  .footer .grid > div:first-child { grid-column: span 1; }
  .footer .bottom { font-size: 11px; }

  .g1, .g2, .g3, .g4, .g5, .g6 { min-height: 180px !important; }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 40px; }
  .section-head h2 { font-size: 32px; }
  .feat h3 { font-size: 20px; }
}

/* ── Large monitors (≥1400px) ─────────────────────────────── */
@media (min-width: 1400px) {
  .section { padding: 130px 0; }
  .how { padding: 130px 0; }
  .pricing { padding: 130px 0; }
  .faq { padding: 130px 0; }
  .quote { padding: 140px 0; }
  .hero { padding: 60px 0 120px; }

  .section-head { margin-bottom: 72px; gap: 64px; }
  .hero-grid { gap: 80px; }
  .features { gap: 3px; }
  .how-grid { gap: 28px; }

  .feat { padding: 44px 36px 38px; min-height: 420px; gap: 22px; }
  .feat h3 { font-size: 34px; }

  .how-card { padding: 40px 34px; }
  .how-card h3 { font-size: 28px; }

  .price-card { padding: 48px 42px; }
  .price-amt { font-size: 84px; }

  .faq-q { padding: 26px 32px; font-size: 24px; }
  .faq-a { padding: 0 32px 30px; }

  .cta-banner { padding: 88px 72px; gap: 56px; }
}

/* ── Ultra-wide + 4K (≥1800px) ────────────────────────────── */
@media (min-width: 1800px) {
  .section { padding: 150px 0; }
  .quote { padding: 160px 0; }
  .section-head { margin-bottom: 88px; }
  .hero-grid { gap: 96px; }

  .feat { min-height: 480px; padding: 52px 42px 44px; }
  .feat h3 { font-size: 38px; }

  .how-card { padding: 48px 40px; }
  .how-card h3 { font-size: 32px; }
  .how-card::before { font-size: 86px; }

  .price-card { padding: 56px 48px; }
  .price-amt { font-size: 96px; }

  .cta-banner { padding: 104px 88px; }

  .gallery { gap: 24px; }
  .g1, .g2, .g3 { min-height: 420px; }
  .g4, .g5, .g6 { min-height: 300px; }

  .tick-row { font-size: 26px; gap: 56px; }
}

/* ── 4K & 5K monitors (≥2400px) — cap content, generous gutters ── */
@media (min-width: 2400px) {
  .section { padding: 180px 0; }
  .hero { padding: 80px 0 160px; }
  .feat { min-height: 540px; }
  .cta-banner { padding: 120px 104px; }
}

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