/* ============================================================
   HEY SEASONALS — "Festival en movimiento"
   Kinetic / parallax direction
   Display: Unbounded · Body: Space Grotesk · Logo: Caveat
   ============================================================ */

:root {
  /* brand energy */
  --magenta: #E8197D;
  --cyan: #00AEEF;
  --orange: #F97316;
  --red: #E03535;
  --gold: #FFC400;
  --green: #22C55E;

  /* canvas */
  --ink: #0C0C10;
  --ink-2: #141419;
  --ink-3: #1C1C24;
  --paper: #F7F4EF;
  --muted: #9A9AA6;
  --muted-d: #6B7280;

  --font-display: 'Switzer', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-script: 'Caveat', cursive;
  --font-mono: 'Space Mono', monospace;

  --maxw: 1280px;
  --r-card: 22px;
  --r-pill: 999px;

  --motion: 1;        /* parallax intensity multiplier (tweakable) */
  --decor: 1;         /* decorative opacity */
  --accent: #E8197D;  /* primary accent (tweakable) */
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 36px; }
section { position: relative; }
.pad { padding: clamp(80px, 12vh, 150px) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.magenta { color: var(--magenta); }
.eyebrow.cyan { color: var(--cyan); }
.eyebrow.orange { color: var(--orange); }
.t-magenta { color: var(--magenta); }
.t-cyan { color: var(--cyan); }
.t-orange { color: var(--orange); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
/* ------------------------------------------------------------
   Reveal-on-scroll — content is VISIBLE BY DEFAULT.
   It is only hidden (then animated in) once JS confirms the
   animation clock is alive and adds .anim-ready to <html>.
   This way captures / no-JS / frozen-clock always show content.
   ------------------------------------------------------------ */
.reveal { opacity: 1; transform: none; }
.anim-ready .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.anim-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .anim-ready .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Logo lockup
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
}
.logo .hey {
  font-family: var(--font-script);
  font-weight: 700;
  font-style: italic;
  font-size: 2em;
  color: var(--paper);
}
.logo .bang {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9em;
  color: var(--magenta);
  margin-left: 2px;
}
.logo .seasonals {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  align-self: flex-end;
  transform: translateY(-0.4em) rotate(-7deg);
  margin-left: -1px;
}
.logo.ink .hey { color: var(--ink); }

/* official logo image */
.logo-img { height: 62px; width: auto; display: block; }
.footer-brand .logo-img { height: 46px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s, background .2s, color .2s;
}
.btn-fill {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--accent);
}
.btn-fill:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -12px var(--accent); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav .logo { font-size: 18px; }
.nav.scrolled {
  background: rgba(12,12,16,0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.link {
  font-weight: 600; font-size: 15px; color: var(--paper);
  position: relative; opacity: .82; transition: opacity .2s;
}
.nav-links a.link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--magenta); transition: width .28s cubic-bezier(.16,1,.3,1);
}
.nav-links a.link:hover { opacity: 1; }
.nav-links a.link:hover::after { width: 100%; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(48px, 9vh, 110px);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(2.4) contrast(0.95) saturate(1.35);
  transition: opacity 1s ease;
}
.hero-video.loaded { opacity: 1; }

