/* =========================================================================
   Drip Create × Studio Namma — editorial blend (scoped to /v2)
   Dark DC brand (acid green + purple) + Namma motion & typography.
   All rules namespaced under .v2 so they never touch the main site.
   ========================================================================= */

/* Design tokens at :root so elements OUTSIDE .v2 (the fixed nav, the footer and
   the loading overlay all render as siblings of <main class="v2">) can still
   resolve var(--black)/var(--acid)/etc. The .v2 block below only carries the
   page-body STYLING (background, grain, min-height) — which must NOT leak onto
   the nav/footer/loader, so those keep their own class and just read the tokens. */
:root {
  --acid: #beff03;
  --purple: #481e70;
  --violet: #8b2fff;
  --black: #050505;
  --zinc: #09090b;
  --off-white: #e5e5e5;
  --muted: #888;
  --line: rgba(255, 255, 255, 0.12);

  --font-display: var(--font-anton), "Arial Narrow", sans-serif;
  --font-body: var(--font-barlow), sans-serif;
  --font-mono: var(--font-mono), ui-monospace, monospace;
}

.v2 {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* film-grain overlay, same as the main DC site */
.v2::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.08;
  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='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

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

/* --- Shared editorial atoms --- */
.v2 .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.v2 .mono-acid {
  color: var(--acid);
}

.v2 .v2-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.v2 .v2-wrap {
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .v2 .v2-wrap { padding-inline: 20px; }
}

/* Scroll-reveal: elements lift + fade in when they enter the viewport */
.v2 .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.v2 .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
/* stagger delays so a heading leads, body follows */
.v2 .reveal.d1 { transition-delay: 0.08s; }
.v2 .reveal.d2 { transition-delay: 0.16s; }
.v2 .reveal.d3 { transition-delay: 0.24s; }
.v2 .reveal.d4 { transition-delay: 0.32s; }
.v2 .reveal.d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .v2 .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   NAV — editorial top bar with location/time stamp (Namma signature)
   ========================================================================= */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  /* Extend the solid fill up under the notch/status bar so the whole top strip is
     near-black (relevant to the iOS toolbar tint below). */
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
  color: #fff;
  /* SOLID near-black bar (opaque, no translucency). iOS 26 Safari's translucent
     "glass" toolbar ignores the theme-color meta and tints from whatever is
     rendered directly under it — so a solid dark nav at the very top gives Safari
     a near-black surface to sample, keeping the phone toolbar near-black on every
     section. Also keeps the nav legible everywhere without per-section tricks. */
  background: #0a0a0a;
}
.v2-nav a { color: inherit; text-decoration: none; }
.v2-nav-brand {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  /* lift the logo out of the nav's difference blend so its gradient stays true */
  mix-blend-mode: normal;
  isolation: isolate;
}
.v2-nav-logo {
  height: 30px;
  width: auto;
  display: block;
}
@media (max-width: 900px) { .v2-nav-logo { height: 24px; } }
.v2-nav-center {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.v2-nav-center a { opacity: 0.7; transition: opacity 0.2s; }
.v2-nav-center a:hover { opacity: 1; }
.v2-nav-stamp {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  gap: 18px;
}
@media (max-width: 900px) {
  .v2-nav { padding: 14px 20px; }
  .v2-nav-center { display: none; }
  .v2-nav-stamp span:first-child { display: none; }
}

/* =========================================================================
   HERO — giant condensed editorial headline over DC fluid background
   ========================================================================= */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 40px 56px;
  background: var(--black);
  background-image:
    radial-gradient(ellipse at 28% 40%, rgba(72, 30, 112, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 72% 38%, rgba(190, 255, 3, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(72, 30, 112, 0.28) 0%, transparent 55%);
}
.v2-hero-fluid {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v2-hero-fluid canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.v2-hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 25% 45%, rgba(72, 30, 112, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 35%, rgba(190, 255, 3, 0.16) 0%, transparent 45%),
    radial-gradient(ellipse at 55% 75%, rgba(72, 30, 112, 0.5) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: v2Drift 14s ease-in-out infinite alternate;
}
.v2-hero-active .v2-hero-fallback { opacity: 0; transition: opacity 0.6s; }
@keyframes v2Drift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 60%; }
  100% { background-position: 0% 0%; }
}
.v2-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, transparent 30%, transparent 60%, rgba(5,5,5,0.85) 100%);
}
.v2-hero-inner { position: relative; z-index: 2; width: 100%; }
.v2-hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.v2-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(64px, 13.5vw, 230px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  color: var(--off-white);
}
/* Each word on its own line: BUILD / SOLVE / GROW. The Next build inherited this
   from a global .block utility that wasn't ported; <span> defaults to inline, so
   without it WordPress runs all three words onto one line and they overflow. */
.v2-hero h1 .block { display: block; }
.v2-hero h1 .acid { color: var(--acid); }
.v2-hero h1 .outline {
  -webkit-text-stroke: 1.5px var(--violet);
  color: transparent;
}
.v2-hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 36px;
  gap: 32px;
  flex-wrap: wrap;
}
.v2-hero-desc {
  max-width: 440px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(229, 229, 229, 0.72);
}
.v2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--acid);
  color: #000;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.v2-hero-cta:hover { background: #fff; transform: translateY(-2px); }

