/* ──────────────────────────────────────────────────────────────────────────
   The Angel Group — v2
   No mono. No serif. No eyebrows. No roman numerals.
   Type: Clash Display + Cabinet Grotesk (Fontshare) — variable, free.
   System: bento grids, brand-color accents, motion-forward.
   ────────────────────────────────────────────────────────────────────────── */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&f[]=cabinet-grotesk@100,200,300,400,500,700,800,900&display=swap');

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

:root {
  --navy:        #141f48;
  --navy-deep:   #0c1430;
  --navy-mid:    #1c2a5e;
  --gold:        #9d7e2d;
  --gold-soft:   rgba(157, 126, 45, 0.12);
  --cream:       #faf6ec;
  --cream-warm:  #f0eadb;
  --stone:       #d9d3c1;
  --ink:         #0a0e1f;
  --rule:        rgba(244, 241, 232, 0.10);

  /* portfolio brand accent colors — for hero + featured tiles */
  --c-poppi:        #ff8aa6;
  --c-painterland:  #cfe8a3;
  --c-doughlicious: #ffd9b0;
  --c-olipop:       #f4b6c1;
  --c-siete:        #c84a2e;
  --c-aurabora:     #b3dde8;
  --c-bawi:         #ff9966;

  --display: 'Clash Display', 'Helvetica Neue', system-ui, sans-serif;
  --body:    'Cabinet Grotesk', 'Helvetica Neue', system-ui, sans-serif;

  --pad-x: clamp(20px, 4vw, 56px);
  --pad-x-lg: clamp(32px, 6vw, 88px);
}

html { scroll-behavior: smooth; }

html, body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh; min-height: 100dvh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ── Type system ──────────────────────────────────────────────────────── */
.display-xl {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.display-lg {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display-sm {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.body-lg {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.body { font-family: var(--body); font-size: 17px; line-height: 1.55; }
.label { /* used in lieu of mono labels — same family, just heavier weight */
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.003em;
}
.label-soft {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(244, 241, 232, 0.55);
}

/* ── Topbar ──────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  background: rgba(20, 31, 72, 0.65);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: background 0.3s, padding 0.3s;
}
.topbar.scrolled {
  background: rgba(12, 20, 48, 0.92);
  padding: 12px var(--pad-x);
}
.topbar-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.topbar-mark img { width: 32px; height: 32px; }
@media (max-width: 640px) {
  .topbar-mark span { display: none; }
}
.topbar-nav {
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
}
.topbar-nav a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.topbar-nav a:hover { opacity: 1; }
.topbar-nav a:not(.btn)::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.topbar-nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.topbar-nav .btn {
  background: var(--cream);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}
.topbar-nav .btn:hover { background: var(--gold); color: var(--cream); transform: translateY(-1px); }
.topbar-nav .btn.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,241,232,0.3);
}
.topbar-nav .btn.btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
.topbar-nav a.current::after { transform: scaleX(1); transform-origin: left; }
.topbar-nav a.btn.current { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.topbar-nav a.btn.btn-ghost.current { background: var(--cream); color: var(--navy); border-color: var(--cream); }

@media (max-width: 720px) {
  .topbar-nav a:not(.btn) { display: none; }
  .topbar-nav .btn { padding: 8px 14px; font-size: 14px; display: none; }
}

/* ── Hamburger + drawer (mobile) ──────────────────────────────────── */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
  margin-left: auto; margin-right: auto;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 720px) {
  .hamburger { display: flex; }
}

.drawer {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--navy-deep);
  padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,241,232,0.08);
  transition: color 0.2s, padding-left 0.3s;
}
.drawer a:hover, .drawer a.current {
  color: var(--gold);
  padding-left: 12px;
}
.drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(244,241,232,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer-foot a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: rgba(244,241,232,0.55);
  border: 0;
  padding: 4px 0;
}
.drawer-foot a:hover { color: var(--gold); padding-left: 0; }
body.locked { overflow: hidden; }

/* ── HERO BENTO ──────────────────────────────────────────────────────── */
.hero {
  padding: clamp(96px, 14vh, 160px) var(--pad-x) clamp(48px, 8vw, 96px);
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
}
.bento {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(140px, auto);
  gap: 12px;
}
@media (min-width: 720px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 14px;
  }
}
@media (min-width: 1100px) {
  .bento {
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
  }
}

.tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  background: var(--navy-mid);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (min-width: 1100px) { .tile { padding: 32px; border-radius: 28px; } }
.tile:hover { transform: translateY(-4px); }

/* Hero tile sizes */
.tile-feature {                          /* Poppi feature, big top-left */
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ff8aa6 0%, #ff5b85 60%, #ff3a6e 100%);
  color: var(--ink);
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}
@media (min-width: 720px) {
  .tile-feature { grid-column: span 4; grid-row: span 2; min-height: 0; }
}
@media (max-width: 480px) {
  .tile-feature { grid-template-columns: 1fr; min-height: 540px; }
}
.tile-feature .feature-text {
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  z-index: 2;
}
.tile-feature .feature-photo {
  position: relative;
  background-image: url('/img/brands/poppi-can.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: drop-shadow(0 24px 40px rgba(180, 30, 70, 0.45));
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin: 12px 0 -8px 0;
}
.tile-feature:hover .feature-photo { transform: translateY(-8px) rotate(-2deg); }
.tile-feature::before {
  content: '';
  position: absolute;
  top: 20%; right: 30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.tile-feature .feature-tag {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--c-poppi);
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
}
.tile-feature .feature-line {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
}
.tile-feature .feature-foot {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.tile-feature .feature-foot strong { font-weight: 800; }

.tile-stat {
  background: var(--cream);
  color: var(--navy);
}
.tile-stat .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.tile-stat .label {
  margin-top: auto;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.6;
}
@media (min-width: 720px) {
  .tile-stat-1 { grid-column: span 2; }
  .tile-stat-2 { grid-column: span 2; }
}

.tile-photo {
  background-color: var(--navy-mid);
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
}
.tile-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,31,72,0.85) 100%);
  z-index: 1;
}
.tile-photo .label-stack { position: relative; z-index: 2; margin-top: auto; }
.tile-photo .brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.tile-photo .brand-meta {
  margin-top: 6px;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 720px) {
  .tile-photo-1 { grid-column: span 2; }
  .tile-photo-2 { grid-column: span 2; }
  .tile-photo-3 { grid-column: span 2; }
}

.tile-cta {
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.2s;
}
.tile-cta:hover { background: var(--cream); }
.tile-cta .arrow {
  width: 44px; height: 44px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  align-self: flex-end;
  transition: transform 0.3s;
}
.tile-cta:hover .arrow { transform: rotate(-45deg); }
.tile-cta .cta-line {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 12ch;
}
@media (min-width: 720px) { .tile-cta { grid-column: span 2; } }

/* Hero intro tile (small text) */
.tile-intro {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--cream);
}
.tile-intro p {
  font-size: 15.5px; line-height: 1.45;
  color: rgba(244,241,232,0.78);
}
.tile-intro .label-soft { margin-bottom: 10px; }
@media (min-width: 720px) { .tile-intro { grid-column: span 2; } }

/* ── Section frame ─────────────────────────────────────────────────── */
section { padding: clamp(72px, 10vw, 144px) var(--pad-x); }
.shell { max-width: 1440px; margin: 0 auto; }

