/* ============================================
   BLAZTLY — ink on paper
   black ink, warm cream paper, stamp aesthetic
   humanly imperfect, intentionally off
   ============================================ */

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

:root {
  /* matched to mascot PNG background */
  --cream: #EDE6DB;
  --cream-light: #F2ECE2;
  --ink: #1A1A1A;
  --ink-light: #2E2E2E;
  --accent: #FF6B35;
  --accent-dark: #E25A28;
  --gray-200: #D1C9BC;
  --gray-400: #928B7F;
  --gray-600: #5A5449;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* --- SVG filters (hidden) --- */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* --- Paper texture overlay ---
   Two layers: fine grain (paper fiber) + coarser noise (aging/wear)
   These sit on top of everything to unify the page as one sheet of paper */
.paper-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* fine fiber grain — visible like real paper under a loupe */
.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 512px 512px;
}

/* coarser aging/wear — slight yellowing and soft spots */
.paper-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.012' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 800px 800px;
}

/* subtle darkening along edges — like a real sheet of paper under a scanner */
.paper-edge {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 9998;
}
.paper-edge-left {
  left: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.06), transparent);
}
.paper-edge-right {
  right: 0;
  background: linear-gradient(to left, rgba(26,26,26,0.06), transparent);
}

/* --- Ink star field --- */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 4.8rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; }

/* --- Ink underline (hand-drawn feel) --- */
.ink-underline {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.ink-underline::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -4px;
  right: -4px;
  height: 0.18em;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 40% 60% 50% 40% / 80% 60% 100% 50%;
  transform: rotate(-0.5deg);
  filter: url(#rough);
}

.ink-underline-light {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.ink-underline-light::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -4px;
  right: -4px;
  height: 0.18em;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 50% 40% 60% 50% / 60% 100% 50% 80%;
  transform: rotate(0.3deg);
  filter: url(#rough);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  border-radius: 100px;
}

.btn span { position: relative; z-index: 1; }

/* slide-up fill on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: inherit;
}

.btn:hover::after { transform: translateY(0); }
.btn:hover { border-color: var(--accent); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { color: var(--cream); }

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
.btn-accent::after { background: var(--cream); }
.btn-accent:hover { color: var(--ink); border-color: var(--ink); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(237, 230, 219, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
}

.nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--ink);
  opacity: 0.1;
  filter: url(#rough);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  width: 128px;
  height: 128px;
  border-radius: 50% 45% 55% 50%;
  object-fit: contain;
}

.logo-text {
  font-family: 'Cherry Bomb One', cursive;
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: lowercase;
  line-height: 1;
}

.footer .logo-text {
  font-size: 2.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn):hover { color: var(--accent); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  padding: 120px 24px 40px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-20px);
  /* CRITICAL: without these, the invisible menu catches every tap on mobile */
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

/* ===== Hero ===== */
.hero {
  /* 100svh respects iOS Safari's URL bar so the hero doesn't jump when it collapses.
     Falls back to 100vh on browsers that don't support svh. */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 110px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Stamp badge */
.stamp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50% 48% 52% 50% / 55% 50% 50% 48%;
  margin-bottom: 28px;
  transform: rotate(-1deg);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255, 107, 53, 0); }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 460px;
  margin: 24px 0 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ===== Mascot / Hero Visual ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-container {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot {
  width: 500px;
  height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  /* JS drives all transforms — no CSS animation */
  will-change: transform;
  transition: none;
}

/* Banana leads, mascot chases — positioned above/ahead of the monkey
   so the zero-g drift reads as a target the monkey is flying after */
.floating-banana {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 2%;
  right: 8%;
  z-index: 3;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: banana-drift 6s ease-in-out infinite;
  will-change: transform;
  object-fit: contain;
}

/* Fleeing drift — banana bobs and spins like it keeps slipping out of reach */
@keyframes banana-drift {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  20%      { transform: translate(-10px, -14px) rotate(6deg); }
  45%      { transform: translate(8px, -8px) rotate(14deg); }
  70%      { transform: translate(12px, 4px) rotate(-2deg); }
  85%      { transform: translate(-4px, 10px) rotate(-10deg); }
}

/* Ink splatters around mascot */
.ink-splatter {
  position: absolute;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.07;
  /* SVG turbulence filter removed — CPU-rasterized and this element is
     transformed on every scroll frame, which re-ran the shader each frame */
  will-change: transform;
  pointer-events: none;
}
.splatter-1 { width: 120px; height: 120px; top: 10%; right: 5%; }
.splatter-2 { width: 80px; height: 80px; bottom: 15%; left: 0; }
.splatter-3 { width: 50px; height: 50px; top: 50%; right: 80%; }

/* Hand-drawn orbit rings — JS drives the rotation on scroll */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed var(--ink);
  opacity: 0.08;
  /* No transform transition — JS already updates via rAF, and transitioning
     under a CPU filter meant every scroll frame kicked off a 100ms re-raster.
     SVG turbulence filter removed for the same reason. */
  will-change: transform;
  pointer-events: none;
}

.orbit::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  margin-left: -4px;
  opacity: 0.6;
  animation: orbit-dot-pulse 3s ease-in-out infinite;
}