/* =========================================================================
   INTRO STATEMENT — scroll-brighten words + spinning video carousel
   ========================================================================= */
.v2-intro {
  padding: 140px 40px;
  border-top: 1px solid var(--line);
}
.v2-intro-label { margin-bottom: 40px; }

.v2-intro-statement {
  font-family: var(--font-body);
  font-size: clamp(28px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--off-white);
  max-width: 1100px;
}
/* Each word starts dim; JS brightens them progressively on scroll */
.v2-word {
  display: inline;
  opacity: 0.18;
  transition: opacity 0.45s ease, filter 0.45s ease;
}
.v2-word.acid { color: var(--acid); font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
  .v2-word { opacity: 1 !important; filter: none !important; }
}
@media (max-width: 900px) { .v2-intro { padding: 90px 20px; } }

/* --- Angled video marquee strip (borderless, smaller tiles) --- */
.v2-vmarquee {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  /* tilt the whole band slightly, scale up so edges still cover the section */
  transform: rotate(-3deg) scale(1.06);
}
/* one copy = 5 tiles; shift the track by exactly one copy's pixel width so the
   loop seam is invisible. Driven by fixed tile + gap vars (no % rounding gaps). */
.v2-vmarquee {
  --vm-tile: 190px;
  --vm-gap: 16px;
  --vm-copy: calc((var(--vm-tile) + var(--vm-gap)) * 5);
}
.v2-vmarquee-track {
  display: flex;
  width: max-content;
  animation: v2VMarquee 40s linear infinite;
}
.v2-vmarquee:hover .v2-vmarquee-track { animation-play-state: paused; }
.v2-vmarquee-tile {
  flex-shrink: 0;
  width: var(--vm-tile);
  aspect-ratio: 16 / 10;
  margin-right: var(--vm-gap);
  border-radius: 8px;
  overflow: hidden;
  filter: grayscale(0.3);
  transition: filter 0.4s;
}
.v2-vmarquee-tile:hover { filter: grayscale(0); }
.v2-vmarquee-tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes v2VMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--vm-copy))); }
}
@media (max-width: 768px) {
  .v2-vmarquee { --vm-tile: 150px; --vm-gap: 12px; }
}
@media (max-width: 768px) { .v2-vmarquee { padding: 30px 0; transform: rotate(-2.5deg) scale(1.08); } }

/* =========================================================================
   SELECTED PROJECTS — editorial hover-reveal list (Namma signature)
   ========================================================================= */
.v2-projects {
  padding: 120px 40px;
  border-top: 1px solid var(--line);
  position: relative;
}
.v2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 12px;
}
.v2-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.v2-section-title em { color: var(--acid); font-style: normal; }

.v2-proj-list { border-top: 1px solid var(--line); }
.v2-proj-row {
  display: grid;
  grid-template-columns: 48px 116px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--off-white);
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

/* Always-on desktop thumbnail */
.v2-proj-thumb {
  width: 116px;
  height: 74px;
  border-radius: 5px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s, box-shadow 0.45s;
  filter: grayscale(0.35) brightness(0.85);
}
.v2-proj-thumb.is-portrait {
  width: 60px;
  height: 100px;
  margin: 0 auto;
}
.v2-proj-thumb video,
.v2-proj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v2-proj-thumb.is-portrait video,
.v2-proj-thumb.is-portrait img {
  object-fit: contain;
  background: #000;
}
.v2-proj-row:hover .v2-proj-thumb {
  transform: scale(1.08);
  filter: grayscale(0) brightness(1);
  border-color: rgba(190, 255, 3, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(190, 255, 3, 0.12);
}
.v2-proj-row:hover { padding-left: 28px; color: #fff; }
.v2-proj-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--acid), var(--purple));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-proj-row:hover::before { transform: scaleY(1); }
.v2-proj-idx {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.v2-proj-name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-proj-row:hover .v2-proj-name { color: var(--acid); }
.v2-proj-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-proj-cat { color: var(--acid); }

/* Floating cursor-following preview */
.v2-proj-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 220px;
  pointer-events: none;
  z-index: 120;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) translate(-50%, -50%);
  will-change: transform, opacity;
  transition: opacity 0.2s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(190, 255, 3, 0.25);
}
.v2-proj-preview.is-on { opacity: 1; }
.v2-proj-preview video,
.v2-proj-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Portrait (phone-shaped) clips get a tall popup so they aren't cropped */
.v2-proj-preview.is-portrait {
  width: 220px;
  height: 400px;
  border-radius: 16px;
}
.v2-proj-preview.is-portrait video,
.v2-proj-preview.is-portrait img {
  object-fit: contain;
  background: #000;
}
/* Inline project media — desktop hides it (cursor popup is used instead) */
.v2-proj-inline { display: none; }

