/* ========== ShipCrew redesign, modern dark + cream + amber ========== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:        #0B0B0D;
  --bg-2:      #131316;
  --bg-3:      #1A1A1E;
  --line:      rgba(242, 240, 234, 0.10);
  --line-2:    rgba(242, 240, 234, 0.06);
  --fg:        #F2F0EA;
  --fg-muted:  #A8A6A0;
  --fg-dim:    #6E6C66;
  --accent:    #FF7F3E;   /* ShipCrew brand coral */
  --accent-2:  #E8651F;   /* deeper coral */
  --accent-glow: rgba(255, 127, 62, 0.38);
  --cream:     #F2F0EA;
  --cream-2:   #E8E4DA;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Geist', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.ital { font-style: italic; }

/* container */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; pointer-events: none; }
.nav-inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 14px 10px 22px;
  background: rgba(20, 20, 24, 0.72);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; font-size: 17px; }
/* Brand mark (uses official ShipCrew logo SVG) */
.brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  position: relative;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 12px var(--accent-glow)); }
.brand-name { font-family: 'Geist', sans-serif; letter-spacing: -0.015em; }
.brand-name b { font-weight: 600; }

/* Legacy gradient dot (kept for footer compatibility) */
.brand-dot { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); position: relative; box-shadow: 0 0 18px var(--accent-glow); }
.brand-dot::after { content: ""; position: absolute; inset: 4px; border-radius: 4px; background: var(--bg); }

.nav-links { display: flex; gap: 22px; }
.nav-links a { font-size: 14px; color: var(--fg-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 9px 16px; border-radius: 999px;
  background: var(--cream); color: var(--bg);
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(242,240,234,0.4); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-inner { padding: 8px 8px 8px 18px; gap: 14px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1100px;
  display: flex; align-items: center;
  padding: 92px 0 32px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-bg-glow {
  position: absolute; left: 50%; top: 35%; transform: translate(-50%,-50%);
  width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.55; filter: blur(40px);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  background: rgba(242,240,234,0.04);
  border: 1px solid var(--line);
  font-size: 12px; color: var(--fg-muted); letter-spacing: 0.02em;
}
.eyebrow .pulse { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,127,62,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,127,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,127,62,0); }
}

.hero-title {
  margin-top: 0;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--fg);
}
.hero-title .serif { color: var(--accent); display: inline; }
.hero-title .dim { color: var(--fg-dim); }

/* rotating word — wrapper width animates to current word; whole line stays nowrap */
.hero-line-2 {
  display: inline-block;
  white-space: nowrap;
}
.rot-wrap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  white-space: nowrap;
  transition: width 0.55s cubic-bezier(0.2,0.8,0.2,1);
  overflow: visible;
}
.rot-measure {
  display: inline-block;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}
.rot-word {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  opacity: 0;
  transform: translateY(0.5em) rotateX(-70deg);
  filter: blur(6px);
  transform-origin: 50% 100%;
  transition:
    opacity 0.55s cubic-bezier(0.2,0.8,0.2,1),
    transform 0.55s cubic-bezier(0.2,0.8,0.2,1),
    filter 0.55s cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform, filter;
  white-space: nowrap;
}
.rot-word.is-active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .rot-word { transition: opacity 0.2s; transform: none; filter: none; }
  .rot-wrap { transition: none; }
}

.hero-sub {
  margin-top: 20px; max-width: 520px;
  font-size: 16px; color: var(--fg-muted); line-height: 1.55;
}

.hero-slogan {
  margin-top: 18px;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.hero-slogan s {
  text-decoration: line-through;
  text-decoration-color: rgba(255,127,62,0.55);
  text-decoration-thickness: 1.5px;
  color: var(--fg-dim);
}
.hero-slogan .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--fg);
  letter-spacing: -0.015em;
}

.hero-cta-row { margin-top: 28px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  background: var(--cream); color: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(242,240,234,0.4); }
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  font-size: 15px; color: var(--fg);
  border: 1px solid var(--line);
  transition: background 0.2s, border 0.2s;
}
.btn-ghost:hover { background: rgba(242,240,234,0.04); border-color: rgba(242,240,234,0.18); }

.hero-meta {
  margin-top: 56px;
  display: flex; gap: 36px; flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item .num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 36px; color: var(--accent); line-height: 1; }