/* animated fallback that reads as a motion film */
.hero-fallback {
  position: absolute; inset: -10%;
  z-index: 0;
  background:
    radial-gradient(45% 55% at 18% 28%, rgba(232,25,125,.85), transparent 60%),
    radial-gradient(40% 50% at 82% 22%, rgba(0,174,239,.78), transparent 60%),
    radial-gradient(48% 60% at 70% 82%, rgba(249,115,22,.72), transparent 62%),
    radial-gradient(46% 56% at 26% 86%, rgba(224,53,53,.6), transparent 62%),
    var(--ink);
  filter: saturate(1.05);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: scale(1.05) translate(0,0); }
  50%  { transform: scale(1.18) translate(2%, -3%); }
  100% { transform: scale(1.1) translate(-2%, 2%); }
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .10; mix-blend-mode: overlay; pointer-events: none;
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 3;
  background:
    /* bottom darkening for the headline + CTAs, fading to canvas */
    linear-gradient(180deg, rgba(12,12,16,.28) 0%, rgba(12,12,16,.18) 28%, rgba(12,12,16,.62) 76%, var(--ink) 100%),
    /* left wash for the text column */
    linear-gradient(90deg, rgba(12,12,16,.72) 0%, rgba(12,12,16,.4) 42%, rgba(12,12,16,.14) 80%),
    /* overall tint so the whole frame reads darker (helps floating emoji + text) */
    rgba(12,12,16,.42);
}
.media-tag {
  position: absolute; left: 36px; top: 104px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px dashed rgba(255,255,255,.4);
  padding: 6px 12px; border-radius: 6px;
  backdrop-filter: blur(6px);
}
/* floating vector motifs */
.hero-floaters { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.floater { position: absolute; width: 40px; filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)); animation: bob 7s ease-in-out infinite; opacity: calc(var(--decor) * .92); }
.floater svg { width: 100%; height: auto; display: block; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-22px) rotate(calc(var(--rot,0deg) + 6deg)); } }

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: clamp(48px, 9.2vw, 150px);
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 22px 0 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.55), 0 1px 6px rgba(0,0,0,.4);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero-sub {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-top: 34px;
}
.hero-sub p { font-size: clamp(16px, 1.4vw, 20px); color: rgba(247,244,239,.92); max-width: 32em; text-shadow: 0 1px 16px rgba(0,0,0,.6); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.scroll-cue .bar { width: 1.5px; height: 42px; background: linear-gradient(var(--magenta), transparent); animation: cue 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.3); opacity:.4; } 50% { transform: scaleY(1); opacity:1; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--accent);
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid rgba(255,255,255,.16);
  border-bottom: 2px solid rgba(255,255,255,.16);
}
.marquee.cyan { background: var(--cyan); }
.marquee-track { display: inline-flex; align-items: center; gap: 28px; animation: scrollx 26s linear infinite; will-change: transform; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 34px); letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 28px;
}
.marquee-track .dot { width: 10px; height: 10px; border-radius: 50%; background: #fff; opacity: .85; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   BRANDS — immersive panels
   ============================================================ */
.brands-intro { text-align: center; }
.brands-intro h2 { font-size: clamp(40px, 6vw, 92px); margin: 18px 0 16px; }
.brands-intro p { color: var(--muted); font-size: clamp(16px,1.4vw,20px); max-width: 36em; margin: 0 auto; }

.panel {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.panel .wrap { position: relative; z-index: 2; width: 100%; }
.panel-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.panel.flip .panel-inner { grid-template-columns: 0.9fr 1.1fr; }
.panel.flip .panel-copy { order: 2; }

.panel-blob {
  position: absolute;
  width: 78vh; height: 78vh; max-width: 760px; max-height: 760px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .9;
  z-index: 0;
  will-change: transform;
}
.panel-glyph {
  position: absolute; z-index: 1;
  font-size: clamp(180px, 34vw, 560px);
  line-height: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
  will-change: transform;
  pointer-events: none;
}
.panel .num-tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: rgba(255,255,255,.5); letter-spacing: .1em;
}
.panel h3 { font-size: clamp(40px, 5.5vw, 86px); margin: 14px 0 18px; }
.panel .lede { font-size: clamp(16px, 1.4vw, 20px); color: rgba(247,244,239,.82); max-width: 30em; margin-bottom: 26px; }
.panel .meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.status {
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 8px;
}
.status .pulse { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(255,255,255,.5);} 70%{ box-shadow:0 0 0 10px rgba(255,255,255,0);} 100%{ box-shadow:0 0 0 0 rgba(255,255,255,0);} }
.status.active { color: var(--orange); background: rgba(249,115,22,.15); }
.status.growing { color: var(--red); background: rgba(224,53,53,.16); }
.status.dev { color: var(--muted); background: rgba(255,255,255,.08); }
.panel .since { font-size: 14px; color: var(--muted); }

