/* Floof site — shared styles.
 *
 * Two audiences share this file:
 * (a) legal/support pages — calm, legible, editorial
 * (b) the landing page — loud, Gen-Z, candy-palette, stickers and polaroids
 *
 * Every landing-only rule is prefixed with .zz-  (no collisions with legal pages).
 */

:root {
  --bg: #0a0b0f;
  --surface: #14161d;
  --surface-2: #1c1f29;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f2ec;
  --text-dim: #a6a39c;
  --text-mute: #6c6a66;

  /* Candy palette */
  --coral: #ff6b4a;
  --coral-glow: #ff8c5a;
  --yellow: #ffd84d;
  --mint: #6ef5c3;
  --pink: #ff5d9e;

  --primary: var(--coral);
  --primary-glow: var(--coral-glow);
  --accent: var(--yellow);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--coral); text-decoration: none; transition: color 160ms var(--ease-out); }
a:hover { color: var(--coral-glow); }

/* ————— SHARED layout primitives ————— */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 32px; }
}

/* ————— SHARED nav ————— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(10, 11, 15, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 720px) { .nav-inner { padding: 14px 32px; } }
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.logo-mark { color: var(--coral); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 620px) { .nav-links { display: none; } }

/* ————— SHARED buttons ————— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
  font-family: inherit;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--coral);
  color: #1a0e08;
  box-shadow: 0 4px 0 0 #b94730, 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.btn-primary:hover { background: var(--coral-glow); transform: translateY(-1px); box-shadow: 0 5px 0 0 #b94730; }
.btn-primary:active { box-shadow: 0 1px 0 0 #b94730; transform: translateY(2px) scale(0.97); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.24); }

/* ————— SHARED footer ————— */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 80px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-mute); font-size: 13px; font-family: 'JetBrains Mono', monospace; }

/* ————— LEGAL page typography ————— */
.legal { padding: 64px 0 96px; }
.legal h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.legal .updated { color: var(--text-mute); font-family: 'JetBrains Mono', monospace; font-size: 13px; margin-bottom: 40px; }
.legal h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 36px;
  margin-bottom: 14px;
}
.legal p { color: var(--text-dim); margin-bottom: 14px; }
.legal ul { margin-left: 24px; margin-bottom: 14px; color: var(--text-dim); }
.legal ul li { margin-bottom: 6px; }
.legal strong { color: var(--text); }

/* ═══════════════════════════════════════════════════
   ZZ — landing page only. Gen-Z aesthetic.
   ═══════════════════════════════════════════════════ */

.zz body, body.zz {
  background: var(--bg);
}

/* Noise overlay — applied on body via ::before */
body.zz::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Soft radiant dot-grid in the hero */
.zz-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .zz-hero { padding: 90px 0 80px; }
}
.zz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 216, 77, 0.12) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.zz-hero > * { position: relative; z-index: 2; }

.zz-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .zz-hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }
  .zz-hero-grid > .zz-hero-copy { flex: 0 1 auto; min-width: 0; max-width: 620px; }
  .zz-hero-grid > .zz-polaroid-stack { flex: 0 0 auto; }
}

.zz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.zz-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: zz-blink 1.6s var(--ease-in-out) infinite;
}
@keyframes zz-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.zz-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 108px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin-bottom: 24px;
  color: var(--text);
  word-break: normal;
  overflow-wrap: break-word;
}
.zz-title em {
  font-family: 'Fraunces', 'Bricolage Grotesque', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'SOFT' 100, 'opsz' 144, 'WONK' 1;
  color: var(--coral);
}
.zz-title .mark {
  display: inline-block;
  padding: 0 8px;
  background: var(--yellow);
  color: #1a0e08;
  border-radius: 6px;
  transform: rotate(-1.5deg);
}

.zz-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.zz-sub strong { color: var(--text); }

.zz-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.zz-ctas .chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* Hero polaroid stack.
 *
 * Fixed width so flex can size it predictably. Polaroid-1 is centered via
 * flex; polaroid-2 and polaroid-3 are anchored to the stack center with
 * top/left 50% + translate(-50%, -50%), then rotation and offset layer on
 * top. This guarantees the cluster is centered regardless of flex config.
 */
.zz-polaroid-stack {
  position: relative;
  width: clamp(240px, 32vw, 320px);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}
