/* =========================================================================
   AMR — White Tech, with a Smirk (and a friendly pin)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Geist:wght@300..800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* The [hidden] HTML attribute should always hide an element. Author rules
   that set display (e.g. display: grid on .lead-form) would otherwise win. */
[hidden] { display: none !important; }

:root {
  /* Surface */
  --bg:           #FFFFFF;
  --bg-2:         #FAFAFB;
  --bg-3:         #F4F4F6;
  --surface:      #FFFFFF;

  /* Ink */
  --ink:          #0A0A0F;
  --ink-2:        #25262C;
  --ink-3:        #5A5B66;
  --ink-faint:    #8B8C95;

  /* Pop colors */
  --coral:        #FF5536;
  --coral-deep:   #E13818;
  --coral-soft:   #FFE4D9;
  --coral-tint:   #FFEFE7;

  --mint:         #8FE6B0;
  --mint-deep:    #36B968;
  --mint-soft:    #DAF3E2;
  --mint-tint:    #ECF8F0;

  --lemon:        #FFD83D;
  --lemon-deep:   #E8B800;
  --lemon-soft:   #FFF1A1;

  --sky:          #BFD8FA;
  --plum:         #D7C3F5;

  /* Lines */
  --rule:         rgba(10, 10, 15, 0.10);
  --rule-2:       rgba(10, 10, 15, 0.18);
  --rule-3:       rgba(10, 10, 15, 0.30);

  /* Type */
  --display: 'Boldonse', 'Archivo Black', system-ui, sans-serif;
  --body:    'Geist', -apple-system, 'Helvetica Neue', sans-serif;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', monospace;

  /* Sizing */
  --container: 1280px;
  --gutter:    32px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* Motion */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-flat:    3px 3px 0 var(--ink);
  --shadow-flat-md: 5px 5px 0 var(--ink);
  --shadow-flat-lg: 8px 8px 0 var(--ink);
  --shadow-flat-coral:  6px 6px 0 var(--coral);
}

/* =========================================================================
   Reset & base
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss03', 'cv11';
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--coral); color: var(--bg); }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  border-radius: 8px;
}

/* =========================================================================
   Type primitives — Boldonse for display, careful sizing
   ========================================================================= */

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.98;
  color: var(--ink);
}

/* Big-headline helpers — tuned to prevent overlap */
.h-mega {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.h-1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.h-2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  margin: 0;
}

/* The accent word treatment — lemon highlight that sits BEHIND the text */
.accent {
  position: relative;
  display: inline-block;
  color: var(--coral);
  z-index: 0;
}
.accent::before {
  content: '';
  position: absolute;
  left: -1%;
  right: -1%;
  bottom: 8%;
  height: 36%;
  background: var(--lemon);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-3deg);
}

.accent-mint { color: var(--mint-deep); }
.accent-mint::before { background: var(--mint-soft); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lemon);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}
.kicker.coral { background: var(--coral); color: var(--bg); }
.kicker.mint  { background: var(--mint); }
.kicker.lemon { background: var(--lemon); }
.kicker.sky   { background: var(--sky); }
.kicker.white { background: var(--bg); }
.kicker.ink   { background: var(--ink); color: var(--bg); }

