/* ---------- TOBY — playful iMessage concierge ---------- */

:root {
  /* iMessage-native palette */
  --imsg-blue: #007aff;
  --imsg-blue-deep: #0060cc;
  --imsg-bubble: #e9e9eb;
  --imsg-bg: #ffffff;
  --yellow: #ffe14a;
  --yellow-deep: #f5c517;
  --tomato: #ff5233;
  --tomato-deep: #e6371a;
  --green: #22c55e;
  --green-deep: #14a34a;
  --purple: #7c3aed;
  --purple-deep: #6923d1;
  --sky: #4dc4ff;
  --pink: #ff8ec7;
  --cream: #fff9e8;
  --butter: #fff4c2;
  --butter-soft: #fff8dc;
  --ink: #0a0a0f;
  --ink-soft: #1c1c24;
  --muted: #6b6b76;
  --line: #0a0a0f;

  /* tokens used by base.css */
  --space-16: 64px;
  --text-base: 17px;
  --color-text: var(--ink);
  --color-bg: var(--yellow);
  --color-primary: var(--imsg-blue);

  --font-display: 'Boska', ui-serif, Georgia, serif;
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-lg: 10px 10px 0 var(--ink);
  --shadow-hard-sm: 3px 3px 0 var(--ink);

  --transition: 200ms cubic-bezier(.2,.9,.3,1.2);

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; line-height: 1.02; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.italic { font-style: italic; font-family: var(--font-display); }
.mono { font-family: var(--font-mono); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- STICKY MARQUEE ---------- */
.tape {
  background: var(--ink);
  color: var(--yellow);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.tape-track {
  display: flex;
  gap: 40px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tape-item { display: inline-flex; align-items: center; gap: 12px; }
.tape-item span.emoji { font-size: 18px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.tape-alt {
  background: var(--imsg-blue);
  color: #fff;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: rotate(-1.5deg);
  margin: -20px -30px;
  z-index: 30;
  position: relative;
}
.tape-alt .tape-track { animation: marquee-reverse 30s linear infinite; font-size: 15px; padding: 16px 0; }
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.tape:hover .tape-track {
  animation-play-state: paused;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
}
.brand-lockup {
  display: block;
  height: 40px;
  width: auto;
}
.brand-logo {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}
.brand-wordmark {
  display: block;
  height: 22px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.nav-cta) {
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
}
.nav-links a:not(.nav-cta):hover { color: var(--tomato); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-hard-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--shadow-hard-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    min-width: 220px;
    padding: 12px;
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hard);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a:not(.nav-cta) {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
  }
  .nav-links > a:not(.nav-cta):hover { background: var(--butter); }
  .nav-cta { justify-content: center; margin-top: 6px; }
}

/* ---------- HERO ---------- */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
  background: var(--imsg-blue);
  color: #fff;
  border-bottom: 4px solid var(--ink);
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: var(--yellow);
  border-radius: 50%;
  border: 4px solid var(--ink);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: var(--tomato);
  border: 4px solid var(--ink);
  transform: rotate(15deg);
  border-radius: 30px;
  z-index: 0;
  animation: float 8s ease-in-out infinite reverse;
}
.hero h1, .hero .hero-lede, .hero-social-num, .hero-social-label { color: #fff; }
.hero .hero-lede b { color: var(--yellow); }
.hero h1 .accent { color: var(--yellow); }
.hero-social-divider { background: rgba(255,255,255,.3); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero::before { width: 180px; height: 180px; right: -120px; top: 4%; opacity: .35; }
  .hero::after { width: 120px; height: 120px; bottom: -60px; left: -70px; opacity: .5; }
  .hero h1 { font-size: clamp(40px, 10.5vw, 62px); }
  .hero-lede { font-size: 17px; }
  .hero-visual { min-height: 460px; }
  .sticker-1 { top: -30px; left: -8px; font-size: 12px; padding: 8px 12px; }
  .sticker-2 { bottom: 30px; right: -10px; font-size: 12px; padding: 8px 12px; }
  .sticker-3 { bottom: -30px; left: 10px; font-size: 12px; padding: 8px 12px; }
  .sticker-4 { top: 60px; right: -20px; }
  .sticker-5 { top: -30px; right: 20px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--green);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-hard-sm);
  transform: rotate(-1.5deg);
}
.hero-badge .dot {
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  50% { opacity: .3; }
}

.hero h1 {
  font-size: clamp(52px, 8vw, 112px);
  line-height: .95;
  margin-bottom: 24px;
  letter-spacing: -.035em;
}
.hero h1 .accent {
  color: var(--yellow);
  font-style: italic;
  display: inline-block;
  transform: rotate(-2deg) translateY(4px);
}
.hero h1 .underline {
  background: linear-gradient(180deg, transparent 65%, var(--green) 65%, var(--green) 92%, transparent 92%);
  padding: 0 4px;
}

.hero-lede {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 500;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--imsg-blue);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-hard);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-primary .arrow { width: 20px; height: 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  background: transparent;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.hero .btn-ghost {
  color: #fff;
  border-color: #fff;
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--imsg-blue);
}

.hero-social {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-social-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-social-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.hero-social-label {
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 500;
  max-width: 100px;
}
.hero-social-divider {
  width: 3px;
  height: 40px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero phone visual */
.hero-visual {
  position: relative;
  min-height: 520px;
}
.phone-mock {
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  background: var(--imsg-bg);
  border: 4px solid var(--ink);
  border-radius: 40px;
  padding: 20px 18px 24px;
  box-shadow: var(--shadow-hard-lg);
  transform: rotate(3deg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: var(--ink);
  border-radius: 12px;
}
.phone-top {
  padding-top: 28px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.phone-header-name {
  text-align: center;
  padding: 10px 0 14px;
  border-bottom: 1px solid #d0d0d5;
  margin-bottom: 14px;
  font-family: -apple-system, 'SF Pro Text', sans-serif;
}
.phone-header-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--imsg-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 4px;
  border: 2px solid var(--ink);
  font-family: -apple-system, sans-serif;
}
.phone-header-name b { font-weight: 600; font-size: 13px; color: #0a0a0f; letter-spacing: -.01em; }
.phone-header-name span { display: block; font-size: 10px; color: #8e8e93; margin-top: 2px; font-weight: 500; }
.phone-header-name span.online-dot { color: var(--green-deep); font-weight: 600; }
.msg {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 20px;
  font-size: 14.5px;
  max-width: 78%;
  margin-bottom: 4px;
  line-height: 1.35;
  position: relative;
  animation: msgIn .5s ease both;
  font-family: -apple-system, 'SF Pro Text', 'General Sans', sans-serif;
}
/* tapback — docks on the outer top corner of the bubble it reacts to */
.tapback {
  position: absolute;
  top: -12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
  z-index: 3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  animation: tapPop .45s cubic-bezier(.2, 1.6, .4, 1) both;
}
/* docks on the bubble's outer corner, like iMessage */
.msg.recv .tapback { left: -10px; }
.msg.sent .tapback { right: -10px; }
@keyframes tapPop {
  0% { opacity: 0; transform: scale(.2); }
  70% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
.msg.sent {
  background: var(--imsg-blue);
  color: #fff;
  border-radius: 20px 20px 6px 20px;
  margin-left: auto;
  display: block;
  width: fit-content;
}
.msg.recv {
  background: var(--imsg-bubble);
  border-radius: 20px 20px 20px 6px;
  color: #0a0a0f;
}
.msg-time {
  text-align: center;
  font-size: 11px;
  color: #8e8e93;
  font-family: -apple-system, 'SF Pro Text', sans-serif;
  padding: 8px 0;
  font-weight: 600;
}
.msg-time b { color: #3a3a3c; font-weight: 600; }
.msg-delivered {
  text-align: right;
  font-size: 10px;
  color: #8e8e93;
  padding-right: 4px;
  padding-top: 2px;
  margin-bottom: 4px;
  font-family: -apple-system, sans-serif;
  letter-spacing: .01em;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg-card {
  background: #fff;
  border: 1px solid #d0d0d5;
  border-radius: 18px;
  padding: 14px;
  font-size: 13px;
  margin: 4px 0 6px;
  max-width: 82%;
  animation: msgIn .5s ease both;
  animation-delay: 4.8s;
  font-family: -apple-system, sans-serif;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.msg-card-title { font-weight: 600; margin-bottom: 10px; font-size: 13.5px; color: #0a0a0f; padding-bottom: 8px; border-bottom: 1px solid #f0f0f2; }
.msg-card-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 12.5px; color: #3a3a3c; }
.msg-card-row strong { font-weight: 600; color: #0a0a0f; }
.msg-card-cta {
  margin-top: 10px;
  padding: 9px 12px;
  background: var(--imsg-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}

/* Floating stickers around phone */
.sticker {
  position: absolute;
  background: var(--purple);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  font-weight: 700;
  font-size: 15px;
  z-index: 3;
  animation: wiggle 5s ease-in-out infinite;
}
.sticker-1 {
  top: 10px;
  left: -20px;
  background: var(--green);
  color: var(--ink);
  --r: -8deg;
}
.sticker-2 {
  bottom: 60px;
  right: -30px;
  background: var(--sky);
  color: var(--ink);
  --r: 6deg;
  animation-delay: -1.3s;
}
.sticker-3 {
  bottom: -20px;
  left: 20px;
  background: var(--pink);
  color: var(--ink);
  --r: -4deg;
  animation-delay: -2.6s;
}
.sticker-4 {
  top: 140px;
  right: -50px;
  background: var(--tomato);
  color: var(--cream);
  --r: 8deg;
  animation-delay: -0.7s;
  font-size: 13px;
  padding: 8px 14px;
}
.sticker-5 {
  top: -14px;
  right: 60px;
  background: var(--yellow);
  color: var(--ink);
  --r: 10deg;
  animation-delay: -3.4s;
  font-size: 13px;
  padding: 8px 14px;
}
@keyframes wiggle {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  25% { transform: translateY(-6px) rotate(calc(var(--r, 0deg) + 2deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
  75% { transform: translateY(-4px) rotate(calc(var(--r, 0deg) - 2deg)); }
}

/* Background playground shapes */
.playground-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation: float-slow 8s ease-in-out infinite;
}
.playground-shape.spin { animation: spin 14s linear infinite; }
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--r, 0deg) + 6deg)); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.shape-star svg, .shape-squiggle svg, .shape-spark svg, .shape-blob svg { display: block; }

/* Giant floating emojis */
.big-emoji {
  position: absolute;
  font-size: clamp(60px, 8vw, 120px);
  z-index: 0;
  animation: wiggle 6s ease-in-out infinite;
  filter: drop-shadow(4px 4px 0 rgba(10,10,15,.15));
  pointer-events: none;
  line-height: 1;
}

/* Typing indicator bubble */
.msg.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  background: var(--imsg-bubble);
  border-radius: 20px 20px 20px 6px;
  animation: msgIn .5s ease both;
}
.msg.typing span {
  width: 7px;
  height: 7px;
  background: #8e8e93;
  border-radius: 50%;
  opacity: .5;
  animation: typing 1.2s ease-in-out infinite;
}
.msg.typing span:nth-child(2) { animation-delay: .2s; }
.msg.typing span:nth-child(3) { animation-delay: .4s; }
/* hero mock: the typing bubble collapses away once toby's reply lands */
.phone-body .msg.typing {
  overflow: hidden;
  animation-name: msgIn, typingOut;
  animation-duration: .5s, .3s;
  animation-delay: 2.6s, 3.7s;
  animation-timing-function: ease, ease;
  animation-fill-mode: both, forwards;
}
@keyframes typingOut {
  to {
    opacity: 0;
    max-width: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    transform: scale(.8);
  }
}
@keyframes typing {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Confetti */
#confetti-root {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}
.confetti-piece {
  position: absolute;
  width: 12px;
  height: 18px;
  top: -20px;
  border: 2px solid var(--ink);
  animation: confetti-fall 2.4s cubic-bezier(.3,.4,.6,1) forwards;
  z-index: 5;
  pointer-events: none;
}
@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(600px) rotate(720deg); opacity: 0; }
}

/* ---------- SECTION BASE ---------- */
section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.wrap { position: relative; z-index: 2; }
.section-head {
  margin: 0 auto 60px;
  max-width: 800px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-head h2 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.025em;
}
.section-head h2 .accent {
  color: var(--tomato);
  font-style: italic;
}
.section-head h2 .highlight {
  background: var(--green);
  padding: 0 8px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1deg);
}

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--cream);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  padding: 32px 28px;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--yellow);
  box-shadow: var(--shadow-hard);
  transition: transform var(--transition);
  position: relative;
}
.step:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.step:nth-child(2) { background: var(--tomato); color: var(--cream); transform: rotate(1deg); }
.step:nth-child(2):hover { transform: rotate(1deg) translate(-3px, -3px); }
.step:nth-child(3) { background: var(--green); transform: rotate(-1deg); }
.step:nth-child(3):hover { transform: rotate(-1deg) translate(-3px, -3px); }
.step-num {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-emoji {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.step p {
  font-size: 16px;
  font-weight: 500;
  opacity: .9;
}

/* how-it-works: "just talk" key feature callout */
.how-flex {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 30px;
  background: var(--sky);
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
}
.how-flex-tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.how-flex h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.how-flex h3 .highlight {
  background: var(--yellow);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1deg);
}
.how-flex p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
.how-flex-chips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.how-flex-chips li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-hard-sm);
}
.how-flex-chips li span { font-size: 18px; }
@media (max-width: 800px) {
  .how-flex { grid-template-columns: 1fr; gap: 24px; padding: 26px 22px; }
  .how-flex-chips li { font-size: 14px; padding: 11px 16px; }
}

/* ---------- REVIEWS ---------- */
.reviews {
  background: var(--purple);
  color: var(--cream);
  border-bottom: 4px solid var(--ink);
}
.reviews .eyebrow { background: var(--yellow); color: var(--ink); }
.reviews .section-head h2 .highlight { color: var(--ink); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--cream);
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-hard);
  transition: transform var(--transition);
}
.review-card:nth-child(3n+1) { background: var(--yellow); }
.review-card:nth-child(3n+2) { background: var(--pink); }
.review-card:nth-child(3n) { background: var(--sky); }
.review-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.review-stars { font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; color: var(--tomato-deep); }
.review-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 2px dashed var(--ink);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-meta { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ---------- TRUST / CONVENIENCE ---------- */
.trust {
  background: #f5f0e6;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.trust .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.trust .section-head h2 { margin: 12px 0 16px; }
.trust .section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #333;
  max-width: 560px;
  margin: 0 auto;
}
.trust .highlight {
  background: linear-gradient(180deg, transparent 55%, var(--imsg-blue) 55%);
  padding: 0 8px;
  color: #fff;
  border-radius: 6px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.trust-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-pay { background: #eef4ff; }
.trust-cal { background: #fff8e6; }

.trust-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  color: #635bff; /* stripe purple */
  box-shadow: 2px 2px 0 var(--ink);
}
.trust-cal .trust-badge { color: inherit; padding: 4px 8px; }

.trust-emoji {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  max-width: 90%;
}
.trust-brand {
  font-style: italic;
  color: #635bff;
}
.trust-cal .trust-brand { color: #ea4335; }

.trust-card > p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  margin: 0;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
}
.trust-list .tc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #22c55e;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}

.trust-strip {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.trust-strip-item {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ts-emoji { font-size: 14px; }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust { padding: 72px 0 88px; }
  .trust-card { padding: 28px 22px 22px; }
  .trust-card h3 { max-width: 78%; font-size: 22px; }
  .trust-badge { top: 16px; right: 16px; padding: 6px 10px; }
}

/* ---------- FIXES ---------- */
.fixes {
  background: var(--butter);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.fixes .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.fixes .section-head h2 { margin: 12px 0 16px; }
.fixes .section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #333;
  max-width: 560px;
  margin: 0 auto;
}
.fixes .highlight {
  background: linear-gradient(180deg, transparent 55%, var(--imsg-blue) 55%);
  padding: 0 8px;
  color: #fff;
  border-radius: 6px;
}

.fixes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.fix-card {
  background: var(--imsg-bubble);
  border: 3px solid var(--ink);
  border-radius: 22px 22px 22px 6px;
  padding: 18px 20px 16px;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fix-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.fix-card:nth-child(3n+2) { background: #ffe5f0; }
.fix-card:nth-child(3n) { background: #d9f4e2; }

.fix-emoji {
  font-size: 26px;
  line-height: 1;
}
.fix-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.fix-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #555;
  padding-top: 6px;
  border-top: 1.5px dashed rgba(0,0,0,.25);
  margin-top: 2px;
}

.fixes-foot {
  text-align: center;
  margin-top: 44px;
}
.fixes-plus {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 999px;
  letter-spacing: -.005em;
  box-shadow: 4px 4px 0 var(--ink);
}

@media (max-width: 900px) {
  .fixes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .fixes { padding: 72px 0 88px; }
}
@media (max-width: 560px) {
  .fixes-grid { grid-template-columns: 1fr; }
  .fix-card { border-radius: 20px 20px 20px 6px; }
}

.hero-subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--butter);
  margin: -4px 0 20px;
  opacity: .95;
}
@media (max-width: 900px) {
  .hero-subline { font-size: 19px; }
}

/* ---------- COMPARE ---------- */
.compare {
  background: var(--yellow);
}
.compare-table {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3px;
  background: var(--ink);
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-lg);
}
.compare-row { display: contents; }
.compare-cell {
  padding: 24px 22px;
  background: var(--cream);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  box-sizing: border-box;
}
.compare-head .compare-cell {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.compare-head .compare-cell.hank { background: var(--imsg-blue); color: #fff; }
.compare-cell.no { color: var(--muted); }
.compare-cell.yes {
  background: #d8f5de;
  color: var(--green-deep);
  font-weight: 700;
}
.compare-cell .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.compare-cell .icon.x { background: var(--muted); }
.compare-cell .icon.check { background: var(--green); }
@media (max-width: 700px) {
  .compare-table { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.05fr); }
  .compare-cell { padding: 14px 8px; font-size: 12px; gap: 6px; }
  .compare-head .compare-cell { font-size: 13px; }
  .compare-cell .icon { width: 18px; height: 18px; font-size: 11px; }
}

/* ---------- WAITLIST STATS BAR ---------- */
.stats-bar {
  background: var(--ink);
  color: var(--yellow);
  padding: 40px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}
.stats-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .stats-inner { grid-template-columns: 1fr; text-align: center; } }
@media (max-width: 800px) { .stat { text-align: center; } }
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 4px;
}
.stat-num.tomato { color: var(--tomato); }
.stat-num.green { color: var(--green); }
.stat-num.pink { color: var(--pink); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .8;
}

/* ---------- FAQ ---------- */
.faq { background: var(--sky); border-bottom: 4px solid var(--ink); }
.faq .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq .section-head { width: 100%; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.faq-item:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
  width: 100%;
  justify-self: center;
}
@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; max-width: 560px; }
  .faq-item:last-child { max-width: none; }
}
.faq-item {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  transition: transform var(--transition);
}
.faq-item:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.faq-item summary {
  list-style: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  width: 34px;
  height: 34px;
  background: var(--tomato);
  color: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 3px;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item[open] summary::after { content: '\2212'; background: var(--green); color: var(--ink); padding-bottom: 6px; }
.faq-item p {
  padding-top: 14px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

/* ---------- WAITLIST CTA ---------- */
.waitlist {
  background: var(--imsg-blue);
  color: #fff;
  padding: clamp(60px, 10vw, 120px) 0;
  border-bottom: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  opacity: .4;
}
.waitlist::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: var(--purple);
  border: 4px solid var(--ink);
  border-radius: 40px;
  transform: rotate(20deg);
  opacity: .5;
}
.waitlist-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 2;
}
.waitlist .eyebrow { background: var(--cream); color: var(--ink); }
.waitlist h2 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: .98;
  margin-bottom: 24px;
  color: #fff;
}
.waitlist h2 .accent {
  color: var(--yellow);
  font-style: italic;
  display: inline-block;
  transform: rotate(-2deg);
}
.waitlist p {
  font-size: 20px;
  margin-bottom: 36px;
  opacity: .95;
  font-weight: 500;
}

.waitlist-form {
  background: var(--cream);
  color: var(--ink);
  padding: 32px;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--ink);
  margin-bottom: 20px;
}
.waitlist-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); animation: blink 1.5s infinite; }
.field { display: block; margin-bottom: 16px; }
.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus {
  outline: none;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.field input::placeholder { color: var(--ink); opacity: .5; }
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-error {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--tomato-deep);
}
.form-error[hidden] { display: none !important; }
.waitlist-form .form-error { text-align: left; }
.btn-primary:disabled,
.waitlist-submit:disabled,
.hqf-submit:disabled {
  opacity: .6;
  cursor: wait;
  transform: none;
}

