/* WallyPaper — wallypaper.app
   Brand: neon #D9E021 on charcoal #171717. Type: Source Sans 3 (body), Pacifico (script accents),
   Bebas Neue (display numerals). All fonts are self-hosted subsets; the site makes no third-party requests. */

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pacifico";
  src: url("../fonts/pacifico.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #171717;
  --bg-2: #1d1d1d;
  --surface: #222222;
  --surface-2: #2a2a2a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f2f2;
  --text-soft: rgba(242, 242, 242, 0.86);
  --muted: #a6a6a6;
  --dim: #7a7a7a;
  --neon: #d9e021;
  --neon-ink: #141414;
  --neon-ink-soft: rgba(20, 20, 20, 0.72);
  --neon-soft: rgba(217, 224, 33, 0.12);
  --font: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --script: "Pacifico", "Brush Script MT", "Snell Roundhand", cursive;
  --display: "Bebas Neue", "Source Sans 3", Impact, "Arial Narrow", sans-serif;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1120px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(64px, 9vw, 120px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-weight: 700; letter-spacing: -0.015em; text-wrap: balance; }
ul, ol { margin: 0; padding: 0; }
.steps-grid, .solids, .gradients, .themes, .shots, .plans, .pro-unlocks, .name-colors, .hero-meta, .nav-links, .footer-links, .doc-toc { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--neon); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--neon); color: var(--neon-ink); }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--neon); color: var(--neon-ink); padding: 10px 16px; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { top: 16px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Wordmark ---------- */
.wordmark {
  display: inline-block;
  aspect-ratio: 938.81 / 176.45;
  height: 22px;
  background: linear-gradient(90deg, var(--neon) 0 49.9%, #fff 49.9%);
  -webkit-mask: url("../img/wordmark.svg") no-repeat center / contain;
  mask: url("../img/wordmark.svg") no-repeat center / contain;
}
.wordmark--lg { height: clamp(34px, 5vw, 48px); }
.wordmark--ink { background: linear-gradient(90deg, var(--neon-ink) 0 49.9%, var(--neon-ink) 49.9%); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23, 23, 23, 0.8);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 66px; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; padding: 8px 0; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 1rem; transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s ease, top 0.2s ease; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.09em; text-transform: uppercase;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-neon { background: var(--neon); color: var(--neon-ink); }
.btn-neon:hover { background: #e6ec3a; box-shadow: 0 8px 30px rgba(217, 224, 33, 0.25); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.04); }
.btn-ink { background: var(--neon-ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn .divider { width: 1px; height: 20px; background: currentColor; opacity: 0.35; }
.btn svg { width: 18px; height: 18px; flex: none; }

.badge-link { display: inline-block; line-height: 0; border-radius: 8px; transition: transform 0.15s ease, opacity 0.15s ease; }
.badge-link img { height: 54px; width: auto; }
.badge-link:hover { transform: translateY(-1px); opacity: 0.94; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 42rem; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--script); color: var(--neon); font-size: 1.35rem; line-height: 1.2;
  margin-bottom: 14px; letter-spacing: 0;
}
.eyebrow--ink { color: var(--neon-ink); }
h2.title { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; letter-spacing: -0.025em; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--muted); font-weight: 300; margin-top: 16px; }
.lede strong { color: var(--text); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 104px) clamp(48px, 7vw, 96px); isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.hero-bg .doodles {
  position: absolute; inset: -5% -5% -5% -5%;
  background: url("../img/doodles.svg") center / cover no-repeat;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}
.hero-bg .glow {
  position: absolute; right: -10%; top: -10%; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(217, 224, 33, 0.22), rgba(217, 224, 33, 0) 60%);
  filter: blur(10px);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 6vw, 72px); align-items: center; }
.hero-copy .eyebrow { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5.2rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--neon); }
.hero-sub { margin-top: 24px; font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.5; color: var(--text-soft); font-weight: 300; max-width: 34rem; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: var(--dim); font-size: 0.95rem; list-style: none; }
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--neon); }

.hero-visual { position: relative; aspect-ratio: 1 / 1.02; max-width: 520px; margin-inline: auto; width: 100%; }
.phone { position: absolute; width: 50%; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55)); border-radius: 26px; }
.phone img { width: 100%; border-radius: inherit; }
.phone--a { left: 2%; top: 2%; transform: rotate(-7deg); z-index: 1; }
.phone--b { right: 3%; top: 12%; transform: rotate(6deg); z-index: 2; }
.chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 12px; border-radius: 999px;
  background: rgba(30, 30, 30, 0.86); border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--text); font-size: 0.92rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.chip .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--neon); color: var(--neon-ink); display: inline-grid; place-items: center; }