.panel.fam { background: radial-gradient(120% 120% at 80% 10%, #2a160a, var(--ink) 60%); }
.panel.fam .panel-blob { background: radial-gradient(circle, rgba(249,115,22,.85), rgba(249,115,22,0) 70%); right: -12%; top: -6%; }
.panel.santa { background: radial-gradient(120% 120% at 18% 12%, #2a0c0c, var(--ink) 60%); }
.panel.santa .panel-blob { background: radial-gradient(circle, rgba(224,53,53,.85), rgba(224,53,53,0) 70%); left: -14%; top: 4%; }
.panel.soon { background: radial-gradient(120% 120% at 80% 80%, #07232e, var(--ink) 60%); }
.panel.soon .panel-blob { background: radial-gradient(circle, rgba(0,174,239,.8), rgba(0,174,239,0) 70%); right: -10%; bottom: -10%; }

.chips-mini { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip-mini {
  font-weight: 600; font-size: 13.5px; padding: 7px 15px;
  border-radius: var(--r-pill); border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(247,244,239,.9); background: rgba(255,255,255,.04);
}

/* ============================================================
   STORY (dark, stats + timeline)
   ============================================================ */
.story { background: var(--ink-2); }
.story .grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 80px; align-items: center; }
.story h2 { font-size: clamp(36px, 4.6vw, 64px); margin: 18px 0 24px; }
.story .body { font-size: clamp(16px,1.4vw,19px); color: rgba(247,244,239,.78); max-width: 32em; margin-bottom: 40px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-card); padding: 26px 22px;
}
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px,5vw,58px); color: var(--accent); line-height: 1; }
.stat .lbl { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--magenta), var(--cyan) 55%, rgba(255,255,255,.12));
  transform: scaleY(1); transform-origin: top;
}
.anim-ready .timeline::before {
  transform: scaleY(var(--tl, 0)); transition: transform 1.2s ease;
}
.tl-item { position: relative; padding: 0 0 30px 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot {
  position: absolute; left: -30px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 3px solid var(--ink-2);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.tl-dot.magenta { background: var(--magenta); }
.tl-dot.cyan { background: var(--cyan); }
.tl-dot.gray { background: #555; }
.tl-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.tl-item .yr { font-size: 13.5px; color: var(--muted); font-weight: 600; letter-spacing: .04em; margin-top: 2px; }
.tl-item.muted { opacity: .55; }

/* ============================================================
   APP
   ============================================================ */
.app { background: radial-gradient(120% 90% at 80% 0%, #07232e, var(--ink) 64%); overflow: hidden; }
.app .grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 64px; align-items: center; }
.app h2 { font-size: clamp(36px, 4.8vw, 68px); margin: 18px 0 22px; }
.app .body { font-size: clamp(16px,1.4vw,19px); color: rgba(247,244,239,.8); max-width: 32em; margin-bottom: 28px; }

.phone-stage { position: relative; display: flex; justify-content: center; }
.phone-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(0,174,239,.45), transparent 68%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(10px); }
.phone {
  position: relative; z-index: 2;
  width: 300px; height: 612px;
  background: #0a0a0d;
  border-radius: 46px; padding: 12px;
  box-shadow: 0 50px 90px -36px rgba(0,0,0,.75), inset 0 0 0 2px #2a2a32;
  will-change: transform;
}
.phone .notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 124px; height: 26px; background: #0a0a0d; border-radius: 0 0 16px 16px; z-index: 4; }
.screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #e9efe9; }
.map { position: absolute; inset: 0; background: linear-gradient(0deg, #e3ebe4, #eef3ee); }
.road { position: absolute; background: #fff; box-shadow: 0 0 0 1px #dde4dd; }
.road.h { height: 16px; left: -10%; right: -10%; }
.road.v { width: 16px; top: -10%; bottom: -10%; }
.river { position: absolute; width: 48px; height: 160%; background: #cde9f6; top: -30%; left: 62%; transform: rotate(18deg); }
.house-dot {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); border: 3px solid #fff; z-index: 3;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  box-shadow: 0 6px 14px rgba(249,115,22,.55);
  animation: poppin .5s cubic-bezier(.16,1.4,.4,1) backwards;
}
.you { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--cyan); border: 4px solid #fff; z-index: 3; box-shadow: 0 0 0 6px rgba(0,174,239,.22); }
.you::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:2px solid var(--cyan); animation: ring 2s ease-out infinite; }
@keyframes ring { 0%{ transform:scale(.6); opacity:.8;} 100%{ transform:scale(2.6); opacity:0;} }
@keyframes poppin { from { transform: scale(0); } to { transform: scale(1); } }
.screen-top { position: absolute; top: 0; left: 0; right: 0; height: 92px; background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,0)); z-index: 2; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 10px; }
.screen-top .t { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink); }
.screen-bar { position: absolute; left: 14px; right: 14px; bottom: 16px; background: var(--ink); color: #fff; border-radius: 18px; padding: 15px 18px; z-index: 4; display: flex; align-items: center; gap: 10px; }
.screen-bar .route { font-family: var(--font-body); font-weight: 600; font-size: 15px; }
.screen-bar .count { margin-left: auto; font-weight: 700; font-size: 13px; color: var(--orange); }
.store-pill { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px; color: var(--cyan); background: rgba(0,174,239,.1); border: 1.5px solid rgba(0,174,239,.4); padding: 11px 22px; border-radius: var(--r-pill); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { text-align: center; overflow: hidden; }
.contact .wave { font-size: clamp(48px,7vw,84px); display: inline-block; animation: wave 2.6s ease-in-out infinite; transform-origin: 50% 86%; }
.contact .wave svg.zombie-hand { width: clamp(74px, 9vw, 116px); height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 10px 22px rgba(0,0,0,.45)); }
@keyframes wave { 0%,60%,100%{ transform: rotate(0);} 15%{ transform: rotate(16deg);} 30%{ transform: rotate(-8deg);} 45%{ transform: rotate(12deg);} }
.contact h2 { font-size: clamp(44px,8vw,120px); margin: 6px 0 20px; }
.contact .lead { font-size: clamp(16px,1.5vw,21px); color: var(--muted); max-width: 30em; margin: 0 auto 38px; }
.email-pill {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(18px,2.4vw,26px);
  color: #fff; border: 2.5px solid var(--accent); padding: 16px 38px; border-radius: var(--r-pill);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.email-pill:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 20px 44px -16px var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); padding: 56px 0; border-top: 1px solid rgba(255,255,255,.07); }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.footer .logo { font-size: 20px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--magenta); }
.footer .copy { font-size: 13.5px; color: var(--muted-d); }

/* ============================================================
   ORGANIC COLOR BLOBS (graphic world)
   ============================================================ */
.blob {
  position: absolute; z-index: 0;
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  animation: morphR 19s ease-in-out infinite alternate;
  will-change: border-radius;
}
@keyframes morphR {
  0%   { border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%; }
  50%  { border-radius: 62% 38% 42% 58% / 58% 62% 38% 42%; }
  100% { border-radius: 38% 62% 58% 42% / 42% 48% 52% 58%; }
}
.blob.magenta { background: var(--magenta); }
.blob.cyan { background: var(--cyan); }
.blob.orange { background: var(--orange); }
.blob.gold { background: var(--gold); }
.blob.soft { filter: blur(30px); opacity: .58; }
.blob.soft.vivid { filter: blur(14px); opacity: .8; }
.blob.b2 { animation-duration: 24s; }
.blob.b3 { animation-duration: 29s; }
/* make the brand-panel glows organic instead of perfect circles */
.panel-blob { border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%; animation: morphR 22s ease-in-out infinite alternate; }

/* brand-panel artwork (replaces emoji glyph) */
.panel-art { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.panel-art img { width: 100%; max-width: 560px; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }

/* brand logo replacing a panel title */
.panel h3.brand-logo { margin: 6px 0 18px; }
.panel h3.brand-logo img { height: clamp(44px, 6vw, 76px); width: auto; max-width: 100%; }

/* per-brand CTA button (links to each brand's site) */
.brand-cta {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  padding: 11px 20px; border-radius: var(--r-pill); margin-top: 26px; color: #fff;
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
}
.brand-cta .arrow { transition: transform .2s; font-size: 1.05em; }
.brand-cta:hover { transform: translateY(-3px); }
.brand-cta:hover .arrow { transform: translate(3px,-3px); }
.brand-cta.fam { background: var(--orange); box-shadow: 0 12px 30px -12px var(--orange); }
.brand-cta.fam:hover { box-shadow: 0 18px 38px -12px var(--orange); }
.brand-cta.santa { background: var(--red); box-shadow: 0 12px 30px -12px var(--red); }
.brand-cta.santa:hover { box-shadow: 0 18px 38px -12px var(--red); }

/* colorful organic blobs that float in the hero */
.floater.blob-f {
  width: 88px; height: 88px;
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  animation: bob 7s ease-in-out infinite, morphR 19s ease-in-out infinite alternate;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.4));
}
.floater.blob-f.magenta { background: var(--magenta); }
.floater.blob-f.cyan { background: var(--cyan); }
.floater.blob-f.orange { background: var(--orange); }
.floater.blob-f.gold { background: var(--gold); }

/* ============================================================
   MANIFESTO (BASIC-style editorial statement)
   ============================================================ */
.tech {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
}
.reg { font-family: var(--font-mono); font-size: 0.42em; vertical-align: super; opacity: .7; }
.manifesto { padding: clamp(100px,16vh,200px) 0; overflow: hidden; }
.manifesto .row-t { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.manifesto .row-t.top { margin-bottom: 40px; }
.manifesto h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px,7.4vw,118px); line-height: .98; letter-spacing: -.03em;
  max-width: 16ch; text-wrap: balance; color: var(--paper);
}
.manifesto h2 em { font-style: italic; color: var(--magenta); }
.manifesto .row-t.bottom { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.manifesto .blob { z-index: 0; }

/* footer technical row */
.footer-tech { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; padding-top: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .panel-inner, .panel.flip .panel-inner, .story .grid, .app .grid { grid-template-columns: 1fr; gap: 44px; }
  .panel.flip .panel-copy { order: 0; }
  .panel-glyph { opacity: .35; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 84px; left: 0; right: 0;
    background: rgba(12,12,16,.97); backdrop-filter: blur(16px);
    padding: 24px 36px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
  .nav-toggle span { width: 26px; height: 2.5px; background: var(--paper); border-radius: 2px; }
  .stats { grid-template-columns: 1fr; }
  .panel { min-height: auto; padding: 90px 0; }
  .hero-sub { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 22px; }
  .media-tag { left: 22px; }
  .footer .wrap { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile optimization pass (phones) ---- */
@media (max-width: 620px) {
  /* nav logo a touch smaller so it clears the hamburger */
  .logo-img { height: 50px; }
  .nav .wrap { height: 72px; }
  .nav-links.open { top: 72px; }

  /* hero: tighter, type fits, blobs shrunk so they don't crowd */
  .hero { padding: 40px 0 60px; min-height: 92svh; }
  .hero h1 { font-size: 40px; line-height: 0.98; }
  .hero-sub p { font-size: 15px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-floaters .floater.blob-f { width: 58px !important; height: 58px !important; }
  .hero-floaters .floater.blob-f:first-child { width: 76px !important; height: 76px !important; }
  .hero-floaters .floater.blob-f:nth-child(5) { display: none; }

  /* section ambient blobs: calmer so text stays legible */
  .blob.soft { opacity: .4; filter: blur(36px); }

  /* manifesto fits on one screen */
  .manifesto { padding: 76px 0; }
  .manifesto h2 { font-size: 36px; line-height: 1.02; max-width: none; }
  .manifesto .row-t .tech, .footer-tech .tech { font-size: 10.5px; }
  .manifesto .row-t.bottom { margin-top: 32px; }

  /* marquee + panels */
  .marquee-track span { font-size: 20px; }
  .panel-glyph { opacity: .22; }
  .panel { padding: 72px 0; }

  /* phone mockup scaled to fit */
  .phone { width: 264px; height: 540px; }

  /* contact zombie hand + heading */
  .contact .wave svg.zombie-hand { width: 84px; }

  /* footer tech wraps cleanly */
  .footer-tech { flex-direction: column; gap: 6px; }
}