.hero-meta-item .lbl { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* 3D scene container */
.hero-3d {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 420px;
}
.hero-3d canvas { width: 100% !important; height: 100% !important; display: block; }
.hero-3d-ring {
  position: absolute; inset: 0; pointer-events: none;
  border-radius: 50%;
  border: 1px dashed rgba(255,127,62,0.18);
  margin: 8%;
  animation: spin 60s linear infinite;
}
.hero-3d-label {
  position: absolute; top: 8%; right: 8%;
  padding: 6px 10px; border-radius: 6px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 11px; color: var(--fg-muted);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- LOGO MARQUEE ---------- */
.marquee-section {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.marquee-label {
  text-align: center; font-size: 11px; color: var(--fg-dim);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 28px;
}
.marquee {
  display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 72px; animation: scroll 38s linear infinite; padding-right: 72px; flex-shrink: 0; }
.marquee-track img {
  height: 36px; opacity: 0.55; filter: brightness(0) invert(1) grayscale(1); transition: opacity 0.3s;
}
.marquee-track img:hover { opacity: 0.95; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- SECTION ---------- */
section { position: relative; }
.section { padding: 120px 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.section-head .lhs { max-width: 700px; }
.section-tag { font-size: 12px; color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.section-tag::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(34px, 4.8vw, 60px); line-height: 1; letter-spacing: -0.032em;
  text-wrap: balance;
}
.section-title .serif { color: var(--fg-muted); }
.section-sub { margin-top: 18px; color: var(--fg-muted); font-size: 17px; max-width: 540px; }

/* ---------- PROCESS — cards on pillars ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: end;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }

.pillar-column {
  display: flex; flex-direction: column;
  position: relative;
}

.proc-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  min-height: 460px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
  display: flex; flex-direction: column;
  z-index: 2;
}
.proc-card:hover { border-color: rgba(255,127,62,0.2); transform: translateY(-4px); }

.proc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.proc-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.proc-canvas {
  margin: 24px 0 32px;
  height: 200px; border-radius: 16px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.proc-card h3 {
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.proc-card p { color: var(--fg-muted); font-size: 15px; line-height: 1.55; }

/* pillar plinth UNDER each card */
.pillar-base {
  position: relative;
  height: 220px;
  margin-top: 18px;
  display: grid; place-items: end center;
  overflow: visible;
  pointer-events: none;
}
.pillar-base::before {
  /* coral spotlight haze */
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 70%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 40%, rgba(255,127,62,0.18) 0%, transparent 65%);
  filter: blur(8px);
  z-index: 0;
}
.pillar-img {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 8px 22px rgba(0,0,0,0.55))
    brightness(0.88) contrast(1.04);
  animation: pillar-bob 8s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
}
@keyframes pillar-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Roman numeral above the pillar */
.pillar-roman {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 110px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(255,127,62,0.22);
  text-shadow:
    0 0 24px rgba(255,127,62,0.35),
    0 0 60px rgba(255,127,62,0.20);
  filter: blur(0.5px);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: roman-pulse 6s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
@keyframes roman-pulse {
  0%, 100% { opacity: 0.55; filter: blur(0.5px); }
  50%      { opacity: 1;    filter: blur(0px); }
}
@media (max-width: 1100px) { .pillar-roman { font-size: 90px; } }
@media (max-width: 900px)  { .pillar-roman { font-size: 110px; } }

/* podium floor line — aligned to the very bottom of the pillar image */
.pillar-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,127,62,0.55), transparent);
  z-index: 2;
}
.pillar-floor::before {
  /* glow above the line */
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 65%; height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(255,127,62,0.32) 0%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}
.pillar-floor::after {
  /* soft reflection below the line */
  content: "";
  position: absolute;
  top: 1px; left: 50%;
  width: 70%; height: 10px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(255,127,62,0.14) 0%, transparent 70%);
  filter: blur(4px);
}

.pillar-column:hover .pillar-img { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .pillar-img, .pillar-roman { animation: none; }
}

/* anim 1: stacking blueprint lines */
.bp { width: 70%; height: 70%; position: relative; }
.bp-row { height: 8px; background: rgba(255,127,62,0.18); border-radius: 4px; margin-bottom: 10px; transform-origin: left; animation: bp-grow 3.6s ease-in-out infinite; }
.bp-row:nth-child(1) { width: 100%; animation-delay: 0s; }
.bp-row:nth-child(2) { width: 80%; animation-delay: 0.2s; }
.bp-row:nth-child(3) { width: 60%; animation-delay: 0.4s; }
.bp-row:nth-child(4) { width: 90%; animation-delay: 0.6s; }
.bp-row:nth-child(5) { width: 50%; animation-delay: 0.8s; height: 24px; background: rgba(255,127,62,0.4); margin-top: 16px; border-radius: 6px; }
@keyframes bp-grow { 0% { transform: scaleX(0); opacity: 0.3; } 50% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(1); opacity: 1; } }