.chip .dot svg { width: 14px; height: 14px; }
.chip--tl { left: -5%; top: 6%; }
.chip--br { right: -2%; bottom: -4%; }
.chip--neon { background: var(--neon); color: var(--neon-ink); border-color: transparent; }
.chip--neon .dot { background: var(--neon-ink); color: var(--neon); }

/* ---------- Steps band ---------- */
.steps { background: var(--neon); color: var(--neon-ink); position: relative; overflow: hidden; }
.steps .title { color: var(--neon-ink); }
.steps .lede { color: var(--neon-ink-soft); font-weight: 400; }
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: clamp(28px, 4vw, 48px) !important; }
.step { position: relative; padding: 26px 22px 26px; border-radius: var(--radius); background: rgba(20, 20, 20, 0.06); border: 1px solid rgba(20, 20, 20, 0.12); }
.step-num { font-family: var(--display); font-size: 3.4rem; line-height: 0.85; color: var(--neon-ink); opacity: 0.9; }
.step-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.step-icon { width: 44px; height: 44px; border-radius: 14px; background: var(--neon-ink); color: var(--neon); display: grid; place-items: center; flex: none; }
.step-icon svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; }
.step p { margin: 0; color: var(--neon-ink-soft); font-size: 1rem; line-height: 1.5; }

/* ---------- Bento cards ---------- */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px); position: relative; overflow: hidden; display: flex; flex-direction: column; min-width: 0;
}
.card h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.card p { color: var(--muted); margin: 0; font-size: 1.02rem; }
.card p + p { margin-top: 0.7em; }
.card .card-body { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.card--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 24px; align-items: stretch; }
.card--split .card-body { align-self: center; }
.card-figure { margin: 0; border-radius: 18px; overflow: hidden; background: var(--neon); min-height: 240px; position: relative; }
.card-figure img { width: 100%; height: 100%; object-fit: cover; object-position: top center; position: absolute; inset: 0; }
.card-figure--tall { min-height: 320px; }
.card-figure--bottom { margin-top: 22px; }
.card--figure-bottom .card-figure { min-height: 220px; }
.card-figure img.card-figure__img--top { object-position: top center; }
.card .card-figure--crew { aspect-ratio: 860 / 690; min-height: 0; background: #171717; }
.card .card-figure--lock { aspect-ratio: 1320 / 1680; min-height: 0; background: #171717; }
.card-figure--crew img, .card-figure--lock img { object-position: center; }

/* Emoji die-cut stickers */
.stickers { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: auto; padding-top: 22px; }
.sticker {
  font-size: 2.6rem; line-height: 1; display: inline-block; padding: 4px;
  filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff) drop-shadow(0 8px 10px rgba(0, 0, 0, 0.45));
  transform: rotate(var(--r, 0deg));
}

/* Gesture pills */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); font-size: 0.92rem; font-weight: 600; color: var(--text-soft); }
.pill svg { width: 16px; height: 16px; color: var(--neon); }