.kicker-plain {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker-plain::before {
  content: '✺';
  font-size: 14px;
  color: var(--coral);
}

h1, h2, h3, h4, h5 { margin: 0; }

/* =========================================================================
   Layout
   ========================================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

/* =========================================================================
   Disclosure marquee — top
   ========================================================================= */

.disclosure {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.005em;
  position: relative;
  z-index: 60;
  overflow: hidden;
  border-bottom: 1.5px solid var(--ink);
}
.disclosure-track {
  display: flex;
  gap: 56px;
  padding: 11px 0;
  white-space: nowrap;
  animation: disclosure-scroll 55s linear infinite;
  width: max-content;
}
.disclosure-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.disclosure-item .star {
  color: var(--coral);
  font-size: 14px;
  line-height: 1;
}
.disclosure-item strong { color: var(--bg); font-weight: 600; letter-spacing: 0.02em; }
.disclosure-item a {
  color: var(--lemon);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
@keyframes disclosure-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   Masthead
   ========================================================================= */

.masthead {
  background: var(--bg);
  border-bottom: 1.5px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.masthead-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}
.brand-mark {
  display: block;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  margin: -6px 0;
  transform-origin: center 75%;
  transition: transform 600ms var(--ease-back);
}
@media (max-width: 580px) {
  .brand { align-items: center; }
  .brand-mark { margin: 0; width: 42px; height: 42px; }
  .brand-name { padding-top: 5px; }
}
/* ── Brand-mark click animations ──────────────────────────────────────────
   On every click of the .brand link, JS picks a random class from this set
   to apply to .brand-mark for one play of the keyframes. */
.brand-mark.spin    { animation: pin-spin    800ms var(--ease-back); transform-origin: center 75%; }
.brand-mark.shake   { animation: pin-shake   500ms ease-in-out;      transform-origin: center; }
.brand-mark.bounce  { animation: pin-bounce  600ms cubic-bezier(.34,1.56,.64,1); transform-origin: center bottom; }
.brand-mark.pulse   { animation: pin-pulse   500ms ease-out;         transform-origin: center; }
.brand-mark.flip    { animation: pin-flip    700ms ease-in-out;      transform-origin: center; }
.brand-mark.squish  { animation: pin-squish  600ms ease-in-out;      transform-origin: center bottom; }
.brand-mark.dance   { animation: pin-dance   800ms ease-in-out;      transform-origin: center bottom; }
.brand-mark.tilt    { animation: pin-tilt    700ms ease-in-out;      transform-origin: center 80%; }

/* Sub-element animations — these target specific bits of the SVG */
.brand-mark.wink .eye-r {
  animation: pin-wink 500ms ease-in-out;
  transform-box: fill-box;
  transform-origin: center;
}
.brand-mark.eyes .eye-l,
.brand-mark.eyes .eye-r {
  animation: pin-eyes 500ms cubic-bezier(.34,1.56,.64,1);
  transform-box: fill-box;
  transform-origin: center;
}
.brand-mark.color .pin-fill {
  animation: pin-color 1400ms ease-in-out;
}

@keyframes pin-spin {
  0%   { transform: rotate(0); }
  20%  { transform: rotate(-12deg); }
  60%  { transform: rotate(380deg); }
  100% { transform: rotate(360deg); }
}
@keyframes pin-shake {
  0%, 100% { transform: translateX(0) rotate(0); }
  20%      { transform: translateX(-4px) rotate(-3deg); }
  40%      { transform: translateX(4px)  rotate(3deg); }
  60%      { transform: translateX(-3px) rotate(-2deg); }
  80%      { transform: translateX(2px)  rotate(2deg); }
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  35%      { transform: translateY(-12px); }
  60%      { transform: translateY(2px); }
  80%      { transform: translateY(-3px); }
}
@keyframes pin-pulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
@keyframes pin-flip {
  0%   { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}
@keyframes pin-squish {
  0%, 100% { transform: scale(1, 1); }
  30%      { transform: scale(1.2, 0.8); }
  60%      { transform: scale(0.85, 1.15); }
  85%      { transform: scale(1.05, 0.95); }
}
@keyframes pin-dance {
  0%, 100% { transform: rotate(0) translateY(0); }
  20%      { transform: rotate(-15deg) translateY(-3px); }
  40%      { transform: rotate(15deg)  translateY(-6px); }
  60%      { transform: rotate(-12deg) translateY(-3px); }
  80%      { transform: rotate(12deg)  translateY(0); }
}
@keyframes pin-tilt {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-22deg); }
  50%      { transform: rotate(0); }
  75%      { transform: rotate(22deg); }
}
@keyframes pin-wink {
  0%, 100% { transform: scaleY(1); }
  40%, 60% { transform: scaleY(0.1); }
}
@keyframes pin-eyes {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.7); }
}
@keyframes pin-color {
  0%   { fill: #FF5536; }   /* coral */
  20%  { fill: #FFD83D; }   /* lemon */
  40%  { fill: #8FE6B0; }   /* mint */
  60%  { fill: #B5DBFF; }   /* sky */
  80%  { fill: #FF89B5; }   /* pink */
  100% { fill: #FF5536; }   /* back to coral */
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a:not(.btn) {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease-out);
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  white-space: nowrap;
}
.btn::after {
  content: '→';
  font-weight: 400;
  transition: transform 220ms var(--ease-out);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--coral-deep);
}
.btn:hover::after { transform: translateX(3px); }
.btn:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn-lg {
  padding: 18px 30px;
  font-size: 17px;
  border-width: 2px;
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-lg:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn-mint  { background: var(--mint); color: var(--ink); }
.btn-mint:hover { background: var(--mint-deep); color: var(--bg); }
.btn-lemon { background: var(--lemon); color: var(--ink); }
.btn-lemon:hover { background: var(--lemon-deep); }
.btn-white { background: var(--bg); color: var(--ink); }
.btn-white:hover { background: var(--bg-2); }
.btn-ink   { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ink::after { color: var(--bg); }

.btn-ghost {
  background: transparent;
  box-shadow: none;
  border-width: 1.5px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  box-shadow: none;
  transform: translateY(-1px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
  transition: gap 200ms var(--ease-out);
}
.link-arrow:hover { gap: 12px; }

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--ink) 0.8px, transparent 1.2px);
  background-size: 26px 26px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-stickers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

/* Hero title — careful sizing to prevent overlap */
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  /* Boldonse needs breathing room */
  padding-bottom: 0.05em;
}
.hero-title .accent { padding: 0 0.04em; }

.hero-sub {
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 14px;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-quip {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 480px;
  margin: 0 0 38px;
  font-style: italic;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-meta {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  display: flex;
  gap: 36px;
  border-top: 1.5px solid var(--ink);
  flex-wrap: wrap;
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-meta li strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 0.05em;
}
.hero-meta li strong.coral { color: var(--coral); }
.hero-meta li strong.mint { color: var(--mint-deep); }

/* Hero illustration */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 0 0 auto;
  width: 100%;
}
.hero-art-canvas {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
}

/* Small map overview — layered: tan base + parks + water + white streets + buildings + pin */

.map-overview {
  background: #E5DDC5; /* warm beige map paper, gives white streets contrast */
}

.map-base {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 15, 18, 0.05) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* SVG terrain layer fills the canvas */
.map-terrain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Parks (mint blobs with irregular border-radius) */
.map-park {
  position: absolute;
  background: #8FE6B0;
  border: 1px solid rgba(10, 15, 18, 0.18);
}

/* Water (light blue blob) */
.map-water {
  position: absolute;
  background: #B5DBFF;
  border: 1px solid rgba(10, 15, 18, 0.18);
}

/* Streets — white rectangles with thin gray side borders to suggest curbs */
.map-street {
  position: absolute;
  background: #FFFFFF;
  border-color: rgba(10, 15, 18, 0.18);
  border-style: solid;
}
.map-street--h {
  /* Edge-to-edge horizontal street */
  left: -12%;
  right: -12%;
  border-width: 1.5px 0;
}
.map-street--v {
  /* Edge-to-edge vertical street */
  top: -12%;
  bottom: -12%;
  border-width: 0 1.5px;
}
.map-street--main {
  /* Main road — slightly warm tint, thicker centerline */
  background: #FFF5D9;
  border-color: rgba(180, 130, 0, 0.35);
  border-width: 2px 0;
}
.map-street-line--main {
  background:
    repeating-linear-gradient(
      to right,
      rgba(180, 100, 0, 0.55) 0 14px,
      transparent 14px 24px
    );
  height: 3px;
}

/* Building blocks — small filled rectangles */
.map-block {
  position: absolute;
  background: #F5EFD9;
  border: 1px solid rgba(10, 15, 18, 0.22);
  border-radius: 2px;
  pointer-events: none;
}
.map-block--dark { background: rgba(10, 15, 18, 0.10); }
.map-block--lemon { background: #FFE38A; border-color: rgba(180, 130, 0, 0.35); }
.map-block--coral { background: #FFCBB5; border-color: rgba(180, 70, 40, 0.30); }
.map-block--mint  { background: #B8EAC8; border-color: rgba(40, 130, 75, 0.30); }

/* Dashed centerline along streets — uses a tiled gradient image for crisp dashes */
.map-street-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2.5px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(
      to right,
      rgba(10, 15, 18, 0.45) 0 12px,
      transparent 12px 22px
    );
}
.map-street-line--v {
  left: 50%;
  right: auto;
  top: 0;
  bottom: 0;
  width: 2.5px;
  height: auto;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(10, 15, 18, 0.45) 0 12px,
      transparent 12px 22px
    );
}

/* Pin wrapper — small marker, ~1/3 of previous size */
.map-pin {
  position: absolute;
  width: 13%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(2px 4px 0 rgba(10, 15, 18, 0.18));
}
.map-pin svg {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: auto;
  cursor: pointer;
  overflow: visible;
}

/* Floating stickers */
.hero-art .sticker {
  position: absolute;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.005em;
  background: var(--mint);
  color: var(--ink);
  padding: 14px 18px 12px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 5;
  transform: rotate(-6deg);
  line-height: 1;
}
.hero-art .sticker .small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-art .sticker.s1 {
  top: -16px;
  right: -22px;
  background: var(--lemon);
  transform: rotate(8deg);
}
.hero-art .sticker.s2 {
  bottom: 36px;
  left: -28px;
  background: var(--coral);
  color: var(--bg);
  transform: rotate(-6deg);
}
.hero-art .sticker.s2 .small { color: rgba(255,255,255,0.78); }

/* The pin character (used in awkward section, hero, etc.) */
.pin-mascot {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.pin-mascot.bob { animation: pin-bob 3.6s ease-in-out infinite; }
.pin-body {
  transform-box: fill-box;
  transform-origin: 50% 90%;
}
.pin-mascot.spin .pin-body { animation: pin-spin 800ms var(--ease-back); }
@keyframes pin-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* =========================================================================
   Numbers marquee
   ========================================================================= */

.numbers {
  background: var(--ink);
  color: var(--bg);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.numbers-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 22px 0;
  animation: numbers-scroll 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.numbers-item {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}
.numbers-item strong {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--lemon);
  font-weight: 400;
  line-height: 1;
  padding-bottom: 0.05em;
}
.numbers-item span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.numbers-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes numbers-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   The awkward part
   ========================================================================= */

.awkward {
  background: var(--coral-tint);
  padding: 100px 0;
  position: relative;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.awkward::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 22px;
  background-image: linear-gradient(45deg, var(--coral) 25%, transparent 25%, transparent 50%, var(--coral) 50%, var(--coral) 75%, transparent 75%, transparent);
  background-size: 24px 24px;
  opacity: 0.22;
}

.awkward-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.awkward-art {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 320px;
  width: 100%;
}
.awkward-art svg { width: 100%; height: 100%; }
.awkward-art-bubble {
  position: absolute;
  top: 4%;
  right: -14%;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 12px 16px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.005em;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(6deg);
  z-index: 5;
  white-space: nowrap;
}
.awkward-art-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 30%;
  width: 14px;
  height: 14px;
  background: var(--bg);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

.awkward h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 24px;
  padding-bottom: 0.08em;
}
.awkward h2 .strike {
  position: relative;
  color: var(--ink-3);
  display: inline-block;
}
.awkward h2 .strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 48%;
  height: 5px;
  background: var(--coral);
  transform: skewY(-3deg);
  border-radius: 2px;
}
.awkward h2 .swap {
  display: block;
  color: var(--coral);
  font-style: normal;
  margin-top: 0.08em;
}

.awkward-body {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 0 20px;
}
.awkward-body strong { color: var(--ink); font-weight: 600; }
.awkward-body a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.awkward-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.awkward-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: var(--bg);
  color: var(--ink);
  padding: 9px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 500;
}
.awkward-tag.coral { background: var(--coral); color: var(--bg); }
.awkward-tag.mint  { background: var(--mint); }
.awkward-tag.lemon { background: var(--lemon); }
.awkward-tag.ink   { background: var(--ink); color: var(--bg); }

/* =========================================================================
   How it works
   ========================================================================= */

.how {
  background: var(--bg);
  padding: 120px 0 110px;
  position: relative;
}

.section-head {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 0;
  padding-bottom: 0.08em;
}
.section-head .head-aside {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
}
.section-head .head-aside strong { color: var(--ink); font-weight: 600; }
.section-head .head-aside a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px 30px 32px;
  position: relative;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 280ms var(--ease-back), box-shadow 280ms var(--ease-back);
}
.step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.step:nth-child(1) { background: var(--mint-tint); }
.step:nth-child(2) { background: var(--lemon-soft); }
.step:nth-child(3) { background: var(--coral-tint); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--mint-deep);
  color: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 22px;
  box-shadow: 3px 3px 0 var(--ink);
  padding-bottom: 0.08em;
}
.step:nth-child(2) .step-num { background: var(--lemon); color: var(--ink); }
.step:nth-child(3) .step-num { background: var(--coral); color: var(--bg); }

.step h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.012em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 0.06em;
}
.step p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.step p strong { color: var(--ink); font-weight: 600; }
.step-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 14px;
  border-top: 1.5px solid var(--rule-2);
}
.step-foot::before {
  content: '◷';
  font-size: 13px;
  color: var(--coral);
}

/* =========================================================================
   Where you appear
   ========================================================================= */

.appear {
  background: var(--ink);
  color: var(--bg);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.appear::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
}

.appear .section-head h2 { color: var(--bg); }
.appear .section-head .head-aside { color: rgba(255, 255, 255, 0.75); }
.appear .section-head .head-aside strong { color: var(--bg); }
.appear .kicker-plain { color: rgba(255, 255, 255, 0.65); }
.appear .kicker-plain::before { color: var(--lemon); }

.appear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.appear-item {
  padding: 36px 28px 36px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  transition: background 250ms;
}
.appear-item:nth-child(3n) { border-right: none; }
.appear-item:nth-last-child(-n+3) { border-bottom: none; }
.appear-item:hover { background: rgba(255, 255, 255, 0.05); }

.appear-item-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: 20px;
}
.appear-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--mint);
}
.appear-item h3 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--bg);
  margin: 0 0 10px;
  padding-bottom: 0.05em;
}
.appear-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.appear-item .quip {
  font-family: var(--body);
  font-style: italic;
  font-size: 13px;
  color: var(--lemon);
  margin-top: 12px;
  display: block;
}

