/* =========================================================
   de rouge — business site
   Dark canvas, deep red accents, Swiss grotesk
   ========================================================= */

:root {
  /* Palette — matches iOS Liquid Glass tokens */
  --bg:           #000000;
  --bg-elev:      #0c0c0c;
  --bg-card:      #131313;
  --bg-card-2:    #1a1a18;
  --line:         rgba(255,255,255,0.10);
  --line-strong:  rgba(255,255,255,0.18);
  --fg:           #ffffff;
  --fg-mute:      rgba(255,255,255,0.6);
  --fg-dim:       rgba(255,255,255,0.3);

  --red:          #CC0000;      /* primary brand — LGTokens.accent */
  --red-deep:     #8b0a10;
  --red-soft:     #ff3a40;
  --red-glow:     rgba(204, 0, 0, 0.35);

  --pink:         #FF55aa;      /* LGTokens.accentSecondary */
  --blue:         #2F7BFF;      /* LGTokens.accentTertiary */

  /* Glass surfaces */
  --glass-bg:     rgba(0, 0, 0, 0.4);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur:   blur(24px) saturate(1.6);

  /* Vibrant gradient (signature) */
  --vibrant:        linear-gradient(135deg, rgba(47,123,255,0.30), rgba(255,85,170,0.30));
  --vibrant-strong: linear-gradient(135deg, rgba(47,123,255,0.60), rgba(255,85,170,0.60));

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw:         1440px;
  --gutter:       clamp(20px, 4vw, 64px);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    22px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap:    cubic-bezier(0.7, 0, 0.3, 1);
  --anim-mul:     1;   /* tweakable */
}

/* Typography pairings (Tweak) ----------------------------- */
html[data-type="archivo"] {
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, sans-serif;
}
html[data-type="space"] {
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
}
html[data-type="bricolage"] {
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Archivo', system-ui, sans-serif;
}
html[data-type="mono"] {
  --font-display: 'JetBrains Mono', ui-monospace, monospace;
  --font-body:    'Archivo', system-ui, sans-serif;
}

/* Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

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

/* Type scale --------------------------------------------- */
.t-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.t-eyebrow .dot { color: var(--red); }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; line-height: 0.96; }
.h-display {
  font-size: clamp(48px, 8.5vw, 152px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.investor-cta__title {
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.h-xl { font-size: clamp(40px, 5.5vw, 88px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.95; }
.h-lg { font-size: clamp(32px, 3.5vw, 56px); font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.h-md { font-size: clamp(22px, 2vw, 32px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }

@media (max-width: 600px) {
  .investor-cta__title { font-size: clamp(36px, 10vw, 48px); }
}

.lede { font-size: clamp(17px, 1.4vw, 22px); line-height: 1.45; color: var(--fg); max-width: 60ch; }
.muted { color: var(--fg-mute); }

/* Layout helpers ----------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(64px, 9vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(40px, 6vw, 84px) 0; }
.divider { height: 1px; background: var(--line); width: 100%; }

/* Hairline grid background motif */
.bg-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* NAV ---------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  gap: 20px;
}
.nav__left { display: flex; align-items: center; gap: 28px; min-width: 0; }
.nav__center { display: flex; justify-content: center; }
.nav__right { display: flex; align-items: center; gap: 12px; justify-content: flex-end; min-width: 0; }
.btn.nav__tickets {
  height: 38px;
  padding: 0 14px;
  font-size: 12px;
  flex-shrink: 0;
}
.nav__tickets span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav__logo-svg { height: 22px; width: auto; display: block; }
.nav__logo img { display: block; }
.nav__logo .tld { color: var(--fg-mute); font-weight: 400; }

.nav__links {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--fg-mute);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--fg); background: rgba(255,255,255,0.04); }
.nav__links a.is-current { color: var(--fg); background: rgba(255,255,255,0.04); }

.lang-switch {
  display: flex; align-items: center;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-switch button {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--fg-mute);
  transition: all 0.2s var(--ease);
  text-transform: uppercase;
}
.lang-switch button.is-active {
  background: var(--fg);
  color: var(--bg);
}

@media (max-width: 880px) {
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 10px; }
  .nav__links--left { display: none; }
  .nav__left { gap: 12px; }
  .nav__right { gap: 8px; }
}

@media (max-width: 560px) {
  .nav .container { padding-left: 12px; padding-right: 12px; }
  .nav__inner { height: 56px; gap: 6px; }
  .nav__logo-svg { height: 19px; }
}

/* ---- Hamburger burger button (hidden on desktop) ---- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav__burger:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }
.nav__burger-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  transform-origin: center;
}
.nav__burger.is-open .nav__burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open .nav__burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open .nav__burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ---- Slide-in drawer ---- */
.nav__drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: min(320px, 88vw);
  background: #0d0d0d;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  transition: left 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav__drawer.is-open {
  left: calc(100% - min(320px, 88vw));
}


.nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
  flex-shrink: 0;
}
.nav__drawer-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: block;
}
.nav__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  color: var(--fg);
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav__drawer-close:hover { background: rgba(255,255,255,0.10); }
.nav__drawer-close svg { width: 16px; height: 16px; }

.nav__drawer-nav { flex: 1; padding: 24px 24px 0; display: flex; flex-direction: column; gap: 8px; }

.nav__drawer-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__drawer-section--other {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__drawer-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-dim);
  padding: 0 14px;
  margin-bottom: 4px;
  display: block;
}
.nav__drawer-label em {
  font-style: italic;
  color: var(--fg-mute);
}

.nav__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-mute);
  transition: color 0.18s, background 0.18s;
}
.nav__drawer-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav__drawer-link.is-current { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav__drawer-link--for.is-current { color: var(--red); background: rgba(204,0,0,0.08); }

.nav__drawer-arr {
  font-size: 13px;
  color: var(--fg-dim);
  transition: transform 0.18s;
}
.nav__drawer-link:hover .nav__drawer-arr { transform: translateX(3px); color: var(--fg-mute); }

.nav__drawer-bottom {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 16px;
}
.lang-switch--drawer { width: 100%; justify-content: stretch; }
.lang-switch--drawer button { flex: 1; text-align: center; padding: 7px 0; }
.nav__drawer-cta { width: 100%; justify-content: center; height: 48px; }

/* ---- Show burger on mobile, hide nav items from bar ---- */
@media (max-width: 880px) {
  .nav__burger { display: flex; }
  .nav__center { display: none; }
  .nav__right .lang-switch:not(.lang-switch--drawer) { display: none; }
  .nav__right .nav__tickets { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
}

/* Buttons ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-soft);
  box-shadow: 0 8px 32px var(--red-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.3);
}
.btn .arr { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ===== HERO — app-first, 5 variants ============================
   variants: stacked | centered | wall | feed | arena
   Switch via data-variant="…" on #hero (Tweaks panel).
   ================================================================ */

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 86vh, 920px);
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 120px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 40px;
  align-items: center;
}

/* Background layers (variant-controlled) */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-mesh {
  position: absolute; inset: -10%;
  background:
    radial-gradient(50% 50% at 20% 25%, rgba(204,0,0,0.35), transparent 70%),
    radial-gradient(45% 45% at 80% 30%, rgba(47,123,255,0.18), transparent 70%),
    radial-gradient(55% 50% at 70% 90%, rgba(255,85,170,0.18), transparent 70%);
  filter: blur(20px);
  opacity: 0.9;
  animation: mesh-drift 24s ease-in-out infinite alternate;
}
@keyframes mesh-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.08); }
}
.hero__bg-image { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); }
.hero__bg-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.92) 100%);
}

.hero__bg-wall {
  position: absolute; inset: -8%;
  display: none;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  transform: rotate(-6deg) scale(1.1);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.hero__bg-wall-row {
  display: flex; gap: 24px;
  width: max-content;
  animation: wall-scroll 60s linear infinite;
}
.hero__bg-wall-row--down { animation-direction: reverse; animation-duration: 75s; }
.hero__bg-wall-row img {
  width: 180px;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  filter: brightness(0.7) saturate(1.1);
  flex-shrink: 0;
}
@keyframes wall-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* COPY */
.hero__copy {
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  z-index: 3;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9.5vw, 168px);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-display);
  /* Slot in by default — show as text */
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--fg);
  max-width: 56ch;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Audience chips — answers "for whom" instantly */
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-items: center;
  margin-top: 4px;
}
.hero__chips-label {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--fg-mute);
  font-size: 14px;
  margin-right: 6px;
}
.hero__chip {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--fg);
  font-size: 13px;
  transition: all 0.2s var(--ease);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}
.hero__chip:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-1px); }