.section-h {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
@media (min-width: 880px) {
  .section-h { grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; }
}
.section-h h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.section-h h2 em {
  font-style: normal;
  color: var(--gold);
}
.section-h p {
  font-size: clamp(15.5px, 1.5vw, 18.5px);
  color: rgba(244,241,232,0.65);
  max-width: 44ch;
  line-height: 1.55;
}

/* ── WHO + WHY ─────────────────────────────────────────────────────── */
.intro-band {
  background: var(--cream);
  color: var(--navy);
}
.intro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 880px) { .intro-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.intro-card {
  background: var(--cream-warm);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
}
.intro-card:hover { transform: translateY(-6px); background: #ebe4d2; }
.intro-card .marker {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.intro-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
.intro-card p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(20,31,72,0.78);
  flex: 1;
}
.intro-card .pillrow {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px;
}
.intro-card .pill {
  background: var(--navy);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
}

/* ── PORTFOLIO ───────────────────────────────────────────────────── */
.portfolio { background: var(--navy-deep); }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.chip {
  background: rgba(244,241,232,0.06);
  color: var(--cream);
  border: 1px solid rgba(244,241,232,0.12);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.chip:hover { background: rgba(244,241,232,0.12); }
.chip.active {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px) { .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.brand-tile {
  position: relative;
  background: var(--cream-warm);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s, filter 0.4s;
}
.brand-tile.dim { opacity: 0.18; filter: saturate(0.3); transform: scale(0.96); pointer-events: none; }
.brand-tile:hover { transform: translateY(-4px); }
.brand-tile.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}
@media (max-width: 720px) {
  .brand-tile.featured { grid-column: span 2; grid-row: auto; aspect-ratio: 1.2; }
}
.brand-tile .img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 14%;
  transition: padding 0.5s;
}
.brand-tile.featured .img-wrap { padding: 18%; }
.brand-tile .img-wrap img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand-tile:hover .img-wrap img { transform: scale(1.06); }

.brand-tile .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 16px;
  background: linear-gradient(to top, rgba(20,31,72,0.92) 0%, rgba(20,31,72,0.65) 60%, transparent 100%);
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.brand-tile:hover .meta { opacity: 1; transform: translateY(0); }
.brand-tile .meta .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  line-height: 1.05;
}
.brand-tile .meta .meta-row {
  display: flex; gap: 8px; align-items: center;
  font-weight: 500;
  font-size: 12.5px;
  color: rgba(244,241,232,0.85);
}
.brand-tile .meta .cat-pill {
  background: var(--gold);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.005em;
}
.brand-tile .meta .outcome {
  margin-top: 4px;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--gold);
}

.brand-tile.featured .meta {
  background: linear-gradient(to top, rgba(20,31,72,0.95) 0%, rgba(20,31,72,0.6) 50%, transparent 100%);
  opacity: 1;
  transform: none;
  padding: 28px 32px;
  color: var(--cream) !important;
}
.brand-tile.featured .meta .name { font-size: clamp(28px, 3vw, 40px); color: var(--cream) !important; }
.brand-tile.featured .meta .outcome { font-size: 15px; color: var(--cream) !important; }
.brand-tile.featured .meta .meta-row span:not(.cat-pill) { color: var(--cream) !important; }
.brand-tile.featured .meta .cat-pill {
  background: var(--cream) !important;
  color: var(--navy) !important;
}

/* TYPE-LED tile — brand name is the visual hero, logo is small accent */
.brand-tile.type-tile {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px 22px 18px;
  position: relative;
}
.brand-tile.type-tile .img-wrap, .brand-tile.type-tile .meta { display: none; }
.brand-tile.type-tile .type-tile-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  max-width: 8ch;
  word-break: break-word;
  hyphens: auto;
  z-index: 2;
  position: relative;
}
.brand-tile.type-tile .type-tile-logo {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 22%;
  z-index: 1;
  pointer-events: none;
}
.brand-tile.type-tile .type-tile-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0.18;
  transform: rotate(-6deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s;
}
.brand-tile.type-tile:hover .type-tile-logo img {
  opacity: 0.55;
  transform: rotate(-3deg) scale(1.06);
}
.brand-tile.type-tile .type-tile-meta {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: -0.005em;
  z-index: 2;
  position: relative;
}

/* ── SUPERNATURAL ────────────────────────────────────────────────── */
.supernatural-band {
  background: var(--cream);
  color: var(--navy);
}
.super-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 880px) { .super-grid { grid-template-columns: 1.3fr 1fr; gap: 64px; } }

.super-content h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.super-content h2 em {
  font-style: normal;
  color: var(--gold);
}
.super-content p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(20,31,72,0.78);
  margin-bottom: 20px;
  max-width: 56ch;
}
.super-content .super-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  transition: all 0.2s;
}
.super-content .super-cta:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.super-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.super-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
}
.super-card .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.super-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.super-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.super-card li {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244,241,232,0.12);
}
.super-card li:last-child { border-bottom: none; }

/* ── PRESS (kinetic horizontal cards) ─────────────────────────── */
.press-band {
  background: var(--navy);
  overflow: hidden;
}
.press-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.press-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 22px 24px;
  background: rgba(244,241,232,0.04);
  border-radius: 20px;
  transition: background 0.3s, transform 0.3s, padding 0.3s;
  align-items: center;
}
@media (min-width: 720px) {
  .press-row {
    grid-template-columns: 1fr 4fr auto;
    gap: 32px;
    padding: 28px 32px;
  }
}
.press-row:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateX(8px);
}
.press-row:hover .press-arrow { background: var(--navy); color: var(--cream); }
.press-row:hover .press-outlet { color: var(--gold); }
.press-outlet {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gold);
  letter-spacing: -0.005em;
}
.press-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.press-arrow {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--navy);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s;
  justify-self: flex-end;
}