/* =========================================================================
   Pricing
   ========================================================================= */

.pricing {
  background: var(--mint-tint);
  padding: 130px 0;
  position: relative;
  border-bottom: 2px solid var(--ink);
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(143, 230, 176, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255, 85, 54, 0.10) 0%, transparent 30%);
  pointer-events: none;
}

.pricing-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.pricing-head .kicker-plain { justify-content: center; display: inline-flex; }
.pricing-head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 16px 0 14px;
  padding-bottom: 0.08em;
}
.pricing-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
}
.pricing-head p strong { color: var(--ink); font-weight: 600; }

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  padding: 52px 56px 48px;
  position: relative;
  box-shadow: 14px 14px 0 var(--ink);
  z-index: 2;
}

.pricing-card-stickers {
  position: absolute;
  top: -22px;
  right: 24px;
  display: flex;
  gap: 8px;
}
.pricing-sticker {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lemon);
  color: var(--ink);
  padding: 7px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}
.pricing-sticker.coral { background: var(--coral); color: var(--bg); transform: rotate(4deg); }
.pricing-sticker.mint  { background: var(--mint); transform: rotate(-3deg); }
.pricing-sticker.lemon { background: var(--lemon); transform: rotate(2deg); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.pricing-amount-num {
  font-family: var(--display);
  font-size: clamp(80px, 10vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-weight: 400;
  padding-bottom: 0.06em;
}
.pricing-amount-cur {
  font-family: var(--display);
  font-size: 38px;
  color: var(--coral);
  align-self: flex-start;
  margin-top: 12px;
}
.pricing-amount-cents {
  font-family: var(--display);
  font-size: 38px;
  color: var(--coral);
  align-self: flex-start;
  margin-top: 12px;
}
.pricing-amount-aside {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-amount-aside .a {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
  padding-bottom: 0.06em;
}
.pricing-amount-aside .b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.pricing-rule {
  border: none;
  border-top: 1.5px solid var(--ink);
  margin: 28px 0 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.pricing-features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.pricing-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--mint);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}
.pricing-features li strong { color: var(--ink); font-weight: 600; }

.pricing-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pricing-cta .btn { flex: 1; justify-content: center; min-width: 200px; }

.pricing-fine {
  border-top: 1.5px solid var(--rule-2);
  padding-top: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
.pricing-fine strong { color: var(--ink); font-weight: 600; }
.pricing-fine a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.pricing-fine a:hover { color: var(--coral-deep); }

/* =========================================================================
   Testimonials
   ========================================================================= */

.quotes {
  background: var(--bg);
  padding: 120px 0;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  margin: 0;
  position: relative;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 280ms var(--ease-back), box-shadow 280ms var(--ease-back);
}
.quote:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.quote:nth-child(1) { background: var(--lemon-soft); }
.quote:nth-child(2) { background: var(--coral-tint); }
.quote:nth-child(3) { background: var(--mint-tint); }

.quote-mark {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.6;
  color: var(--coral);
  margin-bottom: 14px;
  padding-bottom: 0.06em;
}
.quote blockquote {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 26px;
  padding-bottom: 0.04em;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1.5px solid var(--rule-2);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-2);
}
.quote figcaption .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
  padding-bottom: 0.08em;
}
.quote:nth-child(1) figcaption .avatar { background: var(--coral); }
.quote:nth-child(2) figcaption .avatar { background: var(--mint-deep); }
.quote:nth-child(3) figcaption .avatar { background: var(--ink); }

.quote figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 1px;
}
.quote figcaption .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  display: block;
}