/* Meta strip below */
.hero__meta {
  position: relative; z-index: 3;
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero__meta-item { display: inline-flex; gap: 8px; align-items: center; }
.hero__meta-item .live {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s infinite;
}

/* ==== PHONES ==== */
.hero__phones {
  position: relative;
  height: 580px;
  z-index: 2;
}
.hero__phone {
  position: absolute;
  border-radius: 44px;
  overflow: hidden;
  background: #000;
  border: 6px solid #161616;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05), 0 0 80px rgba(204,0,0,0.18);
}
.hero__phone img { width: 100%; display: block; }
.hero__phone--front {
  width: 70%;
  left: 50%; top: 0;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
  animation: float-front 7s ease-in-out infinite;
}
.hero__phone--back {
  width: 55%;
  left: 4%; top: 14%;
  transform: rotate(-9deg);
  z-index: 1;
  opacity: 0.92;
  animation: float-back 8s ease-in-out infinite;
}
.hero__phone--side {
  width: 55%;
  right: 0; top: 8%;
  transform: rotate(8deg);
  z-index: 2;
  animation: float-side 9s ease-in-out infinite reverse;
}
@keyframes float-front {
  0%,100% { transform: translateX(-50%) rotate(-2deg) translateY(0); }
  50%     { transform: translateX(-50%) rotate(-2deg) translateY(-12px); }
}
@keyframes float-back {
  0%,100% { transform: rotate(-9deg) translateY(0); }
  50%     { transform: rotate(-9deg) translateY(-8px); }
}
@keyframes float-side {
  0%,100% { transform: rotate(8deg) translateY(0); }
  50%     { transform: rotate(8deg) translateY(-10px); }
}

.hero__corner-tag {
  position: absolute; top: 16px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex; gap: 6px; align-items: center;
  z-index: 4;
}
.hero__corner-tag .live {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 999px; background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s infinite;
}

/* ==== LIVE FEED (variant: feed) ==== */
.hero__feed {
  position: relative; z-index: 2;
  display: none;
  background: rgba(10,10,10,0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 18px;
  max-width: 460px;
}
.hero__feed-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 10px;
  display: inline-flex; gap: 8px; align-items: center;
}
.hero__feed-label .live {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 999px; background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s infinite;
}
.hero__feed-list { display: flex; flex-direction: column; }
.hero__feed-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), padding 0.2s var(--ease);
}
.hero__feed-item:first-child { border-top: 0; }
.hero__feed-item:hover { background: rgba(255,255,255,0.03); padding-left: 8px; padding-right: 8px; border-radius: 8px; }
.hero__feed-time { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.04em; }
.hero__feed-text { font-size: 13px; color: var(--fg); line-height: 1.3; }
.hero__feed-text strong { font-weight: 600; }
.hero__feed-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); white-space: nowrap;
}
.hero__feed-tag.is-out { color: var(--fg-mute); }

/* =================================================================
   VARIANT: stacked (default)  → headline left + 3 angled phones right
   ================================================================= */
.hero[data-variant="stacked"] .hero__container {
  grid-template-columns: 1.2fr 1fr;
}
.hero[data-variant="stacked"] .hero__feed { display: none; }

/* =================================================================
   VARIANT: centered  → headline center, single phone below
   ================================================================= */
.hero[data-variant="centered"] .hero__container {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero[data-variant="centered"] .hero__copy { align-items: center; max-width: 900px; }
.hero[data-variant="centered"] .hero__lede { text-align: center; }
.hero[data-variant="centered"] .hero__title { font-size: clamp(64px, 12vw, 220px); }
.hero[data-variant="centered"] .hero__chips { justify-content: center; }
.hero[data-variant="centered"] .hero__meta { justify-content: center; }
.hero[data-variant="centered"] .hero__phones {
  height: 540px;
  width: 100%;
  max-width: 460px;
}
.hero[data-variant="centered"] .hero__phone--back,
.hero[data-variant="centered"] .hero__phone--side { display: none; }
.hero[data-variant="centered"] .hero__phone--front {
  width: 75%;
  transform: translateX(-50%) rotate(0);
  animation: float-front-c 7s ease-in-out infinite;
}
@keyframes float-front-c {
  0%,100% { transform: translateX(-50%) rotate(0) translateY(0); }
  50%     { transform: translateX(-50%) rotate(0) translateY(-14px); }
}
.hero[data-variant="centered"] .hero__feed { display: none; }

/* =================================================================
   VARIANT: wall  → BG = scrolling phone wall · copy left · pass card right
   ================================================================= */
.hero[data-variant="wall"] .hero__bg-wall { display: flex; opacity: 0.22; }
.hero[data-variant="wall"] .hero__bg-mesh { opacity: 0.65; }
.hero[data-variant="wall"] .hero__container {
  grid-template-columns: 1.15fr 1fr;
  text-align: left;
  justify-items: start;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.hero[data-variant="wall"] .hero__copy { align-items: flex-start; max-width: 760px; }
.hero[data-variant="wall"] .hero__lede { text-align: left; max-width: 52ch; }
.hero[data-variant="wall"] .hero__title { font-size: clamp(64px, 9vw, 152px); }
.hero[data-variant="wall"] .hero__chips { justify-content: flex-start; }
.hero[data-variant="wall"] .hero__meta { justify-content: flex-start; }
.hero[data-variant="wall"] .hero__phones { display: none; }
.hero[data-variant="wall"] .hero__feed   { display: none; }
.hero[data-variant="wall"] .hero__visual { display: block; }

/* =================================================================
   VARIANT: feed  → headline + phone left, live ticker right
   ================================================================= */
.hero[data-variant="feed"] .hero__container {
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}
.hero[data-variant="feed"] .hero__phones {
  position: absolute;
  right: 38%; bottom: -10%;
  width: 360px; height: 520px;
  opacity: 0.65;
  pointer-events: none;
}
.hero[data-variant="feed"] .hero__feed { display: block; justify-self: end; width: 100%; max-width: 480px; }

/* =================================================================
   VARIANT: arena  → full bleed red crowd photo, phone front-right
   ================================================================= */
.hero[data-variant="arena"] .hero__bg-image { opacity: 1; }
.hero[data-variant="arena"] .hero__bg-mesh { opacity: 0; }
.hero[data-variant="arena"] .hero__container {
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  min-height: 80vh;
}
.hero[data-variant="arena"] {
  min-height: 92vh;
  padding-top: 0;
  padding-bottom: 0;
}
.hero[data-variant="arena"] .hero__copy { padding: clamp(120px, 14vw, 200px) 0 60px; }
.hero[data-variant="arena"] .hero__title { font-size: clamp(72px, 13vw, 260px); }
.hero[data-variant="arena"] .hero__lede { max-width: 50ch; }
.hero[data-variant="arena"] .hero__phones {
  height: 60vh;
  max-height: 720px;
  padding-bottom: 32px;
}
.hero[data-variant="arena"] .hero__phone--back,
.hero[data-variant="arena"] .hero__phone--side { opacity: 0.5; }
.hero[data-variant="arena"] .hero__feed { display: none; }

/* =================================================================
   Hero visual: photo + member card (wall variant)
   ================================================================= */
.hero__visual {
  display: none;
  position: relative;
  width: 100%;
  height: clamp(520px, 56vw, 720px);
  align-self: center;
  justify-self: end;
  perspective: 1200px;
}
.hero__photo {
  position: absolute;
  inset: 0 0 0 15%;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 6px 20px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: rotate(2deg) translate3d(var(--photo-px, 0), var(--photo-py, 0), 0);
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.hero__visual:hover .hero__photo { transform: rotate(1.4deg) translate3d(var(--photo-px, 0), calc(var(--photo-py, 0px) - 4px), 0); }

/* Parallax wrapper — JS sets --mc-px / --mc-py from pointer position */
.member-card-wrap {
  position: absolute;
  left: -5%;
  bottom: 1%;
  z-index: 2;
  transform: translate3d(var(--mc-px, 0), var(--mc-py, 0), 0);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
}

/* The member card — recreated from the de rouge pass */
.member-card {
  --mc-w: clamp(260px, 22vw, 340px);
  width: var(--mc-w);
  aspect-ratio: 1.6 / 1;
  border-radius: 18px;
  padding: clamp(16px, 1.3vw, 22px);
  background:
    radial-gradient(140% 100% at 50% 110%, #b81c22 0%, #7e1014 55%, #3d0709 100%);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(10px, 0.8vw, 16px);
  row-gap: clamp(8px, 0.6vw, 14px);
  box-shadow:
    0 36px 70px rgba(50,0,0,0.55),
    0 12px 28px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.35) inset;
  transform-origin: 30% 70%;
  animation: mc-float 7s ease-in-out infinite;
}
@keyframes mc-float {
  0%   { transform: rotate(-6deg)   translateY(0); }
  50%  { transform: rotate(-5.1deg) translateY(-10px); }
  100% { transform: rotate(-6deg)   translateY(0); }
}

.member-card__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}
.member-card > *:not(.member-card__noise) { position: relative; z-index: 1; }

.member-card__head {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.member-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.member-card__logo {
  width: clamp(20px, 1.6vw, 26px);
  height: clamp(20px, 1.6vw, 26px);
  flex: 0 0 auto;
  display: block;
}
.member-card__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.34em;
  color: #fff;
}

.member-card__qr {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  align-self: end;
  justify-self: end;
  width: clamp(80px, 7.5vw, 110px);
  height: clamp(80px, 7.5vw, 110px);
  background: #fff;
  border-radius: 10px;
  padding: 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.30);
}
.member-card__qr img { width: 100%; height: 100%; display: block; }

.member-card__id {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  align-self: end;
}
.member-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.member-card__handle {
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255,255,255,0.75);
}

