/* ============================================================
   CRAZY WEBSITES - brand site
   Dark ink + one acid accent. Boring-to-crazy hero transformation.
   ============================================================ */

:root {
  --ink: #0A0A0F;
  --ink-2: #12121A;
  --ink-3: #1A1A24;
  --line: rgba(244, 244, 238, 0.10);
  --text: #F2F2EC;
  --muted: #9C9CA8;
  --acid: #D7FF3E;
  --acid-raw: 215, 255, 62;
  --boring-bg: #E7E7E2;
  --boring-text: #222222;
  --boring-link: #0000EE;
  --disp: "Bricolage Grotesque", "Inter", sans-serif;
  --body: "Inter", -apple-system, sans-serif;
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--text); }
::selection { background: var(--acid); color: var(--ink); }

.skip {
  position: fixed; left: 12px; top: -60px; z-index: 300;
  background: var(--acid); color: var(--ink); font-weight: 700;
  padding: 10px 16px; border-radius: 8px; text-decoration: none;
  transition: top 0.2s ease;
}
.skip:focus { top: 12px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  padding: 17px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.btn-acid {
  background: var(--acid); color: var(--ink);
  box-shadow: 0 0 0 rgba(var(--acid-raw), 0);
}
.btn-acid:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(var(--acid-raw), 0.35); }
.btn-ghost { border-color: rgba(244, 244, 238, 0.28); color: var(--text); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--acid); color: var(--acid); }
.btn-small { font-size: 14px; padding: 12px 20px; }

/* ---------- header ---------- */
#siteHeader {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transform: translateY(-110%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
  background: rgba(10, 10, 15, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
body.transformed #siteHeader { transform: translateY(0); }
.head-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logotype {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; white-space: nowrap;
}
.logo-mark { width: 34px; height: 34px; fill: var(--acid); flex: none; }
.logo-word { display: flex; flex-direction: column; line-height: 1; font-family: 'Space Grotesk', var(--disp), sans-serif; }
.lw-crazy { display: flex; font-weight: 700; font-size: 22px; color: var(--acid); letter-spacing: 0.06em; }
.lw-crazy b { display: inline-block; font-weight: 700; transform-origin: 50% 55%; }
/* locked jumble - per brand-spec.md, never re-jumble (the resting angles) */
.lw-crazy b:nth-child(1) { transform: rotate(-13deg) translateY(0.040em) scale(1.06); }
.lw-crazy b:nth-child(2) { transform: rotate(9deg)   translateY(-0.115em) scale(0.94); }
.lw-crazy b:nth-child(3) { transform: rotate(-10deg) translateY(0.090em) scale(1.02); }
.lw-crazy b:nth-child(4) { transform: rotate(14deg)  translateY(-0.065em) scale(1.08); }
.lw-crazy b:nth-child(5) { transform: rotate(-12deg) translateY(0.077em) scale(0.96); }
/* the jump lives on an inner element so the locked jumble stays untouched */
.lw-crazy i { display: inline-block; font-style: normal; will-change: transform; animation: cw-jump 2.4s cubic-bezier(.34,1.56,.64,1) infinite; }
.lw-crazy b:nth-child(1) i { animation-delay: 0s; }
.lw-crazy b:nth-child(2) i { animation-delay: .13s; }
.lw-crazy b:nth-child(3) i { animation-delay: .26s; }
.lw-crazy b:nth-child(4) i { animation-delay: .39s; }
.lw-crazy b:nth-child(5) i { animation-delay: .52s; }
.logotype:hover .lw-crazy i { animation-duration: 1s; }
@keyframes cw-jump {
  0%, 58%, 100% { transform: translateY(0) rotate(0); }
  22% { transform: translateY(-0.26em) rotate(-6deg); }
  40% { transform: translateY(0) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) { .lw-crazy i { animation: none; } }
.lw-web { font-weight: 600; font-size: 10px; letter-spacing: 0.4em; color: var(--text); margin-top: 5px; }
#siteHeader nav { display: flex; gap: 26px; }
#siteHeader nav a {
  color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: color 0.2s ease;
}
#siteHeader nav a:hover { color: var(--acid); }
@media (max-width: 860px) {
  #siteHeader nav { display: none; }
}

/* ============================================================
   HERO: boring to crazy
   ============================================================ */
.hero { position: relative; height: 300vh; }
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: clip; isolation: isolate;
}

