/* ============================================================
   MAKE A SPLASH v2 - loud, editorial, playful
   Brand: teal #1ec9a0 / aqua #28c0d8 / blue #1f8fef /
          orange #ff5a2c / ink #12303d
   ============================================================ */

:root {
  --teal: #1ec9a0;
  --aqua: #28c0d8;
  --blue: #1f8fef;
  --orange: #ff5a2c;
  --ink: #12303d;
  --paper: #fff9f0;
  --paper-deep: #fdf1e0;
  --white: #ffffff;
  --gray: #55656d;
  --line: rgba(18, 48, 61, 0.14);
  --maxw: 1180px;
  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-body: "Archivo", -apple-system, Helvetica, sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

::selection { background: var(--orange); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

h1 { font-size: clamp(2.9rem, 7.2vw, 6.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.15; }

p { margin: 0 0 1em; }
.big-p { font-size: clamp(1.08rem, 1.5vw, 1.35rem); }
.muted { color: var(--gray); }

em.pop {
  font-style: normal;
  color: var(--orange);
}

.hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: var(--orange);
  display: inline-block;
}
.hand.blue { color: var(--blue); }
.hand.teal { color: #0e8a6c; }

/* hand-drawn squiggle under a word */
.squig {
  position: relative;
  white-space: nowrap;
}
.squig::after {
  content: "";
  position: absolute;
  left: -1%; right: -1%;
  bottom: -0.16em;
  height: 0.34em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M2 7 Q 12 1 22 7 T 42 7 T 62 7 T 82 7 T 102 7 T 118 7' stroke='%23ff5a2c' fill='none' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}
.on-dark .squig::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M2 7 Q 12 1 22 7 T 42 7 T 62 7 T 82 7 T 102 7 T 118 7' stroke='%231ec9a0' fill='none' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}
/* on small screens let squiggled phrases wrap; drop the underline so it doesn't smear across lines */
@media (max-width: 720px) {
  .squig { white-space: normal; }
  .squig::after { display: none; }
}

/* marker highlight */
.hl {
  background: linear-gradient(transparent 55%, rgba(30, 201, 160, 0.5) 55%, rgba(30, 201, 160, 0.5) 92%, transparent 92%);
  padding: 0 2px;
}
.hl-orange {
  background: linear-gradient(transparent 55%, rgba(255, 90, 44, 0.42) 55%, rgba(255, 90, 44, 0.42) 92%, transparent 92%);
  padding: 0 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--orange);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: 9px 9px 0 var(--orange); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--orange); }

.btn.orange { background: var(--orange); border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn.orange:hover { box-shadow: 9px 9px 0 var(--ink); }
.btn.white { background: #fff; color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn.white:hover { box-shadow: 9px 9px 0 var(--ink); }
.btn.big { font-size: 1.18rem; padding: 20px 38px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}
.brand img { height: 38px; width: auto; }
.brand .dot { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}
.nav-links a:hover { border-color: var(--ink); transform: rotate(-2deg); }
.nav-links a.active { border-color: var(--ink); background: var(--teal); }

.nav .btn { padding: 11px 22px; font-size: 0.95rem; box-shadow: 3px 3px 0 var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  padding: 6px 28px 22px;
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}
.mobile-panel a {
  padding: 13px 0;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-panel .btn { margin-top: 14px; justify-content: center; border-bottom: 3px solid var(--ink); }
.mobile-panel.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Bands (full-bleed color sections) ---------- */
.band { padding: 96px 0; position: relative; }
.band-tight { padding: 64px 0; }
.band-ink { background: var(--ink); color: var(--paper); }
.band-ink h2, .band-ink h3 { color: #fff; }
.band-teal { background: var(--teal); }
.band-blue { background: var(--blue); color: #fff; }
.band-blue h2 { color: #fff; }
.band-deep { background: var(--paper-deep); }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 26px;
}
.band-ink .kicker { background: var(--orange); color: #fff; box-shadow: 3px 3px 0 var(--teal); border-color: var(--paper); }
.band-blue .kicker { background: var(--ink); color: #fff; border-color: #fff; box-shadow: 3px 3px 0 var(--ink); }
.band-teal .kicker { box-shadow: 3px 3px 0 var(--orange); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero h1 { max-width: 15ch; }
.hero-sub {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--gray);
  max-width: 46ch;
  margin: 30px 0 40px;
}
.hero-eyebrow { margin-bottom: 20px; }

/* word pop-in */
.hero h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em) rotate(3deg);
  animation: wordpop 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
}
@keyframes wordpop {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* floating droplets */
.drop {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-26px) rotate(6deg); }
}
@media (max-width: 720px) {
  .drop { display: none; }
}

/* ---------- Ticker band ---------- */
.ticker {
  background: var(--orange);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.6deg) scale(1.04);
  position: relative;
  z-index: 5;
}
.ticker.flip { transform: rotate(1.4deg) scale(1.04); background: var(--aqua); }
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 26s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker .star { color: #fff; padding: 14px 18px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Logo wall ---------- */
.logo-wall { padding: 70px 0 78px; }
.logo-wall .label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 30px;
}
.logo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.logo-marquee {
  overflow: hidden;
  padding: 10px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  align-items: center;
  animation: logo-scroll 34s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logo-scroll { to { transform: translateX(-50%); } }
.logo-card {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.16s ease;
}
.logo-card:nth-child(odd) { transform: rotate(-1.6deg); }
.logo-card:nth-child(even) { transform: rotate(1.4deg); }
.logo-card:hover { transform: rotate(0) translateY(-4px); }
.logo-card img { height: 40px; width: auto; max-width: 150px; object-fit: contain; }

/* ---------- Problem (dark) ---------- */
.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 44px;
  margin-top: 42px;
}
.problem-cols p { font-size: 1.12rem; color: rgba(255, 249, 240, 0.82); margin: 0; }
.problem-cols p strong { color: #fff; }
.problem-punch {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem) !important;
  color: #fff !important;
  line-height: 1.2;
  max-width: 30ch;
  margin-top: 10px !important;
}
@media (max-width: 760px) { .problem-cols { grid-template-columns: 1fr; } }

/* ---------- Definition panels ---------- */
.def-panels {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  margin: 46px 0 42px;
  align-items: stretch;
}
@media (max-width: 760px) { .def-panels { grid-template-columns: 1fr; } }

.def-panel {
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 36px;
  background: #fff;
  position: relative;
}
.def-panel .def-tag {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.def-panel p { font-size: clamp(1.15rem, 1.7vw, 1.45rem); margin: 0; font-weight: 500; }
.def-panel.smf {
  background: var(--ink);
  color: #fff;
  transform: rotate(1.2deg);
  box-shadow: 10px 10px 0 var(--orange);
}
.def-panel.smf .def-tag { color: var(--teal); }
.def-panel .sticker { position: absolute; top: -20px; right: 18px; }

/* sticker */
.sticker {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  transform: rotate(-5deg);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
.sticker.teal { background: var(--teal); color: var(--ink); }
.sticker.white { background: #fff; color: var(--ink); }

/* ---------- Services: giant numbers ---------- */
.way {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 48px;
  align-items: start;
  padding: 52px 0;
  border-top: 3px solid var(--ink);
}
h2 + .way { margin-top: 26px; }
.way:last-of-type { border-bottom: 3px solid var(--ink); }
.way-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.4rem, 9vw, 8rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
  transition: color 0.2s ease, transform 0.2s ease;
}
.way:hover .way-num { transform: rotate(-4deg) scale(1.06); }
.way:nth-of-type(1):hover .way-num { color: var(--teal); }
.way:nth-of-type(2):hover .way-num { color: var(--aqua); }
.way:nth-of-type(3):hover .way-num { color: var(--blue); }
.way h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 6px; }
.way .who-for {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.way p.desc { font-size: 1.1rem; color: var(--gray); max-width: 62ch; }
.way .meta {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 15px;
  margin: 6px 12px 14px 0;
}
.way .go {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 2px;
  display: inline-block;
  transition: transform 0.15s ease;
}
.way .go:hover { transform: translateX(6px); }
@media (max-width: 700px) {
  .way { grid-template-columns: 1fr; gap: 10px; }
  .way-num { font-size: 4rem; }
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote-card { position: relative; padding-top: 54px; }
.quote-mark {
  position: absolute;
  top: -8px; left: -6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}
.quote-card:nth-child(1) .quote-mark { color: var(--teal); }
.quote-card:nth-child(2) .quote-mark { color: var(--orange); }
.quote-card:nth-child(3) .quote-mark { color: var(--aqua); }
.quote-card blockquote {
  margin: 0 0 18px;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.45;
}
.quote-card .who { font-family: var(--font-display); font-weight: 800; }
.quote-card .role { color: rgba(255, 249, 240, 0.65); font-size: 0.92rem; }

.q-person { display: flex; align-items: center; gap: 14px; }
.q-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--paper);
  flex-shrink: 0;
}
.q-person.centered { flex-direction: column; justify-content: center; gap: 12px; }
.q-person.centered .q-photo { width: 72px; height: 72px; border-color: var(--ink); box-shadow: 4px 4px 0 var(--teal); }

/* ---------- Newsletter subscribe form ---------- */
.sub-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0 16px;
  max-width: 560px;
}
.sub-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 15px 22px;
  border-radius: 999px;
  border: 3px solid var(--paper);
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--teal);
  transition: box-shadow 0.16s ease, transform 0.16s ease;
}
.sub-form input[type="email"]::placeholder { color: #9aa6ad; }
.sub-form input[type="email"]:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--orange);
  transform: translate(-1px, -1px);
}
.sub-form input[type="email"].err {
  box-shadow: 4px 4px 0 var(--orange);
  border-color: var(--orange);
}
.sub-form .btn { flex: 0 0 auto; }
.sub-form.done { display: none; }
.sub-note { font-size: 0.95rem; color: rgba(255, 249, 240, 0.7); margin: 0; }
.sub-note a { font-weight: 700; color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.sub-note a:hover { color: var(--teal); }
.sub-success {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--teal);
  max-width: 46ch;
  margin: 8px 0 0;
}

/* ---------- CTA bands ---------- */
.shout { text-align: center; }
.shout h2 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); max-width: 18ch; margin: 0 auto 22px; }
.shout p { max-width: 52ch; margin: 0 auto 34px; font-size: 1.15rem; }
.band-blue .shout p { color: rgba(255, 255, 255, 0.88); }