/* =========================================================================
   FAQ
   ========================================================================= */

.faq {
  background: var(--bg);
  padding: 120px 0;
  border-top: 1.5px solid var(--rule-2);
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.faq-list li {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms, box-shadow 200ms;
}
.faq-list li:hover { box-shadow: 4px 4px 0 var(--ink); transform: translate(-1px, -1px); }
.faq-list details { position: relative; }
.faq-list summary {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.1;
  list-style: none;
  cursor: pointer;
  padding: 26px 70px 26px 30px;
  position: relative;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--lemon);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  transition: transform 240ms var(--ease-back), background 200ms;
  padding-bottom: 0.06em;
}
.faq-list details[open] summary::after {
  content: '−';
  background: var(--coral);
  color: var(--bg);
  transform: translateY(-50%) rotate(180deg);
}
.faq-list .answer {
  padding: 0 30px 32px 30px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 740px;
}
.faq-list .answer p:first-child { margin-top: 0; }
.faq-list .answer p:last-child { margin-bottom: 0; }
.faq-list .answer p { margin: 12px 0; }
.faq-list .answer strong { color: var(--ink); font-weight: 600; }
.faq-list .answer a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.faq-list .answer .joke {
  font-style: italic;
  color: var(--ink-3);
}

/* =========================================================================
   Lead form
   ========================================================================= */