/* --- the boring layer --- */
.hero-boring {
  position: absolute; inset: 0; z-index: 1;
  background: var(--boring-bg);
  color: var(--boring-text);
  font-family: "Times New Roman", Times, serif;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.boring-nav {
  width: 100%; padding: 14px 16px;
  border-bottom: 1px solid #b9b9b2;
  background: #dcdcd5;
  font-size: 14px; color: #444;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.boring-site { font-weight: 700; }
.boring-links u { color: var(--boring-link); cursor: pointer; margin: 0 2px; }
.boring-body { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 24px; max-width: 560px; }
.boring-h { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; margin-bottom: 18px; font-family: inherit; }
.boring-p { font-size: clamp(15px, 1.6vw, 18px); margin-bottom: 14px; line-height: 1.5; }
.boring-a { color: var(--boring-link); }
.boring-hr { width: 220px; border: none; border-top: 1px solid #adada6; margin: 22px auto 16px; }
.boring-small { font-size: 12.5px; font-style: italic; color: #777; }
.boring-chip {
  position: absolute; left: 50%; bottom: 15vh;
  transform: translateX(-50%) rotate(-2.5deg);
  background: var(--acid); color: var(--ink);
  font-family: var(--disp); font-weight: 700; font-size: clamp(13px, 1.5vw, 15.5px);
  padding: 9px 16px; border-radius: 6px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.boring-cue {
  position: absolute; left: 50%; bottom: 4.5vh; transform: translateX(-50%);
  font-size: 13.5px; color: #666; font-style: italic;
  animation: boringNudge 2.2s ease-in-out infinite;
}
@keyframes boringNudge { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 5px); } }

/* --- the crazy layer --- */
.hero-crazy {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(90rem 50rem at 78% -18%, rgba(var(--acid-raw), 0.09), transparent 55%),
    var(--ink);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0% -20%, 100% -20%, 100% -10%, 0% -10%);
}
html.no-js .hero-crazy, html.motion-off .hero-crazy, body[data-motion="off"] .hero-crazy { clip-path: none !important; }
.crazy-glow {
  position: absolute; left: 50%; top: 58%; width: 72vw; height: 42vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(var(--acid-raw), 0.07), transparent 70%);
  pointer-events: none;
}
.crazy-inner { position: relative; max-width: 980px; padding: 0 24px; text-align: center; }
.crazy-kicker {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--acid); font-weight: 600; margin-bottom: 26px;
}
.crazy-h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(56px, 9.6vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.nobreak { white-space: nowrap; }
.h1-star { color: var(--acid); display: inline-block; transform: rotate(-6deg) translateY(-0.04em); }
.strike { position: relative; display: inline-block; }
.strike-line {
  position: absolute; left: -3%; right: -3%; top: 55%; height: 0.085em;
  background: var(--acid); border-radius: 99px;
  transform: rotate(-2.4deg) scaleX(var(--sw, 0));
  transform-origin: left center;
  pointer-events: none;
}
html.no-js .strike-line, body[data-motion="off"] .strike-line { --sw: 1; }
.crazy-sub {
  font-size: clamp(17px, 2vw, 21px); color: var(--muted);
  max-width: 620px; margin: 0 auto 38px;
}
.crazy-sub strong { color: var(--text); font-weight: 600; }
.crazy-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.crazy-trust { font-size: 13.5px; color: var(--muted); }
.crazy-trust a { color: var(--muted); text-decoration-color: rgba(var(--acid-raw), 0.5); text-underline-offset: 3px; }
.crazy-trust a:hover { color: var(--acid); }
.crazy-cue {
  position: absolute; left: 50%; bottom: 4vh; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
  opacity: 0;
}
.cue-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid);
  animation: cuePulse 1.8s ease-in-out infinite;
}
@keyframes cuePulse { 0%, 100% { transform: translateY(-2px); opacity: 1; } 50% { transform: translateY(4px); opacity: 0.45; } }

/* staged crazy elements: JS drives opacity/transform between these states */
#czKicker, #czH1, #czSub, #czCtas, #czTrust { opacity: 0; transform: translateY(26px); will-change: opacity, transform; }
html.no-js .crazy-inner > *, body[data-motion="off"] .crazy-inner > * { opacity: 1 !important; transform: none !important; }
html.no-js .crazy-cue, body[data-motion="off"] .crazy-cue { opacity: 1 !important; }