/* ---------- Swatches ---------- */
.swatch-group { margin-top: 34px; }
.swatch-group + .swatch-group { margin-top: 40px; }
.swatch-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.swatch-head h3 { font-size: 1.2rem; font-weight: 700; }
.swatch-head p { margin: 0; color: var(--dim); font-size: 0.95rem; }
.solids { display: flex; flex-wrap: wrap; gap: 10px; }
.solid { width: 46px; height: 46px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
.gradients { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 12px; }
.grad { aspect-ratio: 9 / 14; border-radius: 16px; position: relative; overflow: hidden; background-clip: padding-box; }
.grad span { position: absolute; left: 10px; bottom: 9px; font-size: 0.8rem; font-weight: 700; color: #fff; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); letter-spacing: 0.01em; }
.grad--light span { color: #1a1a1a; text-shadow: none; }
.themes { display: flex; flex-wrap: wrap; gap: 10px; }
.theme {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px 8px 10px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.theme .emoji { font-size: 1.25rem; line-height: 1; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)); }
.theme--light { color: #1a1a1a; text-shadow: none; }

/* Mesh gradients — nine-point approximations of the app's MeshPreset colors */
.mesh-cottoncandy { background: radial-gradient(at 0% 0%, #ffc3e0 0, transparent 60%), radial-gradient(at 50% 0%, #ffe5f1 0, transparent 55%), radial-gradient(at 100% 0%, #c8e7ff 0, transparent 60%), radial-gradient(at 0% 50%, #f7b7d6 0, transparent 55%), radial-gradient(at 100% 50%, #b5d8ff 0, transparent 55%), radial-gradient(at 0% 100%, #ffb3d9 0, transparent 60%), radial-gradient(at 50% 100%, #d9c6ff 0, transparent 55%), radial-gradient(at 100% 100%, #a9cfff 0, transparent 60%), #e9d5ff; }
.mesh-lagoon { background: radial-gradient(at 0% 0%, #0f4c5c 0, transparent 60%), radial-gradient(at 50% 0%, #1b7f8c 0, transparent 55%), radial-gradient(at 100% 0%, #2ec4b6 0, transparent 60%), radial-gradient(at 0% 50%, #0b3d46 0, transparent 55%), radial-gradient(at 100% 50%, #7fe0d8 0, transparent 55%), radial-gradient(at 0% 100%, #062a32 0, transparent 60%), radial-gradient(at 50% 100%, #0e6b75 0, transparent 55%), radial-gradient(at 100% 100%, #3fc1b0 0, transparent 60%), #159a9c; }
.mesh-dusk { background: radial-gradient(at 0% 0%, #2b1055 0, transparent 60%), radial-gradient(at 50% 0%, #4a1b6b 0, transparent 55%), radial-gradient(at 100% 0%, #7a2e7e 0, transparent 60%), radial-gradient(at 0% 50%, #1b0b3a 0, transparent 55%), radial-gradient(at 100% 50%, #e0665c 0, transparent 55%), radial-gradient(at 0% 100%, #120826 0, transparent 60%), radial-gradient(at 50% 100%, #8e3b6e 0, transparent 55%), radial-gradient(at 100% 100%, #f7a65a 0, transparent 60%), #6d3b8c; }
.mesh-meadow { background: radial-gradient(at 0% 0%, #d4f1be 0, transparent 60%), radial-gradient(at 50% 0%, #a8e063 0, transparent 55%), radial-gradient(at 100% 0%, #f9f871 0, transparent 60%), radial-gradient(at 0% 50%, #9bd770 0, transparent 55%), radial-gradient(at 100% 50%, #c6e377 0, transparent 55%), radial-gradient(at 0% 100%, #7cb342 0, transparent 60%), radial-gradient(at 50% 100%, #3e8e41 0, transparent 55%), radial-gradient(at 100% 100%, #b5e48c 0, transparent 60%), #56ab2f; }
.mesh-coral { background: radial-gradient(at 0% 0%, #ffd3b6 0, transparent 60%), radial-gradient(at 50% 0%, #ffaaa5 0, transparent 55%), radial-gradient(at 100% 0%, #ff8b94 0, transparent 60%), radial-gradient(at 0% 50%, #ffe4d6 0, transparent 55%), radial-gradient(at 100% 50%, #ff6f69 0, transparent 55%), radial-gradient(at 0% 100%, #fff1e6 0, transparent 60%), radial-gradient(at 50% 100%, #ffb399 0, transparent 55%), radial-gradient(at 100% 100%, #ff7b54 0, transparent 60%), #ff9f80; }
.mesh-linen { background: radial-gradient(at 0% 0%, #f7f1e8 0, transparent 60%), radial-gradient(at 50% 0%, #f3ece2 0, transparent 55%), radial-gradient(at 100% 0%, #eae8f1 0, transparent 60%), radial-gradient(at 0% 50%, #f1ebe1 0, transparent 55%), radial-gradient(at 100% 50%, #e4ecf3 0, transparent 55%), radial-gradient(at 0% 100%, #efe6d9 0, transparent 60%), radial-gradient(at 50% 100%, #f2ece3 0, transparent 55%), radial-gradient(at 100% 100%, #f8f3ea 0, transparent 60%), #f6f0e6; }

/* ---------- Names & fonts ---------- */
.names-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.name-tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px 18px 18px; text-align: center; min-width: 0;
}
.name-tile .demo { font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.15; color: #fff; margin-bottom: 10px; white-space: nowrap; overflow: hidden; }
.name-tile .label { color: var(--dim); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.font-rounded { font-family: ui-rounded, "SF Pro Rounded", "Nunito", "Arial Rounded MT Bold", var(--font); font-weight: 800; }
.font-classic { font-family: -apple-system, "SF Pro", "Helvetica Neue", Inter, Arial, sans-serif; font-weight: 700; }
.font-serif { font-family: ui-serif, "New York", Georgia, "Times New Roman", serif; font-weight: 700; }
.font-mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-weight: 700; letter-spacing: -0.02em; }
.style-plain { color: #ffe082; }
.style-shadow { color: #fff; text-shadow: 0 4px 12px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.6); }
.style-outline { color: transparent; -webkit-text-stroke: 2px #a7c7e7; }
.style-pill { display: inline-block; padding: 0.05em 0.5em 0.1em; border-radius: 999px; background: #e57f84; color: #fff; }
.name-colors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; align-items: center; }
.name-colors .solid { width: 30px; height: 30px; }
.name-colors .more { color: var(--dim); font-size: 0.95rem; margin-left: 4px; }
.names-note { margin-top: 26px; color: var(--muted); max-width: 46rem; }

/* ---------- Screenshot strip ---------- */
.shots {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px var(--gutter) 24px;
  margin-inline: calc(-1 * var(--gutter)); scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.18); border-radius: 999px; }
.shot { flex: 0 0 auto; width: min(72vw, 300px); scroll-snap-align: start; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: var(--neon); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35); }
.shot img { width: 100%; height: auto; }
@media (min-width: 1200px) {
  .shots { justify-content: center; padding-inline: 0; margin-inline: 0; }
  .shot { width: calc((var(--container) - 5 * 18px) / 6); }
}

/* ---------- Pro plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; position: relative; min-width: 0; }
.plan--featured { border-color: var(--neon); box-shadow: 0 0 0 1px var(--neon), 0 20px 60px rgba(217, 224, 33, 0.12); }
.plan-flag { position: absolute; top: -13px; left: 24px; background: var(--neon); color: var(--neon-ink); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.plan h3 { font-size: 1.1rem; font-weight: 700; color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; }
.plan .price { font-size: clamp(2.2rem, 3.6vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 4px; }
.plan .price small { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 4px; }
.plan .per { color: var(--dim); font-size: 0.95rem; }
.plan .note { margin-top: auto; padding-top: 14px; color: var(--text-soft); font-size: 0.95rem; }
.plan .note strong { color: var(--neon); }
.pro-unlocks { margin-top: clamp(32px, 5vw, 48px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 32px; list-style: none; max-width: 60rem; }
.pro-unlocks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.pro-unlocks svg { width: 20px; height: 20px; color: var(--neon); flex: none; margin-top: 4px; }
.fineprint { margin-top: clamp(28px, 4vw, 40px); color: var(--dim); font-size: 0.9rem; max-width: 62rem; line-height: 1.55; }
.fineprint a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.fineprint a:hover { color: var(--text); }

/* ---------- Privacy pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pillar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; min-width: 0; }
.pillar .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--neon-soft); color: var(--neon); display: grid; place-items: center; margin-bottom: 18px; }
.pillar .icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pillar p { color: var(--muted); margin: 0; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--neon); font-weight: 600; margin-top: 22px; }
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- CTA band ---------- */
.cta { background: var(--neon); color: var(--neon-ink); text-align: center; position: relative; overflow: hidden; }
.cta .title { color: var(--neon-ink); font-size: clamp(2.2rem, 5vw, 3.6rem); }
.cta .lede { color: var(--neon-ink-soft); font-weight: 400; max-width: 36rem; margin-inline: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.cta .wordmark { margin-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 40px; color: var(--muted); font-size: 0.95rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand p { margin: 12px 0 0; max-width: 26rem; color: var(--dim); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; list-style: none; }
.footer-links a { color: var(--muted); font-weight: 500; }
.footer-links a:hover { color: var(--text); }
.footer-meta { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--dim); font-size: 0.88rem; }
.footer-meta a { color: var(--muted); }
.footer-meta a:hover { color: var(--text); }

/* ---------- Document pages (privacy, terms, support) ---------- */
.doc-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(16px, 3vw, 28px); }
.doc-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; }
.doc-meta { margin-top: 16px; color: var(--muted); display: grid; gap: 4px; font-size: 1rem; }
.doc-meta strong { color: var(--text); font-weight: 600; }
.doc { max-width: 46rem; padding-bottom: var(--section); }
.doc h2 { font-size: 1.55rem; font-weight: 700; margin: 2.2em 0 0.6em; letter-spacing: -0.01em; }
.doc h3 { font-size: 1.15rem; font-weight: 700; margin: 1.6em 0 0.5em; }
.doc p, .doc li { color: var(--text-soft); }
.doc ul, .doc ol { padding-left: 1.3em; margin: 0 0 1em; }
.doc li { margin-bottom: 0.5em; }
.doc li::marker { color: var(--neon); }
.doc a { color: var(--neon); text-decoration: underline; text-decoration-color: rgba(217, 224, 33, 0.4); text-underline-offset: 3px; }
.doc a:hover { text-decoration-color: var(--neon); }
.doc strong { color: var(--text); font-weight: 600; }
.doc .summary { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--neon); border-radius: 16px; padding: 20px 24px; margin: 28px 0 8px; }
.doc .summary p:last-child { margin-bottom: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 12px 0 24px; font-size: 0.98rem; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.doc th { color: var(--muted); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.doc td { color: var(--text-soft); }
.doc .table-wrap { overflow-x: auto; }
.doc-toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 6px; list-style: none; padding: 0; }
.doc-toc a { display: inline-block; padding: 6px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.doc-toc a:hover { color: var(--text); border-color: var(--line-strong); }

/* Support */
.support-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--neon); border-radius: var(--radius); padding: 28px; position: sticky; top: 90px; }
.contact-card h2 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-card p { color: var(--muted); }
.contact-card .email { font-size: 1.1rem; font-weight: 600; color: var(--text); word-break: break-all; }
.contact-card ul { color: var(--muted); font-size: 0.95rem; padding-left: 1.2em; margin-top: 12px; }
.contact-card li { margin-bottom: 4px; }
.faq { display: grid; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 0; overflow: hidden; }
.faq details[open] { border-color: var(--line-strong); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 54px 18px 22px; font-weight: 700; font-size: 1.08rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--neon); border-bottom: 2px solid var(--neon); transform: translateY(-70%) rotate(45deg); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq .answer { padding: 0 22px 20px; color: var(--text-soft); }
.faq .answer p { margin: 0 0 0.8em; }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer ol, .faq .answer ul { padding-left: 1.3em; margin: 0.4em 0 0.8em; }
.faq .answer li { margin-bottom: 0.35em; }
.faq .answer a { color: var(--neon); text-decoration: underline; text-underline-offset: 3px; }
.faq-group h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.faq-group:first-child h2 { margin-top: 0; }

/* Embedded in Google Sites (iframe) — hide chrome, keep the document */
.embedded .site-header, .embedded .site-footer { display: none; }
.embedded .doc-hero { padding-top: 8px; }

/* 404 */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding-block: var(--section); }
.notfound .big { font-family: var(--display); font-size: clamp(6rem, 20vw, 12rem); line-height: 0.9; color: var(--neon); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-top: 8px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .span-2, .span-3, .span-4 { grid-column: span 3; }
  .card--split { grid-template-columns: 1fr; }
  .card-figure { min-height: 220px; }
  .names-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans { grid-template-columns: 1fr; max-width: 30rem; }
  .pillars { grid-template-columns: 1fr; }
  .pro-unlocks { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}
@media (max-width: 800px) {
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 66px; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(23, 23, 23, 0.97); border-bottom: 1px solid var(--line); padding: 8px 0 12px;
  }
  .nav-links li a { display: block; padding: 12px var(--gutter); font-size: 1.05rem; }
  .nav-open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .nav-cta .badge-link img { height: 36px; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .span-2, .span-3, .span-4 { grid-column: span 6; }
  .bento { gap: 14px; }
  .names-grid { gap: 10px; }
  .name-tile { padding: 20px 12px 14px; }
  .name-tile .demo { font-size: 1.7rem; }
  .solid { width: 38px; height: 38px; }
  .gradients { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; }
  .hero-cta { gap: 16px; }
  .badge-link img { height: 48px; }
  .chip { font-size: 0.82rem; padding: 8px 12px 8px 10px; }
  .chip--tl { left: 0; top: -3%; }
  .chip--br { right: 0; bottom: -3%; }
  .footer-links { gap: 18px; }
}
@media (max-width: 400px) {
}