.start {
  background: var(--ink);
  color: var(--bg);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.start::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(60px);
}
.start::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 460px;
  height: 460px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(80px);
}

.start-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.start-side .kicker-plain { color: var(--lemon); }
.start-side .kicker-plain::before { color: var(--mint); }
.start-side h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--bg);
  margin: 18px 0 24px;
  padding-bottom: 0.08em;
}
.start-side p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
  max-width: 460px;
}
.start-side p strong { color: var(--bg); font-weight: 600; }

.start-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.start-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.start-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--mint);
  border: 1.5px solid var(--bg);
  border-radius: 50%;
}

.lead-card {
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  padding: 44px 44px 36px;
  box-shadow: 12px 12px 0 var(--coral);
  position: relative;
}
.lead-card-corner {
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--lemon);
  color: var(--ink);
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}

.lead-head {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1.5px solid var(--rule-2);
}
.lead-head h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0 0 6px;
  padding-bottom: 0.06em;
}
.lead-head p {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
}

.lead-form { display: grid; gap: 16px; }
.lead-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form select {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  padding: 15px 18px;
  background: var(--bg-2);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 180ms, box-shadow 180ms, background 180ms;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.lead-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' stroke='%230A0A0F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  padding-right: 42px;
  cursor: pointer;
}
.lead-form input::placeholder { color: var(--ink-faint); }
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--coral);
  background-color: var(--bg);
  box-shadow: 0 0 0 4px rgba(255, 85, 54, 0.18);
}
.lead-form .row > [hidden] { display: none; }