/* Mobile collapse */
@media (max-width: 980px) {
  .hero { min-height: auto; padding-bottom: 56px; }
  .hero__container { grid-template-columns: 1fr !important; }
  .hero__phones { height: 460px; margin-top: 24px; }
  .hero__feed { max-width: 100%; }
  .hero[data-variant="arena"] .hero__copy { padding-top: 80px; }
  .hero__visual { height: clamp(380px, 90vw, 560px); margin-top: 24px; }
  .hero[data-variant="wall"] .hero__container { gap: 32px; }
}
@media (max-width: 600px) {
  .hero__phones { height: 380px; }
  .hero__phone--front { width: 78%; }
  .hero__phone--back, .hero__phone--side { width: 60%; }
  .hero__chips { gap: 6px; }
  .hero__chip { padding: 6px 11px; font-size: 12px; }
  .member-card { --mc-w: 250px; }
  .member-card-wrap { left: 6%; bottom: -6%; }
  .hero__photo { inset: 0; }
  .hero__visual { overflow: visible; }
}

/* Marquee ------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: scroll calc(60s / var(--anim-mul)) linear infinite;
}
.marquee__item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.marquee__item .star { color: var(--red); }

/* Branded marquee — red bg, large white text, white dots */
.marquee--branded {
  background: #cc0000;
  border-top: none;
  border-bottom: none;
  padding: 28px 0;
}
.marquee--branded .marquee__track {
  gap: 32px;
  width: max-content;
  animation: scroll 25s linear infinite;
}
.marquee--branded .marquee__item {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: none;
  font-family: var(--font-display);
}
.marquee--branded .marquee__dot {
  color: #ffffff;
  font-size: 8px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 600px) {
  .marquee--branded {
    padding: 20px 0;
  }
  .marquee--branded .marquee__item {
    font-size: 16px;
  }
  .marquee--branded .marquee__track {
    gap: 20px;
    animation-duration: 20s;
  }
}

/* Larger feature marquee with dots between items */
.marquee--features {
  padding: 32px 0;
}
.marquee--features .marquee__track {
  gap: 40px;
  justify-content: center;
}
.marquee--features .marquee__item {
  font-size: 18px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--fg);
}
.marquee--features .marquee__dot {
  color: var(--red);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Audience selector ------------------------------------- */
.aud { padding: clamp(64px, 8vw, 120px) 0; border-top: 1px solid var(--line); }
.aud__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.aud__head h2 { max-width: 800px; }

/* Variant: tabs (default) */
.aud__tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 28px; overflow-x: auto; }
.aud__tab {
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.aud__tab::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.aud__tab:hover { color: var(--fg); }
.aud__tab.is-active { color: var(--fg); }
.aud__tab.is-active::after { transform: scaleX(1); }

.aud__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: 28px 0;
}
.aud__panel.is-active { display: grid; animation: fade-up 0.5s var(--ease) both; }
.aud__panel-copy h3 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 18px; }
.aud__panel-copy p { color: var(--fg-mute); margin-bottom: 24px; max-width: 50ch; font-size: 17px; line-height: 1.5; }
.aud__bullets { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.aud__bullets li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; }
.aud__bullets li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; margin-top: 7px;
  background: var(--red); border-radius: 1px;
  transform: rotate(45deg);
}
.aud__panel-visual {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.aud__panel-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Variant: cards */
html[data-aud="cards"] .aud__tabs { display: none; }
html[data-aud="cards"] .aud__panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
html[data-aud="cards"] .aud__panel {
  display: block !important;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  animation: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
html[data-aud="cards"] .aud__panel:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
html[data-aud="cards"] .aud__panel-visual { aspect-ratio: 16/10; margin-top: 24px; }
html[data-aud="cards"] .aud__panel-copy h3 { font-size: clamp(28px, 2.6vw, 36px); }

/* Variant: pills */
html[data-aud="pills"] .aud__tabs {
  border-bottom: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
html[data-aud="pills"] .aud__tab {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 18px;
}
html[data-aud="pills"] .aud__tab::after { display: none; }
html[data-aud="pills"] .aud__tab.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

@media (max-width: 880px) {
  .aud__panel { grid-template-columns: 1fr; }
  html[data-aud="cards"] .aud__panels { grid-template-columns: 1fr; }
}

/* Feature grid ------------------------------------------ */
.features { padding: clamp(64px, 9vw, 140px) 0; border-top: 1px solid var(--line); }
.features__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 56px; gap: 32px; flex-wrap: wrap; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.features__grid--three { grid-template-columns: repeat(3, 1fr); }
.features__grid--five { grid-template-columns: repeat(5, 1fr); }
.feature {
  background: var(--bg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 340px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  overflow: hidden;
}
.feature:hover { background: var(--bg-elev); }
.feature__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.feature__title { font-size: clamp(24px, 2vw, 34px); }
.feature__body { color: var(--fg-mute); font-size: 15px; line-height: 1.55; max-width: 38ch; }
.feature__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--red);
  margin-bottom: 8px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.feature:hover .feature__icon { border-color: var(--red); background: rgba(209, 32, 39, 0.08); }
.feature__more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s var(--ease);
}
.feature:hover .feature__more { color: var(--red); }

@media (max-width: 880px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; padding: 28px; }
}
@media (max-width: 1200px) {
  .features__grid--five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .features__grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features__grid--three,
  .features__grid--five { grid-template-columns: 1fr; }
}

/* Stats -------------------------------------------------- */
.stats { padding: clamp(64px, 9vw, 140px) 0; border-top: 1px solid var(--line); position: relative; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  justify-content: space-between;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--fg);
}
.stat__value .unit { color: var(--red); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Featured events ---------------------------------------- */
.featured { padding: clamp(64px, 9vw, 140px) 0; border-top: 1px solid var(--line); }
.featured__head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; gap: 32px; flex-wrap: wrap; }

.event-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 1fr 1fr 80px;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), padding 0.3s var(--ease);
  position: relative;
}
.event-row:last-child { border-bottom: 1px solid var(--line); }
.event-row:hover { background: rgba(255,255,255,0.02); padding-left: 16px; padding-right: 16px; }
.event-row__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
}
.event-row__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.event-row__venue { font-size: 14px; color: var(--fg-mute); }
.event-row__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.event-row__arr {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--fg-mute);
  transition: all 0.25s var(--ease);
  justify-self: end;
}
.event-row:hover .event-row__arr {
  background: var(--red); border-color: var(--red); color: #fff;
}

@media (max-width: 880px) {
  .event-row { grid-template-columns: 60px 1fr 36px; gap: 16px; }
  .event-row__venue, .event-row__tag { display: none; }
}