.waitlist-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 20px;
  padding: 22px;
}
.form-fine {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  font-weight: 500;
}
.waitlist-form .field,
.waitlist-form .waitlist-status,
.waitlist-form .waitlist-submit,
.waitlist-form .form-fine {
  transition: opacity .28s ease, transform .3s cubic-bezier(.2,.9,.3,1.2);
}
.waitlist-form.is-leaving .field,
.waitlist-form.is-leaving .waitlist-status,
.waitlist-form.is-leaving .waitlist-submit,
.waitlist-form.is-leaving .form-fine,
.waitlist-form.is-leaving .form-error {
  opacity: 0;
  transform: translateY(-10px) scale(.97);
  pointer-events: none;
}
.waitlist-form.submitted .field,
.waitlist-form.submitted .waitlist-status,
.waitlist-form.submitted .waitlist-submit,
.waitlist-form.submitted .form-fine,
.waitlist-form.submitted .form-error {
  display: none;
}
.form-success {
  text-align: center;
  padding: 20px 8px;
}
.form-success[hidden] { display: none !important; }
.form-success:not([hidden]) {
  animation: form-pop-in .48s cubic-bezier(.2,.9,.3,1.2) both;
}
.form-success .num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--tomato);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success .title {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-success .sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-success .sub b {
  display: inline-block;
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: 8px;
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .05em;
}
.share-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  padding: 12px 18px;
  background: var(--ink);
  color: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  transition: transform var(--transition);
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn-primary {
  background: var(--imsg-blue);
  color: #fff;
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 24px;
}
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; gap: 28px; } }
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--yellow);
}
.foot-brand .brand-logo,
.foot-brand .brand-wordmark { display: block; }
.foot-tag { color: var(--cream); opacity: .8; max-width: 320px; font-size: 15px; line-height: 1.5; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  color: var(--yellow);
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col a { font-size: 15px; opacity: .8; transition: opacity var(--transition); }
.foot-col a:hover { opacity: 1; color: var(--yellow); }
.foot-bottom {
  border-top: 2px solid var(--cream);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: .6;
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO QUICK FORM ---------- */
.hero-quickform {
  margin: 4px 0 8px;
  max-width: 560px;
  position: relative;
}
.hero-quickform-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--ink);
  transition:
    transform .32s cubic-bezier(.2,.9,.3,1.2),
    box-shadow .32s cubic-bezier(.2,.9,.3,1.2),
    opacity .28s ease;
}
.hero-quickform:focus-within .hero-quickform-row {
  transform: translate(-3px, -4px);
  box-shadow: 12px 12px 0 var(--ink);
}
.hqf-field {
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: visible;
  z-index: 1;
  transition: transform .28s cubic-bezier(.2,.9,.3,1.2);
}
.hqf-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  opacity: .55;
  pointer-events: none;
  display: inline-flex;
  z-index: 2;
  transition: opacity .22s ease, color .22s ease;
}
.hqf-field input {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #f4f4f7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition:
    transform .28s cubic-bezier(.2,.9,.3,1.2),
    box-shadow .28s cubic-bezier(.2,.9,.3,1.2),
    background .22s ease,
    border-color .22s ease;
}
.hqf-field input:focus {
  outline: none;
}
.hqf-field:focus-within,
.hqf-field.is-filled {
  z-index: 1;
  transform: translate(-2px, -2px);
}
.hqf-field:focus-within input,
.hqf-field.is-filled input {
  background: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.hqf-field:focus-within input {
  background: var(--butter);
}
.hqf-field:focus-within .hqf-icon,
.hqf-field.is-filled .hqf-icon {
  opacity: 1;
  color: var(--imsg-blue);
}
.hqf-field.is-invalid {
  animation: field-pop-shake .42s cubic-bezier(.2,.9,.3,1.2);
}
.hqf-field.is-invalid input {
  border-color: var(--tomato);
  background: #fff4f1;
  box-shadow: 5px 5px 0 var(--tomato);
}
.hqf-field input::placeholder { color: var(--ink); opacity: .42; font-weight: 500; }
.hqf-submit {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
  white-space: nowrap;
  align-self: stretch;
}
.hqf-fine {
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  margin: 12px 0 0;
  font-weight: 500;
  padding-left: 4px;
  transition: opacity .24s ease, transform .28s ease;
}
.hqf-success {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--green);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 16px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 4px 4px 0 var(--ink);
}
.hqf-success:not([hidden]) {
  display: flex;
  animation: form-pop-in .48s cubic-bezier(.2,.9,.3,1.2) both;
}
.hqf-success-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hqf-success-code {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
.hqf-success-code b {
  display: inline-block;
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 8px;
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
}
.hqf-share-row {
  justify-content: flex-start;
}
.hqf-share-row .share-btn {
  background: var(--ink);
  color: var(--yellow);
}
.hqf-share-row .share-btn-primary {
  background: var(--imsg-blue);
  color: #fff;
}
.hqf-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-quickform.is-leaving .hero-quickform-row,
.hero-quickform.is-leaving .hqf-fine,
.hero-quickform.is-leaving .form-error {
  opacity: 0;
  transform: translateY(-10px) scale(.97);
  pointer-events: none;
}
.hero-quickform.submitted .hero-quickform-row,
.hero-quickform.submitted .hqf-fine,
.hero-quickform.submitted .form-error { display: none; }
@keyframes field-pop-shake {
  0%, 100% { transform: translate(-2px, -2px); }
  25% { transform: translate(-6px, -2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-4px, -2px); }
}
@keyframes form-pop-in {
  0% { opacity: 0; transform: translateY(14px) scale(.94); }
  62% { opacity: 1; transform: translateY(-3px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) {
  .hero-quickform-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hqf-submit { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-quickform-row,
  .hqf-field,
  .hqf-field input,
  .hqf-icon,
  .hqf-fine,
  .field-input-wrap,
  .field-big .field-input-wrap input {
    transition: none;
  }
  .hqf-field:focus-within,
  .hqf-field.is-filled,
  .hqf-field:focus-within input,
  .hqf-field.is-filled input,
  .hero-quickform:focus-within .hero-quickform-row {
    transform: none;
  }
  .hqf-success:not([hidden]),
  .hqf-field.is-invalid,
  .form-success:not([hidden]) {
    animation: none;
  }
}

/* ---------- HERO SOCIAL (avatar row) ---------- */
.hero-social-simple {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  max-width: 420px;
}
.hero-social-avatars {
  display: flex;
  align-items: center;
}
.hs-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  border: 2px solid var(--ink);
  margin-left: -8px;
  font-family: -apple-system, sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.hs-av:first-child { margin-left: 0; }
.hero-social-copy {
  color: #fff;
  line-height: 1.25;
}
.hero-social-count {
  font-size: 15px;
  font-weight: 500;
  opacity: .95;
}
.hero-social-count b {
  font-size: 20px;
  font-weight: 800;
  color: var(--butter);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: -.01em;
  margin-right: 2px;
}
.hero-social-sub {
  font-size: 12px;
  opacity: .7;
  margin-top: 2px;
  font-weight: 500;
}

/* ---------- BIG WAITLIST FIELDS ---------- */
.field-big .field-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.005em;
  margin-bottom: 10px;
  color: var(--ink);
}
.field-input-wrap {
  position: relative;
  display: block;
  z-index: 1;
  transition: transform .3s cubic-bezier(.2,.9,.3,1.2);
}
.field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  opacity: .55;
  pointer-events: none;
  transition: opacity .22s ease, color .22s ease, transform .3s cubic-bezier(.2,.9,.3,1.2);
}
.field-big .field-input-wrap input {
  width: 100%;
  padding: 20px 20px 20px 52px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  transition:
    transform .3s cubic-bezier(.2,.9,.3,1.2),
    box-shadow .3s cubic-bezier(.2,.9,.3,1.2),
    background .22s ease,
    border-color .22s ease;
  box-shadow: 3px 3px 0 var(--ink);
}
.field-big .field-input-wrap input:focus {
  outline: none;
}
.field-big .field-input-wrap:focus-within,
.field-big.is-filled .field-input-wrap {
  z-index: 3;
  transform: translate(-4px, -6px);
}
.field-big .field-input-wrap:focus-within input,
.field-big.is-filled .field-input-wrap input {
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--butter);
}
.field-big .field-input-wrap:focus-within .field-icon,
.field-big.is-filled .field-input-wrap .field-icon {
  opacity: 1;
  color: var(--imsg-blue);
  transform: translateY(calc(-50% - 6px));
}
.field-big.is-invalid .field-input-wrap {
  transform: translate(-4px, -6px);
}
.field-big.is-invalid .field-input-wrap input {
  border-color: var(--tomato);
  background: #fff4f1;
  box-shadow: 6px 6px 0 var(--tomato);
  animation: field-pop-shake .42s cubic-bezier(.2,.9,.3,1.2);
}
.field-big .field-input-wrap input::placeholder {
  color: var(--ink);
  opacity: .38;
  font-weight: 500;
}
.field-big { margin-bottom: 18px; }

/* ---------- PULSE CTA ---------- */
.pulse-cta {
  position: relative;
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.pulse-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--imsg-blue);
  opacity: 0;
  animation: cta-ring 2.4s ease-out infinite;
  pointer-events: none;
}
.pulse-cta:hover { animation-play-state: paused; }
.pulse-cta:hover::after { animation-play-state: paused; opacity: 0; }
@keyframes cta-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes cta-ring {
  0% { opacity: .8; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}
.waitlist-submit.pulse-cta {
  animation-duration: 1.9s;
}
@media (prefers-reduced-motion: reduce) {
  .pulse-cta, .pulse-cta::after { animation: none; }
}

/* ---------- REALISTIC iPHONE MOCK ---------- */
.phone-mock {
  transform: rotate(2deg);
  padding: 0;
  overflow: hidden;
  background: #f2f2f7;
  border-radius: 44px;
  border: 5px solid #0a0a0f;
  box-shadow:
    0 0 0 2px #2a2a30 inset,
    0 30px 60px -20px rgba(0,0,0,.35),
    12px 12px 0 var(--ink);
  position: relative;
}
.phone-mock::before { display: none; }
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0a0a0f;
  border-radius: 20px;
  z-index: 4;
}
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px 6px;
  color: #0a0a0f;
  font-family: -apple-system, 'SF Pro Text', sans-serif;
  position: relative;
  z-index: 5;
}
.phone-time {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.02em;
}
.phone-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0a0a0f;
}
.phone-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 10px;
  background: rgba(242,242,247,.85);
  backdrop-filter: blur(8px);
  border-bottom: .5px solid rgba(0,0,0,.12);
  position: relative;
  z-index: 3;
}
.phone-back {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #007aff;
  font-family: -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.phone-back-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.phone-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.phone-contact-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
}
.phone-contact-avatar img {
  width: 36px;
  height: 36px;
  display: block;
}
.phone-contact-name {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #0a0a0f;
  letter-spacing: -.01em;
}
.phone-facetime {
  display: inline-flex;
  align-items: center;
  padding: 4px;
}
.phone-body {
  padding: 12px 12px 6px;
  background: #f2f2f7;
  /* fits the full thread through the quote card — anything shorter clips the price */
  max-height: 600px;
  overflow: hidden;
}
.phone-inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 16px;
  background: rgba(242,242,247,.9);
  border-top: .5px solid rgba(0,0,0,.08);
}
.phone-input-pill {
  flex: 1;
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid #d0d0d5;
  background: #fff;
  color: #8e8e93;
  font-family: -apple-system, sans-serif;
  font-size: 13px;
}
.phone-input-mic { display: inline-flex; }