.zz-polaroid {
  background: #f5f2ec;
  padding: 14px 14px 48px;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6), 0 4px 0 rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  width: 240px;
  transition: transform 400ms var(--ease-out);
  transform-origin: center;
}
/* Primary polaroid — in flex flow, rotated -6deg */
.zz-polaroid-1 {
  position: relative;
  transform: rotate(-6deg) translateY(-10px);
  z-index: 3;
}
/* Secondary / tertiary — absolute, anchored to stack center */
.zz-polaroid-2,
.zz-polaroid-3 {
  position: absolute;
  top: 50%;
  left: 50%;
}
.zz-polaroid-2 {
  transform: translate(-50%, -50%) rotate(7deg) translate(36px, 40px);
  z-index: 2;
  opacity: 0.92;
}
.zz-polaroid-3 {
  transform: translate(-50%, -50%) rotate(-14deg) translate(-44px, 48px);
  z-index: 1;
  opacity: 0.78;
}
@media (max-width: 640px) {
  .zz-polaroid-stack {
    width: clamp(240px, 72vw, 320px);
    height: 320px;
    margin-top: 8px;
  }
  .zz-polaroid { width: clamp(220px, 60vw, 240px); }
  .zz-polaroid-2 { transform: translate(-50%, -50%) rotate(7deg) translate(28px, 30px); }
  .zz-polaroid-3 { transform: translate(-50%, -50%) rotate(-14deg) translate(-34px, 38px); }
}
.zz-polaroid:hover { transform: rotate(-2deg) translateY(-24px) scale(1.02); z-index: 5; }
.zz-polaroid-1:hover { transform: rotate(-3deg) translateY(-28px) scale(1.03); }

.zz-polaroid-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.zz-polaroid-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.zz-polaroid-photo .face {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #f5f2ec;
  background: #1c1f29;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.zz-polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: #2a2824;
  padding: 0 12px;
}
.zz-polaroid .tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 26px;
  background: rgba(255, 216, 77, 0.55);
  border-left: 1px dashed rgba(0, 0, 0, 0.1);
  border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Marquee strip */
.zz-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.zz-marquee-track {
  display: flex;
  gap: 48px;
  animation: zz-scroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes zz-scroll { to { transform: translateX(-50%); } }
.zz-marquee-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.zz-marquee-item .dot {
  color: var(--coral);
  font-size: 1.2em;
}
.zz-marquee-item .muted { color: var(--text-mute); }

/* Sections */
.zz-section { padding: 64px 0; position: relative; z-index: 2; }
.zz-section.tight { padding: 48px 0; }
.zz-section-head { margin-bottom: 40px; max-width: 680px; }
@media (min-width: 720px) {
  .zz-section { padding: 96px 0; }
  .zz-section.tight { padding: 64px 0; }
  .zz-section-head { margin-bottom: 56px; }
}
.zz-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--coral);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.zz-label::before { content: '→'; color: var(--yellow); }
.zz-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.zz-section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  color: var(--coral);
}
.zz-section-sub { color: var(--text-dim); font-size: 18px; max-width: 540px; }

/* Step cards — trading-card aesthetic */
.zz-steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .zz-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .zz-steps { grid-template-columns: repeat(4, 1fr); } }
.zz-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px 32px;
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.zz-step:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  border-color: rgba(255, 107, 74, 0.4);
}
.zz-step:nth-child(2):hover { transform: translateY(-4px) rotate(0.5deg); }
.zz-step:nth-child(3):hover { transform: translateY(-4px) rotate(-0.5deg); }
.zz-step:nth-child(4):hover { transform: translateY(-4px) rotate(0.5deg); }
.zz-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.zz-step-emoji { font-size: 40px; margin-bottom: 14px; display: block; line-height: 1; }
.zz-step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.zz-step p { color: var(--text-dim); font-size: 15px; }

/* Sticker badge */
.zz-sticker {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--yellow);
  color: #1a0e08;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 0 6px 16px -4px rgba(255, 216, 77, 0.5), 0 2px 0 rgba(0, 0, 0, 0.3);
  z-index: 4;
}