/* ── OPERATORS (managing partners) ────────────────────────────── */
.operators-band { background: var(--navy-deep); }
.partners-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .partners-row { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.partner-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 0.78;
  background: var(--navy-mid);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.partner-card:hover { transform: translateY(-8px); }
.partner-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  transition: filter 0.6s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.partner-card:hover img { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1.04); }
.partner-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 20, 48, 0.92) 100%);
  z-index: 1;
}
.partner-overlay {
  position: absolute; inset: auto 0 0 0;
  z-index: 2;
  padding: 28px;
  color: var(--cream);
}
.partner-overlay .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.partner-overlay .role {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
}
.partner-overlay .bio {
  font-size: 14px;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s, opacity 0.4s, margin-top 0.4s;
}
.partner-card:hover .partner-overlay .bio { max-height: 280px; opacity: 1; margin-top: 8px; }

/* ── TEAM ──────────────────────────────────────────────────────── */
.team-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
@media (min-width: 720px) { .team-band { grid-template-columns: 1fr 1fr; gap: 24px; } }
.team-tile {
  display: flex; gap: 16px; align-items: center;
  background: rgba(244,241,232,0.04);
  padding: 16px;
  border-radius: 16px;
  transition: background 0.3s;
}
.team-tile:hover { background: rgba(244,241,232,0.08); }
.team-tile .pic {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.team-tile .pic img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
}
.team-tile:hover .pic img { filter: grayscale(0); }
.team-tile .name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.team-tile .role {
  font-weight: 500;
  font-size: 13.5px;
  color: rgba(244,241,232,0.6);
}

/* ── NETWORK MOSAIC ───────────────────────────────────────────── */
.network-band {
  background: var(--navy);
  border-top: 1px solid var(--rule);
}
.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 32px;
}
@media (min-width: 720px) { .mosaic { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; } }

.member-card {
  position: relative;
  aspect-ratio: 1;
  background: var(--navy-mid);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.member-card:hover { transform: translateY(-3px); z-index: 5; }
.member-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.75);
  transition: filter 0.4s, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.member-card:hover img { filter: grayscale(0) brightness(1); transform: scale(1.06); }
