/* =========================================================
   CHICLE — Marketing that sticks.
   Design tokens + system. Elastic / gum motif.
   ========================================================= */

:root {
  /* Palette */
  --ink:    #0E0E10;   /* primary background */
  --cream:  #F7F4EF;   /* secondary background */
  --pink:   #FF3D7F;   /* hero brand color */
  --lime:   #C6FF3D;   /* sparing CTA / accent */
  --mauve:  #8C6B7A;   /* secondary text on dark */
  --pink-ink: #d81f63; /* deeper pink for hover/contrast */

  --ink-soft: #161618;
  --ink-line: rgba(247, 244, 239, 0.10);
  --cream-line: rgba(14, 14, 16, 0.10);

  /* Text */
  --on-ink:   #F7F4EF;
  --on-cream: #0E0E10;
  --muted-on-ink:   var(--mauve);
  --muted-on-cream: #5d5560;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape / motion */
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --ease-stick: cubic-bezier(0.34, 1.56, 0.64, 1); /* elastic pop */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--on-ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: fixed; top: -120px; left: 16px; z-index: 200;
  background: var(--lime); color: var(--ink); padding: 10px 16px;
  border-radius: 999px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 0.98rem;
  padding: 13px 24px; border-radius: 999px; border: 0;
  transition: transform .35s var(--ease-stick), background-color .25s, color .25s, box-shadow .25s;
  will-change: transform;
}
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; padding: 16px; font-size: 1.05rem; }
.btn-cta {
  background: var(--pink); color: #fff;
  box-shadow: 0 8px 30px rgba(255, 61, 127, 0.30);
}
.btn-cta:hover { background: var(--pink-ink); box-shadow: 0 12px 40px rgba(255, 61, 127, 0.45); }
.btn-ghost {
  background: transparent; color: var(--on-ink);
  border: 1.5px solid var(--ink-line);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 300;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .2s;
}
.cursor-dot { width: 7px; height: 7px; background: var(--pink); }
.cursor-ring {
  width: 34px; height: 34px; border: 2px solid rgba(255, 61, 127, 0.6);
  transition: transform .12s ease-out, width .2s var(--ease-stick), height .2s var(--ease-stick), opacity .2s, border-color .2s;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-grab .cursor-ring { width: 56px; height: 56px; border-color: var(--lime); background: rgba(198, 255, 61, 0.10); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background-color .35s, backdrop-filter .35s, border-color .35s, padding .35s;
  padding: 14px 0; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--ink-line);
  padding: 9px 0;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 18px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.gummark { flex: none; transition: transform .5s var(--ease-stick); }
.nav-logo:hover .gummark { transform: scale(1.12) rotate(-6deg); }
.wordmark { font-family: var(--display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-weight: 500; font-size: 0.98rem; color: var(--muted-on-ink);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--pink); transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--on-ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 22px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.nav-burger span { width: 24px; height: 2px; background: var(--on-ink); transition: transform .3s, opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 6px;
  padding: 0 var(--pad); max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .35s;
  background: rgba(14,14,16,0.96); backdrop-filter: blur(14px);
}
.nav-mobile.open { max-height: 420px; padding: 14px var(--pad) 22px; border-bottom: 1px solid var(--ink-line); }
.nav-mobile a { padding: 12px 4px; font-weight: 500; color: var(--muted-on-ink); }
.nav-mobile a.btn-cta { color: #fff; margin-top: 8px; justify-content: center; }

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(72px, 11vw, 140px) var(--pad);
}
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.kicker {
  font-family: var(--body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.78rem; color: var(--pink); margin-bottom: 16px;
}
.kicker-light { color: var(--lime); }
.section-head h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.lead { color: var(--muted-on-ink); font-size: 1.12rem; margin-top: 18px; max-width: 560px; }
.lead-light { color: rgba(247,244,239,0.78); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px var(--pad) 80px;
  background:
    radial-gradient(120% 80% at 50% -10%, #1b1b1f 0%, var(--ink) 55%);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 3; max-width: 880px; }
.eyebrow {
  display: inline-block; font-weight: 500; color: var(--mauve);
  letter-spacing: 0.04em; font-size: 1rem; margin-bottom: 22px;
  padding: 8px 18px; border: 1px solid var(--ink-line); border-radius: 999px;
}
.hero-title {
  font-size: clamp(3.2rem, 12vw, 9rem); font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.92;
}
.hero-title .stick-line { display: block; }
.hero-title em {
  font-style: italic; color: var(--pink);
  position: relative;
}
.hero-title em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.08em; height: 0.16em;
  background: var(--lime); border-radius: 999px; transform: scaleX(0); transform-origin: left;
  animation: underline-pop 1s var(--ease-stick) .6s forwards;
}
@keyframes underline-pop { to { transform: scaleX(1); } }
.hero-sub {
  margin: 30px auto 0; max-width: 600px; color: var(--mauve);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem); line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-note { margin-top: 26px; color: var(--mauve); font-size: 0.92rem; opacity: .85; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mauve); display: flex; align-items: center; gap: 10px;
}
.scroll-cue span {
  width: 22px; height: 34px; border: 2px solid var(--mauve); border-radius: 14px; position: relative;
}
.scroll-cue span::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; border-radius: 4px; background: var(--pink);
  animation: scroll-bob 1.6s var(--ease-out) infinite;
}
@keyframes scroll-bob { 0%,100% { transform: translate(-50%,0); opacity: 1; } 60% { transform: translate(-50%,10px); opacity: .3; } }

/* ---------- HERO PARALLAX LAYERS ---------- */
.hero-bg { position: absolute; inset: -8% 0 0 0; z-index: 1; overflow: hidden; pointer-events: none; }
.layer { position: absolute; inset: 0; will-change: transform; transition: opacity .8s var(--ease-out); }
.layer-base { background: radial-gradient(120% 80% at 50% -10%, #1b1b1f 0%, var(--ink) 55%); }
.layer-glow {
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(255,61,127,0.18), transparent 70%),
    radial-gradient(40% 40% at 12% 92%, rgba(198,255,61,0.08), transparent 70%);
}
/* floating elastic blobs (aurora variant) */
.layer-1 .blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .85; }
.blob-a { width: 46vmax; height: 46vmax; right: -16vmax; top: -14vmax;
  background: radial-gradient(circle at 30% 30%, rgba(255,61,127,0.55), rgba(255,61,127,0.05) 70%);
  animation: float-a 16s ease-in-out infinite; }
.blob-b { width: 30vmax; height: 30vmax; left: -10vmax; bottom: -8vmax;
  background: radial-gradient(circle at 50% 50%, rgba(198,255,61,0.22), transparent 70%);
  animation: float-b 20s ease-in-out infinite; }
.blob-c { width: 14vmax; height: 14vmax; left: 12vmax; top: 22vmax;
  background: radial-gradient(circle, rgba(140,107,122,0.4), transparent 70%);
  animation: float-c 13s ease-in-out infinite; }
@keyframes float-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4vmax, 3vmax) scale(1.06); } }
@keyframes float-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vmax, -3vmax) scale(1.1); } }
@keyframes float-c { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(3vmax, 4vmax) scale(.9); } }

