/* ============================================================
   Savrli — Apple.com-style restraint.
   Single typeface (General Sans). Near-white ground.
   No serifs. No italics. Color comes from imagery.
   ============================================================ */

:root {
  --paper:    #FAFAF7;
  --paper-2:  #F2F2EE;
  --ink:      #1D1D1F;
  --ink-mute: #6E6E73;
  --hairline: rgba(0, 0, 0, 0.08);
  --accent:   #D87B2A;

  --font-body:    "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max:      1200px;
  --pad-x:    clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-style: normal;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 160ms ease;
}
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

/* ============================================================
   HEADER — quiet, compact, hairline, blur
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.wordmark img {
  display: block;
  height: 22px;
  width: auto;
}
.wordmark:hover { text-decoration: none; opacity: 0.75; }
@media (max-width: 640px) {
  .wordmark img { height: 18px; }
}

.site-header nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}

.site-header nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.site-header nav a:hover { color: var(--ink-mute); text-decoration: none; }

@media (max-width: 640px) {
  .site-header nav ul { gap: 14px; }
  .site-header nav a { font-size: 13px; }
}

/* ============================================================
   PRODUCT MOMENT — the apple.com pattern
   Centered stack: eyebrow → headline → subhead → links → image
   ============================================================ */
.moment {
  padding: clamp(72px, 10vw, 120px) var(--pad-x);
  text-align: center;
  background: var(--paper);
}
.moment--alt { background: var(--paper-2); }

/* Pillar tints — Apple-style soft section bands */
.moment--app     { background: #FAF0EC; }  /* soft blush */
.moment--network { background: #F7F1E6; }  /* pale cream */
.moment--studios { background: #F3EBE0; }  /* warm sand */

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* App early-access signup form */
.signup-form {
  margin: clamp(20px, 2.4vw, 28px) auto 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 480px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.signup-form:focus-within {
  border-color: rgba(29, 29, 31, 0.4);
  box-shadow: 0 0 0 4px rgba(232, 75, 43, 0.08);
}
.signup-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 4px;
  outline: none;
}
.signup-form input[type="email"]::placeholder {
  color: var(--ink-mute);
  opacity: 0.7;
}
.signup-form-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.signup-form-btn:hover { background: #000; }
.signup-form-btn:active { transform: scale(0.97); }
.signup-form-btn[disabled] {
  background: var(--ink-mute);
  cursor: not-allowed;
}
.signup-form-btn-arrow {
  display: inline-block;
  transition: transform 160ms ease;
}
.signup-form-btn:hover .signup-form-btn-arrow { transform: translateX(2px); }
.signup-form-status {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  min-height: 1.4em;
  text-align: center;
}
.signup-form-status[data-state="success"] { color: #1d6b3a; }
.signup-form-status[data-state="error"]   { color: #c0392b; }
@media (max-width: 480px) {
  .signup-form { padding: 6px 6px 6px 16px; }
  .signup-form input[type="email"] { font-size: 14px; }
  .signup-form-btn { padding: 9px 14px; font-size: 13px; }
  .signup-form-btn-label { display: inline; }
}

/* Powered by Kai AI badge */
.powered-by {
  margin: clamp(20px, 2.4vw, 28px) auto 0;
  display: inline-block;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.04);
  border: 1px solid rgba(29, 29, 31, 0.08);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 640px;
  text-align: left;
}
.powered-by strong {
  color: var(--ink);
  font-weight: 600;
}
.powered-by-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: 2px;
  box-shadow: 0 0 0 3px rgba(232, 75, 43, 0.15);
  animation: kai-pulse 2.4s ease-in-out infinite;
}
@keyframes kai-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 75, 43, 0.15); }
  50%      { box-shadow: 0 0 0 6px rgba(232, 75, 43, 0.06); }
}
@media (prefers-reduced-motion: reduce) {
  .powered-by-dot { animation: none; }
}
@media (max-width: 640px) {
  .powered-by { font-size: 12px; padding: 7px 12px; }
}

.moment--hero {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

/* =====================================================
   HERO SPLIT — Studios reel (left) + App in phone (right),
   headline + subhead below. Mobile stacks vertical.
   ===================================================== */
.hero-split {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 48px) clamp(56px, 7vw, 96px);
  background: var(--paper);
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  max-width: 1440px;
  margin: 0 auto;
  height: clamp(440px, 62vh, 640px);
}
.hero-split-panel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split-panel--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split-panel--app {
  /* Editorial photo full-bleed: dark fallback while image loads */
  background: #1a120a;
  position: relative;
  padding: 0;
}
.hero-editorial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-split-panel--app::before {
  /* Bottom scrim to keep the "02 APP" tag legible against the sweater */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-split-panel--app .hero-split-tag--app {
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  z-index: 3;
}
.hero-split-panel--app .hero-split-tag--app .hero-split-tag-num {
  color: rgba(255,255,255,0.7);
}
.hero-chat-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  /* Extra bottom padding keeps the result card clear of the "02 APP" tag */
  padding: 8% 7% 14%;
  pointer-events: none;
  z-index: 2;
}
.hero-bubble {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 78%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.32), 0 4px 10px rgba(0,0,0,0.18);
  animation: heroBubbleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-bubble--user {
  align-self: flex-end;
  background: linear-gradient(180deg, #ffffff, #f6efe5);
  color: #1a1a1a;
  border-bottom-right-radius: 6px;
  animation-delay: 0.05s;
}
.hero-bubble--kai {
  align-self: flex-start;
  background: rgba(20, 12, 6, 0.62);
  color: #FAFAF7;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.14);
  border-bottom-left-radius: 6px;
  animation-delay: 0.35s;
}
.hero-bubble--kai .kai-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 162, 97, 0.95);
  margin-bottom: 4px;
}
.hero-bubble--card {
  align-self: flex-start;
  width: min(86%, 320px);
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 18px 38px rgba(0,0,0,0.36), inset 0 0 0 1px rgba(255,255,255,0.6);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  animation: heroBubbleIn 0.9s 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-card-pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4A261, #DC5024);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 6px 14px rgba(180,50,20,0.45);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.hero-card-meta {
  font-family: var(--font-display);
  font-size: 11px;
  color: #5a5247;
  margin-top: 2px;
}
.hero-card-meta b { color: #1a7a3a; font-weight: 600; }
@keyframes heroBubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 860px) {
  .hero-chat-layer { padding: 8% 6% 18%; gap: 10px; justify-content: flex-end; }
  .hero-bubble { font-size: 13px; max-width: 86%; }
  .hero-bubble--card { width: 86%; }
  .hero-split-panel--app { padding: 0; min-height: 56vh; }
}
/* Legacy reflection puddle removed for editorial hero. */
.hero-phone {
  position: relative;
  height: 84%;
  max-height: 560px;
  margin-top: -18px;
  /* Frame fits the cleaned screenshot 1536x2640 plus a small bezel margin */
  aspect-ratio: 1536 / 2730;
  /* subtle 3D tilt + warm ambient drop shadow */
  transform: perspective(1800px) rotateY(-4.5deg) rotateX(1.2deg) rotateZ(-1.2deg);
  transform-origin: 60% 50%;
  filter:
    drop-shadow(0 50px 60px rgba(40, 20, 0, 0.28))
    drop-shadow(0 18px 28px rgba(0,0,0,0.16));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-split-panel--app:hover .hero-phone {
  transform: perspective(1800px) rotateY(-2deg) rotateX(0.4deg) rotateZ(-0.4deg);
}
.hero-phone::before {
  /* Left side-button silhouette — volume up */
  content: "";
  position: absolute;
  left: -0.55%;
  top: 21%;
  width: 0.8%;
  height: 7.5%;
  background: linear-gradient(180deg, #0a0a0a, #1c1c1c 30%, #0a0a0a);
  border-radius: 2px 0 0 2px;
  box-shadow: inset -1px 0 0 rgba(255,255,255,0.06);
}
.hero-phone::after {
  /* Right side-button silhouette — power */
  content: "";
  position: absolute;
  right: -0.55%;
  top: 24%;
  width: 0.8%;
  height: 11%;
  background: linear-gradient(180deg, #0a0a0a, #1c1c1c 30%, #0a0a0a);
  border-radius: 0 2px 2px 0;
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.06);
}
.hero-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14% / 6.4%;
  padding: 1.6%;
  background:
    linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 55%, #1a1a1a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.55);
  overflow: hidden;
}
.hero-phone-frame::before {
  /* Inner bezel ring for depth */
  content: "";
  position: absolute;
  inset: 1.2%;
  border-radius: 13.5% / 6.1%;
  box-shadow:
    inset 0 0 0 1.5px rgba(0,0,0,0.6),
    inset 0 0 0 2.5px rgba(60,60,60,0.4);
  pointer-events: none;
  z-index: 2;
}
.hero-phone-frame::after {
  /* Dynamic island notch */
  content: "";
  position: absolute;
  top: 2.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 3.4%;
  background: #050505;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.8);
}
.hero-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  border-radius: 12% / 6.7%;
  display: block;
  background: #FAFAF7;
}
.hero-split-tag {
  position: absolute;
  bottom: 18px;
  left: 22px;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero-split-tag-num {
  font-size: 11px;
  opacity: 0.7;
}
.hero-split-tag--app {
  color: var(--ink);
  text-shadow: none;
}
.hero-split-tag--app .hero-split-tag-num {
  color: var(--ink-mute);
}

.hero-split-text {
  max-width: 920px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  text-align: center;
}
.hero-split-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  font-style: normal;
}
.hero-split-subhead {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 18px auto 0;
  max-width: 720px;
  font-style: normal;
}
.hero-split-text .moment-links {
  margin-top: 22px;
}
.hero-split-network {
  margin: 26px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 860px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
  }
  .hero-split-panel {
    height: 56vh;
    min-height: 360px;
    max-height: 520px;
  }
  .hero-split-panel--app {
    /* Match the video panel size so the editorial photo + chat overlay have room */
    height: 56vh;
    min-height: 360px;
    max-height: 520px;
    padding: 0;
  }
  .hero-phone {
    height: auto;
    width: 62%;
    max-width: 280px;
  }
  .hero-split-tag {
    bottom: 14px;
    left: 16px;
    font-size: 11px;
  }
}
@media (max-width: 560px) {
  .hero-split { padding: 20px 16px 48px; }
  .hero-split-headline { font-size: clamp(36px, 9vw, 48px); }
}