/* App preview block ------------------------------------ */
.product { padding: clamp(64px, 9vw, 140px) 0; border-top: 1px solid var(--line); position: relative; }
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.product__copy { display: flex; flex-direction: column; gap: 24px; max-width: 50ch; }
.product__media {
  position: relative;
  min-height: clamp(520px, 56vw, 720px);
  display: grid;
  place-items: center;
}
.product__phone {
  position: relative;
  z-index: 2;
  width: min(310px, 58vw);
  aspect-ratio: 720 / 1560;
  overflow: hidden;
  border-radius: 40px;
  border: 7px solid #151515;
  background: #050505;
  box-shadow: 0 32px 90px rgba(0,0,0,0.72), 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-5deg);
}
.product__phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 3;
  width: 34%;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #050505;
  transform: translateX(-50%);
}
.product__phone img,
.product__phone video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product__phone video { background: #050505; }
.product__phone video.is-reversing { pointer-events: none; }
.product__photo {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: min(56%, 420px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  opacity: 0.92;
}
.product__photo img {
  width: 100%;
  display: block;
}
.product__phones {
  position: relative;
  height: 640px;
}
.phone {
  position: absolute;
  width: 280px;
  border-radius: 38px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.06);
  border: 6px solid #1a1a1a;
}
.phone img { width: 100%; height: auto; display: block; }
.phone--1 { left: 20%; top: 0; transform: rotate(-6deg); z-index: 2; }
.phone--2 { left: 65%; top: 40px; transform: translateX(-50%) rotate(2deg); z-index: 3; }
.phone--3 { right: 0; top: 24px; transform: rotate(7deg); z-index: 1; }

@media (max-width: 980px) {
  .product__grid { grid-template-columns: 1fr !important; }
  .product__media { min-height: 560px; }
  .product__photo { width: min(62%, 340px); right: 4%; bottom: 2%; }
  .product__phones { height: 480px; order: 2; }
  .phone { width: 200px; }
}
@media (max-width: 600px) {
  .product__phones { height: 360px; order: 2; }
  .phone { width: 160px; }
  .phone--2 { left: 55%; }
}

/* Newsletter / CTA -------------------------------------- */
.cta {
  padding: clamp(80px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(47,123,255,0.35), transparent 50%),
    radial-gradient(circle at 82% 70%, rgba(255,85,170,0.30), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(204,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 920px; }
.cta__form {
  display: flex; gap: 8px;
  margin-top: 36px;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px;
}
.cta__form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0 16px;
  height: 44px;
  outline: none;
}
.cta__form input::placeholder { color: var(--fg-mute); }
.cta__form .btn { height: 44px; padding: 0 18px; }

.cta__small {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Footer ------------------------------------------------ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: 64px;
}
.foot__brand { display: flex; flex-direction: column; gap: 18px; max-width: 38ch; }
.foot__brand .mark { display: flex; gap: 10px; align-items: center; font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.foot__brand .mark img { width: 24px; height: 24px; }
.foot__brand .addr { color: var(--fg-mute); font-size: 13px; line-height: 1.6; }

.foot__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 18px;
  font-weight: 400;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a { color: var(--fg); font-size: 14px; transition: color 0.2s var(--ease); }
.foot__col a:hover { color: var(--red); }

.foot__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  flex-wrap: wrap; gap: 20px;
}
.foot__bot-meta {
  display: grid; flex: 1 1 auto; justify-content: center;
  gap: 8px;
  text-align: center;
}
.foot__legal {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 0.02em;
}
.foot__legal a { color: var(--fg); }
.foot__legal a:hover { color: var(--red); }
.foot__bot-parent,
.foot__bot-sms {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--fg-mute);
  transition: color 0.2s ease, opacity 0.2s ease;
  flex: 0 0 auto;
}
.foot__bot-parent:hover,
.foot__bot-sms:hover { color: var(--fg); }
.foot__bot-pre {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.7;
}
.foot__bot-parent img {
  height: 26px; width: auto; display: block;
  opacity: 0.9;
}
.foot__bot-sms img {
  height: 26px; width: auto; display: block;
  opacity: 0.9;
}
.foot__bot-parent:hover img,
.foot__bot-sms:hover img { opacity: 1; }

/* Footer brand mark — "de rouge / business" */
.foot__brand-mark { text-decoration: none; color: var(--fg); }
.foot__brand-slash {
  font-family: var(--font-mono);
  color: var(--fg-mute);
  opacity: 0.6;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
}
.foot__brand-suffix {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--fg-mute);
  font-weight: 500;
}
.foot__bot .wordmark {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin: 32px 0 16px;
  background: linear-gradient(180deg, rgba(244,241,234,0.18), rgba(244,241,234,0.02));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
  user-select: none;
}

.foot__parent {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--fg-mute);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.foot__parent:hover { border-color: var(--fg-mute); color: var(--fg); background: rgba(255,255,255,0.02); }
.foot__parent-pre {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.foot__parent img {
  height: 18px; width: auto; display: block;
  opacity: 0.9;
}
.foot__parent:hover img { opacity: 1; }

@media (max-width: 880px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__bot {
    justify-content: center;
    text-align: center;
  }
  .foot__bot-parent,
  .foot__bot-sms {
    justify-content: center;
  }
  .foot__bot-meta {
    order: -1;
    width: 100%;
    flex: none;
  }
}

/* Page hero (sub pages) ---------------------------------- */
.page-hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(36px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.page-hero h1 { font-size: clamp(32px, 5.5vw, 72px); letter-spacing: -0.04em; line-height: 0.96; font-weight: 700; }
.page-hero .lede { margin-top: 0; font-size: 17px; line-height: 1.5; color: var(--fg-mute); max-width: 46ch; }

@media (max-width: 880px) {
  .page-hero__inner { grid-template-columns: 1fr; }
}

/* Reveal-on-scroll --------------------------------------- */
.reveal,
.reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
}
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-duration: calc(0.8s / var(--anim-mul));
}
html.reveal-ready .reveal.is-in { opacity: 1; transform: translateY(0); }
html.reveal-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-duration: calc(0.6s / var(--anim-mul));
}
html.reveal-ready .partners__row.reveal-stagger > * {
  transform: translateY(0);
}
html.reveal-ready .reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
html.reveal-ready .reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
html.reveal-ready .reveal-stagger.is-in > *:nth-child(2) { transition-delay: 60ms; }
html.reveal-ready .reveal-stagger.is-in > *:nth-child(3) { transition-delay: 120ms; }
html.reveal-ready .reveal-stagger.is-in > *:nth-child(4) { transition-delay: 180ms; }
html.reveal-ready .reveal-stagger.is-in > *:nth-child(5) { transition-delay: 240ms; }
html.reveal-ready .reveal-stagger.is-in > *:nth-child(6) { transition-delay: 300ms; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pass card (mini interactive demo) ---------------------- */
.passcard {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 22px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  color: #fff;
  position: relative;
  box-shadow: 0 30px 80px rgba(139,10,16,0.4), inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.passcard__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/></svg>");
  mix-blend-mode: overlay; pointer-events: none;
}
.passcard__row { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.passcard__brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; }
.passcard__brand .dot {
  width: 14px; height: 14px; border-radius: 999px; border: 2px solid #fff;
  display: inline-block;
  position: relative;
}
.passcard__brand .dot::after {
  content: ''; position: absolute; inset: 3px; border-radius: 999px; background: #fff;
}
.passcard__barcode {
  width: 90px; height: 36px;
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 4px, #fff 4px 5px, transparent 5px 9px, #fff 9px 11px, transparent 11px 14px);
  background-color: rgba(255,255,255,0.96);
  padding: 4px;
  border-radius: 4px;
}
.passcard__name {
  position: relative;
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.passcard__handle { position: relative; font-family: var(--font-mono); font-size: 11px; opacity: 0.7; }
.passcard__qr {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 96px; height: 96px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}
.passcard__qr svg { width: 100%; height: 100%; }

/* Misc */
.section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--fg-mute);
}

/* =========================================================
   Subpage components: dashboard mock, quote band, pricing,
   org cards, venue cards, artist grid, investor blocks,
   company team, contact form
   ========================================================= */