/* ---------- Meet Julia ---------- */
.meet {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .meet { grid-template-columns: 1fr; gap: 40px; } }
.arch-photo { position: relative; max-width: 380px; }
.arch-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 190px 190px 22px 22px;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--teal);
}
.arch-photo .sticker { position: absolute; bottom: 26px; left: -20px; }
.arch-photo .hand-note {
  position: absolute;
  top: -14px;
  right: -30px;
  transform: rotate(8deg);
}

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
.badges span {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 2px 2px 0 var(--ink);
}
.badges span:nth-child(2n) { background: var(--teal); transform: rotate(1.5deg); }
.badges span:nth-child(3n) { background: var(--paper-deep); transform: rotate(-1.5deg); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 70px 0 40px;
  border-top: 3px solid var(--ink);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 44px;
}
.footer .brand { color: #fff; }
.footer-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  max-width: 22ch;
  margin-top: 14px;
}
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-links a {
  font-weight: 700;
  padding: 10px 18px;
  border: 2.5px solid rgba(255, 249, 240, 0.4);
  border-radius: 999px;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.footer-links a:hover { border-color: var(--teal); background: rgba(30, 201, 160, 0.12); transform: rotate(-2deg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 249, 240, 0.2);
  color: rgba(255, 249, 240, 0.6);
  font-size: 0.9rem;
}

/* ---------- Spinning call badge ---------- */
.spin-badge {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 55;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.spin-badge:hover { transform: scale(1.1); }
.spin-badge::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(18, 48, 61, 0.25);
}
.spin-badge svg.ring { position: absolute; inset: 0; animation: spin 14s linear infinite; z-index: 1; }
.spin-badge .core { position: relative; z-index: 1; }
.spin-badge .core {
  width: 58px;
  height: 58px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 3px 3px 0 var(--ink);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 700px) { .spin-badge { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.tilt { transform: translateY(28px) rotate(2deg); }
.reveal.tilt.in { transform: translateY(0) rotate(0); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding: 80px 0 70px; position: relative; overflow: hidden; }
.page-hero h1 { max-width: 17ch; font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
.page-hero .hero-sub { margin: 26px 0 36px; }

/* ---------- Detail blocks (services page) ---------- */
.svc { padding: 90px 0; }
.svc-head { display: flex; align-items: baseline; gap: 26px; flex-wrap: wrap; margin-bottom: 18px; }
.svc-head .way-num { font-size: clamp(3.6rem, 6vw, 5.4rem); }
.svc h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.svc .fact {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  margin: 14px 12px 8px 0;
  box-shadow: 2px 2px 0 var(--ink);
}
.on-dark .fact { background: var(--ink); color: #fff; border-color: var(--paper); box-shadow: 2px 2px 0 var(--teal); }
.svc .lead { font-size: 1.15rem; max-width: 66ch; margin-top: 22px; }

.block-label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--orange);
  margin: 44px 0 20px;
}

.week-list { display: grid; gap: 14px; max-width: 780px; }
.week {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  background: #fff;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 4px 4px 0 var(--aqua);
  align-items: baseline;
}
.week:nth-child(2n) { box-shadow: 4px 4px 0 var(--teal); }
.week:nth-child(3n) { box-shadow: 4px 4px 0 var(--orange); }
.week .wk {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--blue);
}
.week p { margin: 0; }
@media (max-width: 560px) { .week { grid-template-columns: 1fr; gap: 6px; } }

.take-list, .fit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; max-width: 760px; }
.take-list li, .fit-list li { position: relative; padding-left: 38px; font-size: 1.05rem; }
.take-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  border: 2.5px solid var(--ink);
  border-radius: 7px;
  background: var(--teal);
  box-shadow: 2px 2px 0 var(--ink);
}
.fit-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  font-size: 1.2rem;
}
.svc .price-note {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue);
  margin: 40px 0 26px;
  max-width: 46ch;
  line-height: 1.25;
}
.on-dark .price-note { color: var(--teal); }