.moment-text {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px;
  font-style: normal;
}

.moment-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-style: normal;
}

.moment-headline--hero {
  font-weight: 700;
  font-size: clamp(36px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.moment-headline--section {
  font-size: clamp(36px, 4.4vw, 48px);
}

.moment-subhead {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 21px);
  line-height: 1.38;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 14px auto 0;
  max-width: 680px;
  font-style: normal;
}

.moment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 22px 0 0;
}

.text-link {
  color: var(--accent);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  font-style: normal;
  white-space: nowrap;
}
.text-link:hover { text-decoration: underline; }

/* Hero image — large, centered, slight rounding */
.moment-image {
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 1200px;
}
.moment-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.moment-image--hero {
  max-width: 1200px;
}

/* Product moment images slightly smaller for non-hero pillars */
.moment:not(.moment--hero) .moment-image {
  max-width: 960px;
}


/* ============================================================
   TEASER — single hero video, light band
   ============================================================ */
.moment--teaser {
  background: #F2F2EE;
}

.moment-headline--teaser {
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.teaser-video {
  margin: clamp(36px, 4.6vw, 56px) auto 0;
  max-width: 1100px;
  text-align: center;
}

.teaser-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.teaser-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  object-fit: cover;
  background: #000;
}

.teaser-poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.teaser-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 38%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.teaser-overlay-label {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  padding: 8px 14px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.teaser-overlay-chev {
  color: var(--accent);
  font-weight: 600;
}

.teaser-overlay:hover::before,
.teaser-overlay:focus-visible::before {
  opacity: 1;
}
.teaser-overlay:hover .teaser-overlay-label,
.teaser-overlay:focus-visible .teaser-overlay-label {
  opacity: 1;
  transform: translateY(0);
}

.teaser-overlay:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.teaser-fallback {
  margin: clamp(20px, 2.4vw, 28px) 0 0;
  text-align: center;
}

/* Mobile: persistent label, no hover required */
@media (max-width: 768px) {
  .teaser-overlay::before {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.0) 44%);
  }
  .teaser-overlay-label {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion: hold on poster instead of looping */
@media (prefers-reduced-motion: reduce) {
  video.teaser-iframe {
    /* Hide playback. Poster attribute renders as fallback if browser respects it,
       otherwise the dark frame + overlay still reads as a film still. */
    animation: none;
  }
}

/* ============================================================
   ECOSYSTEM micro-line, founder, cities, contact
   ============================================================ */
.ecosystem-line {
  padding: clamp(48px, 6vw, 72px) var(--pad-x);
  text-align: center;
  background: var(--paper);
}
.ecosystem-line p {
  margin: 0;
  font-size: 17px;
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ============ ECOSYSTEM DIAGRAM ============ */
.ecosystem-diagram {
  padding: clamp(80px, 9vw, 140px) var(--pad-x);
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.ecosystem-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.ecosystem-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 64px;
  color: var(--ink);
}
.eco-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 720 / 520;
}
.eco-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.eco-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--ink-mute);
}
.eco-caption--soft {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  fill: var(--ink-mute);
  opacity: 0.7;
}