.lead-error {
  font-family: var(--body);
  font-size: 14px;
  color: var(--coral-deep);
  background: var(--coral-tint);
  border: 1.5px solid var(--coral);
  border-radius: 10px;
  padding: 12px 16px;
}

/* ── Step 2 (complete.php) ─────────────────────────────────────────────── */
.complete-form { max-width: 720px; margin: 0 auto; gap: 36px; }
.complete-section h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.complete-section > p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--ink-3);
}
.complete-section input[type="text"],
.complete-section input[type="tel"] { margin-bottom: 10px; }
.complete-section input[type="text"]:last-child,
.complete-section input[type="tel"]:last-child { margin-bottom: 0; }

.hours-grid { display: flex; flex-direction: column; gap: 10px; }
.hour-row {
  display: grid;
  grid-template-columns: 90px auto auto 1fr 12px 1fr;
  gap: 14px;
  align-items: center;
}
.hour-day {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hour-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  white-space: nowrap;
}
.hour-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.hour-toggle input[type="checkbox"]:checked { background: var(--ink); }
.hour-toggle input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
}
.hour-sep { text-align: center; color: var(--ink-3); }

/* When a row is marked Closed or 24 hrs, fade the time fields so it's clear
   they don't apply (but keep the checkboxes themselves crisp & clickable). */
