/* ------------------------------------------------------------------
   Drawoid AI — marketing site
   Hand-built. Dark charcoal base, teal→magenta AI-energy accents.
------------------------------------------------------------------- */

:root {
  --bg: #0d0e12;
  --bg-raise: #13151b;
  --bg-card: #161922;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --ink: #f2f4f9;
  --ink-soft: #b8bfcf;
  --ink-mute: #8a92a6;
  --teal: #2ee6cf;
  --violet: #8f8dff;
  --magenta: #f45fdc;
  --grad: linear-gradient(120deg, var(--teal), var(--violet) 48%, var(--magenta));
  --radius: 20px;
  --radius-sm: 12px;
  --wrap: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

::selection { background: rgba(46, 230, 207, 0.35); }

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

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- nav ---------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--bg-card);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(13, 14, 18, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 0 0 auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }

.nav-cta {
  margin-left: 4px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #06110f;
  background: var(--grad);
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.2s;
}
.nav-cta:hover { filter: brightness(1.12); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 148px 0 72px;
  overflow: clip;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(52rem 34rem at 12% -6%, rgba(46, 230, 207, 0.16), transparent 62%),
    radial-gradient(50rem 36rem at 92% 4%, rgba(244, 95, 220, 0.14), transparent 60%),
    radial-gradient(40rem 30rem at 55% 110%, rgba(143, 141, 255, 0.10), transparent 65%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60rem 40rem at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(60rem 40rem at 50% 0%, #000 30%, transparent 78%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.03);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero-sub {
  max-width: 34em;
  margin: 0 0 30px;
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.appstore-badge {
  display: inline-flex;
  border-radius: 12px;
  transition: transform 0.2s, filter 0.2s;
}
.appstore-badge:hover { transform: translateY(-2px); filter: brightness(1.08); }
.appstore-badge svg { height: 52px; width: auto; }

.hero-note {
  font-size: 14.5px;
  color: var(--ink-mute);
}
.hero-note strong { color: var(--ink-soft); font-weight: 600; }

.hero-models {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-mute);
}
.hero-models span { color: var(--ink-soft); font-weight: 600; }

/* ---------- before/after slider ---------- */

.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.65),
    0 0 0 6px rgba(255, 255, 255, 0.02);
  aspect-ratio: 1;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(46, 230, 207, 0.7);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    center / 22px no-repeat
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230b0c10" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M8 7l-5 5 5 5M16 7l5 5-5 5"/></svg>'),
    linear-gradient(120deg, var(--teal), var(--magenta));
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.ba-tag {
  position: absolute;
  bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(10, 11, 15, 0.62);
  border: 1px solid var(--line-strong);
  pointer-events: none;
}
.ba-tag-before { left: 14px; color: var(--ink-soft); }
.ba-tag-after { right: 14px; color: var(--teal); }

/* ---------- sections ---------- */

.section { padding: 96px 0; position: relative; }
.section.tint { background: var(--bg-raise); border-block: 1px solid var(--line); }

.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.sec-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.sec-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.sec-head p { margin: 0; color: var(--ink-soft); font-size: 18px; max-width: 36em; }

/* feature split rows */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.feature + .feature { margin-top: 96px; }
.feature.flip .feature-media { order: 2; }

.feature-copy h3 {
  margin: 14px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.feature-copy p { color: var(--ink-soft); margin: 0 0 18px; }

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 16px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(120deg, rgba(46,230,207,.9), rgba(244,95,220,.9));
  mask: center / contain no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
  -webkit-mask: center / contain no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
}

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  box-shadow: 0 26px 70px -24px rgba(0, 0, 0, 0.6);
}
.media-card img, .media-card video { width: 100%; }

.media-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(10, 11, 15, 0.66);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* one sketch, many styles — triptych */

.triptych {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.triptych figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
}
.triptych img { width: 100%; height: 100%; object-fit: cover; }
.triptych figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(10, 11, 15, 0.68);
  border: 1px solid var(--line-strong);
}
.triptych .arrow-cell {
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #06110f;
}