/* anim 2: terminal lines */
.term { width: 80%; height: 80%; padding: 14px; background: #0d0d10; border-radius: 10px; border: 1px solid var(--line); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--fg-muted); display: flex; flex-direction: column; gap: 6px; position: relative; }
.term::before { content: ""; position: absolute; top: 8px; left: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 14px 0 0 #444, 28px 0 0 #444; }
.term .ln { padding-left: 38px; opacity: 0; animation: type-in 0.6s forwards; }
.term .ln:nth-child(1) { animation-delay: 0.4s; }
.term .ln:nth-child(2) { animation-delay: 0.8s; }
.term .ln:nth-child(3) { animation-delay: 1.2s; color: var(--accent); }
.term .ln:nth-child(4) { animation-delay: 1.6s; }
.term .ln:nth-child(5) { animation-delay: 2.0s; color: #6CE5A8; }
.term .cursor { display: inline-block; width: 6px; height: 11px; background: var(--accent); animation: blink 1s steps(2) infinite; vertical-align: middle; margin-left: 2px; }
@keyframes type-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 50% { opacity: 0; } }

/* anim 3: launch rings */
.rings { width: 160px; height: 160px; position: relative; display: grid; place-items: center; }
.rings .r { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,127,62,0.6); animation: rings 3s ease-out infinite; }
.rings .r:nth-child(2) { animation-delay: 1s; }
.rings .r:nth-child(3) { animation-delay: 2s; }
.rings .core { position: relative; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 40px var(--accent-glow); display: grid; place-items: center; color: #000; font-weight: 600; font-size: 12px; }
@keyframes rings { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- SHOWCASE (editorial case grid) ---------- */
.showcase-section { background: var(--cream); color: var(--bg); padding: 140px 0 120px; }
.showcase-section .section-title { color: var(--bg); }
.showcase-section .section-title .serif { color: rgba(11,11,13,0.45); }
.showcase-section .section-tag { color: var(--accent-2); }
.showcase-section .section-tag::before { background: var(--accent-2); }
.showcase-section .section-sub { color: rgba(11,11,13,0.62); max-width: 480px; }

.showcase-head { align-items: flex-start; }

.showcase-meta {
  display: flex; align-items: stretch; gap: 18px;
  padding: 18px 22px;
  background: rgba(11,11,13,0.03);
  border: 1px solid rgba(11,11,13,0.08);
  border-radius: 16px;
}
.showcase-meta .sm-item { display: flex; flex-direction: column; gap: 4px; }
.showcase-meta .sm-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--bg);
  letter-spacing: -0.02em;
}
.showcase-meta .sm-num i {
  font-size: 0.45em;
  font-style: italic;
  color: rgba(11,11,13,0.55);
  margin-left: 2px;
}
.showcase-meta .sm-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11,11,13,0.55);
}
.showcase-meta .sm-divider { width: 1px; background: rgba(11,11,13,0.10); }
@media (max-width: 640px) { .showcase-meta { display: none; } }

/* Toolbar: filter chips + see-all link */
.showcase-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin: 56px 0 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(11,11,13,0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.fchip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: rgba(11,11,13,0.65);
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
}
.fchip:hover { color: var(--bg); background: rgba(11,11,13,0.05); }
.fchip.active {
  background: var(--bg);
  color: var(--cream);
  border-color: var(--bg);
}
.fchip-count {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(11,11,13,0.08);
  color: inherit;
  letter-spacing: 0.06em;
}
.fchip.active .fchip-count { background: rgba(242,240,234,0.15); color: var(--cream); }

.case-cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,11,13,0.14);
  transition: background 0.2s;
}
.case-cta-link:hover { background: rgba(11,11,13,0.05); }

/* The grid */
.case-grid-wrap { position: relative; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}
@media (max-width: 1100px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .case-grid { grid-template-columns: 1fr; gap: 48px; } }

.case-card {
  display: flex; flex-direction: column; gap: 18px;
  cursor: pointer;
  position: relative;
}
.case-card:hover .case-image img { transform: scale(1.045); }
.case-card:hover .case-hover { opacity: 1; transform: translateY(0); }
.case-card:hover .case-name { color: var(--accent-2); }