@keyframes orbit-dot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.6); }
}

.orbit-1 { width: 340px; height: 340px; }
.orbit-2 {
  width: 420px;
  height: 420px;
  border-style: dotted;
}
.orbit-2::after {
  width: 5px; height: 5px; top: -3px; margin-left: -3px;
  background: var(--accent); opacity: 0.5;
  animation-delay: 1.5s;
}

/* Ink drip scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ink-drip {
  width: 3px;
  height: 48px;
  background: var(--ink);
  opacity: 0.15;
  border-radius: 0 0 50% 50%;
  position: relative;
  overflow: hidden;
  /* No SVG filter — child ::after animates `top` continuously, which would
     force the filter to re-raster every frame the drip is visible */
}

.ink-drip::after {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 24px;
  background: var(--ink);
  opacity: 0.8;
  animation: drip 2.5s ease infinite;
  border-radius: inherit;
}

@keyframes drip {
  0% { top: -24px; }
  100% { top: 48px; }
}

/* ===== Ink Dividers ===== */
.ink-divider {
  position: relative;
  z-index: 2;
  height: 12px;
  overflow: visible;
  margin: -1px 0;
  pointer-events: none;
}

.ink-divider svg {
  width: 100%;
  height: 12px;
  display: block;
}

.ink-divider path {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}

.ink-divider.drawn path {
  animation: draw-line 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.ink-divider.flip svg { transform: scaleY(-1); }

/* ===== Sections ===== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}

/* paper grain on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
  pointer-events: none;
}

/* faint ink nebula wash — like watered ink pooled on paper */
.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 80% 70%, rgba(237, 230, 219, 0.015) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  margin-top: 14px;
  line-height: 1.7;
}

.section:not(.section-dark) .section-sub { color: var(--gray-600); }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px 26px;
  border: 2.5px solid var(--ink);
  transition: var(--transition);
  background: var(--cream);
  position: relative;
  /* each card gets a unique wobble via inline --wobble */
  transform: rotate(var(--wobble, 0deg));
  /* imperfect corners — no filter, clean text */
  border-radius: 4% 6% 5% 3% / 5% 3% 6% 4%;
}

.service-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
}

.service-icon svg {
  width: 42px;
  height: 42px;
  animation: icon-wiggle 4.5s ease-in-out infinite;
  transform-origin: center;
}

.service-card:nth-child(2n) .service-icon svg { animation-duration: 5.2s; animation-delay: -1.3s; }
.service-card:nth-child(3n) .service-icon svg { animation-duration: 6.1s; animation-delay: -2.4s; }
.service-card:nth-child(5n) .service-icon svg { animation-duration: 5.7s; animation-delay: -0.8s; }

.service-card:hover .service-icon svg {
  animation-duration: 1.1s;
}

@keyframes icon-wiggle {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50%      { transform: rotate(1.2deg) translateY(-1.5px); }
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== Pricing ===== */
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  border: 3px solid rgba(245, 240, 232, 0.2);
  border-radius: 5% 4% 6% 3% / 3% 5% 4% 6%;
  overflow: hidden;
  position: relative;
}

.pricing-stamp {
  position: absolute;
  top: 24px;
  right: -12px;
  background: var(--accent);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 20px 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(3deg);
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}

.pricing-header {
  padding: 44px 40px 0;
}

.pricing-header h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.pricing-body {
  padding: 28px 40px 44px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  margin-bottom: 28px;
  position: relative;
}

.price-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(245, 240, 232, 0.1);
  filter: url(#rougher);
}

.price-divider {
  width: 2px;
  height: 56px;
  background: rgba(245, 240, 232, 0.1);
  filter: url(#rough);
}

.price-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 6px;
  font-weight: 600;
}

/* Old price — starts BIG (same size as current) then after sequence shrinks.
   Strikethrough is a pseudo-element bar that scales from left to right. */
.price-old {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gray-400);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: inline-block;
  margin-right: 0;
  transition:
    font-size 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    font-weight 0.5s ease,
    color 0.5s ease,
    margin 0.5s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-old::before {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 52%;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  transform: scaleX(0) rotate(-2deg);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1),
              height 0.5s ease,
              top 0.5s ease;
  filter: url(#rough);
  pointer-events: none;
}

.price-old.strike::before {
  transform: scaleX(1) rotate(-2deg);
}

.price-old.shrunk {
  font-size: 1.15rem;
  font-weight: 500;
  margin-right: 12px;
  transform: translateY(-4px);
}
.price-old.shrunk::before {
  height: 3px;
  top: 50%;
}

.price-current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  display: inline-block;
}

/* Deferred reveal — starts hidden, then POPS in with bounce */
.price-current.price-reveal {
  opacity: 0;
  transform: scale(0.2) rotate(-8deg);
  transform-origin: left center;
  transition:
    opacity 0.35s ease,
    transform 0.6s cubic-bezier(0.34, 1.8, 0.64, 1);
}