@media (max-width: 768px) {
  .v2-proj-row { grid-template-columns: 36px 1fr; gap: 10px 14px; padding: 22px 4px; }
  .v2-proj-meta { display: none; }
  .v2-proj-thumb { display: none; } /* the larger inline media takes over */
  .v2-proj-preview { display: none; } /* turn off cursor-follow popup on touch */

  /* Show a media thumbnail under each project name on mobile */
  .v2-proj-inline {
    display: block;
    grid-column: 2;
    position: relative;
    margin-top: 14px;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(190, 255, 3, 0.2);
    background: #0a0a0a;
  }
  .v2-proj-inline.is-portrait {
    aspect-ratio: 9 / 16;
    max-width: 230px;
  }
  .v2-proj-inline video,
  .v2-proj-inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .v2-proj-inline.is-portrait video,
  .v2-proj-inline.is-portrait img {
    object-fit: contain;
    background: #000;
  }
  .v2-proj-inline-meta {
    position: absolute;
    left: 10px;
    bottom: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--acid);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
  }
  /* disable the hover padding-shift on touch so rows stay put */
  .v2-proj-row:hover { padding-left: 4px; }
}

/* =========================================================================
   SERVICES — editorial numbered list with hover acid wash
   ========================================================================= */
.v2-services {
  padding: 120px 40px;
  border-top: 1px solid var(--line);
}
.v2-svc-list { border-top: 1px solid var(--line); }
.v2-svc-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-svc-row:hover { background: rgba(255, 255, 255, 0.02); padding-left: 24px; }
.v2-svc-idx {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--acid);
}
.v2-svc-name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--off-white);
}
.v2-svc-row:hover .v2-svc-name { color: var(--acid); }
.v2-svc-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.v2-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.v2-svc-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid rgba(190, 255, 3, 0.2);
  color: rgba(190, 255, 3, 0.6);
}
@media (max-width: 900px) {
  /* Stack: [idx] [name] on the top row, description spans full content column below */
  .v2-svc-row {
    grid-template-columns: 40px 1fr;
    gap: 8px 16px;
    padding: 28px 4px;
  }
  .v2-svc-row > div {
    grid-column: 2;
    margin-top: 10px;
  }
  .v2-svc-desc { font-size: 14px; }
}

/* =========================================================================
   CLIENTS MARQUEE
   ========================================================================= */
.v2-clients {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.v2-clients-track {
  display: flex;
  gap: 64px;
  width: max-content;
  align-items: center;
  animation: v2Marquee 28s linear infinite;
}
.v2-clients-track span {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 56px);
  letter-spacing: -0.01em;
  color: rgba(229, 229, 229, 0.22);
  white-space: nowrap;
  transition: color 0.3s;
}
.v2-clients-track span:hover { color: var(--acid); }
.v2-clients-dot { color: var(--acid) !important; font-size: 0.5em; }
@keyframes v2Marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================================
   CTA — giant "Let's build together" (Namma signature finish)
   ========================================================================= */