/* bubbles variant */
.bubbles { opacity: 0; }
.bubbles::before, .bubbles::after,
.bubbles i { content: ""; position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,61,127,0.55), rgba(255,61,127,0.10) 70%);
  box-shadow: 0 0 60px rgba(255,61,127,0.15); }
.bubbles i { background: radial-gradient(circle at 32% 30%, rgba(198,255,61,0.45), rgba(198,255,61,0.08) 70%); }
.bubbles i:nth-child(1){ width: 120px; height: 120px; left: 12%; top: 18%; animation: bubble-float 9s ease-in-out infinite; }
.bubbles i:nth-child(2){ width: 220px; height: 220px; right: 8%; top: 30%; animation: bubble-float 13s ease-in-out infinite reverse; }
.bubbles i:nth-child(3){ width: 80px; height: 80px; left: 30%; bottom: 18%; animation: bubble-float 7s ease-in-out infinite; }
.bubbles i:nth-child(4){ width: 150px; height: 150px; right: 22%; bottom: 12%; animation: bubble-float 11s ease-in-out infinite reverse; }
.bubbles::before { width: 60px; height: 60px; left: 60%; top: 12%; animation: bubble-float 8s ease-in-out infinite; }
.bubbles::after { width: 100px; height: 100px; left: 6%; bottom: 40%; animation: bubble-float 10s ease-in-out infinite reverse; }
@keyframes bubble-float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-26px) translateX(14px); } }

/* pop variant — bubbles that actually pop in/out on a loop (gum metaphor) */
.pop { opacity: 0; }
.pop i { position: absolute; border-radius: 50%; transform: scale(0); opacity: 0; will-change: transform, opacity; }
.pop i:nth-child(1){ width: 92px; height: 92px; left: 14%; top: 22%;
  background: radial-gradient(circle at 32% 30%, rgba(198,255,61,.92), rgba(198,255,61,.08) 70%);
  animation: pop 4.2s var(--ease-stick) infinite; animation-delay: 0s; }