/* ====== 5-node ecosystem flow diagram (ecosystem.html hero) ====== */
.eco-flow {
  width: 100%;
  max-width: 880px;
  margin: 40px auto 0;
}
.eco-flow-svg {
  display: block;
  width: 100%;
  height: auto;
}
.flow-node rect {
  fill: var(--paper, #FAFAF7);
  stroke: var(--hairline, rgba(0,0,0,0.12));
  stroke-width: 1;
}
.flow-node--hub rect {
  stroke: var(--accent, #E84B2B);
  stroke-width: 1.4;
}
.flow-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-anchor: middle;
  fill: var(--accent, #E84B2B);
}
.flow-body {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-anchor: middle;
  fill: var(--ink-mute, #555);
}
.flow-arrow {
  fill: none;
  stroke: var(--accent, #E84B2B);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.flow-head {
  fill: var(--accent, #E84B2B);
}
.flow-arrow--back {
  stroke: var(--ink-mute, #999);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
  opacity: 0.7;
}
.flow-head--back {
  fill: var(--ink-mute, #999);
  opacity: 0.7;
}
.flow-cap {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-anchor: middle;
  fill: var(--ink-mute, #777);
}
.flow-cap--back {
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* Clickable nodes: each <a class="flow-link"> wraps a <g class="flow-node"> */
.flow-link,
.flow-link:hover,
.flow-link:focus-visible {
  cursor: pointer;
  outline: none;
  /* Defeat global `a:hover { text-decoration: underline }` so the SVG text doesn't render with an underline on hover. */
  text-decoration: none;
}
.flow-link rect {
  transition: stroke 200ms ease, stroke-width 200ms ease, fill 200ms ease;
}
.flow-link:hover .flow-node rect,
.flow-link:focus-visible .flow-node rect {
  stroke: var(--accent, #E84B2B);
  stroke-width: 1.6;
  fill: #FFFDFB;
}
.flow-link:focus-visible .flow-node rect {
  /* visible focus ring without an actual outline (SVG outline support is patchy) */
  stroke-width: 2;
}

/* Legend strip beneath the diagram */
.eco-flow-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.eco-flow-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mute, #777);
}
.eco-flow-legend-swatch {
  width: 32px;
  height: 8px;
  flex-shrink: 0;
}
.eco-flow-legend-line {
  stroke-width: 1.6;
  fill: none;
}
.eco-flow-legend-line--solid {
  stroke: var(--accent, #E84B2B);
}
.eco-flow-legend-line--dashed {
  stroke: var(--ink-mute, #999);
  stroke-dasharray: 4 4;
  opacity: 0.75;
}
.eco-flow-legend-head--solid {
  fill: var(--accent, #E84B2B);
}
.eco-flow-legend-head--dashed {
  fill: var(--ink-mute, #999);
  opacity: 0.75;
}

/* Quiet anchor pill nav between diagram and the first pillar */
.eco-pillnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 880px;
  margin: 36px auto 0;
  padding: 0 16px;
}
.eco-pillnav-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hairline, rgba(0,0,0,0.12));
  border-radius: 999px;
  background: var(--paper, #FAFAF7);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink, #1D1D1F);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}
.eco-pillnav-link:hover,
.eco-pillnav-link:focus-visible {
  border-color: rgba(232, 75, 43, 0.45);
  color: var(--accent, #E84B2B);
  transform: translateY(-1px);
}
.eco-pillnav-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-mute, #777);
  font-variant-numeric: tabular-nums;
}
.eco-pillnav-link:hover .eco-pillnav-num,
.eco-pillnav-link:focus-visible .eco-pillnav-num {
  color: var(--accent, #E84B2B);
  opacity: 0.7;
}

/* Mobile: stack vertically with simple chevrons */
@media (max-width: 720px) {
  .eco-flow-svg { display: none; }
  .eco-flow-legend { display: none; }
  .eco-flow::before {
    content: "Studios + Influencers/Creators → Savrli Network → Other Networks + Savrli App → signal back to Network and Studios.";
    display: block;
    padding: 20px;
    border: 1px solid var(--hairline);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-mute);
    text-align: center;
    background: var(--paper);
  }
  .eco-pillnav {
    margin-top: 24px;
  }
  .eco-pillnav-link {
    padding: 7px 12px;
    font-size: 12.5px;
  }
}
.eco-node {
  position: absolute;
  width: 27%;
  min-width: 180px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 22px 24px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.eco-node:hover {
  border-color: rgba(232, 75, 43, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.eco-node--studios { top: 8%; left: 4%; }
.eco-node--network { top: 8%; right: 4%; }
.eco-node--app { bottom: 4%; left: 50%; transform: translateX(-50%); }
.eco-node--app:hover { transform: translateX(-50%) translateY(-2px); }
.eco-node-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.eco-node-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.eco-closer {
  margin: 56px auto 0;
  max-width: 620px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--ink-mute);
}

/* Mobile: vertical chain */
@media (max-width: 720px) {
  .eco-stage {
    aspect-ratio: auto;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .eco-svg { display: none; }
  .eco-node {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    box-sizing: border-box;
  }
  .eco-node--app:hover { transform: translateY(-2px); }
  .eco-node + .eco-node {
    margin-top: 52px;
    position: relative;
  }
  .eco-node + .eco-node::before {
    content: "";
    position: absolute;
    top: -38px;
    left: calc(50% - 0.5px);
    width: 1px;
    height: 22px;
    background: var(--accent);
  }
  .eco-node + .eco-node::after {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
  }
  .ecosystem-title { margin-bottom: 40px; }
}

.founder {
  padding: clamp(96px, 12vw, 160px) var(--pad-x);
  text-align: center;
  background: var(--paper);
}
.founder-inner {
  max-width: 640px;
  margin: 0 auto;
}
.founder .eyebrow {
  margin: 0 0 16px;
}
.founder-name {
  margin: 0 0 6px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.founder-line {
  margin: 0 0 32px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-mute);
  font-weight: 400;
}
.founder .moment-links { margin-top: 8px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.founder .text-link { font-size: 15px; }
.founder-body {
  text-align: left;
  max-width: 540px;
  margin: 0 auto 28px;
}
.founder-body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 16px;
}
.founder-body p:last-child { margin-bottom: 0; }

.text-link--muted {
  color: var(--ink-mute);
  cursor: default;
}
.text-link--muted:hover { text-decoration: none; }

.cities {
  padding: clamp(40px, 5vw, 56px) var(--pad-x);
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}
.cities p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}

.contact {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  text-align: center;
  background: var(--paper-2);
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
  font-size: 17px;
}
.contact-sep { color: var(--ink-mute); }

/* ============================================================
   FOOTER — small grey
   ============================================================ */
.site-footer {
  padding: 32px var(--pad-x) 40px;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-made {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social a {
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 400;
}
.footer-social a:hover { color: var(--ink); text-decoration: none; }
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--ink-mute);
}

/* ============================================================
   REVEAL — Apple-quiet fade only, 800ms
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 800ms ease;
}
.reveal.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transition: none; }
}

/* ============================================================
   WATCH MODAL
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

body.watch-open { overflow: hidden; }

.watch-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
}
.watch-modal[hidden] { display: none; }

.watch-backdrop {
  position: absolute;
  inset: 0;
  background: #0A0A0A;
  opacity: 0;
  transition: opacity 250ms ease;
}

.watch-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 250ms ease, transform 250ms ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.watch-modal.is-open .watch-backdrop { opacity: 1; }
.watch-modal.is-open .watch-shell { opacity: 1; transform: scale(1); }

.watch-topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 3vw, 32px);
  background: linear-gradient(180deg, rgba(10,10,10,0.92), rgba(10,10,10,0));
}

.watch-context {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
}

.watch-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font: inherit;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.watch-close:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}
.watch-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.watch-stage {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(8px, 1.5vw, 16px) clamp(20px, 3vw, 32px) clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 28px);
}

.watch-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.watch-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.watch-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: opacity 200ms ease;
}
.watch-caption.is-swapping { opacity: 0; }
.watch-eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.watch-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.2;
}
.watch-tagline {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.watch-rail-wrap {
  margin: 0 calc(-1 * clamp(20px, 3vw, 32px));
  padding: 4px 0;
}
.watch-rail {
  display: flex;
  gap: 12px;
  padding: 0 clamp(20px, 3vw, 32px);
  margin: 0;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.watch-rail::-webkit-scrollbar { height: 8px; }
.watch-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.watch-rail::-webkit-scrollbar-track { background: transparent; }

.watch-thumb {
  flex: 0 0 auto;
  width: 240px;
  height: 135px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #111;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: #fff;
  transition: transform 200ms ease, filter 200ms ease, border-color 200ms ease;
  scroll-snap-align: start;
}
.watch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.watch-thumb-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 10px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  text-align: left;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.78));
}
.watch-thumb:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}
.watch-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.watch-thumb.is-active {
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .watch-topbar { padding: 14px 18px; }
  .watch-stage { padding: 8px 18px 40px; gap: 18px; }
  .watch-title { font-size: 20px; }
  .watch-eyebrow { font-size: 11px; }
  .watch-tagline { font-size: 14px; }
  .watch-thumb { width: 200px; height: 112px; }
  .watch-close { padding: 6px 12px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .watch-backdrop, .watch-shell { transition: none; }
  .watch-shell { transform: none; }
}

/* ============================================================
   Small-screen tuning
   ============================================================ */
@media (max-width: 640px) {
  .moment { padding: 64px var(--pad-x); }
  .moment-headline--hero { font-size: clamp(36px, 9vw, 44px); }
  .moment-headline { font-size: clamp(32px, 8vw, 40px); }
  .moment-subhead { font-size: 18px; }
  .moment-links { gap: 18px; }
  .text-link { font-size: 16px; }
  .contact-links { font-size: 16px; gap: 10px; }
}

/* ============================================================
   ORIGIN TEASER — homepage block between hero and App
   ============================================================ */
.moment--origin {
  background: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: center;
}

.origin-text {
  max-width: 640px;
  margin: 0 auto;
}

.origin-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  font-style: normal;
}

.origin-body {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 auto 18px;
  max-width: 640px;
}
.origin-body:last-of-type { margin-bottom: 28px; }

.origin-link-wrap {
  margin: 28px 0 0;
}

/* Text-chevron link — accent red, no underline, hover underline */
.link-chevron {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  font-style: normal;
  white-space: nowrap;
}
.link-chevron:hover { text-decoration: underline; }
.link-chevron:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Current-page nav indicator */
.site-header nav a.nav-current {
  color: var(--accent);
  font-weight: 600;
}
.site-header nav a.nav-current:hover {
  color: var(--accent);
  opacity: 0.8;
}

@media (max-width: 640px) {
  .moment--origin { padding: 72px var(--pad-x); }
  .origin-headline { font-size: clamp(32px, 8vw, 40px); }
  .origin-body { font-size: 17px; }
}

/* ============================================================
   /why page
   ============================================================ */
.why-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.why-hero {
  background: var(--paper-2);
  padding: clamp(96px, 14vw, 180px) var(--pad-x) clamp(80px, 12vw, 140px);
  text-align: center;
}
.why-eyebrow {
  margin-bottom: 22px;
}
.why-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 880px;
  font-style: normal;
}
.why-lead {
  font-family: var(--font-body);
  font-size: clamp(19px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 auto;
  max-width: 640px;
  font-weight: 400;
}

.why-section {
  padding: clamp(80px, 14vw, 180px) var(--pad-x);
  text-align: center;
}
.why-section--paper  { background: var(--paper); }
.why-section--paper2 { background: var(--paper-2); }

.why-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 auto 40px;
  max-width: 800px;
  font-style: normal;
}

.why-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.why-body p {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 auto 20px;
  max-width: 640px;
  font-weight: 400;
  letter-spacing: -0.003em;
}
.why-body p:last-child { margin-bottom: 0; }

/* Pillars — vertical editorial list */
.why-pillars {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
  text-align: center;
}
.why-pillar { }
.why-pillar-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-style: normal;
}
.why-pillar-tagline {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.why-pillar-body {
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 560px;
  letter-spacing: -0.003em;
}

.why-closing {
  margin: clamp(48px, 6vw, 72px) auto 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 640px;
  letter-spacing: -0.005em;
}

.why-kicker {
  margin: 36px auto 0;
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  max-width: 560px;
  letter-spacing: -0.01em;
}

.why-signoff {
  padding: clamp(64px, 9vw, 112px) var(--pad-x) clamp(24px, 4vw, 40px);
  background: var(--paper);
  text-align: center;
}
.why-signoff-name {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.why-signoff-place {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}

.why-back {
  padding: clamp(24px, 4vw, 40px) var(--pad-x) clamp(80px, 10vw, 120px);
  background: var(--paper);
  text-align: center;
}

/* data-reveal — quiet fade, same rhythm as .reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 800ms ease, transform 800ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 640px) {
  .why-hero { padding: 72px var(--pad-x) 56px; }
  .why-hero-title { font-size: clamp(34px, 9vw, 44px); }
  .why-lead { font-size: 18px; }
  .why-section { padding: 72px var(--pad-x); }
  .why-section-title { font-size: clamp(28px, 8vw, 36px); margin-bottom: 28px; }
  .why-body p { font-size: 17px; }
  .why-pillar-name { font-size: 22px; }
  .why-closing { font-size: 17px; }
  .why-kicker { font-size: 19px; }
}

/* ============================================================
   SLATE STRIP (homepage) + /shows page shared bits
   ============================================================ */
.slate-strip {
  background: var(--paper-2);
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  text-align: center;
}
.slate-strip .moment-text { margin-bottom: clamp(40px, 5vw, 60px); }

.slate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 980px) {
  .slate-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .slate-grid { grid-template-columns: 1fr; gap: 28px; }
}

.slate-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: transform 240ms ease, opacity 240ms ease;
}
.slate-card:hover { text-decoration: none; transform: translateY(-2px); }
.slate-card:hover .slate-poster img { filter: brightness(1.04); }

.slate-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  border: 1px solid rgba(0,0,0,0.06);
  margin: 0 0 16px;
}
.slate-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 240ms ease;
}

.slate-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.slate-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.slate-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.slate-tagline {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-mute);
  letter-spacing: -0.003em;
}

.slate-strip-cta {
  margin: clamp(40px, 5vw, 56px) 0 0;
  text-align: center;
}

/* ============================================================
   SHOWS PAGE — alternating two-column entries
   ============================================================ */
.shows-hero {
  background: #F3EBE0; /* studios sand */
  padding: clamp(96px, 14vw, 180px) var(--pad-x) clamp(72px, 10vw, 120px);
  text-align: center;
}

.show-entry {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  background: var(--paper);
}
.show-entry--alt { background: var(--paper-2); }

.show-entry-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.show-entry--flip .show-entry-inner {
  grid-template-areas: "text image";
}
.show-entry--flip .show-entry-text { grid-area: text; }
.show-entry--flip .show-entry-image { grid-area: image; }
.show-entry:not(.show-entry--flip) .show-entry-inner {
  grid-template-areas: "image text";
}
.show-entry:not(.show-entry--flip) .show-entry-text { grid-area: text; }
.show-entry:not(.show-entry--flip) .show-entry-image { grid-area: image; }

@media (max-width: 980px) {
  .show-entry .show-entry-inner,
  .show-entry--flip .show-entry-inner,
  .show-entry:not(.show-entry--flip) .show-entry-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text";
    gap: 32px;
  }
}

.show-entry-image {
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 460px;
  width: 100%;
  justify-self: center;
}
.show-entry-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.show-entry-text { text-align: left; }
@media (max-width: 980px) {
  .show-entry-text { text-align: center; }
  .show-entry-image { max-width: 380px; }
}

.show-entry-title {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
}
.show-entry-tagline {
  margin: 0 0 16px;
  font-size: clamp(19px, 1.5vw, 21px);
  line-height: 1.38;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.show-entry-desc {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 520px;
}
@media (max-width: 980px) {
  .show-entry-desc { margin-left: auto; margin-right: auto; }
}
.show-entry-watch {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 500;
}
.show-entry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
}
@media (max-width: 980px) {
  .show-entry-links { justify-content: center; }
}

.shows-bottom {
  padding: clamp(64px, 8vw, 96px) var(--pad-x);
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--hairline);
}

/* ============================================================
   HOUSES PAGE
   ============================================================ */
.houses-hero {
  background: #F7F1E6; /* houses cream */
  padding: clamp(96px, 14vw, 180px) var(--pad-x) clamp(72px, 10vw, 120px);
  text-align: center;
}

.houses-section {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  text-align: center;
}
.houses-section--paper  { background: var(--paper); }
.houses-section--paper2 { background: var(--paper-2); }

.houses-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 28px;
  max-width: 820px;
  color: var(--ink);
}
.houses-body {
  max-width: 640px;
  margin: 0 auto;
}
.houses-body p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 auto 18px;
  letter-spacing: -0.003em;
}
.houses-body p:last-child { margin-bottom: 0; }

.houses-included {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  text-align: left;
}
@media (max-width: 980px) {
  .houses-included { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .houses-included { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
.houses-item-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.houses-item-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-mute);
}

.houses-ladder {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
  counter-reset: ladder;
  text-align: left;
}
.houses-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: baseline;
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid var(--hairline);
}
.houses-step:last-child { border-bottom: 0; padding-bottom: 0; }
.houses-step-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.houses-step-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.houses-step-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 640px;
}
@media (max-width: 640px) {
  .houses-step {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .houses-step-body { margin-left: auto; margin-right: auto; }
}

.houses-cta {
  margin: clamp(40px, 5vw, 56px) 0 0;
}

/* ============================================================
   CREATORS PAGE
   ============================================================ */
.creators-hero {
  background: #FAF0EC; /* creators blush */
  padding: clamp(96px, 14vw, 180px) var(--pad-x) clamp(72px, 10vw, 120px);
  text-align: center;
}

.creators-section {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  text-align: center;
}
.creators-section--paper  { background: var(--paper); }
.creators-section--paper2 { background: var(--paper-2); }

.creators-tracks {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px);
  text-align: left;
}
@media (max-width: 640px) {
  .creators-tracks { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}
.creators-track {
  padding: clamp(24px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.creators-section--paper .creators-track { background: var(--paper-2); }
.creators-track-name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.creators-track-sub {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.creators-track-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

.creators-values {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  text-align: left;
}
@media (max-width: 980px) {
  .creators-values { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
.creators-value-name {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}
.creators-value-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 320px;
}
@media (max-width: 980px) {
  .creators-value-body { margin-left: auto; margin-right: auto; }
}

.creators-cta {
  margin: clamp(40px, 5vw, 56px) 0 0;
}
.creators-contact {
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  font-size: 15px;
  color: var(--ink-mute);
}

/* Generic page-section eyebrow alignment inside hero */
.page-hero-eyebrow {
  margin: 0 0 22px;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) var(--pad-x) clamp(48px, 6vw, 80px);
  text-align: center;
}
.careers-hero .moment-text { max-width: 820px; margin: 0 auto; }

.careers-roles {
  background: var(--paper-2);
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
}
.careers-roles > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 36px;
  text-align: center;
  color: var(--ink);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  justify-items: stretch;
}
.role-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.role-card:hover {
  border-color: rgba(0,0,0,0.18);
}
.role-dept {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  font-weight: 500;
}
.role-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 0;
  line-height: 1.2;
}
.role-meta {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
}
.role-blurb {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 8px 0 0;
  flex: 1;
}
.role-apply {
  margin: 14px 0 0;
}
.role-apply .text-link { font-size: 16px; }

.careers-values {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) var(--pad-x);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
}
.value-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.value-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

.careers-how {
  background: var(--paper-2);
  padding: clamp(64px, 8vw, 96px) var(--pad-x);
  text-align: center;
}
.careers-how-body {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.careers-how .moment-links { justify-content: center; }

@media (max-width: 980px) {
  .role-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 520px; gap: 28px; text-align: center; }
}
@media (max-width: 640px) {
  .role-card { padding: 22px 22px 20px; }
  .role-title { font-size: 20px; }
}

/* ============================================================
   DARK MOMENT — Apple Vision Pro / Pro Display XDR style
   Used on Studios section (homepage) and Shows hero
   ============================================================ */
.moment--dark {
  background: #0D0D0E;
  color: #F5F5F7;
}
.moment--dark .eyebrow { color: rgba(245, 245, 247, 0.6); }
.moment--dark .moment-headline,
.moment--dark .section-title { color: #F5F5F7; }
.moment--dark .moment-subhead { color: rgba(245, 245, 247, 0.78); }
.moment--dark .text-link { color: var(--accent); }
.moment--dark .text-link:hover { color: #FF6B4A; }
.moment--dark .moment-image img {
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
/* When a dark moment butts up against a light section, no harsh line */
.moment--dark + .slate-strip,
.moment--dark + .moment {
  border-top: none;
}

/* Shows hero — dark cinematic variant */
.shows-hero--dark {
  background: #0D0D0E;
  color: #F5F5F7;
  padding: clamp(120px, 16vw, 200px) var(--pad-x) clamp(96px, 12vw, 140px);
}
.shows-hero--dark .eyebrow { color: rgba(245, 245, 247, 0.6); }
.shows-hero--dark .moment-headline { color: #F5F5F7; }
.shows-hero--dark .moment-subhead { color: rgba(245, 245, 247, 0.78); }

/* When dark hero meets a light show-entry below, no harsh line */
.shows-hero--dark + .show-entry { border-top: none; }

/* ============ ECOSYSTEM PAGE ============ */
.eco-hero {
  padding: clamp(96px, 12vw, 160px) var(--pad-x) clamp(48px, 6vw, 80px);
  background: var(--paper);
  text-align: center;
}
.eco-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.eco-hero-eyebrow {
  margin-bottom: 24px;
}
.eco-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 auto 32px;
  color: var(--ink);
  max-width: 22ch;
}
.eco-hero-lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 56ch;
  margin: 0 auto 72px;
}
.eco-stage--hero {
  margin: 0 auto;
}

/* Pillar sections */
.eco-pillar {
  padding: clamp(96px, 11vw, 160px) var(--pad-x);
  border-top: 1px solid var(--hairline);
}
.eco-pillar--paper { background: var(--paper); }
.eco-pillar--paper2 { background: var(--paper-2); }

.eco-pillar-inner {
  max-width: 760px;
  margin: 0 auto;
}
.eco-pillar-head {
  text-align: center;
  margin-bottom: 64px;
}
.eco-pillar-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.eco-pillar-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.eco-pillar-title {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.eco-pillar-lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0 auto;
  max-width: 52ch;
}
.eco-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.eco-pillar-block {
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}
.eco-pillar-h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.eco-pillar-block p {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 64ch;
}
.eco-pillar-block p:last-child { margin-bottom: 0; }

/* Verb emphasis (no italic — uses weight + color instead) */
.eco-q {
  font-weight: 600;
  color: var(--ink);
}
.eco-q--accent {
  color: var(--accent);
}

/* Loop closer */
.eco-loop {
  padding: clamp(96px, 11vw, 160px) var(--pad-x);
  border-top: 1px solid var(--hairline);
  background: var(--paper);
  text-align: center;
}
.eco-loop .eco-pillar-num {
  font-size: 28px;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 12px;
}
.eco-loop-body {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 56ch;
}
.eco-loop-body:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .eco-pillar-head { margin-bottom: 40px; }
  .eco-pillar-body { gap: 32px; }
  .eco-pillar-block { padding-top: 24px; }
}

/* ============================================================
   EDITORIAL IMAGERY (hero + inline + pillar)
   Added for image rollout across Houses, Creators, Careers, Why
   ============================================================ */

/* Hero image sits directly under the hero text section.
   Full-bleed width, capped height. Quiet, editorial. */
.page-hero-media {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  background: var(--paper);
}
.page-hero-media img {
  display: block;
  width: 100%;
  height: clamp(280px, 52vw, 560px);
  object-fit: cover;
  object-position: center;
}

/* Inline editorial figure inside a section. Centered, framed by section padding. */
.editorial-figure {
  max-width: 1100px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  overflow: hidden;
  border-radius: 4px;
}
.editorial-figure--narrow { max-width: 820px; }
.editorial-figure img {
  display: block;
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  object-fit: cover;
  object-position: center;
}

/* Spacer for figures that sit between sections (no padding override needed) */
.editorial-band {
  padding: 0 var(--pad-x);
  background: var(--paper);
}
.editorial-band--paper2 { background: var(--paper-2); }
.editorial-band .editorial-figure {
  margin-top: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* Pillar media — small, square-ish editorial still beside a pillar heading */
.why-pillar-media {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 4px;
}
.why-pillar-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .page-hero-media img { height: 260px; }
  .editorial-figure img { height: 240px; }
  .why-pillar-media img { height: 180px; }
}

/* Small credit line under the teaser subhead. Quiet, italic-free, low contrast. */
.teaser-credit {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Every Side of the Room — coverage grid of restaurant verticals.
   Live tiles use looping muted video; coming tiles show a quiet placeholder. */
.room-sides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 36px auto 0;
}
.room-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.room-side-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}
.room-side-media video,
.room-side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-side--coming .room-side-media {
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-side--coming .room-side-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.04) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.04) 50%, rgba(0,0,0,0.04) 75%, transparent 75%);
  background-size: 14px 14px;
  pointer-events: none;
}
.room-side-body {
  padding: 4px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.room-side-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.room-side-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.room-side-body p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}
.room-side--coming .room-side-title { color: var(--ink-mute); }

@media (max-width: 960px) {
  .room-sides { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .room-sides { grid-template-columns: 1fr; gap: 16px; }
  .room-side-media { aspect-ratio: 16 / 9; }
}

/* ============ NETWORK STRIP — launch announcement ============ */
/* Network strip — launch announcement */
    .network-strip {
      padding: clamp(8px, 1.5vw, 24px) clamp(20px, 3vw, 48px) clamp(40px, 5vw, 72px);
      background: var(--paper);
    }
    .network-strip-link {
      position: relative;
      display: block;
      max-width: 1440px;
      margin: 0 auto;
      height: clamp(320px, 42vh, 440px);
      border-radius: 6px;
      overflow: hidden;
      background: #0e0905;
      text-decoration: none;
      transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
    }
    .network-strip-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      filter: brightness(0.62) saturate(1.05);
      animation: networkKenBurns 24s ease-in-out infinite alternate;
      transform-origin: center center;
      will-change: transform;
    }
    @keyframes networkKenBurns {
      0%   { transform: scale(1.0)  translate(0, 0); }
      100% { transform: scale(1.08) translate(-1.5%, 1%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .network-strip-img { animation: none; transform: scale(1.02); }
    }
    .network-strip-overlay {
      position: absolute; inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: clamp(20px, 3vw, 36px);
      padding: clamp(32px, 4vw, 56px) clamp(28px, 5vw, 80px);
      background:
        linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.48) 55%, rgba(0,0,0,0.55) 100%);
      z-index: 2;
    }
    .network-strip-copy {
      display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
      max-width: 640px;
    }
    .network-strip-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-display);
      font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
      color: #FAFAF7;
      padding: 7px 12px 7px 10px;
      border-radius: 999px;
      background: rgba(220, 80, 36, 0.92);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25), 0 8px 22px rgba(180, 50, 20, 0.45);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .network-strip-badge::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg,
        transparent 30%,
        rgba(255,255,255,0.32) 50%,
        transparent 70%);
      transform: translateX(-120%);
      animation: networkBadgeShimmer 3.2s ease-in-out infinite;
      pointer-events: none;
      z-index: 1;
    }
    .network-strip-badge > * { position: relative; z-index: 2; }
    @keyframes networkBadgeShimmer {
      0%, 55% { transform: translateX(-120%); }
      100%    { transform: translateX(120%); }
    }
    .network-strip-dot {
      width: 7px; height: 7px; border-radius: 999px;
      background: #FAFAF7;
      box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
      animation: networkBroadcast 1.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    @keyframes networkBroadcast {
      0%, 100% { opacity: 0.55; transform: scale(0.75); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
      50%      { opacity: 1;    transform: scale(1.25); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .network-strip-badge::before { animation: none; opacity: 0; }
      .network-strip-dot { animation: none; opacity: 0.9; }
    }
    .network-strip-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.4vw, 56px);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.0;
      color: #FAFAF7;
      margin: 4px 0 0;
      text-shadow: 0 1px 16px rgba(0,0,0,0.6);
    }
    .network-strip-sub {
      font-family: var(--font-display);
      font-size: clamp(14px, 1.1vw, 16px);
      line-height: 1.5;
      color: rgba(255,255,255,0.9);
      margin: 4px 0 0;
      text-shadow: 0 1px 8px rgba(0,0,0,0.55);
      max-width: 58ch;
    }
    .network-strip-cta {
      font-family: var(--font-display);
      font-size: 13px; font-weight: 600;
      letter-spacing: 0.02em;
      color: #F4A261;
      margin-top: 6px;
      text-shadow: 0 1px 8px rgba(0,0,0,0.55);
    }
    /* Footnote line */
    .network-strip-footnote {
      margin-top: auto;
      padding-top: clamp(16px, 2.5vw, 28px);
      border-top: 1px solid rgba(255,255,255,0.18);
      max-width: 640px;
    }
    .network-strip-footnote-line {
      font-family: var(--font-display);
      font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(255,255,255,0.62);
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    @media (max-width: 860px) {
      .network-strip-link { height: auto; min-height: 380px; }
      .network-strip-overlay {
        padding: 28px 24px;
        gap: 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
      }
      .network-strip-footnote { padding-top: 18px; }
      .network-strip-footnote-line { font-size: 10px; letter-spacing: 0.14em; }
    }

/* ============================================================
   PRESS PAGE
   ============================================================ */
.press-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) var(--pad-x) clamp(48px, 6vw, 80px);
  text-align: center;
}
.press-hero-text { max-width: 820px; margin: 0 auto; }
.press-hero .moment-links { justify-content: center; gap: 28px; flex-wrap: wrap; }