/* Light editorial finish — white background, dark headline, no stroke. */
.v2-cta {
  position: relative;
  padding: 160px 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  background: #fafafa !important;
}
.v2-cta-inner { position: relative; z-index: 2; }
.v2-cta-label { margin-bottom: 32px; }
.v2-cta-label .mono-acid { color: #481e70; }
.v2-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(56px, 14vw, 260px);
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}
.v2-cta h2 em { color: #9bd400; font-style: normal; }
.v2-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 20px 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.v2-cta-link:hover { background: #481e70; transform: translateY(-2px); }

/* Angled video tiles framing the headline (subtle, decorative — tuned for dark) */
.v2-cta-tiles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.v2-cta-tile {
  position: absolute;
  width: 230px;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0.95;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}
.v2-cta-tile video,
.v2-cta-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-cta-tile.tl { top: 64px; left: 56px; transform: rotate(-7deg); }
.v2-cta-tile.tr { top: 64px; right: 56px; transform: rotate(6deg); }
.v2-cta-tile.bl { bottom: 64px; left: 56px; transform: rotate(7deg); }
.v2-cta-tile.br { bottom: 64px; right: 56px; transform: rotate(-6deg); }
/* gentle float-in when the section is revealed */
.v2-cta.reveal-tiles .v2-cta-tile.tl { transform: rotate(-7deg) translateY(-4px); }
@media (max-width: 1100px) {
  .v2-cta-tile { width: 160px; }
  .v2-cta-tile.tl { left: 20px; } .v2-cta-tile.tr { right: 20px; }
  .v2-cta-tile.bl { left: 20px; } .v2-cta-tile.br { right: 20px; }
}
@media (max-width: 768px) {
  .v2-cta-tiles { display: none; } /* keep mobile clean */
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.v2-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.v2-footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.v2-footer a:hover { color: var(--acid); }

/* =========================================================================
   MOBILE POLISH — tighten section padding & type on phones
   ========================================================================= */
@media (max-width: 768px) {
  .v2-intro { padding: 80px 20px; }
  .v2-projects,
  .v2-services { padding: 80px 20px; }
  .v2-cta { padding: 100px 20px; }
  .v2-section-head { margin-bottom: 36px; }
  /* let the giant section labels (mono) not crowd the title */
  .v2-section-head .mono { order: -1; }
  /* hero side padding + bottom spacing on small screens */
  .v2-hero { padding: 0 20px 40px; }
  .v2-footer { padding: 36px 20px; }
}
@media (max-width: 480px) {
  .v2-proj-row { grid-template-columns: 28px 1fr; gap: 12px; }
  .v2-svc-row { grid-template-columns: 28px 1fr; }
}

/* =========================================================================
   ADDED SECTIONS — About, Packages teaser, Team, Second Opinion,
   Testimonials, Contact form. All dark editorial, in the v2 system.
   ========================================================================= */

/* --- ABOUT --- */
.v2-about { padding: 120px 40px; border-top: 1px solid var(--line); }
.v2-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.v2-about-left .mono-acid { display: block; margin-bottom: 28px; }
.v2-about-title {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(56px, 8vw, 130px); line-height: 0.82; letter-spacing: -0.02em;
  color: var(--off-white);
}
.v2-about-title .hollow { -webkit-text-stroke: 1.5px var(--violet); color: transparent; }
.v2-about-right p { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(229,229,229,0.65); margin-bottom: 22px; }
.v2-about-right p strong { color: var(--acid); font-weight: 600; }
.v2-about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 40px; }
.v2-val { background: var(--black); padding: 24px 20px; }
.v2-val h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.v2-val p { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--muted); }
@media (max-width: 900px) {
  .v2-about { padding: 80px 20px; }
  .v2-about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- PACKAGES TEASER --- */
.v2-pkg { padding: 120px 40px; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.v2-pkg::before { content: ""; position: absolute; top: -80px; right: -100px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(ellipse, rgba(72,30,112,0.22) 0%, transparent 65%); pointer-events: none; }
.v2-pkg-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.v2-pkg-left .mono-acid { display: block; margin-bottom: 20px; }
.v2-pkg-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(48px, 7vw, 110px); line-height: 0.82; letter-spacing: -0.02em; color: var(--off-white); margin-bottom: 24px; }
.v2-pkg-title em { color: var(--acid); font-style: normal; }
.v2-pkg-sub { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(229,229,229,0.6); max-width: 440px; margin-bottom: 32px; }
.v2-pkg-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 32px; }
.v2-pkg-amount { font-family: var(--font-display); font-size: clamp(56px,7vw,84px); color: var(--acid); line-height: 1; }
.v2-pkg-per { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.v2-pkg-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.v2-pkg-link { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acid); text-decoration: none; }
.v2-pkg-link:hover { color: #fff; }
.v2-pkg-features { list-style: none; border: 1px solid var(--line); }
.v2-pkg-features li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 300; color: rgba(229,229,229,0.78); }
.v2-pkg-features li:last-child { border-bottom: none; }
.v2-pkg-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); margin-top: 7px; }
@media (max-width: 900px) {
  .v2-pkg { padding: 80px 20px; }
  .v2-pkg-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* --- TEAM --- */
.v2-team { padding: 120px 40px; border-top: 1px solid var(--line); }
.v2-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.v2-team-card { text-align: left; }
.v2-team-photo { width: 100%; aspect-ratio: 4 / 5; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: #0a0a0a; margin-bottom: 24px; filter: grayscale(0.4); transition: filter 0.4s; }
.v2-team-card:hover .v2-team-photo { filter: grayscale(0); }
.v2-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* KAWS paint wipe-to-clean portrait (tissue cursor) */
.v2-team-photo.v2-wipe { position: relative; filter: none; overflow: hidden; }
.v2-wipe-clean {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.v2-wipe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  touch-action: none;
  cursor: none; /* hide the OS cursor; the tissue element stands in */
}
/* goo-splat video: hidden until a SPLAT plays, sits above everything while playing */
.v2-splat-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  /* fade out smoothly into the painted still when the video ends */
  transition: opacity 0.45s ease;
}
.v2-team-photo.is-video-splatting .v2-splat-video {
  opacity: 1;
  transition: none; /* appear instantly on press; only the fade-out animates */
}
/* sponge cursor element follows the pointer via --tx/--ty */
.v2-tissue {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 46px;
  margin: -23px 0 0 -31px;
  transform: translate(var(--tx, -200px), var(--ty, -200px)) rotate(-7deg);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  /* yellow scrubber top half */
  background: linear-gradient(180deg, #e8b400 0%, #f6cf2a 48%, #f6cf2a 50%, #6fd3e0 50%, #58c2d0 100%);
  border-radius: 9px 9px 11px 11px;
  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 4px rgba(0, 0, 0, 0.18);
}
.v2-tissue::before {
  /* porous sponge holes on the blue lower half */
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 3px;
  height: 44%;
  border-radius: 0 0 9px 9px;
  background:
    radial-gradient(circle at 18% 40%, rgba(0,0,0,0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 46% 65%, rgba(0,0,0,0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 72% 35%, rgba(0,0,0,0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 88% 70%, rgba(0,0,0,0.15) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 32% 80%, rgba(0,0,0,0.15) 0 1.5px, transparent 2.5px);
}
.v2-tissue::after {
  /* a little soap suds bubble at the corner */
  content: "";
  position: absolute;
  top: -5px; right: -4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.25));
  box-shadow: -7px 2px 0 -3px rgba(255,255,255,0.6);
}
.v2-team-photo.v2-wipe.is-wiping .v2-tissue { opacity: 1; }
@media (hover: none) {
  .v2-tissue { display: none; }   /* touch devices: no fake cursor */
  .v2-wipe-canvas { cursor: default; }
}
.v2-team-name { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 34px; letter-spacing: -0.01em; color: var(--off-white); }
.v2-team-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acid); margin: 4px 0 14px; }
.v2-team-bio { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--muted); }
@media (max-width: 900px) {
  .v2-team { padding: 80px 20px; }
  .v2-team-grid { grid-template-columns: 1fr; gap: 48px; max-width: 420px; }
}