.case-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: #DDD8CC;
  border: 1px solid rgba(11,11,13,0.06);
}
.case-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.case-image-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,0.18));
  pointer-events: none;
}
.case-num {
  position: absolute;
  top: 12px; left: 14px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.95);
  background: rgba(11,11,13,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
}
.case-num span { color: rgba(255,255,255,0.55); }

.case-hover {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px 6px 14px;
  background: var(--cream);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--bg);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}
.case-hover-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid; place-items: center;
}

/* Body */
.case-body { display: flex; flex-direction: column; gap: 6px; }
.case-tagrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: rgba(11,11,13,0.55);
}
.case-cat {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-size: 10px;
}
.case-dot { color: rgba(11,11,13,0.25); }
.case-tag {
  font-size: 10px;
  letter-spacing: 0.10em;
  color: rgba(11,11,13,0.55);
  text-transform: uppercase;
}
.case-name {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--bg);
  transition: color 0.25s;
  margin-top: 2px;
}
.case-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11,11,13,0.6);
  max-width: 480px;
}
.case-outcomes {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(11,11,13,0.08);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(11,11,13,0.7);
}
.case-outcome-sep { color: rgba(11,11,13,0.25); }
.case-outcome:first-child { color: var(--accent-2); font-weight: 500; }

/* Mask: blurred fade across last row with a "see more" button */
.case-grid-wrap.is-masked .case-grid > *:nth-child(n + 4) {
  /* progressively reveal under the fade */
}
.case-mask {
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 360px;
  display: grid; place-items: end center;
  padding-bottom: 32px;
  background:
    linear-gradient(180deg,
      rgba(242,240,234,0) 0%,
      rgba(242,240,234,0.55) 30%,
      rgba(242,240,234,0.92) 65%,
      var(--cream) 100%
    );
  pointer-events: none;
  z-index: 3;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
.case-mask::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  mask-image: linear-gradient(180deg, transparent 30%, #000 70%);
  -webkit-mask-image: linear-gradient(180deg, transparent 30%, #000 70%);
}
.case-mask-content {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  pointer-events: auto;
}
.case-mask-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  padding: 6px 12px;
  border: 1px solid rgba(232,101,31,0.25);
  border-radius: 999px;
  background: rgba(232,101,31,0.06);
}
.case-mask-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  background: var(--bg);
  color: var(--cream);
  border: 1px solid var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.case-mask-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(11,11,13,0.6); }
.case-mask-btn.ghost {
  background: transparent;
  color: var(--bg);
  border-color: rgba(11,11,13,0.18);
}
.case-mask-btn.ghost:hover { background: rgba(11,11,13,0.05); box-shadow: none; }
.case-mask-arrow {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  transition: transform 0.3s;
}
.case-mask-btn:hover .case-mask-arrow { transform: translateY(2px); }

.case-collapse-row { display: flex; justify-content: center; margin-top: 56px; }

/* ---------- KPI ---------- */
.kpi-section { padding: 100px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 900px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; } }
.kpi { padding: 0 32px; border-left: 1px solid var(--line); }
.kpi:first-child { border-left: none; }
.kpi .v { font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(60px, 7vw, 96px); color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.kpi .v .small { font-size: 0.5em; color: var(--fg); margin-left: 4px; vertical-align: middle; }
.kpi .l { font-size: 13px; color: var(--fg-muted); margin-top: 14px; line-height: 1.45; }

/* ---------- TESTIMONIALS ---------- */
.test-stars { color: var(--accent); letter-spacing: 4px; font-size: 14px; }

/* Featured text quotes */
.quote-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 880px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-card {
  position: relative;
  padding: 36px 34px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  overflow: hidden;
}
.quote-card::after {
  /* subtle coral aura at top-right */
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,127,62,0.12), transparent 60%);
  pointer-events: none;
}
.quote-card:hover { border-color: rgba(255,127,62,0.25); transform: translateY(-3px); }

.quote-mark {
  position: absolute;
  top: 10px; right: 22px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 96px;
  color: rgba(255,127,62,0.22);
  line-height: 1;
  pointer-events: none;
}

.quote-body {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--fg);
  text-wrap: pretty;
  flex: 1;
  z-index: 1;
}