/* Dashboard mock --------------------------------------- */
.dash {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dash__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.dash__crumbs { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fg-mute); }
.dash__top-actions { display: flex; align-items: center; gap: 14px; }
.dash__avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 600;
  display: grid; place-items: center;
}
.dash__body { display: grid; grid-template-columns: 220px 1fr; min-height: 540px; }
.dash__nav { border-right: 1px solid var(--line); padding: 24px 18px; display: flex; flex-direction: column; gap: 28px; }
.dash__nav-section { display: flex; flex-direction: column; gap: 4px; }
.dash__nav-section .t-eyebrow { margin-bottom: 8px; }
.dash__nav-section a {
  display: block; padding: 8px 12px;
  font-size: 13px; color: var(--fg-mute);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.dash__nav-section a:hover { color: var(--fg); background: rgba(255,255,255,0.03); }
.dash__nav-section a.is-current { color: var(--fg); background: rgba(209,32,39,0.1); border-left: 2px solid var(--red); padding-left: 10px; }
.dash__main { padding: 28px; display: flex; flex-direction: column; gap: 24px; }
.dash__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.dash__metric { background: var(--bg-elev); padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.dash__big { font-family: var(--font-display); font-size: 34px; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.dash__delta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em; }
.dash__delta.up { color: #4ade80; }
.dash__bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.dash__bar span { display: block; height: 100%; background: var(--red); }
.dash__chart { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.dash__table { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.dash__table-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 12px; padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  align-items: center;
}
.dash__table-row:last-child { border-bottom: 0; }
.dash__table-head { color: var(--fg-mute); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.pill {
  display: inline-flex; gap: 6px; align-items: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-mute);
}
.pill__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--fg-mute); }
.pill--live { color: #4ade80; }
.pill--live .pill__dot { background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 1.6s infinite; }
.pill--draft .pill__dot { background: #fbbf24; }
.pill--draft { color: #fbbf24; }

@media (max-width: 880px) {
  .dash__body { grid-template-columns: 1fr; }
  .dash__nav { display: none; }
  .dash__row { grid-template-columns: repeat(2, 1fr); }
  .dash__table-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .dash__table-row > :nth-child(4), .dash__table-row > :nth-child(5) { display: none; }
}
@media (max-width: 640px) {
  .dash__top { padding: 12px 16px; gap: 12px; align-items: flex-start; }
  .dash__crumbs { min-width: 0; line-height: 1.4; overflow-wrap: anywhere; }
  .dash__top-actions { flex-shrink: 0; }
  .dash__main { padding: 16px; gap: 18px; }
  .dash__row { grid-template-columns: 1fr; }
  .dash__metric { padding: 16px; }
  .dash__big { font-size: 28px; }
  .dash__chart { padding: 16px; }
  .dash__table-row {
    grid-template-columns: 1.2fr 1fr;
    padding: 12px 14px;
  }
  .dash__table-row > :nth-child(3) { display: none; }
}

/* Quote band -------------------------------------------- */
.quote-band {
  padding: clamp(56px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
}
.quote { display: flex; flex-direction: column; gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; }
.quote__mark {
  position: absolute; top: -40px; left: -8px;
  font-family: var(--font-display); font-size: 180px; line-height: 0.7;
  color: var(--red); opacity: 0.6;
  pointer-events: none;
}
.quote p { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 48px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; color: var(--fg); margin: 0; }
.quote footer { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--fg-mute); }
.quote footer strong { color: var(--fg); font-family: var(--font-body); font-weight: 500; font-size: 14px; letter-spacing: 0; }

/* Pricing ----------------------------------------------- */
.pricing { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pricing__copy { max-width: 28ch; }
.pricing__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 340px;
}
.pricing__card--feat {
  background: linear-gradient(170deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: var(--red);
  color: #fff;
}
.pricing__price { display: flex; align-items: baseline; gap: 4px; margin-top: 6px; }
.pricing__num { font-family: var(--font-display); font-size: clamp(72px, 8vw, 112px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.9; }
.pricing__unit { font-family: var(--font-display); font-size: 32px; font-weight: 500; }
.pricing__list { list-style: none; padding: 0; margin-top: auto; display: grid; gap: 10px; }
.pricing__list li { font-size: 14px; display: flex; gap: 10px; align-items: baseline; }
.pricing__list li::before { content: '✓'; color: var(--red); font-weight: 600; }
.pricing__card--feat .pricing__list li::before { color: #fff; }

@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
}

/* Venue grid (venues page) ------------------------------ */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.venue-card { background: var(--bg); padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 380px; cursor: pointer; transition: background 0.3s var(--ease); }
.venue-card:hover { background: var(--bg-elev); }
.venue-card__pin { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-mute); text-transform: uppercase; }
.venue-card__name { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; margin: 4px 0 0; }
.venue-card__type { color: var(--fg-mute); font-size: 13px; }
.venue-card__meta { display: flex; gap: 18px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--fg-mute); }
.venue-card__meta b { color: var(--fg); font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; display: block; }
@media (max-width: 880px) { .venue-grid { grid-template-columns: 1fr; } }

/* Artist grid ------------------------------------------- */
.artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.artist-card {
  background: var(--bg);
  padding: 0;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
}
.artist-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}
.artist-card:hover .artist-card__bg { filter: grayscale(0) brightness(0.85); transform: scale(1.04); }
.artist-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: end;
  padding: 20px;
  color: #fff;
}
.artist-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.artist-card__role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.artist-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
}
@media (max-width: 880px) { .artist-grid { grid-template-columns: repeat(2, 1fr); } }

/* Investor blocks --------------------------------------- */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.inv-block { background: var(--bg-elev); padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.inv-block__num { font-family: var(--font-display); font-size: 64px; font-weight: 700; letter-spacing: -0.04em; color: var(--red); line-height: 0.9; }
.inv-block__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); }
.inv-block__body { color: var(--fg-mute); font-size: 14px; line-height: 1.5; max-width: 32ch; }
@media (max-width: 880px) { .inv-grid { grid-template-columns: 1fr; } }

/* Cap table / round info -------------------------------- */
.captable {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.captable__row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  align-items: center;
}
.captable__row:first-child { border-top: 0; padding-top: 0; }
.captable__row.head { color: var(--fg-mute); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* Company team ------------------------------------------ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { display: flex; flex-direction: column; gap: 12px; }
.team-card__photo {
  aspect-ratio: 1/1.1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--fg-mute);
  background-image: linear-gradient(135deg, var(--bg-card), var(--bg-elev));
}
.team-card__name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.team-card__role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-mute); }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* Timeline ---------------------------------------------- */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.tl-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-item__date {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--red);
  font-weight: 500;
}
.tl-item__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.tl-item__body { color: var(--fg-mute); max-width: 50ch; }

/* Contact form ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); }
.field input, .field textarea, .field select {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-status {
  min-height: 20px;
  margin: -6px 0 0;
  color: var(--fg-mute);
  font-size: 13px;
  line-height: 1.45;
}
.contact-side { display: flex; flex-direction: column; gap: 32px; }
.contact-side h3 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 10px; font-weight: 400; }
.contact-side .big { font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-weight: 500; letter-spacing: -0.01em; }
.contact-side .small { font-family: var(--font-display); font-size: clamp(13px, 1.1vw, 16px); font-weight: 400; color: var(--fg-mute); }
.contact-side .small a { color: inherit; }
.contact-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; }
.contact-link__icon { display: inline-flex; width: 18px; height: 18px; flex: 0 0 18px; align-items: center; justify-content: center; color: var(--red); }
.contact-link__icon svg { display: block; width: 100%; height: 100%; }
.contact-side .row { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* Logo strip (sponsors / partners) ---------------------- */
.logos { display: flex; flex-wrap: wrap; gap: 56px; justify-content: center; align-items: center; padding: 48px 0; opacity: 0.7; }
.logos__item { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--fg); }
.logos__item.mono { font-family: var(--font-mono); font-weight: 500; font-size: 16px; letter-spacing: 0.08em; }

/* Glass surfaces --------------------------------------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* Vibrant signature backdrop (blue → pink mesh) -------- */
.vibrant-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 25%, rgba(47,123,255,0.45), transparent 65%),
    radial-gradient(55% 45% at 85% 75%, rgba(255,85,170,0.40), transparent 65%),
    radial-gradient(40% 35% at 60% 40%, rgba(204,0,0,0.18), transparent 70%);
}
.vibrant-bg--soft {
  background:
    radial-gradient(60% 50% at 15% 25%, rgba(47,123,255,0.18), transparent 65%),
    radial-gradient(55% 45% at 85% 75%, rgba(255,85,170,0.15), transparent 65%);
}

/* Social layer block ---------------------------------- */
.social {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: clamp(64px, 9vw, 120px) 0;
}
.social__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.social__copy h2 { max-width: 18ch; }
.web3__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.web3__tag .pulse {
  display: inline-block; width: 6px; height: 6px;
  background: var(--pink); border-radius: 999px;
  box-shadow: 0 0 8px var(--pink);
  animation: pulse 1.6s infinite;
}

/* Stacked social cards visual */
.social__deck {
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  min-height: 460px;
  perspective: 1200px;
}
.social-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform 0.45s var(--ease), border-color 0.3s var(--ease);
}
.social-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.28); }
.social-card--artist { margin-right: 8%; transform: rotate(-1deg); }
.social-card--event  { margin-left: 12%;  transform: rotate(1.5deg); background: linear-gradient(180deg, rgba(204,0,0,0.12), rgba(0,0,0,0.4)); }
.social-card--genres { margin-right: 4%; transform: rotate(-0.5deg); }
.social__deck:hover .social-card--artist { transform: rotate(-2.5deg) translateY(-2px); }
.social__deck:hover .social-card--event  { transform: rotate(2.5deg)  translateY(-4px); }
.social__deck:hover .social-card--genres { transform: rotate(-1deg)   translateY(-2px); }

.social-card__row { display: flex; justify-content: space-between; align-items: center; }
.social-card__tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-mute);
}
.social-card__dots { color: var(--fg-dim); letter-spacing: 0.2em; }
.social-card__avatar {
  width: 52px; height: 52px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}
.social-card__name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--fg);
}
.social-card__meta {
  font-size: 13px;
  color: var(--fg-mute);
  margin-top: 2px;
}
.social-card__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  color: var(--fg-mute);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { color: var(--fg); border-color: rgba(255,255,255,0.3); }
.chip--on {
  background: rgba(204,0,0,0.18);
  border-color: var(--red);
  color: #fff;
}
.chip--venue { background: rgba(255,255,255,0.03); }