.price-current.price-reveal.revealed {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Elements that appear AFTER the pop — timer, save text, divider, monthly block */
.reveal-late {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.reveal-late.revealed {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Save text scoots in from the left next to the discounted price */
.price-save.reveal-late {
  transform: translateX(-12px);
}
.price-save.reveal-late.revealed {
  transform: translateX(0);
}

/* Countdown timer — collapses its space until revealed so $1,000 looks like the real deal */
.countdown-wrap.reveal-late {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    margin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease 0.15s,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.countdown-wrap.reveal-late.revealed {
  max-height: 220px;
  padding: 20px 0 28px;
  margin-bottom: 8px;
  transform: translateY(0);
}

.price-monthly { font-size: 2.6rem; }
.price-mo { font-size: 1rem; font-weight: 500; color: var(--gray-400); }

.price-save {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.8);
}

.check-mark {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== Process ===== */
.process-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

/* hand-drawn vertical line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: var(--ink);
  opacity: 0.12;
  filter: url(#rougher);
}

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}

.step-stamp {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  /* imperfect circle */
  border-radius: 52% 48% 50% 50% / 48% 52% 50% 50%;
}

.process-step:hover .step-stamp {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-3deg) scale(1.05);
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.step-content p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
}

.faq-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(245, 240, 232, 0.08);
  filter: url(#rougher);
  pointer-events: none;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.faq-question:hover { color: var(--accent); }

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  /* Match the answer's curve + duration so the + rotating in sync with the answer expanding */
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent);
  display: inline-block;
  line-height: 1;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  /* JS drives max-height to the exact scrollHeight so every ms of transition = visible motion.
     Padding is transitioned alongside so the close animation doesn't snap to zero padding. */
  padding-bottom: 0;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Contact / Launch form ===== */
.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.launch-form {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 4% 5% 3% 6% / 5% 3% 6% 4%;
  padding: 48px 48px 40px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}

.hp-field { position: absolute; left: -9999px; visibility: hidden; }

/* Progress bar */
.form-progress { margin-bottom: 36px; }

.form-progress-track {
  position: relative;
  height: 4px;
  background: rgba(26, 26, 26, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.form-progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-progress-steps {
  display: flex;
  justify-content: space-between;
}

.form-step-dot {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-400);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px solid var(--gray-200);
  border-radius: 50% 48% 52% 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-step-dot.active {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.form-step-dot.current {
  transform: scale(1.15) rotate(-4deg);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--ink);
}

/* Steps — only active shown */
.form-step {
  display: none;
  animation: form-step-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-step.active { display: block; }

@keyframes form-step-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.form-step-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-step-title {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.form-step-sub {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* Form fields */
.form-field {
  display: block;
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
}

.field-optional {
  color: var(--gray-400);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: lowercase;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 100px;
  transition: all 0.3s ease;
  outline: none;
}

.form-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 90px;
  font-family: 'DM Sans', sans-serif;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 6 L11 1' stroke='%231A1A1A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
  transform: translateY(-1px);
}

.form-field input.error,
.form-field textarea.error,
.form-field select.error {
  border-color: #E63946;
  animation: field-shake 0.4s ease;
}

@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-400);
}

.form-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-style: italic;
}

.input-prefix {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix .prefix-symbol {
  position: absolute;
  left: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  pointer-events: none;
  z-index: 1;
}

.input-prefix input { padding-left: 36px !important; }

/* Vibe picker grid */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vibe-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border: 2.5px solid var(--ink);
  border-radius: 4% 6% 5% 3% / 5% 3% 6% 4%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--cream);
  text-align: center;
}

.vibe-card input { position: absolute; opacity: 0; pointer-events: none; }

.vibe-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.vibe-card:has(input:checked) {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-4px) rotate(-1.5deg);
  box-shadow: 5px 5px 0 var(--accent);
}

.vibe-card.error { border-color: #E63946; }

.vibe-emoji {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.vibe-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.vibe-card.pop { animation: card-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes card-pop {
  0%   { transform: translateY(-4px) rotate(-1.5deg) scale(1); }
  40%  { transform: translateY(-6px) rotate(-1.5deg) scale(1.08); }
  100% { transform: translateY(-4px) rotate(-1.5deg) scale(1); }
}

/* Color mood swatches */
.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.color-swatch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 2.5px solid var(--ink);
  border-radius: 4% 6% 5% 3% / 5% 3% 6% 4%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--cream);
  text-align: center;
}

.color-swatch input { position: absolute; opacity: 0; pointer-events: none; }

.color-swatch:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.color-swatch:has(input:checked) {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 5px 5px 0 var(--accent);
  border-color: var(--accent);
}

.color-circles {
  display: flex;
  gap: 0;
}

.color-circles span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}
.color-circles span:first-child { background: var(--c1); }
.color-circles span:last-child  { background: var(--c2); margin-left: -8px; }

.color-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.color-swatch.pop { animation: card-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Optional free-text input that sits below a vibe/color grid */
.form-field .custom-input {
  width: 100%;
  margin-top: 12px;
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: transparent;
  border: 2px dashed rgba(26, 26, 26, 0.35);
  border-radius: 100px;
  transition: all 0.3s ease;
  outline: none;
}

.form-field .custom-input::placeholder {
  color: var(--gray-400);
  font-style: italic;
}

.form-field .custom-input:focus {
  border-color: var(--accent);
  border-style: solid;
  box-shadow: 4px 4px 0 var(--accent);
  transform: translateY(-1px);
}

/* ROI calculator box */
.roi-box {
  margin-top: 12px;
  padding: 24px 24px;
  border: 2.5px dashed var(--ink);
  border-radius: 4% 6% 5% 3% / 5% 3% 6% 4%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 107, 53, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(-0.5deg);
}

.roi-box.active {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent);
  border-style: solid;
  transform: rotate(-0.5deg) scale(1.01);
  box-shadow: 5px 5px 0 var(--ink);
}

.roi-box.active .roi-icon {
  color: var(--accent);
  animation: roi-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes roi-pop {
  0%   { transform: scale(0.5) rotate(-15deg); }
  60%  { transform: scale(1.2) rotate(8deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.roi-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.roi-icon svg { width: 100%; height: 100%; }

.roi-content { flex: 1; }

.roi-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 6px;
}

.roi-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.roi-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* Form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px dashed rgba(26, 26, 26, 0.15);
}

.form-nav .btn { flex: 0 0 auto; }
.form-nav .form-next,
.form-nav .form-submit { margin-left: auto; }
.form-nav .btn[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

/* Form shake when validation fails */
.launch-form.shake { animation: form-shake 0.5s ease; }
@keyframes form-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  border: 2.5px solid var(--ink);
  border-radius: 4% 5% 3% 6% / 5% 3% 6% 4%;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}

.form-success.visible {
  display: block;
  animation: success-drop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-drop {
  0%   { opacity: 0; transform: translateY(-40px) rotate(-3deg) scale(0.9); }
  60%  { opacity: 1; transform: translateY(8px) rotate(1deg) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

.success-stamp {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 3px solid var(--accent);
  border-radius: 50% 48% 52% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transform: rotate(-4deg);
  animation: stamp-in 0.8s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

@keyframes stamp-in {
  0%   { opacity: 0; transform: rotate(15deg) scale(2.5); }
  60%  { opacity: 1; transform: rotate(-6deg) scale(0.9); }
  100% { opacity: 1; transform: rotate(-4deg) scale(1); }
}

.success-stamp svg { width: 50px; height: 50px; }

.form-success h3 { font-size: 1.8rem; margin-bottom: 12px; }
.form-success p { color: var(--gray-600); max-width: 380px; margin: 0 auto; line-height: 1.7; }

/* ===== Browser mockup — wow factor ===== */
.preview-label {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.browser-mockup {
  max-width: 700px;
  margin: 0 auto;
  border: 2.5px solid var(--ink);
  border-radius: 12px 12px 6px 6px;
  overflow: hidden;
  background: var(--cream);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.browser-dots span:first-child { background: var(--accent); border-color: var(--accent); }

.browser-url {
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(26, 26, 26, 0.04);
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
}

.browser-body {
  padding: 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Animated mock elements — they "build" in with staggered reveals */
.mock-el {
  opacity: 0;
  transform: translateY(8px);
  animation: mock-build 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.browser-mockup.visible .mock-nav { animation-delay: 0.2s; }
.browser-mockup.visible .mock-hero { animation-delay: 0.5s; }
.browser-mockup.visible .mock-headline { animation-delay: 0.7s; }
.browser-mockup.visible .mock-subtext { animation-delay: 0.9s; }
.browser-mockup.visible .mock-btn { animation-delay: 1.1s; }
.browser-mockup.visible .mock-cards { animation-delay: 1.4s; }
.browser-mockup.visible .mock-card:nth-child(1) { animation-delay: 1.5s; }
.browser-mockup.visible .mock-card:nth-child(2) { animation-delay: 1.65s; }
.browser-mockup.visible .mock-card:nth-child(3) { animation-delay: 1.8s; }
.browser-mockup.visible .mock-footer { animation-delay: 2.1s; }

/* don't animate until visible */
.browser-mockup:not(.visible) .mock-el { animation: none; }

@keyframes mock-build {
  to { opacity: 1; transform: translateY(0); }
}

.mock-nav {
  height: 8px;
  background: var(--ink);
  border-radius: 4px;
  width: 100%;
}

.mock-hero {
  background: rgba(26, 26, 26, 0.04);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-headline {
  height: 14px;
  width: 65%;
  background: var(--ink);
  border-radius: 4px;
}

.mock-subtext {
  height: 8px;
  width: 85%;
  background: var(--gray-200);
  border-radius: 4px;
}

.mock-btn {
  height: 24px;
  width: 100px;
  background: var(--accent);
  border-radius: 100px;
  margin-top: 4px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  height: 60px;
  background: rgba(26, 26, 26, 0.06);
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
}

.mock-footer {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  width: 40%;
  margin: 4px auto 0;
}

.preview-caption {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 20px;
}

/* ===== Footer ===== */
.footer {
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding-top: 48px;
}

.footer-brand p {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-contact a {
  color: var(--ink-light);
  transition: var(--transition);
  position: relative;
}

.footer-contact a:hover { color: var(--accent); }

.footer-contact-sep {
  color: var(--gray-400);
  font-size: 0.78rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ===== Stamp press effect for step numbers ===== */
.animate-on-scroll .step-stamp {
  transform: scale(1.4) rotate(8deg);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.animate-on-scroll.visible .step-stamp {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* Pricing stamp slam */
.pricing-card .pricing-stamp {
  transform: rotate(3deg) scale(0);
  animation: none;
}

.animate-on-scroll.visible .pricing-stamp {
  animation: stamp-slam 0.6s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stamp-slam {
  0% { transform: rotate(15deg) scale(2.5); opacity: 0; }
  60% { transform: rotate(-2deg) scale(0.9); opacity: 1; }
  100% { transform: rotate(3deg) scale(1); opacity: 1; }
}

/* ===== Animations ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.65s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger service cards */
.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.services-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.services-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }

/* ===== Trust line ===== */
.trust-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 12px;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ===== Recent work ===== */
.section-slim { padding: 48px 0; position: relative; z-index: 1; }

.section-header-slim { margin-bottom: 36px; }

.work .section-header h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

/* Featured spotlight (amigolandscaping) */
.work-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 40px 36px 32px;
  margin: 0 auto 32px;
  max-width: 640px;
  background: var(--cream-light);
  border: 2px dashed var(--ink);
  border-radius: 5% 3% 6% 4% / 4% 6% 3% 5%;
  transform: rotate(-0.4deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 4px 4px 0 var(--ink);
}

.work-hero:hover {
  transform: rotate(0.3deg) translateY(-4px);
  box-shadow: 7px 7px 0 var(--ink);
}

.work-hero-stamp {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: lowercase;
  padding: 4px 12px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

.work-hero-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.work-hero-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  transition: var(--transition);
}

.work-hero-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  filter: url(#rough);
}

.work-hero:hover .work-hero-title { color: var(--accent); }
.work-hero:hover .work-hero-title::after { width: 100%; }

.work-hero-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.work-hero:hover .work-hero-arrow { transform: translateX(6px); }

.work-hero-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  max-width: 440px;
  line-height: 1.5;
}

/* Grid of smaller cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: var(--cream-light);
  border: 2px solid var(--ink);
  border-radius: 3% 5% 4% 6% / 6% 4% 5% 3%;
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 3px 3px 0 var(--ink);
}

.work-card:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow: 5px 6px 0 var(--ink);
}

.work-card-tag {
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  padding: 3px 9px;
  border-radius: 999px;
}

.work-card-tag-live {
  color: var(--accent);
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid var(--accent);
}

.work-card-tag-portfolio {
  color: var(--ink-light);
  background: var(--cream);
  border: 1px dashed var(--ink);
}

.work-card-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.work-card-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.work-card:hover .work-card-arrow { transform: translateX(4px); }
.work-card:hover .work-card-name { color: var(--accent); }

.work-card-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}


/* ===== Countdown timer ===== */
.countdown-wrap {
  text-align: center;
  padding: 20px 0 28px;
  margin-bottom: 8px;
}

.countdown-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.countdown-block { text-align: center; }

.countdown-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  min-width: 48px;
}

.countdown-unit {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-top: 4px;
}

.countdown-sep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-400);
  margin-top: -12px;
}

/* ===== Scattered ink smudges ===== */
.ink-smudge {
  position: absolute;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  /* SVG turbulence filter removed — 8 smudges × transform-every-scroll-frame
     meant 8 CPU re-rasterizations per scroll event */
  will-change: transform;
}

/* scattered throughout the page at various positions */
.smudge-1 { width: 90px; height: 60px; top: 8%; left: 3%; opacity: 0.025; transform: rotate(15deg); }
.smudge-2 { width: 50px; height: 50px; top: 22%; right: 6%; opacity: 0.02; }
.smudge-3 { width: 120px; height: 40px; top: 35%; left: 8%; opacity: 0.018; transform: rotate(-8deg); }
.smudge-4 { width: 70px; height: 70px; top: 48%; right: 4%; opacity: 0.022; transform: rotate(25deg); }
.smudge-5 { width: 40px; height: 80px; top: 58%; left: 5%; opacity: 0.02; transform: rotate(-15deg); }
.smudge-6 { width: 100px; height: 45px; top: 70%; right: 7%; opacity: 0.015; transform: rotate(10deg); }
.smudge-7 { width: 55px; height: 55px; top: 82%; left: 4%; opacity: 0.025; transform: rotate(-20deg); }
.smudge-8 { width: 80px; height: 35px; top: 92%; right: 5%; opacity: 0.018; transform: rotate(5deg); }

/* ===== Wiggle CTA — "lock in this price" begs to be clicked ===== */
.btn-wiggle {
  animation: btn-wiggle 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes btn-wiggle {
  0%, 88%, 100% { transform: rotate(0deg) translateY(0); }
  90% { transform: rotate(-2.5deg) translateY(-1px); }
  92% { transform: rotate(2.5deg) translateY(-2px); }
  94% { transform: rotate(-2deg) translateY(-1px); }
  96% { transform: rotate(2deg) translateY(0); }
  98% { transform: rotate(-1deg) translateY(0); }
}

.btn-wiggle:hover {
  animation: btn-wiggle-fast 0.5s ease-in-out infinite;
}

@keyframes btn-wiggle-fast {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

/* ===== Word-by-word hero reveal ===== */
.hero-content h1.words-ready .word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(-4deg);
  animation: word-drop 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes word-drop {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* Since h1 has .animate-in already, disable that so word reveal drives it */
.hero-content h1.words-ready {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ===== Pricing stamp periodic jiggle (after the slam-in finishes) ===== */
.pricing-card .pricing-stamp {
  animation: stamp-idle 6s 2s ease-in-out infinite;
}

.animate-on-scroll.visible .pricing-stamp {
  animation:
    stamp-slam 0.6s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    stamp-idle 6s 2s ease-in-out infinite;
}

@keyframes stamp-idle {
  0%, 88%, 100% { transform: rotate(3deg) scale(1); }
  92% { transform: rotate(5deg) scale(1.05); }
  96% { transform: rotate(1deg) scale(1.03); }
}

/* ===== Countdown digit flip-ish pulse ===== */
.countdown-num {
  display: inline-block;
  transition: transform 0.15s ease;
}

/* Hero launchpad underline — live shimmer */
.ink-underline::after {
  animation: underline-breathe 3.5s ease-in-out infinite;
}

@keyframes underline-breathe {
  0%, 100% { opacity: 0.3; transform: rotate(-0.5deg) scaleX(1); }
  50%      { opacity: 0.5; transform: rotate(-1deg) scaleX(1.03); }
}

/* Mobile menu links stagger */
.mobile-menu.open ul li {
  animation: mobile-link-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.mobile-menu.open ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { animation-delay: 0.17s; }
.mobile-menu.open ul li:nth-child(3) { animation-delay: 0.24s; }
.mobile-menu.open ul li:nth-child(4) { animation-delay: 0.31s; }

@keyframes mobile-link-in {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Orbit gentle continuous rotation (stacks with JS scroll rotation via transform origin) */
@keyframes orbit-drift {
  0%   { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* Mascot container gentle sway on the splatters */
.splatter-1 { animation: splatter-drift-1 8s ease-in-out infinite; }
.splatter-2 { animation: splatter-drift-2 11s ease-in-out infinite; }
.splatter-3 { animation: splatter-drift-3 9s ease-in-out infinite; }

@keyframes splatter-drift-1 {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(8px, -6px) rotate(4deg); }
}
@keyframes splatter-drift-2 {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(-6px, 8px) rotate(-3deg); }
}
@keyframes splatter-drift-3 {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(4px, -4px) rotate(2deg); }
}

/* Nav links — underline draw on hover */
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
}
.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Trust line subtle marquee-ish float */
.trust-line { animation: trust-float 5s ease-in-out infinite; }
@keyframes trust-float {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* Magnetic buttons — ensure smooth transform back */
.btn-lg, .btn-accent {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .trust-line { text-align: center; }

  .hero-visual { order: -1; }
  .mascot-container { width: 300px; height: 300px; }
  .mascot { width: 200px; height: 200px; }
  .orbit-1 { width: 260px; height: 260px; }
  .orbit-2 { width: 300px; height: 300px; }
  .floating-banana { width: 90px; height: 90px; top: -6%; right: -2%; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  .mock-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-slim { padding: 32px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .price-row { flex-direction: column; gap: 20px; text-align: center; }
  .price-divider { width: 60px; height: 2px; }

  .pricing-header, .pricing-body { padding-left: 20px; padding-right: 20px; }

  .process-timeline::before { left: 23px; }
  .step-stamp { width: 48px; height: 48px; font-size: 0.85rem; }

  .notion-embed { height: 1200px; }

  .service-card { transform: rotate(0deg) !important; }

  /* Browser mockup mobile */
  .mock-cards { grid-template-columns: 1fr; }
  .mock-hero { padding: 16px 14px; }
  .browser-body { padding: 14px; }

  /* Recent work mobile */
  .work-hero { padding: 28px 22px 24px; }
  .work-hero-title { font-size: 1.15rem; }
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .work-card { padding: 16px 18px; }

  /* Countdown mobile */
  .countdown-num { font-size: 1.5rem; min-width: 36px; }
  .countdown-sep { font-size: 1.2rem; }

  /* Hero mobile */
  .hero { padding: 100px 0 60px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }

  /* Pricing stamp mobile */
  .pricing-stamp { font-size: 0.65rem; padding: 6px 14px 6px 10px; right: -8px; top: 16px; }

  /* Footer mobile */
  .footer-links { gap: 16px; }
  .footer-contact { gap: 8px; font-size: 0.82rem; }
  .footer-contact-sep { display: none; }

  /* Hide smudges on small screens — too cluttered */
  .ink-smudge { display: none; }

  /* Form mobile */
  .launch-form {
    padding: 28px 18px 24px;
    box-shadow: 4px 4px 0 var(--ink);
    scroll-margin-top: 100px;
  }
  .form-step-tag { font-size: 0.68rem; }
  .form-step-title { font-size: 1.3rem; line-height: 1.2; }
  .form-step-sub { font-size: 0.88rem; margin-bottom: 22px; }
  .form-progress { margin-bottom: 28px; }
  .form-step-dot { width: 28px; height: 28px; font-size: 0.66rem; }
  .form-label { font-size: 0.78rem; }
  .form-field { margin-bottom: 18px; }
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field input[type="number"],
  .form-field textarea,
  .form-field select {
    padding: 12px 16px;
    font-size: 16px; /* >= 16px prevents iOS auto-zoom on focus */
  }
  .vibe-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .color-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vibe-card { padding: 14px 10px; }
  .vibe-emoji { font-size: 1.5rem; }
  .vibe-name { font-size: 0.8rem; }
  .color-swatch { padding: 14px 8px; }
  .color-name { font-size: 0.7rem; }
  .roi-box { padding: 18px; flex-direction: column; gap: 12px; }
  .roi-icon { width: 36px; height: 36px; }
  .roi-text { font-size: 0.88rem; }

  /* Keep back + next on ONE line on mobile, tighter padding so they both fit */
  .form-nav { gap: 10px; flex-wrap: nowrap; }
  .form-nav .btn { padding: 11px 18px; font-size: 0.82rem; }
  .form-nav .btn span { white-space: nowrap; }

  /* Success state mobile */
  .form-success { padding: 44px 24px; }
  .success-stamp { width: 68px; height: 68px; }
  .success-stamp svg { width: 40px; height: 40px; }
  .form-success h3 { font-size: 1.5rem; }
  .form-success p { font-size: 0.9rem; }

  /* Sequenced price shrink — go a little smaller on mobile */
  .price-old { font-size: 2.4rem; }
  .price-old.shrunk { font-size: 1rem; }

  .mascot { width: 240px; height: 240px; }
  .floating-banana { width: 70px; height: 70px; top: 5%; right: 10%; }

  .space-float { display: none; }
  .space-scene { display: none; }
  .decor { display: none; }
}

/* ============================================
   SPACE FLOATING ASSETS
   ============================================ */

.space-scene {
  position: relative;
  width: 100%;
  overflow: visible;
  height: 0;
  pointer-events: none;
  z-index: 0;
}

.bike-divider {
  position: relative;
  overflow: visible;
}

.space-float {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* Hero — asteroid top right, earth bottom left */
.asteroid-hero {
  width: 150px;
  top: 15%;
  left: 3%;
  animation: asteroid-tumble 5s linear infinite;
}

.earth-hero {
  width: 138px;
  bottom: 10%;
  right: 5%;
  animation: earth-spin 20s linear infinite;
}

/* Between services & featured — galaxy slowly rotates, UFO drifts */
.galaxy-float {
  width: 220px;
  top: -110px;
  right: 5%;
  animation: galaxy-rotate 14s linear infinite;
}

.ufo-float {
  width: 320px;
  top: -160px;
  left: 8%;
  opacity: 0.65;
  animation: ufo-drift 4s ease-in-out infinite;
}

/* Monkey on bike rides along the footer ink line */
.bike-monkey-float {
  position: absolute;
  width: 100px;
  bottom: -2px;
  left: -100px;
  opacity: 0.85;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  animation: bike-ride 14s linear infinite;
}

/* Before contact — asteroid */
.asteroid-contact {
  width: 130px;
  top: -65px;
  left: 10%;
  animation: asteroid-tumble 6s linear infinite reverse;
}

/* Rocket at "ready to launch" */
.section-header-rocket {
  position: relative;
}

.rocket-launch {
  width: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto -10px;
  animation: rocket-blast 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15));
}

/* Keyframes — DIALED TO 11 */
@keyframes asteroid-tumble {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(30px, -15px) rotate(4deg); }
  40%  { transform: translate(55px, -5px) rotate(-2deg); }
  60%  { transform: translate(35px, 10px) rotate(3deg); }
  80%  { transform: translate(10px, 5px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes earth-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes galaxy-rotate {
  0%   { transform: rotate(0deg) scale(1); }
  25%  { transform: rotate(90deg) scale(1.2); }
  50%  { transform: rotate(180deg) scale(0.9); }
  75%  { transform: rotate(270deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes ufo-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  15%      { transform: translate(40px, -30px) rotate(8deg); }
  30%      { transform: translate(-20px, -50px) rotate(-6deg); }
  50%      { transform: translate(50px, -15px) rotate(12deg); }
  70%      { transform: translate(-30px, -40px) rotate(-10deg); }
  85%      { transform: translate(15px, -10px) rotate(5deg); }
}

@keyframes bike-ride {
  0%   { transform: translateX(0) rotate(-2deg); }
  25%  { transform: translateX(calc(25vw)) rotate(3deg); }
  50%  { transform: translateX(calc(50vw)) rotate(-2deg); }
  75%  { transform: translateX(calc(75vw)) rotate(3deg); }
  100% { transform: translateX(calc(100vw + 200px)) rotate(-1deg); }
}

@keyframes rocket-blast {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  20%      { transform: translateY(-25px) rotate(1deg); }
  40%      { transform: translateY(-40px) rotate(-1deg) scale(1.05); }
  60%      { transform: translateY(-30px) rotate(2deg); }
  80%      { transform: translateY(-10px) rotate(-1deg) scale(0.98); }
}

/* ============================================
   SCATTERED SPACE DECOR
   Absolute-positioned, pointer-events:none,
   no layout impact
   ============================================ */

.has-space-decor {
  position: relative;
  overflow: hidden;
}

.decor {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

/* --- SERVICES section --- */
.decor-banana-services {
  width: 80px;
  top: 12%;
  right: 3%;
  opacity: 0.2;
  animation: decor-wobble-1 7s ease-in-out infinite;
}
.decor-asteroid-services {
  width: 100px;
  bottom: 8%;
  left: 2%;
  opacity: 0.15;
  animation: decor-drift-1 9s ease-in-out infinite;
}

/* --- PRICING section --- */
.decor-earth-pricing {
  width: 110px;
  top: 10%;
  left: 4%;
  opacity: 0.12;
  animation: earth-spin 25s linear infinite;
}
.decor-galaxy-pricing {
  width: 140px;
  bottom: 5%;
  right: 3%;
  opacity: 0.1;
  animation: galaxy-rotate 20s linear infinite reverse;
}
.decor-banana-pricing {
  width: 60px;
  top: 50%;
  right: 8%;
  opacity: 0.18;
  animation: decor-wobble-2 5s ease-in-out infinite;
}

/* --- PROCESS section --- */
.decor-ufo-process {
  width: 150px;
  top: 5%;
  right: 2%;
  opacity: 0.15;
  animation: ufo-drift 6s ease-in-out infinite;
}
.decor-mascot-process {
  width: 90px;
  bottom: 10%;
  left: 3%;
  opacity: 0.1;
  animation: decor-float-1 8s ease-in-out infinite;
}
.decor-asteroid-process {
  width: 70px;
  top: 45%;
  left: 85%;
  opacity: 0.12;
  animation: decor-drift-1 11s ease-in-out infinite reverse;
}

/* --- FAQ section --- */
.decor-galaxy-faq {
  width: 160px;
  top: 8%;
  left: 2%;
  opacity: 0.08;
  animation: galaxy-rotate 18s linear infinite;
}
.decor-earth-faq {
  width: 80px;
  bottom: 12%;
  right: 5%;
  opacity: 0.12;
  animation: earth-spin 30s linear infinite reverse;
}
.decor-rocket-faq {
  width: 70px;
  top: 40%;
  right: 3%;
  opacity: 0.15;
  animation: decor-float-2 6s ease-in-out infinite;
}

/* --- CONTACT section --- */
.decor-banana-contact {
  width: 70px;
  top: 15%;
  right: 4%;
  opacity: 0.18;
  animation: decor-wobble-1 6s ease-in-out infinite 1s;
}
.decor-mascot-contact {
  width: 100px;
  bottom: 8%;
  left: 3%;
  opacity: 0.12;
  animation: decor-float-1 10s ease-in-out infinite;
}

/* --- Decor keyframes --- */
@keyframes decor-wobble-1 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  30%      { transform: rotate(8deg) translateY(-10px); }
  60%      { transform: rotate(-3deg) translateY(6px); }
}

@keyframes decor-wobble-2 {
  0%, 100% { transform: rotate(3deg) translate(0, 0); }
  25%      { transform: rotate(-6deg) translate(8px, -12px); }
  50%      { transform: rotate(5deg) translate(-5px, -6px); }
  75%      { transform: rotate(-2deg) translate(10px, 4px); }
}

@keyframes decor-drift-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(20px, -10px) rotate(5deg); }
  66%      { transform: translate(-10px, 8px) rotate(-3deg); }
}

@keyframes decor-float-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-15px) rotate(3deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
  75%      { transform: translateY(-20px) rotate(4deg); }
}

@keyframes decor-float-2 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