.press-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) var(--pad-x);
}
.press-section + .press-section { border-top: 1px solid rgba(0,0,0,0.08); }

.press-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 28px;
  color: var(--ink);
}
.press-section-lede {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(29, 29, 31, 0.65);
  margin: 0 0 36px;
  max-width: 60ch;
}

/* ------- Fact sheet ------- */
.press-facts { max-width: 920px; }
.press-facts-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.press-fact {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: baseline;
}
.press-fact dt {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(29, 29, 31, 0.55);
  margin: 0;
}
.press-fact dd {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.press-fact dd a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
@media (max-width: 720px) {
  .press-fact { grid-template-columns: 1fr; gap: 4px; }
}

/* ------- Founder ------- */
.press-founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) {
  .press-founder-grid { grid-template-columns: 1fr; }
}
.press-founder-image {
  margin: 0;
}
.press-founder-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 24px 56px rgba(0,0,0,0.12);
}
.press-founder-image figcaption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(29, 29, 31, 0.55);
}
.press-bio-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(29, 29, 31, 0.5);
  margin: 28px 0 12px;
}
.press-bio-eyebrow:first-child { margin-top: 0; }
.press-bio {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 64ch;
}
.press-bio em { font-style: italic; }

/* ------- Downloads ------- */
.press-downloads-block { margin-bottom: 56px; }
.press-downloads-block:last-child { margin-bottom: 0; }
.press-downloads-label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(29, 29, 31, 0.55);
  margin: 0 0 18px;
}
.press-downloads-list {
  margin: 0; padding: 0; list-style: none;
}
.press-downloads-list li {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0;
}
.press-downloads-list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.press-downloads-list a {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.press-downloads-list a::after {
  content: '↓';
  font-size: 14px;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.press-downloads-list a:hover::after { transform: translateY(2px); }

/* Photos grid */
.press-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.press-photo {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.press-photo:hover { transform: translateY(-2px); }
.press-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}
.press-photo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.press-photo-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--ink);
}
.press-photo-detail {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(29, 29, 31, 0.55);
}