.follow-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.follow-btn:hover { border-color: var(--red); color: var(--red); }
.follow-btn.is-following {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.like-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.4);
  font-size: 16px;
  color: var(--fg-mute);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: grid; place-items: center;
}
.like-btn:hover { color: var(--red); border-color: var(--red); }
.like-btn.is-liked {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 24px var(--red-glow);
  animation: heartbeat 1.6s infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%      { transform: scale(1.15); }
  20%      { transform: scale(1); }
  30%      { transform: scale(1.10); }
  40%      { transform: scale(1); }
}

.going-row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.going-avatars { display: flex; }
.going-avatars span {
  display: block;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 2px solid #0a0a0a;
  margin-left: -10px;
}
.going-avatars span:first-child { margin-left: 0; }
.going-text { font-size: 13px; color: var(--fg-mute); line-height: 1.3; }
.going-text strong { color: var(--fg); font-weight: 500; }
.soon-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

@media (max-width: 880px) {
  .social__inner { grid-template-columns: 1fr; }
  .social-card--artist, .social-card--event, .social-card--genres { margin-left: 0; margin-right: 0; }
}

/* Studio (YouTube series) ----------------------------- */
.studio {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.studio__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 48px;
}
.studio__head h2 { max-width: 16ch; }
.studio__head p { color: var(--fg-mute); max-width: 50ch; font-size: 16px; line-height: 1.55; }

.studio__player {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.studio__player iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

.studio__meta {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.studio__meta > div {
  background: var(--bg);
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.studio__meta .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute); }
.studio__meta .val { font-family: var(--font-display); font-weight: 500; font-size: 16px; }

/* Netflix-style horizontal rail of session cards */
.studio-rail-wrap {
  position: relative;
  margin-top: 32px;
}
.studio-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding: 4px 0 16px;
  /* Fade edges */
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 80px), transparent 100%);
}
.studio-rail-wrap.at-start .studio-rail {
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 80px), transparent 100%);
}
.studio-rail-wrap.at-end .studio-rail {
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 100%);
}
.studio-rail::-webkit-scrollbar { height: 0; }
.studio-rail { scrollbar-width: none; }

.studio-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s var(--ease);
}
.studio-card:hover { transform: translateY(-4px); }
.studio-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(204,0,0,0.4), rgba(47,123,255,0.3));
  transition: border-color 0.3s var(--ease);
}
.studio-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.3s var(--ease);
  filter: brightness(0.85);
}
.studio-card:hover .studio-card__thumb { border-color: var(--red); }
.studio-card:hover .studio-card__thumb img { transform: scale(1.06); filter: brightness(1); }
.studio-card.is-active .studio-card__thumb {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red), 0 16px 40px var(--red-glow);
}
.studio-card__num {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 4px 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; color: #fff;
}
.studio-card.is-active .studio-card__num { background: var(--red); border-color: var(--red); }
.studio-card__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 22px; color: #fff;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  pointer-events: none;
}
.studio-card__play::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.6), transparent 60%);
}
.studio-card__play::after {
  content: '▶';
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 16px; color: #fff;
  padding-left: 4px;
  box-shadow: 0 8px 24px var(--red-glow);
}
.studio-card:hover .studio-card__play,
.studio-card.is-active .studio-card__play { opacity: 1; }

.studio-card__meta { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }
.studio-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.studio-card__date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
}

/* Rail nav arrows */
.studio-rail__arrow {
  position: absolute;
  top: calc(50% - 30px);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 5;
  transition: opacity 0.25s var(--ease), background 0.2s var(--ease);
  font-size: 18px;
}
.studio-rail__arrow:hover { background: var(--red); border-color: var(--red); }
.studio-rail__arrow--left  { left: -4px;  }
.studio-rail__arrow--right { right: -4px; }
.studio-rail-wrap.at-start .studio-rail__arrow--left  { opacity: 0; pointer-events: none; }
.studio-rail-wrap.at-end .studio-rail__arrow--right { opacity: 0; pointer-events: none; }

/* Episode list (legacy big rows, kept for the talks section) */
.episodes { display: grid; gap: 12px; margin-top: 32px; }
.episode {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.episode:hover { border-color: var(--red); background: var(--bg-elev); }
.episode__thumb {
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(204,0,0,0.4), rgba(255,85,170,0.3), rgba(47,123,255,0.3)), #000;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.episode__thumb::after {
  content: '▶';
  position: relative;
  width: 56px; height: 56px;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 18px;
  padding-left: 4px;
  backdrop-filter: blur(8px);
}
.episode__meta { display: flex; flex-direction: column; gap: 6px; }
.episode__ep { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.episode__title { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.episode__sub { color: var(--fg-mute); font-size: 13px; }
.episode__arr { color: var(--fg-mute); font-size: 22px; padding-right: 8px; transition: transform 0.25s var(--ease), color 0.25s var(--ease); }
.episode:hover .episode__arr { color: var(--red); transform: translateX(4px); }

@media (max-width: 880px) {
  .studio__head { grid-template-columns: 1fr; }
  .studio__meta { grid-template-columns: 1fr; }
  .episode { grid-template-columns: 1fr; }
  .episode__thumb { width: 100%; }
}

/* Social icons (footer) ------------------------------- */
.socials { display: flex; gap: 8px; margin-top: 6px; }
.socials a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  transition: all 0.25s var(--ease);
}
.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.socials a svg { width: 16px; height: 16px; }

/* App / tickets prominent CTA card in footer ----------- */
.foot__app {
  grid-column: 1 / -1;
  margin-bottom: 32px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.foot__app::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 100% 50%, rgba(255,85,170,0.18), transparent 70%),
    radial-gradient(60% 80% at 0% 50%, rgba(47,123,255,0.14), transparent 70%);
  pointer-events: none;
}
.foot__app-copy { position: relative; }
.foot__app-copy h3 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -0.025em; max-width: 18ch; }
.foot__app-copy p { color: var(--fg-mute); font-size: 15px; margin-top: 12px; max-width: 38ch; }
.foot__app-cta { position: relative; display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 880px) {
  .foot__app { grid-template-columns: 1fr; padding: 28px; }
  .foot__app-cta { justify-content: flex-start; }
}

/* ===== "for X" switcher (nav) ============================ */
.nav__for-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__for {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--fg-mute);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav__for:hover { color: var(--fg); background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); }
.nav__for-wrap.is-locked .nav__for {
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.10);
  color: var(--fg);
}
.nav__for-pre {
  font-style: italic;
  color: var(--fg-mute);
  letter-spacing: 0;
}
.nav__for-roll {
  position: relative;
  overflow: hidden;
  height: 20px;
  display: inline-block;
  /* width is set inline by JS once the longest label has rendered */
  min-width: 4ch;
}
.nav__for-roll-inner {
  display: flex; flex-direction: column;
  /* JS controls transform; default eases here */
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.25, 1);
  will-change: transform;
}
.nav__for-roll-inner > span {
  height: 20px;
  display: flex; align-items: center;
  white-space: nowrap;
  color: var(--fg);
  font-weight: 500;
}
.nav__for-arrow {
  font-size: 10px;
  color: var(--fg-mute);
  transition: transform 0.25s var(--ease);
  margin-left: 2px;
}
.nav__for-wrap.is-open .nav__for-arrow { transform: rotate(180deg); }

.nav__for-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 8px;
  display: flex; flex-direction: column;
  gap: 2px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.nav__for-wrap.is-open .nav__for-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__for-dropdown a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--fg-mute);
  font-size: 14px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav__for-dropdown a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}