/* ---------- Accelerators page ---------- */
.fmt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}
@media (max-width: 920px) { .fmt-cards { grid-template-columns: 1fr; } }
.fmt-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 7px 7px 0 var(--teal);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fmt-card:nth-child(2) { box-shadow: 7px 7px 0 var(--orange); transform: rotate(-1.2deg); }
.fmt-card:nth-child(3) { box-shadow: 7px 7px 0 var(--aqua); }
.fmt-card:hover { transform: translate(-3px, -3px) rotate(0); box-shadow: 11px 11px 0 var(--blue); }
.fmt-card .fmt-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.fmt-card h3 { margin-bottom: 12px; }
.fmt-card p { color: var(--gray); flex-grow: 1; }
.fmt-card .best {
  align-self: flex-start;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  border-bottom: 2.5px dashed var(--blue);
}

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 920px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 3px solid var(--paper);
  border-radius: 20px;
  padding: 30px 28px;
  background: rgba(255, 249, 240, 0.06);
  position: relative;
}
.tier.hot { background: var(--orange); border-color: var(--paper); transform: rotate(1.4deg); }
.tier .tier-label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  opacity: 0.75;
}
.tier .tier-deal {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 10px 0 12px;
  line-height: 1.05;
}
.tier p { margin: 0; opacity: 0.85; font-size: 0.98rem; }
.tier .sticker { position: absolute; top: -20px; right: 14px; }