.quote-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  z-index: 1;
}
.quote-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #000; font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.quote-id { flex: 1; min-width: 0; }
.quote-name { font-size: 14px; font-weight: 500; color: var(--fg); }
.quote-role { font-size: 12px; color: var(--fg-muted); }
.quote-stars { color: var(--accent); letter-spacing: 3px; font-size: 12px; }
@media (max-width: 480px) { .quote-stars { display: none; } }

.quote-linkedin {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--fg-muted);
  background: rgba(242,240,234,0.04);
  border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.quote-linkedin:hover {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
  transform: translateY(-2px);
}

.video-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1100px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s;
  isolation: isolate;
}
.video-card:hover { transform: translateY(-4px); border-color: rgba(255,127,62,0.3); }

/* Real video is always visible as the thumbnail (first frame) */
.video-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: #0a0a0c;
  z-index: 0;
}

/* Readability scrim over the video */
.video-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

/* LinkedIn pill (top-right of the card) */
.vp-linkedin {
  position: absolute; top: 12px; right: 12px;
  z-index: 4;
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.vp-linkedin:hover {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
  transform: translateY(-2px);
}
.vp-watermark {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  padding: 4px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.10);
}
.vp-watermark::before {
  content: "● "; color: var(--accent); margin-right: 2px;
}
.video-card.is-playing .vp-watermark::before { animation: rec-blink 1.2s infinite; }
@keyframes rec-blink { 50% { opacity: 0.3; } }

/* Overlay (quote + play + author) */
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 3;
}
.vc-quote {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 18px; line-height: 1.3;
  color: var(--cream);
  margin-bottom: 16px;
  text-wrap: pretty;
}
.vc-row { display: flex; align-items: center; gap: 12px; }
.vc-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px var(--accent-glow);
}
.video-card:hover .vc-play { transform: scale(1.08); box-shadow: 0 8px 28px var(--accent-glow); }
.vc-play svg { margin-left: 1px; }
.vc-meta .name { font-size: 14px; font-weight: 500; color: var(--cream); }
.vc-meta .role { font-size: 12px; color: rgba(242,240,234,0.65); }

.video-card.is-playing .vc-play { background: var(--cream); }