/* Tighter iMessage bubbles */
.phone-body .msg { margin-bottom: 3px; }
.phone-body .msg.recv + .msg.recv,
.phone-body .msg.sent + .msg.sent { margin-top: -1px; }
.phone-body .msg.sent {
  border-radius: 18px 18px 4px 18px;
  padding: 8px 13px;
  font-size: 14px;
}
.phone-body .msg.sent + .msg.sent {
  border-radius: 18px 4px 4px 18px;
}
.phone-body .msg.sent:last-of-type,
.phone-body .msg.sent:only-of-type {
  border-radius: 18px 18px 4px 18px;
}
.phone-body .msg.recv {
  border-radius: 18px 18px 18px 4px;
  padding: 8px 13px;
  font-size: 14px;
}
.msg.sent.has-img {
  background: transparent;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  margin-left: auto;
  margin-bottom: 3px;
  max-width: 62%;
  border: 1px solid rgba(0,0,0,.08);
}
.msg-img {
  width: 100%;
  aspect-ratio: 220/130;
  overflow: hidden;
  border-radius: 14px;
  display: block;
}
.msg-img svg,
.msg-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* voice memo bubble — waveform lights up left to right so it reads as audio playing */
.phone-body .msg.sent.voice {
  width: 74%;
  max-width: 74%;
  padding: 9px 12px 10px;
}
.vn-row { display: flex; align-items: center; gap: 8px; }
.vn-play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--imsg-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vn-play svg { margin-left: 1px; }
.vn-wave {
  flex: 1;
  min-width: 0;
  height: 22px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.vn-wave i {
  flex: 1;
  min-width: 1.5px;
  height: var(--h, 60%);
  border-radius: 1px;
  background: currentColor;
  animation: vnScrub .3s linear both;
  animation-delay: var(--d, 0s);
}
@keyframes vnScrub {
  from { opacity: .42; transform: scaleY(.85); }
  to { opacity: 1; transform: scaleY(1); }
}
.vn-dur {
  font-size: 11px;
  opacity: .8;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-family: -apple-system, 'SF Pro Text', sans-serif;
}
.vn-transcript {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  font-size: 12.5px;
  line-height: 1.35;
  opacity: .93;
}
.msg-card {
  animation-delay: 4.8s;
  border-radius: 16px;
  padding: 12px;
  max-width: 88%;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.msg-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f2;
  margin-bottom: 8px;
}
.msg-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--imsg-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.msg-card-title {
  font-size: 13px;
  padding-bottom: 0;
  border: none;
  margin: 0;
  line-height: 1.2;
}
.msg-card-sub {
  font-size: 11px;
  color: #8e8e93;
  margin-top: 2px;
  font-family: -apple-system, sans-serif;
}
.msg-card-cta {
  margin-top: 12px;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 12px;
}
.msg-card-cta.apay-cta {
  background: transparent;
  padding: 4px 0 0;
  margin-top: 10px;
}
.msg-card-cta.apay-cta img {
  display: block;
  width: 100%;
  height: 36px;
  object-fit: contain;
}

/* ---------- APPLE PAY SHEET (hero) ----------
   picks up after the quote card lands at 4.8s: slides up, confirms,
   flips to Done, then dismisses so the thread stays readable. */
.hero-apay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  background-color: rgba(0,0,0,0);
  animation: apayScrim 4.6s ease-out both;
  animation-delay: 6.2s;
}
@keyframes apayScrim {
  0%   { background-color: rgba(0,0,0,0); }
  12%  { background-color: rgba(0,0,0,.42); }
  88%  { background-color: rgba(0,0,0,.42); }
  100% { background-color: rgba(0,0,0,0); }
}
.apay-sheet {
  width: 100%;
  background: #1c1c1e;
  color: #fff;
  border-radius: 14px 14px 0 0;
  padding: 7px 16px 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  letter-spacing: -0.02em;
  transform: translateY(100%);
  animation: apaySlide 4.6s cubic-bezier(.32,.72,0,1) both;
  animation-delay: 6.2s;
}
@keyframes apaySlide {
  0%   { transform: translateY(100%); }
  12%  { transform: translateY(0); }
  88%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
.apay-grab {
  width: 36px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.32);
  margin: 0 auto 10px;
}
.apay-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
}
.apay-head svg { display: block; }
.apay-head span {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.apay-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 9px;
  border-bottom: .5px solid rgba(255,255,255,.16);
}
.apay-visa {
  width: 34px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  color: #1a1f71;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.apay-card-name { font-size: 12.5px; font-weight: 500; }
.apay-card-num { font-size: 11px; color: #98989e; margin-top: 1px; }
.apay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: .5px solid rgba(255,255,255,.16);
}
.apay-row span { font-size: 12.5px; color: #98989e; }
.apay-row strong { font-size: 15px; font-weight: 600; letter-spacing: -0.03em; }
.apay-foot {
  display: grid;
  place-items: center;
  min-height: 42px;
  font-size: 12px;
}
.apay-foot > * { grid-area: 1 / 1; }
.apay-confirm {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: apayHide .3s ease both;
  animation-delay: 8.5s;
}
/* side-button indicator, pulses like the real "double-click to pay" prompt */
.apay-confirm i {
  display: block;
  width: 3px;
  height: 15px;
  border-radius: 2px;
  background: #fff;
  animation: apayPulse 1.1s ease-in-out infinite;
}
@keyframes apayPulse {
  0%, 100% { opacity: .35; transform: scaleY(.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes apayHide { to { opacity: 0; } }
.apay-done {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0;
  transform: scale(.8);
  animation: apayPop .4s cubic-bezier(.2,1.5,.4,1) both;
  animation-delay: 8.5s;
}
@keyframes apayPop { to { opacity: 1; transform: scale(1); } }
.apay-home-ind {
  width: 100px;
  height: 4px;
  border-radius: 99px;
  background: #fff;
  margin: 2px auto 7px;
}

/* ---------- MOBILE POLISH ---------- */
@media (max-width: 600px) {
  .hero { padding: 40px 0 60px; }
  .hero-visual { min-height: auto; margin-top: 20px; }
  .phone-mock { transform: rotate(1deg); max-width: 320px; margin: 0 auto; }
  .sticker { font-size: 13px; padding: 10px 14px; }
  .hero-social-simple { max-width: 100%; }
  .hero-social-count { font-size: 14px; }
  .btn-primary { padding: 18px 26px; font-size: 16px; }
  .step:nth-child(2), .step:nth-child(3) { transform: none; }
  .step:nth-child(2):hover, .step:nth-child(3):hover { transform: translate(-3px, -3px); }
  .field-big .field-input-wrap input { font-size: 17px; padding: 18px 18px 18px 48px; }
  .field-icon { left: 16px; }
  .fixes-plus { font-size: 15px; padding: 12px 22px; }
}

/* =====================================================
   POLISH PASS v3 — motion, hover, layout fixes
   ===================================================== */

/* --- 1. Hero playground shapes: keep behind text --- */
.hero .playground-shape { z-index: 0; opacity: .95; }
.hero-grid, .hero-copy, .hero-visual { position: relative; z-index: 3; }
.hero .hero-copy h1 { position: relative; z-index: 4; }

/* Hide two of the four hero shapes on tablet+narrow to avoid overlap */
@media (max-width: 1100px) {
  .hero-shape-star { bottom: 6%; left: 1%; opacity: .55; }
  .hero-shape-squiggle { display: none; }
  .hero-shape-spark { top: 4%; right: 2%; opacity: .55; }
  .hero-shape-blob { bottom: 4%; right: 2%; opacity: .5; }
}
@media (max-width: 720px) {
  .hero-shape-star, .hero-shape-blob { transform: scale(.7); opacity: .4; }
  .hero-shape-spark { transform: scale(.7); opacity: .4; }
}

/* --- 2. Universal transitions on interactive elements --- */
a, button, .step, .review-card, .fix-card, .sticker, .hs-av,
.faq-item, .trust-card, .prob-chip, .service-card, .hero-badge {
  transition: transform .25s cubic-bezier(.2,.9,.3,1.2),
              box-shadow .25s cubic-bezier(.2,.9,.3,1.2),
              background .2s ease,
              color .2s ease;
}

/* --- 3. Stickers: hover pop --- */
.sticker { cursor: default; }
.sticker:hover {
  transform: rotate(0deg) scale(1.08) translateY(-4px) !important;
  z-index: 20;
  box-shadow: 8px 8px 0 var(--ink);
}

/* --- 4. Phone mock: subtle tilt on hover --- */
.phone-mock {
  transition: transform .5s cubic-bezier(.2,.9,.3,1.2);
  cursor: default;
}
.phone-mock:hover {
  transform: translateY(-6px) rotate(-1deg) scale(1.015);
}

/* --- 5. Hero social avatars: fan out on hover --- */
.hero-social-avatars { display: inline-flex; }
.hs-av {
  position: relative;
  will-change: transform;
}
.hero-social-avatars:hover .hs-av:nth-child(1) { transform: translate(-4px, -2px) rotate(-6deg); }
.hero-social-avatars:hover .hs-av:nth-child(2) { transform: translate(-2px, -4px) rotate(-2deg); }
.hero-social-avatars:hover .hs-av:nth-child(3) { transform: translate(2px, -4px) rotate(2deg); }
.hero-social-avatars:hover .hs-av:nth-child(4) { transform: translate(4px, -2px) rotate(6deg); }

/* --- 6. Problem chips: playful hover --- */
.prob-chip:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 4px 4px 0 var(--ink);
}

/* --- 7. FAQ items: hover highlight --- */
.faq-item {
  border: 3px solid var(--ink);
  transition: transform .2s ease, background .2s ease;
}
.faq-item:hover { background: var(--butter-soft, #fff8dc); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.faq-item summary { cursor: pointer; }

/* --- 8. Buttons: magnetic-feel press --- */
.btn-primary { will-change: auto; }
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn-primary:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* Hero quickform submit button: same treatment */
.hqf-submit .arrow { transition: transform .2s ease; }
.hqf-submit:hover .arrow { transform: translateX(4px); }

/* --- 9. Nav CTA: enhanced hover --- */
.nav-cta:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }

/* --- 10. Trust / service cards: lift + shadow --- */
.trust-card, .service-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-card:hover, .service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--ink);
}

/* --- 11. Hero badge: subtle bob on hover --- */
.hero-badge:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* --- 12. Scroll reveal (opt-in via data-reveal) --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.3,1.2);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-visible { transition-delay: .08s; }
[data-reveal-delay="2"].is-visible { transition-delay: .16s; }
[data-reveal-delay="3"].is-visible { transition-delay: .24s; }
[data-reveal-delay="4"].is-visible { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  /* no sliding sheet — just hide it and leave the thread visible */
  .hero-apay { display: none; }
}

/* --- 13. Centering guardrails --- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
}

/* Sections that had off-center content on narrow */
.section-head { text-align: center; }
.section-head h2 { margin-left: auto; margin-right: auto; }

/* --- 14. Fix hero H1 overflow on very narrow screens --- */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(34px, 11vw, 48px); line-height: 1.02; }
  .hero .hero-lede { font-size: 16px; }
  .hero-badge { font-size: 12px; padding: 8px 14px; }
  .hero-quickform-row { grid-template-columns: 1fr !important; }
  .hqf-submit { width: 100%; }
  .waitlist-form { padding: 22px 16px; }
  .waitlist p { font-size: 17px; }
  .brand-lockup { height: 34px; }
  .form-fine { font-size: 13px; line-height: 1.45; }
}