.cohort-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cohort-row span {
  font-weight: 700;
  padding: 10px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.95rem;
}
.cohort-row span:nth-child(2n) { transform: rotate(1.6deg); background: var(--paper-deep); }
.cohort-row span:nth-child(2n+1) { transform: rotate(-1.4deg); }

.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; counter-reset: step; }
@media (max-width: 880px) { .steps3 { grid-template-columns: 1fr; } }
.step3 {
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: #fff;
  padding: 30px 26px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}
.step3 .n {
  position: absolute;
  top: -24px; left: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 3px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 3px 3px 0 var(--ink);
}
.step3 h3 { font-size: 1.25rem; margin: 10px 0 10px; }
.step3 p { margin: 0; color: var(--gray); }

/* big single quote */
.big-quote {
  max-width: 860px;
  margin: 54px auto 0;
  text-align: center;
  position: relative;
  padding-top: 40px;
}
.big-quote .quote-mark { left: 50%; transform: translateX(-50%); color: var(--teal); }
.big-quote blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.25;
}

/* ---------- Beliefs (about) ---------- */
.beliefs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
@media (max-width: 760px) { .beliefs { grid-template-columns: 1fr; } }
.belief {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 34px 30px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.25;
  background: #fff;
  box-shadow: 7px 7px 0 var(--teal);
}
.belief:nth-child(2) { background: var(--ink); color: #fff; box-shadow: 7px 7px 0 var(--orange); transform: rotate(1deg); }
.belief:nth-child(3) { box-shadow: 7px 7px 0 var(--aqua); transform: rotate(-1deg); }
.belief:nth-child(4) { background: var(--teal); box-shadow: 7px 7px 0 var(--ink); }

.cred-list { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 0; max-width: 820px; }
.cred-list li {
  padding: 20px 4px;
  border-top: 2.5px solid var(--ink);
  font-size: 1.12rem;
  font-weight: 500;
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.cred-list li:last-child { border-bottom: 2.5px solid var(--ink); }
.cred-list .ic { font-size: 1.3rem; }

/* ---------- Wave divider ---------- */
.wave { line-height: 0; display: block; }
.wave svg { width: 100%; height: 52px; display: block; }

/* ---------- Click splash ---------- */
.splash-drop {
  position: fixed;
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 2px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: splash-fly 0.6s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}
@keyframes splash-fly {
  to {
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(45deg) scale(0.15);
    opacity: 0;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .drop, .spin-badge svg.ring, .logo-marquee-track, .splash-drop { animation: none !important; }
  .hero h1 .w { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