.member-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12,20,48,0.95) 100%);
  z-index: 1;
}
.member-card .info {
  position: absolute; inset: auto 0 0 0;
  z-index: 2;
  padding: 12px 14px;
  color: var(--cream);
}
.member-card .mname {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.member-card .mrole {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(244,241,232,0.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.member-card:hover .mrole { max-height: 60px; }

/* ── PROCESS ──────────────────────────────────────────────────── */
.process-band {
  background: var(--cream);
  color: var(--navy);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) { .steps { grid-template-columns: 1fr 1fr; gap: 24px; } }

.step-tile {
  background: var(--cream-warm);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
}
.step-tile:hover { transform: translateY(-4px); background: #ebe4d2; }
.step-tile .step-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold);
}
.step-tile h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.step-tile p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(20,31,72,0.75);
  flex: 1;
}
.step-tile .duration {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  background: var(--navy);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

/* ── APPLY ────────────────────────────────────────────────────── */
.apply-band {
  background: var(--navy-deep);
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .apply-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

.apply-card {
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apply-card:hover { transform: translateY(-6px); }
.apply-card.founders {
  background: var(--gold);
  color: var(--navy);
}
.apply-card.investors {
  background: var(--cream);
  color: var(--navy);
}
.apply-card .tag {
  font-weight: 700;
  font-size: 14px;
  background: var(--navy);
  color: var(--cream);
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.apply-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.apply-card p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: auto;
  max-width: 38ch;
  opacity: 0.82;
}
.apply-card .apply-link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  align-self: flex-start;
  color: var(--navy);
}
.apply-card .apply-link .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}
.apply-card .apply-link:hover .arrow { transform: rotate(-45deg); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(244,241,232,0.7);
  padding: 64px var(--pad-x) 36px;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.footer-brand {
  display: flex; gap: 14px; align-items: flex-start;
}
.footer-brand img { width: 48px; flex-shrink: 0; }
.footer-brand .nm {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-brand .blurb {
  font-size: 13.5px;
  max-width: 36ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,232,0.08);
  font-size: 12px;
  line-height: 1.6;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(244,241,232,0.4);
  text-align: center;
}

/* ── PAGE HERO (used on internal pages) ─────────────────────────── */
.page-hero {
  padding: clamp(120px, 16vh, 180px) var(--pad-x) clamp(56px, 8vw, 96px);
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}
.page-hero.supernatural-hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 80%);
}
.page-hero-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
}
@media (min-width: 880px) {
  .page-hero-grid { grid-template-columns: 1.6fr 1fr; gap: 64px; }
}
.page-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.page-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 18ch;
}
.page-title em {
  font-style: normal;
  color: var(--gold);
}
.page-lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(244,241,232,0.7);
  max-width: 56ch;
}
.page-hero-stats {
  display: flex; flex-direction: column;
  gap: 14px;
}
.page-stat {
  background: rgba(244,241,232,0.04);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.page-stat .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.page-stat .label {
  font-weight: 500;
  font-size: 13px;
  color: rgba(244,241,232,0.55);
}

/* ── PROSE BAND (used on About, Supernatural) ─────────────────── */
.prose-band {
  background: var(--navy);
  padding: clamp(64px, 8vw, 120px) var(--pad-x);
}
.shell-narrow { max-width: 760px; margin: 0 auto; }
.prose {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.prose .lede {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.2em;
  color: var(--cream);
}
.prose p { margin-bottom: 1.1em; color: rgba(244,241,232,0.82); }
.prose em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* ── EXIT STORY CARDS (Portfolio page) ────────────────────────── */
.exit-stories {
  background: var(--navy);
  padding: clamp(48px, 6vw, 96px) var(--pad-x) 0;
}
.exits-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .exits-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1100px) { .exits-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.exit-card {
  border-radius: 24px;
  padding: 32px 28px;
  color: var(--navy);
  display: flex; flex-direction: column;
  min-height: 360px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.exit-card:hover { transform: translateY(-6px); }
.exit-card .exit-tag {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12.5px;
  background: var(--navy);
  color: var(--cream);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.exit-card h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.exit-card .figure {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 12px 0 24px;
}
.exit-card .exit-body {
  font-size: 15px;
  line-height: 1.5;
  margin-top: auto;
  opacity: 0.82;
}

/* ── QUOTES (Press page) ──────────────────────────────────────── */
.quotes-band {
  background: var(--navy-deep);
  padding: clamp(72px, 10vw, 120px) var(--pad-x);
}
.quotes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .quotes-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.quote-card {
  background: rgba(244,241,232,0.04);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 32px;
}
.quote-card p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 18px;
  position: relative;
}
.quote-card p::before {
  content: '"';
  font-size: 64px;
  line-height: 0.5;
  color: var(--gold);
  margin-right: 8px;
  vertical-align: -16px;
}
.quote-card cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: rgba(244,241,232,0.55);
}
.quote-card cite strong {
  color: var(--gold);
  font-weight: 700;
}

/* ── 3 by 2 intro card layout for criteria pages ─────────────── */
.intro-cards-3by2 {
  grid-template-columns: 1fr !important;
}
@media (min-width: 720px) {
  .intro-cards-3by2 { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 1100px) {
  .intro-cards-3by2 { grid-template-columns: 1fr 1fr 1fr !important; }
}

/* ── link-arrow ──────────────────────────────────────────────── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.01em;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s, padding-right 0.3s;
}
.link-arrow:hover { color: var(--gold); padding-right: 8px; }

/* ── img-watermark on home photo tiles ────────────────────────── */
.tile-photo .img-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 18%;
  z-index: 0;
}
.tile-photo .img-watermark img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  opacity: 0.55;
  transform: rotate(-4deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tile-photo:hover .img-watermark img { transform: rotate(-1deg) scale(1.05); }
.tile-photo .label-stack { z-index: 2; position: relative; }

/* ── chip count badge ─────────────────────────────────────────── */
.chip-count {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.5;
}

/* ── Reveal on scroll ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