.pop i:nth-child(2){ width: 140px; height: 140px; right: 12%; top: 26%;
  background: radial-gradient(circle at 32% 30%, rgba(255,61,127,.85), rgba(255,61,127,.08) 70%);
  animation: pop 5.1s var(--ease-stick) infinite; animation-delay: .8s; }
.pop i:nth-child(3){ width: 58px; height: 58px; left: 34%; bottom: 22%;
  background: radial-gradient(circle at 32% 30%, rgba(198,255,61,.9), rgba(198,255,61,.08) 70%);
  animation: pop 3.6s var(--ease-stick) infinite; animation-delay: 1.6s; }
.pop i:nth-child(4){ width: 110px; height: 110px; right: 26%; bottom: 16%;
  background: radial-gradient(circle at 32% 30%, rgba(255,61,127,.82), rgba(255,61,127,.08) 70%);
  animation: pop 4.7s var(--ease-stick) infinite; animation-delay: 2.2s; }
.pop i:nth-child(5){ width: 46px; height: 46px; left: 60%; top: 14%;
  background: radial-gradient(circle at 32% 30%, rgba(198,255,61,.9), rgba(198,255,61,.08) 70%);
  animation: pop 3.2s var(--ease-stick) infinite; animation-delay: 2.8s; }
.pop i:nth-child(6){ width: 78px; height: 78px; left: 8%; bottom: 40%;
  background: radial-gradient(circle at 32% 30%, rgba(255,61,127,.8), rgba(255,61,127,.08) 70%);
  animation: pop 4.0s var(--ease-stick) infinite; animation-delay: 3.4s; }
@keyframes pop {
  0%   { transform: scale(0);    opacity: 0; }
  12%  { transform: scale(1.25); opacity: .95; }
  24%  { transform: scale(1);    opacity: .8; }
  72%  { transform: scale(1.05); opacity: .6; }
  100% { transform: scale(1.4);  opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pop i { animation: none !important; transform: scale(1) !important; opacity: .55 !important; }
}

/* grid-lines variant */
.grid-lines { opacity: 0;
  background-image:
    linear-gradient(rgba(255,61,127,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,61,127,0.10) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 40%, #000 35%, transparent 75%);
          mask-image: radial-gradient(75% 70% at 50% 40%, #000 35%, transparent 75%);
}
.grid-lines::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(40% 40% at 70% 25%, rgba(198,255,61,0.12), transparent 70%); }

/* waves variant */
.waves { opacity: 0; }
.waves::before, .waves::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -20%;
  height: 60%; border-radius: 48% 52% 50% 50% / 100% 100% 0 0;
  background: rgba(255,61,127,0.16); transform-origin: bottom; }
.waves::before { animation: wave-shift 14s ease-in-out infinite; }
.waves::after { bottom: -28%; height: 50%; background: rgba(198,255,61,0.10); animation: wave-shift 18s ease-in-out infinite reverse; }
@keyframes wave-shift { 0%,100% { transform: scaleX(1) translateY(0); } 50% { transform: scaleX(1.08) translateY(-22px); } }

/* specks (shared depth accent, faint) */
.specks { opacity: .5;
  background-image: radial-gradient(rgba(247,244,239,0.5) 1px, transparent 1.4px);
  background-size: 46px 46px; }

/* variant visibility: only the active variant shows (plus base + glow + specks) */
.hero[data-hero="aurora"] .layer-1.blobs { opacity: 1; }
.hero[data-hero="bubbles"] .bubbles { opacity: 1; }
.hero[data-hero="grid"] .grid-lines { opacity: 1; }
.hero[data-hero="waves"] .waves { opacity: 1; }
.hero[data-hero="pop"] .pop { opacity: 1; }

/* hero cycle button */
.hero-cycle { position: absolute; right: clamp(16px, 4vw, 40px); bottom: 26px; z-index: 4;
  display: flex; gap: 10px; padding: 9px 13px; border-radius: 999px;
  background: rgba(247,244,239,0.06); border: 1px solid var(--ink-line); backdrop-filter: blur(8px); }
.hero-cycle-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mauve); cursor: pointer;
  transition: transform .3s var(--ease-stick), background-color .3s, width .3s; border: 0; padding: 0; }
.hero-cycle-dot:hover { transform: scale(1.3); }
.hero-cycle-dot.active { background: var(--pink); width: 22px; border-radius: 999px; }