.hero-fx { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; }
/* colour field: sits behind the crazy headline, revealed with the crazy layer, glows via screen */
#powder { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; display: block; }
/* keeps the copy readable over the colour chaos: darkens the centre band, edges stay loud */
.fluid-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 64% 56% at 50% 47%, rgba(7,7,11,0.66), rgba(7,7,11,0.30) 54%, rgba(7,7,11,0.05) 80%, transparent 100%),
    linear-gradient(to bottom, rgba(7,7,11,0.28), transparent 24%, transparent 78%, rgba(7,7,11,0.34));
}
.crazy-glow, .crazy-inner { position: relative; z-index: 1; }
.hero-crazy .crazy-kicker, .hero-crazy .crazy-sub, .hero-crazy .crazy-trust {
  text-shadow: 0 2px 26px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5);
}
.hero-crazy .crazy-h1 {
  text-shadow: 0 3px 30px rgba(0,0,0,0.82), 0 2px 10px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.5);
}

/* reduced motion / no JS: no pin, already crazy */
html.no-js .hero, body[data-motion="off"] .hero { height: auto; }
html.no-js .hero-sticky, body[data-motion="off"] .hero-sticky { position: relative; }
html.no-js .hero-boring, body[data-motion="off"] .hero-boring { display: none; }
html.no-js .hero-fx, body[data-motion="off"] .hero-fx { display: none; }
html.no-js #siteHeader, body[data-motion="off"] #siteHeader { transform: translateY(0); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: clip;
  border-top: 1px solid rgba(var(--acid-raw), 0.22);
  border-bottom: 1px solid rgba(var(--acid-raw), 0.22);
  background: var(--ink-2);
  padding: 16px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.02em; white-space: nowrap;
  color: var(--text); padding-right: 0.5em;
}
.marquee-track em { color: var(--acid); font-style: normal; padding: 0 0.35em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
body[data-motion="off"] .marquee-track, html.no-js .marquee-track { animation: none; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.kicker {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--acid); font-weight: 600; margin-bottom: 18px;
}
.h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04; letter-spacing: -0.025em;
  margin-bottom: 26px; max-width: 820px;
}
.acid { color: var(--acid); }
.section-sub { color: var(--muted); font-size: clamp(16px, 1.8vw, 18.5px); max-width: 640px; margin-bottom: 54px; }

/* reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease var(--d, 0s), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
html.no-js .reveal, body[data-motion="off"] .reveal { opacity: 1; transform: none; transition: none; }

/* ---------- how it works ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 54px;
}
.step {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px 34px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, opacity 0.7s ease var(--d, 0s);
}
.step:hover { border-color: rgba(var(--acid-raw), 0.45); transform: translateY(-4px); }
.step.reveal { transition: opacity 0.7s ease var(--d, 0s), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s), border-color 0.25s ease; }
.step-n {
  font-family: var(--disp); font-weight: 800; font-size: 46px; line-height: 1;
  color: var(--acid); display: block; margin-bottom: 18px;
}
.step h3 { font-family: var(--disp); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }
.how-note {
  margin-top: 46px; font-family: var(--disp); font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px); color: var(--text);
}
@media (max-width: 1020px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- the work ---------- */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.work-card {
  grid-column: span 1;
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease var(--d, 0s);
}
.work-card.reveal { transition: opacity 0.7s ease var(--d, 0s), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s), border-color 0.3s ease, box-shadow 0.3s ease; }
.work-card.reveal.in { transition: opacity 0.7s ease var(--d, 0s), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease; }
.work-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--acid-raw), 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 42px rgba(var(--acid-raw), 0.14);
}
.work-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-3); }
.work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.work-card:hover .work-media img { transform: scale(1.035); }
.work-meta {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 22px 22px; flex: 1; justify-content: space-between;
}
.work-meta h3 { font-family: var(--disp); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 5px; color: var(--text); }
.work-meta p { color: var(--muted); font-size: 14.5px; }
.work-tag {
  align-self: flex-start;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--acid);
  border: 1px solid rgba(var(--acid-raw), 0.35);
  padding: 5px 10px; border-radius: 999px;
}
/* the finale card: full row, media left, meta right */
.work-card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.75fr 1fr; }
.work-card.wide .work-media { aspect-ratio: 16 / 10; }
.work-card.wide .work-meta { justify-content: center; gap: 20px; padding: 30px 34px; }
.work-card.wide .work-meta h3 { font-size: clamp(22px, 2.4vw, 28px); }
.work-kick {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--acid) !important; margin-bottom: 10px;
}
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.wide { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card.wide { display: flex; flex-direction: column; }
  .work-card.wide .work-meta { padding: 20px 22px 22px; }
}