.nav__for-dropdown a.is-current {
  color: var(--red);
  background: rgba(204, 0, 0, 0.08);
}
.nav__for-dropdown a .ar {
  font-size: 11px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav__for-dropdown a:hover .ar { opacity: 1; transform: translateX(0); }

@media (max-width: 560px) {
  .nav__for {
    height: 34px;
    gap: 5px;
    padding: 0 9px;
    font-size: 12px;
  }
  .nav__for-pre { display: none; }
  .nav__for-roll {
    max-width: 72px;
    min-width: 0;
  }
  .nav__for-roll-inner > span {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav__for-arrow {
    margin-left: 0;
    font-size: 9px;
  }
  .nav__for-dropdown {
    left: 50%;
    min-width: min(220px, calc(100vw - 24px));
    transform: translate(-50%, -6px);
  }
  .nav__for-wrap.is-open .nav__for-dropdown {
    transform: translate(-50%, 0);
  }
}

/* Tweaks panel position override (it ships top-right) ---- */
[id*="tweaks"] { font-family: var(--font-body) !important; }


/* ============================================================
   JOURNEY (Before · During · After) — narrative row
   ============================================================ */
.journey {
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(204,0,0,0.06), transparent 50%),
    var(--bg);
  position: relative;
}
.journey__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) {
  .journey__rail { grid-template-columns: 1fr; gap: 24px; }
}
.journey__step {
  position: relative;
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.journey__step:hover {
  border-color: rgba(204,0,0,0.35);
  transform: translateY(-3px);
}
.journey__step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.18em;
}
.journey__step-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.09);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 999px;
}
.journey__step-title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--fg);
}
.journey__step-body {
  margin-top: 14px;
  color: var(--fg-mute);
  line-height: 1.55;
  font-size: 15px;
}
.journey__step-line {
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 2px;
  overflow: hidden;
}
.journey__step-line span {
  display: block;
  height: 2px;
  width: 28%;
  background: linear-gradient(90deg, var(--red), transparent);
  transition: width 0.6s var(--ease);
}
.journey__step:hover .journey__step-line span { width: 92%; }

/* ============================================================
   SWISS LAUNCH PARTNER — offer block
   ============================================================ */
.launch {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.launch__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(204,0,0,0.18), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(204,0,0,0.10), transparent 55%),
    var(--bg);
  pointer-events: none;
}
.launch .container { position: relative; z-index: 1; }
.launch__head { max-width: 760px; }
.launch__head .lede { color: var(--fg-mute); }

.launch__grid {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.launch__grid .launch__card--feat {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(204,0,0,0.55) 0%, rgba(140,15,20,0.85) 100%);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.launch__grid .launch__card--feat .launch__card-num,
.launch__grid .launch__card--feat .launch__card-body { color: rgba(255,255,255,0.85); }
.launch__grid .launch__card--feat .launch__card-title { color: #fff; }
@media (max-width: 900px) {
  .launch__grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .launch__grid .launch__card--feat { grid-row: auto; }
}
.launch__card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  min-height: 180px;
  display: flex; flex-direction: column;
}
.launch__card:hover {
  transform: translateY(-3px);
  border-color: rgba(204,0,0,0.35);
}
.launch__card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--fg-mute);
}
.launch__card-title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.launch__card-body {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-mute);
}
.launch__foot {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex; gap: 32px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.launch__fine {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
  line-height: 1.55;
  max-width: 62ch;
}

/* ============================================================
   TIMELINE — 14 days to live (used on organisers page)
   ============================================================ */
.timeline {
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.timeline__head { max-width: 760px; }
.timeline__head .lede { color: var(--fg-mute); }
.timeline__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(48px, 6vw, 80px);
  position: relative;
}
.timeline__rail::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(204,0,0,0.15));
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline__rail { grid-template-columns: 1fr; gap: 16px; }
  .timeline__rail::before { display: none; }
}
.timeline__step {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  background: rgba(255,255,255,0.02);
}
.timeline__step-dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.18);
  margin-bottom: 18px;
}
.timeline__step-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.timeline__step-body {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg);
}

/* ============================================================
   TRUST band — payments / security / data / refunds
   ============================================================ */
.trust {
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 20% 100%, rgba(204,0,0,0.05), transparent 50%),
    var(--bg);
}
.trust__grid {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .trust__grid { grid-template-columns: 1fr; } }
.trust__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  background: rgba(255,255,255,0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.trust__card:hover {
  transform: translateY(-3px);
  border-color: rgba(204,0,0,0.35);
}
.trust__card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(204,0,0,0.10);
  color: var(--red);
  margin-bottom: 18px;
}
.trust__card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  margin-bottom: 10px;
}
.trust__card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.trust__card-body {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-mute);
}

/* ============================================================
   LAUNCH BANNER (organisers/venues — small ribbon)
   ============================================================ */
.launch-ribbon {
  margin: 0;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(204,0,0,0.18) 0%, rgba(204,0,0,0.04) 100%);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 12px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 14px;
}
.launch-ribbon__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  padding: 4px 10px;
  background: rgba(204,0,0,0.15);
  border-radius: 999px;
}
.launch-ribbon__text { color: var(--fg); }
.launch-ribbon__text strong { color: var(--red); }


/* ============================================================
   Swiss Made Software — footer badge
   ============================================================ */
.foot__sms {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  padding: 9px 14px 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.foot__sms:hover { border-color: rgba(220, 30, 30, 0.45); background: rgba(220, 30, 30, 0.05); }
.foot__sms-pre {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  opacity: 0.7;
}
.foot__sms img {
  height: 18px; width: auto; display: block;
}

/* ============================================================
   Swiss Made Software — homepage explanatory band
   ============================================================ */
.sms-band {
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.sms-band__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) {
  .sms-band__inner { grid-template-columns: 1fr; gap: 32px; }
}
.sms-band__badge {
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(220,30,30,0.10), transparent 60%),
    rgba(255,255,255,0.02);
  position: relative;
}
.sms-band__badge::after {
  content: 'OFFICIAL LABEL';
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-mute);
  opacity: 0.55;
}
.sms-band__badge img {
  width: 100%; max-width: 220px; height: auto; display: block;
}
.sms-band__copy h2 { color: var(--fg); }


/* ============================================================
   TEAM cards (company page)
   ============================================================ */
.company-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) {
  .company-story { grid-template-columns: 1fr; }
}

.company-partners {
  border-top: 1px solid var(--line);
}
.company-partners__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.company-partners__copy h2 {
  margin-top: 14px;
  max-width: 18ch;
}
.company-partners__copy p {
  margin: 16px 0 0;
  max-width: 48ch;
}
.company-partners__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.company-partners__logo-cell {
  min-height: 104px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.company-partners__logo-cell:last-child { border-right: 0; }
.company-partners__logo-cell img {
  width: auto;
  height: 34px;
  max-width: 100%;
  opacity: 0.95;
}
.company-partners__logo-cell--aws img {
  height: 44px;
  max-width: 112px;
}
.company-partners__logo-cell--stripe img { max-width: 118px; }
.company-partners__logo-cell--auth0 img { max-width: 120px; }
.company-partners__logo-cell--zendesk img { max-width: 150px; }
@media (max-width: 960px) {
  .company-partners__inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .company-partners__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-partners__logo-cell:nth-child(2n) { border-right: 0; }
  .company-partners__logo-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .company-partners__logo-cell {
    min-height: 88px;
    padding: 18px 16px;
  }
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (max-width: 1000px) { .team__grid { grid-template-columns: 1fr; } }
.team__card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px 28px;
  background: rgba(255,255,255,0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.team__card:hover { transform: translateY(-3px); border-color: rgba(204,0,0,0.35); }
.team__card-avatar {
  width: 64px; height: 64px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  box-shadow: 0 12px 32px rgba(204,0,0,0.25);
  object-fit: cover;
}
.team__card-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
}
.team__card-role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-top: 8px;
}
.team__card-bio {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-mute);
}
.team__card-tags {
  margin: 22px 0 0; padding: 0;
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.team__card-tags li {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ============================================================
   VENUE MOCKUP (venues page)
   ============================================================ */
.venue-mockup {
  margin-top: clamp(40px, 5vw, 72px);
}
.venue-mockup__inner {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(204,0,0,0.10), transparent 55%),
    rgba(255,255,255,0.02);
}
.venue-mockup__hero {
  padding: 40px 36px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.venue-mockup__pin {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--fg-mute);
}
.venue-mockup__brand {
  margin-top: 24px;
}
.venue-mockup__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--fg);
}
.venue-mockup__type {
  margin-top: 12px;
  color: var(--fg-mute);
  font-size: 14px;
}
.venue-mockup__body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}
@media (max-width: 820px) { .venue-mockup__body { grid-template-columns: 1fr; } }
.venue-mockup__col {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
}
.venue-mockup__col:last-child { border-right: 0; }
@media (max-width: 820px) {
  .venue-mockup__col { border-right: 0; border-bottom: 1px solid var(--line); }
  .venue-mockup__col:last-child { border-bottom: 0; }
}
.venue-mockup__col p {
  margin: 14px 0 0;
  color: var(--fg-mute);
  font-size: 14.5px;
  line-height: 1.55;
}
.venue-mockup__chips {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.venue-mockup__list {
  margin: 14px 0 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column;
}
.venue-mockup__list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.venue-mockup__list li:last-child { border-bottom: 0; }
.venue-mockup__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--red);
}
.venue-mockup__ev {
  font-size: 14.5px;
  color: var(--fg);
}
.venue-mockup__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
}
@media (max-width: 640px) {
  .venue-mockup__hero,
  .venue-mockup__col {
    padding: 28px 22px;
  }
  .venue-mockup__list li {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
  }
  .venue-mockup__cta {
    justify-self: start;
    overflow-wrap: anywhere;
  }
}
.venue-mockup__note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
  text-align: right;
  opacity: 0.7;
}
@media (max-width: 640px) {
  .venue-mockup__note { text-align: left; }
}