/* ---------- BENTO (services) ---------- */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: var(--ink-soft); border: 1px solid var(--ink-line);
  border-radius: var(--r-md); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .45s var(--ease-stick), border-color .3s, background-color .3s, box-shadow .3s;
  will-change: transform;
}
.card-wide { grid-column: span 2; }
.card:hover {
  border-color: rgba(255,61,127,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: #1c1c20;
}
.card-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; color: var(--pink);
  background: rgba(255,61,127,0.12); margin-bottom: 6px;
  transition: transform .5s var(--ease-stick), background-color .3s, color .3s;
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { transform: scale(1.12) rotate(-5deg); background: rgba(255,61,127,0.20); }
.card h3 { font-size: 1.45rem; }
.card p { color: var(--mauve); font-size: 1rem; }
.card-wide p { max-width: 52ch; }
.card-tag {
  margin-top: auto; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--lime);
  font-weight: 500; padding-top: 8px;
}

/* ---------- RESULTS ---------- */
.section-results { max-width: var(--maxw); }
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 22px;
}
.stat {
  border: 1px solid var(--ink-line); border-radius: var(--r-md);
  padding: 30px 24px; background: var(--ink-soft);
  transition: transform .45s var(--ease-stick), border-color .3s;
}
.stat:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(198,255,61,0.45); }
.stat-num {
  display: block; font-family: var(--display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--lime); letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { display: block; margin-top: 12px; color: var(--mauve); font-size: 0.95rem; }
.cases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px;
}
.case {
  border: 1px solid var(--ink-line); border-radius: var(--r-md);
  padding: 28px 26px; background: linear-gradient(160deg, #15151a, #101013);
  transition: transform .45s var(--ease-stick), border-color .3s, box-shadow .3s;
}
.case:hover { transform: translateY(-6px) scale(1.02); border-color: rgba(255,61,127,0.45); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.case-tag { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mauve); }
.case-result { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--pink); margin: 10px 0 12px; letter-spacing: -0.02em; }
.case-desc { color: var(--mauve); font-size: 0.98rem; }

/* ---------- APPROACH / TIMELINE ---------- */
.timeline { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 18px; bottom: 18px; width: 2px;
  background: linear-gradient(var(--pink), rgba(140,107,122,0.2));
}
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; padding: 16px 0; }
.tl-num {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
  background: var(--ink-soft); border: 2px solid var(--pink); color: var(--pink);
  font-size: 1.1rem; position: relative; z-index: 2;
  transition: transform .5s var(--ease-stick), background-color .3s, color .3s;
}
.tl-step:hover .tl-num { transform: scale(1.12); background: var(--pink); color: #fff; }
.tl-body h3 { font-size: 1.6rem; }
.tl-body p { color: var(--mauve); margin-top: 6px; max-width: 60ch; }

/* ---------- WHY ---------- */
.section-why { max-width: var(--maxw); }
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.why-copy h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.why-text { margin-top: 22px; color: var(--mauve); font-size: 1.1rem; max-width: 52ch; }
.why-text em { font-style: italic; color: var(--on-ink); }
.why-text strong { color: var(--pink); }
.why-list { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.why-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); flex: none; }
.why-list strong { color: var(--on-ink); }
.pullquote {
  background: linear-gradient(150deg, var(--pink), #c1255c);
  color: #fff; border-radius: var(--r-lg); padding: clamp(32px, 5vw, 52px);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(255,61,127,0.25);
}
.pullquote::after {
  content: "\201C"; position: absolute; top: -10px; left: 14px; font-family: var(--display);
  font-size: 12rem; line-height: 1; color: rgba(255,255,255,0.16);
}
.pullquote blockquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.28; letter-spacing: -0.01em; position: relative; }
.pullquote figcaption { margin-top: 22px; font-weight: 600; letter-spacing: 0.04em; opacity: .9; }

/* ---------- VOICES / CAROUSEL ---------- */
.section-voices { max-width: var(--maxw); }
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s var(--ease-out); }
.quote-card {
  flex: 0 0 100%; padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--ink-line); border-radius: var(--r-lg);
  background: var(--ink-soft);
}
.quote-card blockquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 3.4vw, 2.4rem); line-height: 1.3; letter-spacing: -0.01em; }
.quote-card figcaption { margin-top: 28px; display: flex; align-items: center; gap: 14px; color: var(--mauve); }
.quote-card figcaption strong { color: var(--on-ink); display: block; }
.q-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
  background: var(--c, var(--pink)); color: var(--ink); font-size: 1.2rem;
}
.carousel-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.carousel-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; padding: 0;
  background: var(--ink-line); transition: transform .3s var(--ease-stick), background-color .3s, width .3s;
}
.carousel-dots button.active { background: var(--pink); width: 30px; border-radius: 999px; }