/* --- SECOND OPINION --- */
.v2-so { padding: 120px 40px; border-top: 1px solid var(--line); }
.v2-so-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }
.v2-so-left .mono-acid { display: block; margin-bottom: 18px; }
.v2-so-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(44px,6vw,96px); line-height: 0.85; letter-spacing: -0.02em; color: var(--off-white); margin-bottom: 28px; }
.v2-so-title em { color: var(--acid); font-style: normal; }
.v2-so-lead { font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(229,229,229,0.7); margin-bottom: 28px; }
.v2-so-list { list-style: none; margin-bottom: 32px; }
.v2-so-list li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: 15px; font-weight: 300; color: var(--muted); }
.v2-so-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 2px; background: var(--acid); }
.v2-so-sub { display: block; margin-top: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.v2-so-card { background: var(--zinc); border-left: 3px solid var(--acid); padding: 44px 40px; }
.v2-so-card-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acid); margin-bottom: 18px; }
.v2-so-card-body { font-size: 20px; line-height: 1.5; font-weight: 300; color: var(--off-white); margin-bottom: 26px; }
.v2-so-card-rule { width: 40px; height: 2px; background: var(--acid); margin-bottom: 16px; }
.v2-so-card-attr { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
@media (max-width: 900px) {
  .v2-so { padding: 80px 20px; }
  .v2-so-grid { grid-template-columns: 1fr; gap: 44px; }
  .v2-so-card { padding: 32px 26px; }
}

/* --- TESTIMONIALS --- */
.v2-testi { padding: 120px 40px; border-top: 1px solid var(--line); }
.v2-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.v2-testi-card { background: var(--black); padding: 36px 30px; display: flex; flex-direction: column; gap: 16px; transition: background 0.3s; }
.v2-testi-card:hover { background: #0c0c0c; }
.v2-testi-stars { color: var(--acid); font-size: 14px; letter-spacing: 2px; }
.v2-testi-card blockquote { font-size: 16px; font-weight: 300; line-height: 1.6; color: var(--off-white); flex: 1; }
.v2-testi-card figcaption { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid var(--line); padding-top: 16px; }
.v2-testi-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.v2-testi-co { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 1000px) { .v2-testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v2-testi { padding: 80px 20px; } .v2-testi-grid { grid-template-columns: 1fr; } }

/* --- CONTACT FORM --- */
/* Force dark — overrides the main site's #contact{white} rule leaking from globals */
.v2-contact { padding: 120px 40px; border-top: 1px solid var(--line); background: var(--black) !important; }
.v2-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.v2-contact-info .mono-acid { display: block; margin-bottom: 20px; }
.v2-contact-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(44px,6vw,96px); line-height: 0.85; letter-spacing: -0.02em; color: var(--off-white); margin-bottom: 26px; }
.v2-contact-title em { color: var(--acid); font-style: normal; }
.v2-contact-text { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(229,229,229,0.6); margin-bottom: 32px; max-width: 460px; }
.v2-contact-meta { display: flex; flex-direction: column; gap: 8px; }
.v2-contact-meta a { font-family: var(--font-mono); font-size: 16px; letter-spacing: 0.04em; color: var(--acid); text-decoration: none; }
.v2-contact-meta span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.v2-form { display: flex; flex-direction: column; gap: 18px; }
.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.v2-fg { display: flex; flex-direction: column; gap: 8px; }
.v2-fg label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.v2-fg input, .v2-fg select, .v2-fg textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--off-white); font-family: var(--font-body); font-size: 15px;
  padding: 12px 0; outline: none; transition: border-color 0.2s;
}
.v2-fg select option { background: #0a0a0a; color: var(--off-white); }
.v2-fg textarea { resize: none; min-height: 110px; line-height: 1.6; }
.v2-fg input:focus, .v2-fg select:focus, .v2-fg textarea:focus { border-color: var(--acid); }
.v2-form-btn { align-self: flex-start; margin-top: 10px; background: var(--acid); color: #000; font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; padding: 18px 38px; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.v2-form-btn:hover { background: #fff; transform: translateY(-2px); }
@media (max-width: 900px) {
  .v2-contact { padding: 80px 20px; }
  .v2-contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .v2-form-row { grid-template-columns: 1fr; }
}

/* =========================================================================
   PACKAGES PAGE (/websites)
   ========================================================================= */
.v2-pkg-hero { min-height: 92vh; }

.v2-pkgpage { padding: 120px 40px; border-top: 1px solid var(--line); }
.v2-pkgpage-lead {
  font-size: clamp(20px, 2.6vw, 34px); font-weight: 300; line-height: 1.4;
  letter-spacing: -0.01em; color: rgba(229,229,229,0.75); max-width: 900px; margin-bottom: 64px;
}
.v2-pkgpage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.v2-pkgpage-grid--up { grid-template-columns: repeat(3, 1fr); }
.v2-incl { background: var(--black); padding: 40px 32px; position: relative; overflow: hidden; transition: background 0.3s; }
.v2-incl::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), var(--acid)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.v2-incl:hover { background: #0c0c0c; }
.v2-incl:hover::after { transform: scaleX(1); }
.v2-incl-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--acid); display: block; margin-bottom: 18px; }
.v2-incl h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 26px; letter-spacing: -0.01em; color: var(--off-white); margin-bottom: 12px; }
.v2-incl p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--muted); }
@media (max-width: 1000px) { .v2-pkgpage-grid, .v2-pkgpage-grid--up { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .v2-pkgpage { padding: 80px 20px; }
  .v2-pkgpage-grid, .v2-pkgpage-grid--up { grid-template-columns: 1fr; }
}

/* Trust quote */
.v2-trust { padding: 140px 40px; border-top: 1px solid var(--line); text-align: center; background-image: radial-gradient(ellipse at 50% 50%, rgba(72,30,112,0.18) 0%, transparent 65%); }
.v2-trust-quote {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(32px, 5vw, 80px); line-height: 0.95; letter-spacing: -0.02em;
  color: var(--off-white); max-width: 1100px; margin: 0 auto 28px;
}
.v2-trust-quote em { color: var(--acid); font-style: normal; }
.v2-trust-attr { display: block; }
@media (max-width: 640px) { .v2-trust { padding: 90px 20px; } }

/* =========================================================================
   LOADER / DROP INTRO
   ========================================================================= */
.v2-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.v2-loader-logo {
  position: relative;
  width: min(440px, 72vw);
  aspect-ratio: 730.87 / 179.46;
  opacity: 0;
  transform: translateY(8px);
  animation: v2LoaderLogoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.v2-loader-logo > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.v2-logo-colour img,
.v2-logo-colour { display: block; }
@keyframes v2LoaderLogoIn { to { opacity: 1; transform: translateY(0); } }

/* layer states: colour visible first, outline hidden */
.v2-logo-colour { opacity: 1; transition: opacity 0.6s ease; }
.v2-logo-outline { opacity: 0; transition: opacity 0.6s ease; }

/* white shimmer band, masked to the outline shape, swept across */
.v2-logo-shimmer {
  opacity: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background: linear-gradient(
    100deg,
    transparent 35%,
    rgba(255, 255, 255, 0.95) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  background-position: 120% 0;
  pointer-events: none;
}

/* === MORPH (outline / fill / drop phases): colour out, outline + shimmer in === */
.v2-loader.phase-outline .v2-logo-colour,
.v2-loader.phase-fill .v2-logo-colour,
.v2-loader.phase-drop .v2-logo-colour { opacity: 0 !important; }
.v2-loader.phase-outline .v2-logo-outline,
.v2-loader.phase-fill .v2-logo-outline,
.v2-loader.phase-drop .v2-logo-outline { opacity: 1 !important; }
.v2-loader.phase-outline .v2-logo-shimmer,
.v2-loader.phase-fill .v2-logo-shimmer,
.v2-loader.phase-drop .v2-logo-shimmer {
  opacity: 1;
  animation: v2Shimmer 1.6s ease-in-out 0.25s infinite;
}
@keyframes v2Shimmer {
  0%   { background-position: 130% 0; }
  60%  { background-position: -30% 0; }
  100% { background-position: -30% 0; }
}

/* === The logo's real droplet (fills, then falls as that shape) === */
.v2-logo-realdrop {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  /* drip mark = full logo height, width derived from the 136:174 ratio */
  height: 100%;
  width: auto;
  aspect-ratio: 136 / 174;
  opacity: 0;
  z-index: 2;
  /* promote to its own GPU layer so the fall animates smoothly */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.v2-logo-realdrop svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
/* visible from the outline phase onward (sitting in place of the logo's drop) */
.v2-loader.phase-outline .v2-logo-realdrop,
.v2-loader.phase-fill .v2-logo-realdrop,
.v2-loader.phase-drop .v2-logo-realdrop { opacity: 1; }

/* the liquid fill rect starts empty (pushed below) and rises to full */
.v2-logo-realdrop .drop-fill {
  transform: translateY(174px); /* empty: fill pushed fully down/out */
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.v2-loader.phase-fill .v2-logo-realdrop .drop-fill,
.v2-loader.phase-drop .v2-logo-realdrop .drop-fill {
  transform: translateY(0); /* full */
}
.v2-logo-realdrop .drop-outline { opacity: 0.55; }
.v2-logo-realdrop .drop-shine { opacity: 0; transition: opacity 0.4s; }
.v2-loader.phase-fill .v2-logo-realdrop .drop-shine,
.v2-loader.phase-drop .v2-logo-realdrop .drop-shine { opacity: 0.5; }

/* drop phase: the filled droplet detaches and plummets into the hero.
   Gravity-eased (accelerating) fall on a GPU layer for a smooth, weighty drop. */
.v2-loader.is-dropping .v2-logo-realdrop {
  animation: v2RealDropFall 0.95s cubic-bezier(0.55, 0, 0.85, 0.45) forwards;
}
@keyframes v2RealDropFall {
  0%   { transform: translate3d(0, 0, 0) scaleY(1) scaleX(1); opacity: 1; }
  12%  { transform: translate3d(0, 3vh, 0) scaleY(1.12) scaleX(0.92); opacity: 1; } /* stretch as it lets go */
  55%  { transform: translate3d(0, 26vh, 0) scaleY(1.18) scaleX(0.88); opacity: 1; }
  88%  { transform: translate3d(0, 48vh, 0) scaleY(1.22) scaleX(0.85); opacity: 1; }
  100% { transform: translate3d(0, 54vh, 0) scaleY(0.45) scaleX(1.85); opacity: 0; } /* splat flat */
}

/* overlay wipes upward to reveal the hero just after the splash */
.v2-loader.is-dropping {
  animation: v2OverlayWipe 0.6s cubic-bezier(0.7, 0, 0.3, 1) 0.9s forwards;
}
@keyframes v2OverlayWipe { to { transform: translateY(-100%); } }

@media (prefers-reduced-motion: reduce) {
  .v2-loader { display: none; }
}

/* =========================================================================
   PACKAGES HERO — on-load entrance animation (above the fold, no scroll wait)
   ========================================================================= */
.v2-pkg-hero .v2-hline { display: block; }
.v2-hin {
  opacity: 0;
  transform: translateY(26px);
  animation: v2HeroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.v2-hin.v2-d1 { animation-delay: 0.1s; }
.v2-hin.v2-d2 { animation-delay: 0.22s; }
.v2-hin.v2-d3 { animation-delay: 0.34s; }
.v2-hin.v2-d4 { animation-delay: 0.5s; }
.v2-hin.v2-d5 { animation-delay: 0.62s; }
@keyframes v2HeroIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .v2-hin { opacity: 1; transform: none; animation: none; }
}

/* =========================================================================
   TYPEWRITER (trust quote)
   ========================================================================= */
.v2-typewriter .v2-tw-fallback { opacity: 0; }      /* hidden until JS clears it */
.v2-typewriter.tw-active .v2-tw-fallback { display: none; }
.v2-tw-acid { color: var(--acid); }
.v2-tw-caret {
  display: inline-block;
  width: 0.06em;
  height: 0.95em;
  margin-left: 0.04em;
  background: var(--acid);
  vertical-align: -0.08em;
  animation: v2Caret 0.7s steps(1) infinite;
}
.v2-typewriter.tw-done .v2-tw-caret { animation: none; opacity: 0; }
@keyframes v2Caret { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }
/* if JS never runs (no-JS), show the fallback */
.no-js .v2-typewriter .v2-tw-fallback,
.v2-typewriter:not(.tw-active):not(.tw-done) .v2-tw-fallback { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .v2-typewriter .v2-tw-fallback { opacity: 1 !important; }
  .v2-tw-caret { display: none; }
}

/* =========================================================================
   SCROLL-BRIGHTEN paragraph (reuses .v2-word machinery)
   ========================================================================= */
.v2-brighten { color: var(--off-white); }

/* =========================================================================
   FLUID GROWTH → drips into Packages liquid band (scroll-driven)
   Driven by CSS vars set in JS:  --grow-fill (0..1), --pkg-fill (0..1)
   ========================================================================= */

/* --- GROWTH word: hollow base + clipped liquid overlay --- */
.v2-growth-wrap {
  position: relative;
  display: inline-block;
  --grow-fill: 0;
}
.v2-about-title .line { display: block; }
.v2-growth-wrap .hollow {
  display: block;
  -webkit-text-stroke: 1.5px var(--violet);
  color: transparent;
}
/* the fill overlay sits exactly on top of the hollow word */
.v2-growth-fill {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}
/* liquid layer: a rising column behind the text, masked to the text glyphs */
.v2-growth-text {
  display: block;
  font: inherit;
  color: transparent;
  background: linear-gradient(to top, #beff03 0%, #8b2fff 55%, #481e70 100%);
  -webkit-background-clip: text;
  background-clip: text;
  /* fill rises bottom-up: at 0 the whole top is clipped away, at 1 it's full */
  clip-path: inset(calc((1 - var(--grow-fill)) * 100%) 0 0 0);
  transition: clip-path 0.15s linear;
}
/* --- Packages full-width liquid band (rises, sloshes, drains) --- */
.v2-pkg { position: relative; --pkg-fill: 0; }
.v2-pkg-liquid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.v2-pkg-liquid-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: calc(var(--pkg-fill) * 100%);
  background: linear-gradient(to top,
    rgba(190, 255, 3, 0.16) 0%,
    rgba(139, 47, 255, 0.18) 60%,
    rgba(72, 30, 112, 0.12) 100%);
  transition: height 0.2s linear;
  will-change: height;
}
/* the wavy surface sits on top of the body, sloshing side to side */
.v2-pkg-wave {
  position: absolute;
  top: -34px; left: -8%;
  width: 116%;
  height: 40px;
  fill: rgba(139, 47, 255, 0.2);
  animation: v2Slosh 5s ease-in-out infinite;
}
@keyframes v2Slosh {
  0%,100% { transform: translateX(0) translateY(0); }
  50%     { transform: translateX(-6%) translateY(3px); }
}
/* keep the packages content above the liquid */
.v2-pkg-grid { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .v2-growth-text { clip-path: none; }
  .v2-growth-liquid, .v2-growth-wave, .v2-drip-spout, .v2-pkg-liquid { display: none; }
}

/* =========================================================================
   SPLAT! button + falling goo splat on team portraits
   ========================================================================= */
.v2-team { position: relative; } /* so the SPLAT button can anchor to the header */
.v2-team-head-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* cartoon comic-book SPLAT! button — sits on the SAME ROW as the
   "( wipe us clean, then… )" caption, just to the left of it (top-right block) */
.v2-splat-btn {
  position: absolute;
  /* vertically centre the burst on the caption line at the heading baseline */
  top: calc(120px + clamp(40px, 7vw, 120px) * 0.85 - 44px);
  /* sit to the left of the caption (caption is ~190px wide at the right edge) */
  right: 246px;
  border: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  transition: transform 0.12s ease;
  z-index: 5;
}
.v2-splat-btn::before {
  /* the spiky comic burst */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  /* jagged star/burst shape */
  clip-path: polygon(
    50% 0%, 61% 18%, 83% 12%, 78% 33%, 100% 38%, 84% 53%, 97% 72%,
    74% 71%, 75% 95%, 56% 81%, 43% 100%, 36% 78%, 14% 86%, 19% 64%,
    0% 56%, 17% 42%, 4% 23%, 27% 26%, 26% 3%, 45% 17%
  );
  box-shadow: 0 6px 0 var(--purple);
  transition: transform 0.12s ease;
}
.v2-splat-btn-text {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  transform: rotate(-8deg);
  text-shadow: 1px 1px 0 rgba(255,255,255,0.4);
  pointer-events: none;
}
.v2-splat-btn:hover { transform: scale(1.06) rotate(3deg); }
.v2-splat-btn:active { transform: scale(0.9) rotate(-2deg); }
.v2-splat-btn:active::before { box-shadow: 0 2px 0 var(--purple); }
@media (max-width: 600px) { .v2-splat-btn { width: 78px; height: 78px; } .v2-splat-btn-text { font-size: 21px; } }

/* Tablet/mobile (≤900px): the SPLAT! button floats fixed to the bottom-right,
   but ONLY while the team section is on screen — it pops in when the team
   section scrolls into view and disappears once it has scrolled past. */
@media (max-width: 900px) {
  .v2-splat-btn {
    position: fixed;
    top: auto; /* reset the desktop top so bottom anchors to the viewport */
    left: auto;
    right: 18px;
    bottom: 18px;
    z-index: 180;
    width: 84px;
    height: 84px;
    /* hidden until the team section is in view */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.4);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .v2-splat-btn-text { font-size: 22px; }
  /* reveal + pop while the team section is on screen */
  .v2-team.team-in-view .v2-splat-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }
}
@keyframes v2SplatPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* falling goo blob that drops onto the portrait on splat */
.v2-splat-blob {
  position: absolute;
  top: 0;
  left: 50%;
  width: 42%;
  aspect-ratio: 3 / 4;
  margin-left: -21%;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  /* teardrop goo: pointed top, fat round bottom */
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,0.55) 0 6%, transparent 18%),
    radial-gradient(circle at 50% 60%, #beff03 0%, #8b2fff 55%, #481e70 100%);
  border: 3px solid #0a0a0a;
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
.v2-team-photo.is-splatting .v2-splat-blob {
  animation: v2SplatDrop 0.6s cubic-bezier(0.45, 0, 0.7, 0.4) forwards;
}
@keyframes v2SplatDrop {
  0%   { transform: translateY(-130%) scaleY(1.25) scaleX(0.8); opacity: 0; }
  20%  { opacity: 1; }
  60%  { transform: translateY(14%) scaleY(1.3) scaleX(0.78); opacity: 1; } /* stretched mid-fall */
  78%  { transform: translateY(24%) scaleY(0.5) scaleX(1.5); opacity: 1; }  /* impact squash */
  100% { transform: translateY(26%) scaleY(0.22) scaleX(2.1); opacity: 0; } /* splatter flat */
}
/* a quick comic flash ring on impact */
.v2-team-photo.is-splatting::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(190,255,3,0.35) 0%, transparent 45%);
  animation: v2SplatFlash 0.5s ease-out forwards;
}
@keyframes v2SplatFlash {
  0% { opacity: 0; transform: scale(0.6); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .v2-splat-blob, .v2-team-photo.is-splatting::after { display: none; }
}