/* ---------- TEAM ---------- */
.team-section { padding-top: 60px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
}
.team-card:hover { transform: translateY(-6px); }

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.team-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1), filter 0.4s;
  filter: grayscale(0.18) contrast(1.02);
}
.team-card:hover .team-photo img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1);
}
.team-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,0.6));
  pointer-events: none;
}
.team-pill {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team-card.is-founder .team-pill {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.team-meta { padding: 0 4px; }
.team-name {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.team-role {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ---------- PRICING ---------- */
.pricing-section { padding: 120px 0; background: var(--cream); color: var(--bg); }
.pricing-section .section-title { color: var(--bg); }
.pricing-section .section-title .serif { color: rgba(11,11,13,0.45); }
.pricing-section .section-tag { color: var(--accent-2); }
.pricing-section .section-tag::before { background: var(--accent-2); }
.pricing-section .section-sub { color: rgba(11,11,13,0.65); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; max-width: 980px; margin: 0 auto; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan {
  border: 1px solid rgba(11,11,13,0.10);
  border-radius: 28px; padding: 40px; background: #FBF9F4;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(11,11,13,0.25); }
.plan.featured { background: var(--bg); color: var(--cream); border-color: var(--bg); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.5); }
.plan.featured:hover { transform: translateY(-6px); }
.plan-badge { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
.plan.featured .plan-badge { color: var(--accent); }
.plan-name { font-family: 'Geist', sans-serif; font-weight: 500; font-size: 26px; letter-spacing: -0.02em; }
.plan-desc { color: rgba(11,11,13,0.6); font-size: 14px; margin: 12px 0 28px; line-height: 1.5; }
.plan.featured .plan-desc { color: rgba(242,240,234,0.65); }
.plan-price { display: flex; align-items: baseline; gap: 6px; padding-bottom: 28px; border-bottom: 1px solid rgba(11,11,13,0.08); }
.plan.featured .plan-price { border-bottom-color: var(--line); }
.plan-price .amt { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 56px; line-height: 1; letter-spacing: -0.02em; }
.plan.featured .plan-price .amt { color: var(--accent); }
.plan-price .per { font-size: 13px; color: rgba(11,11,13,0.5); }
.plan.featured .plan-price .per { color: var(--fg-muted); }
.plan-features { list-style: none; padding: 28px 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; }
.plan-features li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-2); }
.plan.featured .plan-features li svg { color: var(--accent); }
.plan-cta { padding: 14px 22px; border-radius: 999px; font-weight: 500; text-align: center; font-size: 14px; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.plan-cta.dark { background: var(--bg); color: var(--cream); }
.plan-cta.dark:hover { transform: translateY(-2px); }
.plan-cta.light { background: var(--accent); color: var(--bg); }
.plan-cta.light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px var(--accent-glow); }
.plan-cta.outline { background: transparent; border: 1px solid rgba(11,11,13,0.18); color: var(--bg); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer; }
.faq-item .q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-item .q h4 { font-family: 'Geist', sans-serif; font-weight: 400; font-size: 22px; letter-spacing: -0.015em; color: var(--fg); }
.faq-item .plus { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform 0.3s, background 0.3s; flex-shrink: 0; }
.faq-item.open .plus { background: var(--accent); color: var(--bg); transform: rotate(45deg); border-color: var(--accent); }
.faq-item .a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s; color: var(--fg-muted); font-size: 16px; line-height: 1.6; max-width: 720px; }
.faq-item.open .a { max-height: 400px; margin-top: 14px; }

/* ---------- CTA / FOUNDERS ---------- */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, var(--accent-glow), transparent 60%); opacity: 0.4; pointer-events: none; filter: blur(40px); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-family: 'Geist', sans-serif; font-weight: 500; font-size: clamp(40px, 5.5vw, 76px); letter-spacing: -0.035em; line-height: 1; text-wrap: balance; max-width: 900px; margin: 0 auto; }
.cta-inner h2 .serif { color: var(--accent); }
.cta-inner p { color: var(--fg-muted); font-size: 18px; margin: 24px auto 36px; max-width: 540px; }
.founders { display: inline-flex; align-items: center; gap: 16px; padding: 10px 22px 10px 10px; border: 1px solid var(--line); border-radius: 999px; margin-top: 36px; background: rgba(242,240,234,0.03); }
.founders-imgs { display: flex; }
.founders-imgs > * { position: relative; }
/* stack so each successive item sits BEHIND the previous one */
.founders-imgs > *:nth-child(1) { z-index: 5; }
.founders-imgs > *:nth-child(2) { z-index: 4; }
.founders-imgs > *:nth-child(3) { z-index: 3; }
.founders-imgs > *:nth-child(4) { z-index: 2; }
.founders-imgs > *:nth-child(5) { z-index: 1; }
.founders-imgs img {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover; object-position: center top;
  background: var(--bg-2);
}
.founders-imgs img:not(:first-child) { margin-left: -14px; }
.founders-more {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: rgba(255,127,62,0.14);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: grid; place-items: center;
  margin-left: -14px;
}
.founders-text { font-size: 13px; color: var(--fg-muted); text-align: left; }
.founders-text b { color: var(--fg); font-weight: 500; display: block; font-size: 14px; }

/* ---------- FOOTER ---------- */
.endblock {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.endblock::before {
  /* shared warm coral undertone — bathes BOTH footer and bigbleed */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 30%);
  width: min(1400px, 110%);
  height: 600px;
  background: radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, rgba(255,127,62,0.06) 35%, transparent 65%);
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand {
  font-family: 'Geist', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 14px;
}
.footer-brand .brand-mark { width: 44px !important; height: 44px !important; }
.footer-tag {
  color: var(--fg-muted);
  font-size: 18px;
  margin-top: 22px;
  max-width: 420px;
  line-height: 1.5;
}
.footer-tag s { font-size: 18px; }
.footer-col h5 { font-size: 12px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--fg-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line-2); font-size: 12px; color: var(--fg-dim); flex-wrap: wrap; gap: 12px; }

/* ---------- BIG BLEED (continues the footer block) ---------- */
.bigbleed {
  position: relative;
  width: 100%;
  padding: 0 0 0;
  margin-top: -8px;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
  line-height: 0; /* eat phantom descender gap */
}
.bigbleed-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}
.bigbleed .bb-line {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 5.2vw, 200px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--fg);
}
.bigbleed .bb-line .serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.015em;
  font-size: 1.18em;
  vertical-align: baseline;
}
.bigbleed .bb-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.25em;
  line-height: 0;
  vertical-align: -0.15em;
  margin: 0 0.04em;
  letter-spacing: -0.02em;
}
.bigbleed-glow {
  display: none;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* tilt cards on showcase */
.tilt { transform-style: preserve-3d; will-change: transform; }