/* ---------- pricing ---------- */
.price-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px;
  margin-top: 54px; align-items: stretch;
}
.price-card {
  border-radius: 22px; padding: 40px 38px;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.price-main { border-color: rgba(var(--acid-raw), 0.5); box-shadow: 0 0 60px rgba(var(--acid-raw), 0.07); }
.price-label { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.price-amount { font-family: var(--disp); font-weight: 800; font-size: clamp(52px, 6vw, 76px); line-height: 1; letter-spacing: -0.03em; margin-bottom: 16px; }
.price-r { font-size: 0.55em; vertical-align: 0.5em; color: var(--acid); margin-right: 0.06em; }
.price-mo { font-size: 0.32em; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.price-terms { color: var(--muted); font-size: 15.5px; margin-bottom: 26px; max-width: 420px; }
.price-terms strong { color: var(--text); }
.price-list { list-style: none; display: grid; gap: 11px; }
.price-main .price-list { grid-template-columns: 1fr 1fr; }
.price-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text); }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(var(--acid-raw), 0.16);
  border: 1.5px solid var(--acid);
}
.price-list li::after {
  content: ""; position: absolute; left: 4.5px; top: 8.5px;
  width: 7px; height: 4.5px;
  border-left: 2px solid var(--acid); border-bottom: 2px solid var(--acid);
  transform: rotate(-45deg);
}
.price-note { margin-top: 34px; color: var(--muted); font-size: 15px; max-width: 720px; }
.price-note a { color: var(--acid); text-underline-offset: 3px; }
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-main .price-list { grid-template-columns: 1fr; }
}

/* ---------- faq ---------- */
.faq-list { display: grid; gap: 14px; margin-top: 48px; }
.faq-list details {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.25s ease;
}
.faq-list details[open] { border-color: rgba(var(--acid-raw), 0.45); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--disp); font-weight: 700; font-size: clamp(16.5px, 2vw, 19px);
  padding: 22px 26px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex: 0 0 16px; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--acid); border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-plus::before { left: 0; top: 7px; width: 16px; height: 2.5px; }
.faq-plus::after { left: 6.75px; top: 0; width: 2.5px; height: 16px; }
details[open] .faq-plus::after { transform: rotate(90deg); }
.faq-a { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; max-width: 700px; }
.faq-a a { color: var(--acid); text-underline-offset: 3px; }

/* ---------- contact ---------- */
.contact-wrap { text-align: center; }
.contact-wrap .h2, .contact-wrap .section-sub { margin-left: auto; margin-right: auto; }
.preview-form { max-width: 620px; margin: 0 auto 44px; text-align: left; }
.form-label { display: block; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.form-row { display: flex; gap: 12px; }
.form-row input {
  flex: 1; min-width: 0;
  background: var(--ink-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--body); font-size: 16px;
  padding: 16px 24px;
  outline: none;
  transition: border-color 0.25s ease;
}
.form-row input::placeholder { color: #62626e; }
.form-row input:focus { border-color: var(--acid); }
.form-note { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }
.contact-direct p { color: var(--muted); font-size: 15px; }
.contact-links { margin-top: 8px; font-size: clamp(16px, 2.4vw, 20px); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.contact-links a { color: var(--text); font-family: var(--disp); font-weight: 700; text-decoration-color: rgba(var(--acid-raw), 0.55); text-underline-offset: 4px; }
.contact-links a:hover { color: var(--acid); }
.contact-links span { color: var(--muted); }
.contact-links .dot { color: var(--acid); }
.contact-legal { margin-top: 26px; font-size: 13.5px; }
.contact-legal a { color: var(--muted); text-underline-offset: 3px; }
.contact-legal a:hover { color: var(--acid); }
@media (max-width: 560px) {
  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; text-align: center; }
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 64px 0 34px;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
.foot-logo { margin-bottom: 16px; }
.foot-logo .logo-mark { width: 34px; height: 34px; }
.foot-logo .lw-crazy { font-size: 20px; }
.foot-logo .lw-web { font-size: 9.5px; }
.foot-line { color: var(--muted); font-size: 14.5px; max-width: 380px; margin-bottom: 20px; }
.foot-legal { color: var(--muted); font-size: 13px; line-height: 1.7; }
.foot-legal strong { color: var(--text); }
.foot-head { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color 0.2s ease; }
.foot-col a:hover { color: var(--acid); }
.foot-bottom {
  margin-top: 54px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.foot-top { color: var(--muted); text-decoration: none; }
.foot-top:hover { color: var(--acid); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- reduced motion (system-level catch-all) ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .boring-cue, .cue-dot { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}