/* ============================================================
   FINANCIAL TRAJECTORY (investors page)
   ============================================================ */
.trajectory {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .trajectory { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .trajectory { grid-template-columns: 1fr; } }
.trajectory__step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px 22px;
  background: rgba(255,255,255,0.02);
}
.trajectory__step--now {
  border-color: rgba(204,0,0,0.45);
  background: linear-gradient(160deg, rgba(204,0,0,0.20), rgba(204,0,0,0.04));
}
.trajectory__step--now .trajectory__tag { color: #fff; background: var(--red); }
.trajectory__year {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.trajectory__tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.10);
  padding: 4px 9px;
  border-radius: 999px;
}
.trajectory__step p {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-mute);
}

/* Tighten 5-col features grid (investors revenue model) on smaller widths */
@media (max-width: 1200px) {
  .features__grid[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 760px) {
  .features__grid[style*="repeat(5"] { grid-template-columns: 1fr !important; }
}
/* Same for the 5-col venue wins trust__grid (if used elsewhere) */
@media (max-width: 1200px) {
  .trust__grid[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 760px) {
  .trust__grid[style*="repeat(5"] { grid-template-columns: 1fr !important; }
}


/* ============================================================
   de rouge Scanner — full section (organisers page)
   ============================================================ */
.scanner {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.scanner__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(204,0,0,0.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(204,0,0,0.08), transparent 55%),
    var(--bg);
  pointer-events: none;
}
.scanner__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 1000px) { .scanner__inner { grid-template-columns: 1fr; } }

.scanner__brand {
  display: flex; align-items: center; gap: 18px;
}
.scanner__brand img {
  width: 78px; height: 78px;
  border-radius: 18px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(204,0,0,0.22);
}
.scanner__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 10px;
  color: var(--fg);
}
.scanner__title span { color: var(--red); font-style: italic; }

.scanner__features {
  margin: 28px 0 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.scanner__features li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--fg);
  font-size: 15px;
  line-height: 1.5;
}
.scanner__features-dot {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--red);
  margin-top: 9px;
  box-shadow: 0 0 0 4px rgba(204,0,0,0.15);
}

.scanner__who {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.scanner__who p {
  margin: 8px 0 0;
  color: var(--fg-mute);
  font-size: 14px;
  line-height: 1.55;
}
.scanner__who p em { color: var(--red); font-style: normal; font-weight: 600; }

.scanner__stores {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* App-store style buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 16px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  min-width: 160px;
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(204,0,0,0.6);
  background: #0a0a0a;
}
.store-btn svg { flex: none; }
.store-btn__small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.store-btn__big {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  line-height: 1;
}
.store-btn__small + .store-btn__big,
.store-btn svg + .store-btn__small {
  /* container handles flex */
}
/* Two-line label layout */
.store-btn {
  align-items: center;
}
.store-btn > .store-btn__small,
.store-btn > .store-btn__big {
  /* wrap text vertically */
}
.store-btn > svg { margin-right: 4px; }
.store-btn {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 0;
  align-items: center;
}
.store-btn > svg { grid-row: 1 / 3; align-self: center; }
.store-btn > .store-btn__small { grid-column: 2; grid-row: 1; }
.store-btn > .store-btn__big   { grid-column: 2; grid-row: 2; }

/* Phone screenshots stack */
.scanner__shots {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.scanner__phone {
  position: absolute;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(204,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.05);
  background: #000;
}
.scanner__phone img { width: 100%; height: auto; display: block; }
.scanner__phone--1 {
  width: 38%;
  left: 4%; top: 15%;
  transform: rotate(-7deg);
}
.scanner__phone--2 {
  width: 44%;
  left: 28%; top: 6%;
  transform: rotate(2deg);
  z-index: 2;
}
.scanner__phone--3 {
  width: 38%;
  right: 4%; top: 15%;
  transform: rotate(6deg);
}
.scanner__phone-tag {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  background: rgba(0,200,80,0.95);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  z-index: 5;
  box-shadow: 0 6px 24px rgba(0,200,80,0.45);
}
.scanner__phone-tag .live {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #fff;
  animation: pulse 1.6s infinite;
}

/* ============================================================
   Scanner teaser (compact card on home & venues)
   ============================================================ */
.scanner-teaser {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(204,0,0,0.10), transparent 60%),
    rgba(255,255,255,0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.scanner-teaser:hover {
  border-color: rgba(204,0,0,0.55);
  transform: translateY(-2px);
}
@media (max-width: 820px) {
  .scanner-teaser {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }
  .scanner-teaser__stores { grid-column: 1 / -1; }
}
.scanner-teaser__icon img {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(204,0,0,0.2);
}
@media (max-width: 820px) {
  .scanner-teaser__icon img { width: 64px; height: 64px; }
}
.scanner-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 8px 0 8px;
  color: var(--fg);
}
.scanner-teaser__title span { color: var(--red); font-style: italic; }
.scanner-teaser__copy p {
  margin: 0;
  color: var(--fg-mute);
  font-size: 14px;
  line-height: 1.5;
}
.scanner-teaser__stores {
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
}
.scanner-teaser__arr {
  color: var(--red);
  font-size: 20px;
  margin-left: 8px;
  transition: transform 0.25s var(--ease);
}
.scanner-teaser:hover .scanner-teaser__arr { transform: translateX(4px); }

.store-btn--mini {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 0;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--line-strong, rgba(255,255,255,0.15));
  border-radius: 999px;
  /* Override the grid layout from .store-btn above */
  grid-template-columns: none;
  grid-template-rows: none;
}
.store-btn--mini > svg { grid-row: auto; }


/* ============================================================
   PARTNERS BAND — infrastructure & startup partners
   ============================================================ */
.partners {
  padding: clamp(64px, 7vw, 100px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.partners__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 820px) {
  .partners__head { grid-template-columns: 1fr; gap: 18px; }
}
.partners__head h2 { max-width: 18ch; margin-top: 14px; }
.partners__head p { max-width: 52ch; }

.partners__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
@media (max-width: 820px) {
  .partners__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .partners__row { grid-template-columns: 1fr; }
}
.partners__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 28px 26px;
  min-height: 200px;
  border-right: 1px solid var(--line);
  position: relative;
  color: var(--fg);
  transition: background 0.3s var(--ease);
}
.partners__cell:last-child { border-right: 0; }
.partners__cell:hover { background: rgba(255,255,255,0.03); }
@media (max-width: 820px) {
  .partners__cell:nth-child(2n) { border-right: 0; }
  .partners__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .partners__cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding: 28px 24px;
  }
  .partners__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .partners__cell:last-child { border-bottom: 0; }
  .partners__desc { max-width: none; }
}
.partners__logo {
  height: 38px;
  display: flex;
  align-items: center;
}
.partners__logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  display: block;
  opacity: 0.95;
}
/* Per-brand sizing so visual weight matches across logos.
   AWS includes the smile mark below the wordmark so it needs more height
   to read at the same cap-height as the plain wordmarks. */
.partners__cell[data-brand="aws"]     .partners__logo { height: 48px; }
.partners__cell[data-brand="aws"]     .partners__logo img { max-width: 120px; }
.partners__cell[data-brand="stripe"]  .partners__logo { height: 36px; }
.partners__cell[data-brand="stripe"]  .partners__logo img { max-width: 130px; }
.partners__cell[data-brand="auth0"]   .partners__logo { height: 36px; }
.partners__cell[data-brand="auth0"]   .partners__logo img { max-width: 130px; }
.partners__cell[data-brand="zendesk"] .partners__logo { height: 36px; }
.partners__cell[data-brand="zendesk"] .partners__logo img { max-width: 170px; }

.partners__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partners__role {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.partners__desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fg);
  opacity: 0.78;
  max-width: 28ch;
}
.partners__cell::before {
  content: attr(data-num);
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
}

.partners__foot {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partners__foot p {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
  max-width: 60ch;
}

/* Compact variant for inside other sections (investors hero etc.) */
.partners--compact { padding: clamp(40px, 5vw, 72px) 0; }
.partners--compact .partners__row { background: transparent; }
.partners--compact .partners__cell { min-height: 150px; padding: 24px 22px 22px; gap: 20px; }
.partners--compact .partners__desc { display: none; }
.partners--compact .partners__logo { height: 34px; }
.partners--compact .partners__cell[data-brand="aws"] .partners__logo { height: 44px; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero__bg-wall-row,
  .marquee__track {
    transform: none !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