/* --- 15. iMessage phone: hover reveals a "new message" glow --- */
.phone-mock::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50px;
  background: radial-gradient(circle at 50% 50%, rgba(255,225,74,.35), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: -1;
  pointer-events: none;
}
.phone-mock:hover::after { opacity: 1; }

/* --- 16. Ticker/marquee: pause on hover for readability --- */
.marquee-track, .ticker-track {
  animation-play-state: running;
}
.marquee:hover .marquee-track,
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* --- 17. Fix-card icon: bounce on hover --- */
.fix-card .fix-icon, .fix-card svg { transition: transform .3s cubic-bezier(.2,.9,.3,1.4); }
.fix-card:hover .fix-icon, .fix-card:hover svg { transform: scale(1.15) rotate(-6deg); }

/* --- 18. Cursor upgrade for interactive playful bits --- */
.sticker, .hs-av, .prob-chip, .fix-card, .review-card, .trust-card, .service-card { cursor: pointer; }

/* --- 19. Prevent playground-shape horizontal bleed --- */
html, body { overflow-x: hidden; }
section.how, section.trust, section.reviews, section.faq, section.waitlist, section.services, section.fixes {
  overflow: hidden;
}

/* Instant nav: no fade when jumping to a section */
.nav-jump,
.reveal.nav-jump,
[data-reveal].nav-jump {
  transition: none !important;
}

/* Keep scrolling cheap — pause looping motion mid-scroll */
html.is-scrolling .tape-track,
html.is-scrolling .playground-shape,
html.is-scrolling .sticker,
html.is-scrolling .big-emoji,
html.is-scrolling .hero::before,
html.is-scrolling .hero::after,
html.is-scrolling .pulse-cta,
html.is-scrolling .pulse-cta::after,
html.is-scrolling .msg.typing span,
html.is-scrolling .hero-badge .dot,
html.is-scrolling .waitlist-status .dot {
  animation-play-state: paused !important;
}