/* Logos grid */
.press-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.press-logo {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border-radius: 6px;
  padding: 32px 24px 16px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.06);
}
.press-logo:hover { transform: translateY(-2px); }
.press-logo--light { background: var(--paper-2, #F2F0EA); }
.press-logo--dark  { background: #1D1D1F; color: rgba(255,255,255,0.7); }
.press-logo img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 16px;
}
.press-logo--dark .press-photo-name { color: #FAFAF7; }
.press-logo--dark .press-photo-detail { color: rgba(255,255,255,0.5); }

/* Boilerplate */
.press-boilerplate {
  margin: 0;
  padding: 24px 28px;
  background: var(--paper-2, #F2F0EA);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  max-width: 72ch;
}
.press-boilerplate p {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

/* Contact section */
.press-section--contact { text-align: left; padding-bottom: clamp(72px, 10vw, 128px); }

/* ============================================================
   NAV SUBMENU (Ecosystem dropdown)
   ============================================================ */
.has-submenu { position: relative; }
.has-submenu > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  transform: translateY(-1px);
  opacity: 0.55;
  transition: transform 180ms ease;
}
.has-submenu:hover > a::after,
.has-submenu:focus-within > a::after {
  transform: translateY(-1px) rotate(180deg);
  opacity: 0.9;
}
.site-header nav ul.submenu,
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 4px);
  margin: 0;
  padding: 8px;
  list-style: none;
  display: block;
  background: #ffffff;
  border: 1px solid var(--rule, rgba(0,0,0,0.08));
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 50;
}
.submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid var(--rule, rgba(0,0,0,0.08));
  border-top: 1px solid var(--rule, rgba(0,0,0,0.08));
  transform: translateX(-50%) rotate(45deg);
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 8px);
}
.submenu li { margin: 0; padding: 0; display: block; }
.submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink, #1d1d1f);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}
.submenu li a:hover {
  background: var(--paper-2, #F2F0EA);
  color: var(--accent, #D87B2A);
}

/* ============================================================
   CAREERS — tabs
   ============================================================ */
.careers-tabs-wrap {
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: clamp(40px, 6vw, 72px) auto clamp(32px, 4vw, 48px);
}
.careers-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: var(--paper-2, #F2F0EA);
  border-radius: 16px;
}
.careers-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  font-family: inherit;
  color: var(--ink, #1d1d1f);
}
.careers-tab:hover {
  background: rgba(255, 255, 255, 0.55);
}
.careers-tab.is-active {
  background: #ffffff;
  border-color: var(--rule, rgba(0,0,0,0.08));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 6px 16px rgba(0, 0, 0, 0.05);
}
.careers-tab-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #D87B2A);
}
.careers-tab-label {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.careers-tab-sub {
  font-size: 13px;
  color: var(--ink-soft, #6e6e73);
  font-weight: 500;
}
@media (max-width: 700px) {
  .careers-tabs { grid-template-columns: 1fr; gap: 6px; }
  .careers-tab { padding: 14px 16px; }
}

/* ============================================================
   CAREERS — panels
   ============================================================ */
.careers-panel { display: none; }
.careers-panel.is-active { display: block; }
.panel-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) var(--pad-x) clamp(80px, 10vw, 128px);
}
.panel-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.panel-head .eyebrow { color: var(--accent, #D87B2A); margin-bottom: 16px; }
.panel-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--ink, #1d1d1f);
}
.panel-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft, #515154);
  margin: 0;
  max-width: 64ch;
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(56px, 7vw, 88px);
}
@media (max-width: 800px) {
  .panel-grid { grid-template-columns: 1fr; }
}
.panel-h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink, #1d1d1f);
}
.panel-h3--form { margin-top: 0; margin-bottom: 28px; }
.panel-roles-list,
.panel-deal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.panel-roles-list li,
.panel-deal-list li {
  padding: 16px 0;
  border-top: 1px solid var(--rule, rgba(0,0,0,0.08));
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft, #515154);
}
.panel-roles-list li:last-child,
.panel-deal-list li:last-child {
  border-bottom: 1px solid var(--rule, rgba(0,0,0,0.08));
}
.panel-roles-list strong,
.panel-deal-list strong {
  display: block;
  font-weight: 600;
  color: var(--ink, #1d1d1f);
  margin-bottom: 4px;
}

/* ============================================================
   CAREERS — form
   ============================================================ */
.careers-form {
  max-width: 760px;
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px);
  background: #ffffff;
  border: 1px solid var(--rule, rgba(0,0,0,0.08));
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.04);
}
.careers-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.careers-form .form-row-split {
  display: flex;
  gap: 16px;
}
.careers-form .form-row-split > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 640px) {
  .careers-form .form-row-split { flex-direction: column; }
}
.careers-form label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink, #1d1d1f);
  letter-spacing: -0.005em;
}
.careers-form input[type="text"],
.careers-form input[type="email"],
.careers-form input[type="tel"],
.careers-form input[type="url"],
.careers-form select,
.careers-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink, #1d1d1f);
  background: var(--paper, #FAFAF7);
  border: 1px solid var(--rule, rgba(0,0,0,0.08));
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 160ms ease, background 160ms ease;
}
.careers-form input:focus,
.careers-form select:focus,
.careers-form textarea:focus {
  outline: none;
  border-color: var(--accent, #D87B2A);
  background: #ffffff;
}
.careers-form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.careers-form .form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.careers-form .form-fieldset legend {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink, #1d1d1f);
  margin: 0 0 10px;
  padding: 0;
}
.careers-form .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}
.careers-form .check-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--rule, rgba(0,0,0,0.08));
  border-radius: 999px;
  background: var(--paper, #FAFAF7);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink, #1d1d1f);
  transition: border-color 160ms ease, background 160ms ease;
}
.careers-form .check-pill:hover { border-color: var(--accent, #D87B2A); }
.careers-form .check-pill input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent, #D87B2A);
  flex-shrink: 0;
}
.careers-form .check-pill:has(input:checked) {
  border-color: var(--accent, #D87B2A);
  background: rgba(216, 123, 42, 0.1);
}
.careers-form .check-pill--inline {
  align-self: flex-start;
  margin-top: 4px;
}
.form-submit {
  appearance: none;
  border: none;
  background: var(--ink, #1d1d1f);
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 8px;
  justify-self: start;
  transition: background 160ms ease, transform 160ms ease;
}
.form-submit:hover { background: #000; }
.form-submit:active { transform: scale(0.98); }
.form-submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.form-helper {
  font-size: 13px;
  color: var(--ink-soft, #6e6e73);
  margin: 0;
  line-height: 1.5;
}
.form-status {
  font-size: 14px;
  margin: 0;
  min-height: 1.2em;
}
.form-status[data-state="error"] { color: #c0392b; }
.form-status[data-state="success"] { color: #1d6b3a; }
.form-success {
  max-width: 760px;
  padding: clamp(36px, 5vw, 56px);
  background: #ffffff;
  border: 1px solid var(--rule, rgba(0,0,0,0.08));
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 8px 24px rgba(0, 0, 0, 0.04);
}
.form-success .eyebrow { color: var(--accent, #D87B2A); margin-bottom: 16px; }
.form-success .panel-title { margin-bottom: 12px; }

/* ============================================================
   ECOSYSTEM SUB-PAGES (Studios, Network, App)
   ============================================================ */
.sub-hero {
  padding: clamp(80px, 12vw, 144px) var(--pad-x) clamp(40px, 6vw, 72px);
}
.sub-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.sub-hero-eyebrow { color: var(--accent, #D87B2A); margin-bottom: 20px; }
.sub-hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 24px;
  color: var(--ink, #1d1d1f);
}
.sub-hero-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft, #515154);
  margin: 0 0 32px;
  max-width: 64ch;
}
.sub-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.sub-hero-note {
  font-size: 13px;
  color: var(--ink-soft, #6e6e73);
  margin: 16px 0 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink, #1d1d1f);
  color: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}
.btn-primary:hover { background: #000; }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--ink, #1d1d1f);
  border: 1px solid var(--rule, rgba(0,0,0,0.16));
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.btn-secondary:hover {
  border-color: var(--ink, #1d1d1f);
  background: rgba(0, 0, 0, 0.03);
}

.sub-section {
  padding: clamp(40px, 6vw, 80px) var(--pad-x);
}
.sub-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}
@media (max-width: 800px) {
  .sub-grid { grid-template-columns: 1fr; }
}
.sub-h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink, #1d1d1f);
}
.sub-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft, #515154);
  margin: 0 0 16px;
  max-width: 56ch;
}
.sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.sub-list li {
  padding: 16px 0;
  border-top: 1px solid var(--rule, rgba(0,0,0,0.08));
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft, #515154);
}
.sub-list li:last-child {
  border-bottom: 1px solid var(--rule, rgba(0,0,0,0.08));
}
.sub-list strong {
  display: block;
  font-weight: 600;
  color: var(--ink, #1d1d1f);
  margin-bottom: 4px;
}
.sub-cta-inline {
  margin: 24px 0 0;
  font-size: 15px;
}
.sub-lead-soft {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft, #515154);
  margin: 8px 0 0;
}
.sub-hero-figure {
  margin: 0 auto;
  max-width: 980px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.08);
}
.sub-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.sub-cta-strip {
  max-width: var(--max);
  margin: clamp(60px, 8vw, 100px) auto clamp(80px, 10vw, 128px);
  padding: clamp(32px, 4vw, 56px);
  background: var(--paper-2, #F2F0EA);
  border-radius: 24px;
}
@media (max-width: 1240px) {
  .sub-cta-strip { margin-left: var(--pad-x); margin-right: var(--pad-x); }
}
.sub-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sub-cta-inner > div { flex: 1; min-width: 280px; }
.sub-cta-inner .eyebrow { color: var(--accent, #D87B2A); margin-bottom: 12px; }
.sub-cta-inner .sub-h2 { margin-bottom: 8px; }