.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
  padding: 0;
  list-style: none;
}
.model-chips li {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.model-chips li small {
  color: var(--ink-mute);
  font-weight: 500;
  font-size: 12px;
  margin-left: 6px;
}

/* keep-everything cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(46, 230, 207, 0.35); }
.card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(46,230,207,0.16), rgba(244,95,220,0.16));
  border: 1px solid var(--line-strong);
}
.card .card-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.015em; }
.card p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }

/* ---------- screenshots strip ---------- */

.shots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.shot {
  flex: 0 0 auto;
  width: 230px;
  scroll-snap-align: start;
}
.shot .frame {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  box-shadow:
    inset 0 0 0 6px #07080b,
    0 20px 50px -18px rgba(0, 0, 0, 0.65);
}
.shot.pad { width: 320px; }
.shot.pad-wide { width: 430px; }
.shot.pad-wide .frame { aspect-ratio: 4 / 3; border-radius: 22px; }
.shot.pad-wide .frame img { border-radius: 16px; }
.shots-sub {
  margin: 26px 0 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.brand-icon { border-radius: 22.5%; display: block; }
.shot.pad .frame { aspect-ratio: 3 / 4; border-radius: 24px; }
.shot .frame img {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: cover;
  border-radius: 24px;
  opacity: 0.92;
}
.shot.pad .frame img { border-radius: 18px; }
.shot .frame .placeholder-tag {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(10, 11, 15, 0.72);
  border: 1px solid var(--line-strong);
  white-space: nowrap;
}
.shot figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
}
.shots-note {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---------- pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.006));
}
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 70px -28px rgba(143, 141, 255, 0.45);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #06110f;
  background: var(--grad);
}
.price-card h3 { margin: 0 0 6px; font-size: 21px; letter-spacing: -0.015em; }
.price-tag { font-size: 15px; color: var(--ink-mute); margin: 0 0 20px; }
.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 13px;
  background: var(--teal);
  mask: center / contain no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
  -webkit-mask: center / contain no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
}
.price-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 52em;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s, background 0.2s;
}
.btn-grad { background: var(--grad); color: #06110f; }
.btn-grad:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

/* ---------- final CTA ---------- */

.cta-final {
  position: relative;
  text-align: center;
  padding: 110px 0;
  overflow: clip;
}
.cta-final .hero-glow { opacity: 0.85; }
.cta-final h2 {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 800;
}
.cta-final p {
  position: relative;
  margin: 0 auto 34px;
  max-width: 34em;
  color: var(--ink-soft);
  font-size: 18px;
}
.cta-final .hero-actions { justify-content: center; position: relative; }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 52px;
  font-size: 14.5px;
  color: var(--ink-mute);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer a { color: var(--ink-soft); text-decoration: none; }
.footer a:hover { color: var(--ink); text-decoration: underline; }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer .brand { font-size: 17px; }

/* ---------- legal pages ---------- */

.legal-main { padding: 130px 0 90px; }
.legal-main .wrap { max-width: 780px; }
.legal-main h1 {
  font-size: clamp(32px, 4.5vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 8px;
}
.legal-dates { color: var(--ink-mute); font-size: 15px; margin: 0 0 36px; }
.legal-main h2 {
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal-main h3 { font-size: 17px; margin: 22px 0 8px; }
.legal-main p, .legal-main li { color: var(--ink-soft); font-size: 16px; }
.legal-main ul { padding-left: 22px; margin: 8px 0 16px; }
.legal-main li { margin: 5px 0; }
.legal-key {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-raise);
  padding: 26px 28px;
  margin: 28px 0 8px;
}
.legal-key h2 { border: 0; padding-top: 0; margin-top: 0; }
.legal-main a { color: var(--teal); }

/* ---------- reveal animation ---------- */

/* hidden-until-scrolled applies only when JS is running (html.js) */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 120px; }
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature.flip .feature-media { order: 0; }
  .feature + .feature { margin-top: 80px; }
  .card-grid, .price-grid { grid-template-columns: 1fr; }
  .triptych { grid-template-columns: 1fr 1fr; }
  .triptych figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .triptych .arrow-cell { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .wrap { width: calc(100% - 40px); }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    padding: 14px 20px 22px;
    background: #0f1116;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 17px; }
  .nav-cta { display: none; }

  .sec-head { margin-bottom: 40px; }
  .appstore-badge svg { height: 48px; }
  .shot { width: 200px; }
  .shot.pad { width: 270px; }
}