/* ---------- CONTACT ---------- */
.contact { max-width: 100%; position: relative; padding: 0; }
.contact-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(255,61,127,0.55), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #1a0d14 55%, #2a0f1d 100%);
}
.contact-grid {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start;
}
.contact-copy h2 { font-size: clamp(2.2rem, 6vw, 4rem); }
.contact-mail {
  display: inline-block; margin-top: 26px; font-family: var(--display);
  font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--lime);
  border-bottom: 2px solid transparent; transition: border-color .3s;
}
.contact-mail:hover { border-color: var(--lime); }
.contact-phone {
  display: inline-block; margin-top: 12px; font-weight: 600; font-size: 1.15rem;
  color: var(--on-ink); letter-spacing: 0.04em; border-bottom: 2px solid transparent;
  transition: border-color .3s, color .3s;
}
.contact-phone:hover { border-color: var(--pink); color: var(--pink); }
.contact-alt { margin-top: 28px; color: rgba(247,244,239,0.7); }
.socials { display: flex; gap: 14px; margin-top: 16px; }
.socials a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(247,244,239,0.2); color: var(--on-ink);
  transition: transform .4s var(--ease-stick), background-color .3s, color .3s, border-color .3s;
}
.socials a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ---------- FAQ (AEO) ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--ink-soft); border: 1px solid var(--ink-line);
  border-radius: var(--r-md); padding: 0 22px; overflow: hidden;
  transition: border-color .3s, background-color .3s;
}
.faq-item[open] { border-color: rgba(255,61,127,0.45); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: var(--body); font-weight: 600; font-size: 1.08rem; color: var(--on-ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 16px; height: 16px; flex: 0 0 16px; border-radius: 50%;
  background:
    linear-gradient(var(--pink), var(--pink)) center/2px 10px no-repeat,
    linear-gradient(var(--pink), var(--pink)) center/10px 2px no-repeat;
  transition: transform .35s var(--ease-stick), background-color .3s;
}
.faq-item[open] summary::after { transform: rotate(135deg); background:
    linear-gradient(var(--lime), var(--lime)) center/2px 10px no-repeat,
    linear-gradient(var(--lime), var(--lime)) center/10px 2px no-repeat; }
.faq-item p { margin: 0; padding: 0 0 22px; color: var(--muted-on-ink); }
.faq-item a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  background: rgba(14,14,16,0.55); border: 1px solid rgba(247,244,239,0.14);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); backdrop-filter: blur(6px);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: rgba(247,244,239,0.82); }
.field input, .field textarea {
  font: inherit; color: var(--on-ink); background: rgba(247,244,239,0.04);
  border: 1.5px solid rgba(247,244,239,0.16); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .25s, background-color .25s, box-shadow .25s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,244,239,0.4); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); background: rgba(255,61,127,0.06);
  box-shadow: 0 0 0 4px rgba(255,61,127,0.15);
}
.field input.invalid, .field textarea.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 4px rgba(255,107,107,0.15); }
.form-status { min-height: 1.2em; font-size: 0.95rem; font-weight: 500; }
.form-status.ok { color: var(--lime); }
.form-status.err { color: #ff8585; }

/* ---------- FOOTER ---------- */
.footer { position: relative; z-index: 2; border-top: 1px solid rgba(247,244,239,0.1); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 40px var(--pad) 48px;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.footer-logo .wordmark { font-size: 1.3rem; }
.footer-tag { color: rgba(247,244,239,0.7); }
.footer-tag a { color: var(--lime); }
.footer-contact { margin-top: 6px; color: rgba(247,244,239,0.7); font-weight: 500; }
.footer-contact a { color: var(--on-ink); }
.footer-contact a:hover { color: var(--lime); }
.footer-copy { color: var(--mauve); font-size: 0.9rem; }

/* Magnetic elements: JS drives transform via vars so it composes cleanly */
[data-magnetic] {
  transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(var(--ms, 1));
  transition: transform .28s var(--ease-stick), border-color .3s, background-color .3s, box-shadow .3s, color .25s;
  will-change: transform;
}

/* ---------- Reveal animation (only when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px) scale(0.99); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal { opacity: 1; } /* fallback if no JS */
.bento .reveal:nth-child(2), .cases .reveal:nth-child(2) { transition-delay: .06s; }
.bento .reveal:nth-child(3) { transition-delay: .12s; }
.cases .reveal:nth-child(3) { transition-delay: .12s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .tl-step { grid-template-columns: 46px 1fr; gap: 16px; }
  .tl-num { width: 46px; height: 46px; font-size: 1rem; }
  .timeline::before { left: 22px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-title em::after { transform: scaleX(1); }
}