.hour-row:has(.hour-toggle input:checked) .hour-day,
.hour-row:has(.hour-toggle input:checked) input[type="time"],
.hour-row:has(.hour-toggle input:checked) .hour-sep {
  opacity: 0.35;
  pointer-events: none;
}
.hour-row:has(.hour-toggle input:checked) .hour-toggle:not(:has(input:checked)) {
  opacity: 0.45;
}
.lead-form input[type="time"] {
  font-family: var(--body);
  font-size: 15px;
  padding: 11px 14px;
  background: var(--bg-2);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 10px;
}
.lead-form input[type="time"]:focus {
  outline: none;
  border-color: var(--coral);
  background-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(255, 85, 54, 0.18);
}

.complete-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.complete-actions .lead-submit { flex: 1; }
.complete-skip {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.complete-success { text-align: center; padding: 60px 20px; }
.complete-success-mark {
  font-family: var(--display);
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--mint-deep);
}

@media (max-width: 580px) {
  .hour-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hour-day { grid-column: 1 / 3; }
  .hour-sep { display: none; }
  .complete-actions { flex-direction: column; align-items: stretch; }
  .complete-actions .complete-skip { text-align: center; }
}

.lead-ack {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background: var(--coral-tint);
  border: 1.5px dashed var(--ink);
  border-radius: 12px;
  margin-top: 4px;
}
.lead-ack input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  border-radius: 4px;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.lead-ack input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.lead-ack input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--bg);
  font-weight: 700;
}
.lead-ack label {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.lead-ack label strong { color: var(--ink); font-weight: 600; }
.lead-ack label {
  display: block;
}
.lead-ack label .nowrap {
  white-space: nowrap;
  display: inline-block;
}
.lead-ack label a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.lead-submit {
  margin-top: 8px;
  padding: 18px 26px;
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 16.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 4px 4px 0 var(--coral);
  transition: all 220ms var(--ease-out);
}
.lead-submit::after {
  content: '→';
  transition: transform 220ms var(--ease-out);
}
.lead-submit:hover {
  background: var(--coral);
  border-color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.lead-submit:hover::after { transform: translateX(4px); }

.lead-foot {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lead-foot .dot {
  width: 4px;
  height: 4px;
  background: var(--ink-faint);
  border-radius: 50%;
}

/* Form success state */
.lead-success {
  text-align: center;
  padding: 32px 12px 12px;
  display: none;
}
.lead-success.show { display: block; }
.lead-success .pin-celebration {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  animation: celebrate 600ms var(--ease-back);
}
@keyframes celebrate {
  0%   { transform: scale(0.3) rotate(-30deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.lead-success h3 {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  padding-bottom: 0.06em;
}
.lead-success p {
  color: var(--ink-3);
  font-size: 15px;
  margin: 0;
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
  background: var(--bg);
  border-top: 2px solid var(--ink);
  padding: 80px 0 36px;
  position: relative;
}

.footer-disclaimer {
  background: var(--bg-2);
  border: 1.5px solid var(--ink);
  padding: 26px 30px;
  border-radius: var(--radius);
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
}
.footer-disclaimer::before {
  content: 'THE LEGAL BIT · REQUIRED · PROBABLY BORING';
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  background: var(--coral);
  color: var(--bg);
  padding: 4px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
}
.footer-disclaimer strong { color: var(--ink); font-weight: 600; }
.footer-disclaimer a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-text {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.footer-col a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--coral); }
.footer-col p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

.footer-bottom {
  border-top: 1.5px solid var(--ink);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.footer-bottom em {
  font-family: var(--display);
  font-style: normal;
  font-size: 13px;
  color: var(--coral);
  letter-spacing: -0.005em;
  margin: 0 4px;
}
/* =========================================================================
   Subpages
   ========================================================================= */

.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1.5px solid var(--rule-2);
  background: var(--bg);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin: 14px 0 18px;
  padding-bottom: 0.06em;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 660px;
  margin: 0;
}

.prose {
  max-width: 720px;
  margin: 60px 0 100px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.prose h2 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.018em;
  line-height: 1.06;
  margin: 48px 0 16px;
  color: var(--ink);
  padding-bottom: 0.06em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.012em;
  margin: 32px 0 12px;
  color: var(--ink);
  padding-bottom: 0.05em;
}
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 20px; }
.prose li { margin-bottom: 8px; }
.prose a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.callout {
  background: var(--coral-tint);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 16px;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
}
.callout-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.callout.mint { background: var(--mint-tint); }
.callout.mint .callout-label { background: var(--mint-deep); }
.callout.lemon { background: var(--lemon-soft); }
.callout.lemon .callout-label { background: var(--lemon-deep); color: var(--ink); }

/* =========================================================================
   Confetti & easter eggs
   ========================================================================= */

.confetti-piece {
  position: fixed;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 1000;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
}

.easter-pin {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  pointer-events: none;
  transition: opacity 400ms var(--ease-back), transform 400ms var(--ease-back);
}
.easter-pin.show {
  opacity: 1;
  transform: scale(1) rotate(0);
  pointer-events: auto;
  animation: pin-bob 3s ease-in-out infinite 400ms;
}

/* =========================================================================
   Reveal animations
   ========================================================================= */

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"] { transition-delay: 80ms; }
  .reveal[data-delay="2"] { transition-delay: 160ms; }
  .reveal[data-delay="3"] { transition-delay: 240ms; }
  .reveal[data-delay="4"] { transition-delay: 320ms; }
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-art { max-width: 440px; margin: 0 auto; }
  .awkward-inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .awkward-art { max-width: 260px; margin: 0; }
  .start-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
  .pricing-features { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    padding: 16px 24px 24px;
    gap: 14px;
  }
  .nav.open a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .nav.open a:last-child { border-bottom: none; }
  .nav.open a.btn {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }

  .steps { grid-template-columns: 1fr; }
  .appear-grid { grid-template-columns: repeat(2, 1fr); }
  .appear-item:nth-child(3n) { border-right: 1px solid rgba(255, 255, 255, 0.18); }
  .appear-item:nth-child(2n) { border-right: none; }
  .quotes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
  .pricing-card { padding: 36px 24px; }
}

@media (max-width: 580px) {
  .hero { padding: 60px 0 80px; }
  .how, .appear, .pricing, .quotes, .faq, .start { padding: 80px 0; }
  .lead-card { padding: 28px 22px 24px; }
  .lead-form .row { grid-template-columns: 1fr; }
  .appear-grid { grid-template-columns: 1fr; }
  .appear-item { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-amount-aside { margin-left: 0; text-align: left; width: 100%; margin-top: 8px; }
  .pricing-card-stickers { right: 12px; gap: 6px; flex-wrap: wrap; }
  .pricing-sticker { font-size: 9.5px; padding: 6px 10px; }
  .masthead-inner { padding: 14px 20px; }
  .brand-tag { display: none; }
  .pricing-features { gap: 12px; }
  .quote blockquote { font-size: 18px; }
  .step h3 { font-size: 22px; }
  .easter-pin { width: 64px; height: 64px; bottom: 16px; right: 16px; }
}