/* Features */
.zz-features {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .zz-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .zz-features { grid-template-columns: repeat(3, 1fr); } }
.zz-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.zz-feature::after {
  content: '';
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.zz-feature:hover { border-color: rgba(255, 107, 74, 0.3); transform: translateY(-2px); }
.zz-feature:hover::after { opacity: 1; }
.zz-feature-emoji { font-size: 32px; margin-bottom: 14px; line-height: 1; }
.zz-feature h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.zz-feature p { color: var(--text-dim); font-size: 15px; }

/* "no" callout cards */
.zz-no-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .zz-no-grid { grid-template-columns: repeat(4, 1fr); } }
.zz-no {
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.zz-no .slash {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
}
.zz-no h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 6px;
}
.zz-no h4 em { color: var(--coral); font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }
.zz-no p { color: var(--text-dim); font-size: 14px; }

/* Pricing */
.zz-pricing { display: grid; gap: 20px; }
@media (min-width: 720px) { .zz-pricing { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; } }
.zz-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 32px;
  position: relative;
}
.zz-plan.featured {
  border-color: var(--coral);
  background:
    radial-gradient(ellipse at top right, rgba(255, 107, 74, 0.14), transparent 60%),
    var(--surface);
}
.zz-plan-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.zz-plan-price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 22px; }
.zz-plan-price .amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1;
}
.zz-plan-price .period { color: var(--text-mute); font-size: 15px; }
.zz-plan-alt { color: var(--text-mute); font-size: 13px; margin-bottom: 22px; font-family: 'JetBrains Mono', monospace; }
.zz-plan ul { list-style: none; margin-bottom: 28px; }
.zz-plan li { padding: 12px 0; color: var(--text); font-size: 15px; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }
.zz-plan li:last-child { border-bottom: none; }
.zz-plan li::before { content: '✓'; color: var(--coral); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.zz-plan.featured li::before { color: var(--yellow); }

/* Receipt section */
.zz-receipt {
  background: #f5f2ec;
  color: #1a0e08;
  max-width: 460px;
  margin: 0 auto;
  padding: 32px 32px 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
  transform: rotate(-1.2deg);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 8px),
    95% 100%,
    90% calc(100% - 4px),
    85% 100%,
    80% calc(100% - 4px),
    75% 100%,
    70% calc(100% - 4px),
    65% 100%,
    60% calc(100% - 4px),
    55% 100%,
    50% calc(100% - 4px),
    45% 100%,
    40% calc(100% - 4px),
    35% 100%,
    30% calc(100% - 4px),
    25% 100%,
    20% calc(100% - 4px),
    15% 100%,
    10% calc(100% - 4px),
    5% 100%,
    0 calc(100% - 8px)
  );
}
.zz-receipt-brand { text-align: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: 0.1em; margin-bottom: 4px; }
.zz-receipt-addr { text-align: center; font-size: 11px; color: #6c6a66; margin-bottom: 20px; }
.zz-receipt-line { display: flex; justify-content: space-between; padding: 4px 0; }
.zz-receipt-line.total { border-top: 1px dashed #6c6a66; margin-top: 12px; padding-top: 12px; font-weight: 700; }
.zz-receipt hr { border: none; border-top: 1px dashed #6c6a66; margin: 12px 0; }
.zz-receipt-foot { text-align: center; font-size: 11px; color: #6c6a66; margin-top: 16px; line-height: 1.4; }

/* Final CTA */
.zz-cta-final {
  text-align: center;
  padding: 120px 0;
  position: relative;
}
.zz-cta-final h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 16px;
}
.zz-cta-final h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; color: var(--coral); }
.zz-cta-final p { color: var(--text-dim); max-width: 460px; margin: 0 auto 32px; }

/* Cursor floof */
.zz-cursor-floof {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
  font-size: 22px;
  line-height: 1;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 160ms var(--ease-out);
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .zz-cursor-floof { display: block; }
}

/* Reveal on load */
@media (prefers-reduced-motion: no-preference) {
  .zz-reveal { opacity: 0; transform: translateY(12px); animation: zz-reveal 700ms var(--ease-out) forwards; }
  .zz-reveal.d1 { animation-delay: 60ms; }
  .zz-reveal.d2 { animation-delay: 140ms; }
  .zz-reveal.d3 { animation-delay: 220ms; }
  .zz-reveal.d4 { animation-delay: 320ms; }
  @keyframes zz-reveal { to { opacity: 1; transform: translateY(0); } }
}

@media (prefers-reduced-motion: reduce) {
  .zz-marquee-track { animation: none; }
  .zz-eyebrow .dot { animation: none; }
}
