/* ============================================================
   Shimony Apesoa Family HQ — Stylesheet
   Palette: deep midnight, champagne gold, warm ivory
   ============================================================ */

:root {
  --bg: #0a0c12;
  --bg-2: #0f1219;
  --bg-3: #141826;
  --ink: #f2ece1;
  --ink-soft: #b8b2a6;
  --ink-dim: #6e6a62;
  --line: rgba(242, 236, 225, 0.08);
  --line-strong: rgba(242, 236, 225, 0.16);
  --gold: #c9a96a;
  --gold-soft: #e2c98f;
  --gold-glow: rgba(201, 169, 106, 0.25);
  --plum: #4a3b5c;
  --teal: #2a4a52;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'Space Grotesk', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Subtle film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s var(--ease);
  opacity: 0;
  mix-blend-mode: screen;
}
@media (hover: hover) {
  body:hover .cursor-glow { opacity: 0.7; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  transition: all 0.6s var(--ease);
}
.nav.scrolled {
  padding: 16px 56px;
  background: rgba(10, 12, 18, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  transition: text-shadow 0.4s var(--ease);
}
.brand:hover .brand-mark {
  text-shadow: 0 0 18px var(--gold-glow);
}
.brand-mark .amp {
  color: var(--ink-dim);
  margin: 0 3px;
  font-size: 0.7em;
  transform: translateY(-3px);
}
.brand-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.brand-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: var(--serif);
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.4s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right 0.5s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 56px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 106, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: drift 22s var(--ease-soft) infinite alternate;
}
.orb-a {
  width: 600px; height: 600px;
  top: -10%; left: -10%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.orb-b {
  width: 500px; height: 500px;
  bottom: -10%; right: -5%;
  background: radial-gradient(circle, rgba(74, 59, 92, 0.4), transparent 70%);
  animation-duration: 28s;
  animation-direction: alternate-reverse;
}
.orb-c {
  width: 400px; height: 400px;
  top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(42, 74, 82, 0.35), transparent 70%);
  animation-duration: 35s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -60px) scale(1.15); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 44px;
  position: relative;
}
.hero-logo::after {
  content: '';
  position: absolute;
  inset: -8% -4% -4% -4%;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.7;
  pointer-events: none;
}
.hero-logo img {
  width: clamp(220px, 28vw, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 1.2s var(--ease);
}
.hero-logo:hover img {
  transform: translateY(-4px) scale(1.02);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 50%, #f5deb3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 48px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 96px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 24px 40px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(15, 18, 25, 0.4);
  backdrop-filter: blur(10px);
}
.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.num-value {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--gold-soft);
}
.num-suffix {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  margin-left: 2px;
}
.meta-item .label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollDot 2.2s var(--ease-soft) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 160px 56px;
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 24px;
  line-height: 1.6;
}
.section-head {
  margin-bottom: 100px;
  max-width: 800px;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy { border-top: 1px solid var(--line); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 120px;
  align-items: start;
}
.col-left { position: sticky; top: 140px; }
.lead {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 60px;
}
.principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.principles li {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.principles li:last-child { border-bottom: none; }
.principles .bullet {
  color: var(--gold);
  font-size: 12px;
  line-height: 1.8;
}
.principles h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.principles p {
  color: var(--ink-soft);
  font-size: 16px;
}

/* ============================================================
   VENTURES
   ============================================================ */
.ventures {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.venture {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 180px;
}
.venture.reverse { direction: rtl; }
.venture.reverse > * { direction: ltr; }
.venture:last-child { margin-bottom: 0; }
.venture-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}
.venture-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.venture-name .dot { color: var(--gold); font-weight: 500; }
.venture-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.venture-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.venture-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.venture-tags li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink-soft);
  transition: all 0.4s var(--ease);
}
.venture-tags li:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.venture-link {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-glow);
  padding-bottom: 4px;
  transition: all 0.4s var(--ease);
}
.venture-link:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
  letter-spacing: 3px;
}

/* Visual frames */
.venture-visual { position: relative; }
.visual-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow:
    0 50px 80px -30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.8s var(--ease);
}
.visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 106, 0.08), transparent 60%);
  pointer-events: none;
}
.venture:hover .visual-frame { transform: translateY(-6px); }

/* RTPly reels */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 360px;
}
.reel {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.reel span {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-soft);
  opacity: 0.55;
  transition: all 0.5s var(--ease);
}
.reel span:nth-child(2) {
  color: var(--gold);
  opacity: 1;
  font-size: 28px;
  text-shadow: 0 0 12px var(--gold-glow);
}
.reel:hover span { transform: translateY(-4px); opacity: 0.85; }
.reel:hover span:nth-child(2) { opacity: 1; }
.rtp-chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(10, 12, 18, 0.7);
  border: 1px solid var(--gold);
  padding: 8px 12px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}
.rtp-chip strong {
  color: var(--gold);
  margin-left: 6px;
  font-weight: 600;
}

/* AIVideoGen storybook */
.storybook { flex-direction: column; gap: 24px; }
.story-strip {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}
.frame {
  flex: 1;
  aspect-ratio: 9/12;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--ink-dim);
  position: relative;
  transition: all 0.5s var(--ease);
}
.frame.active {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201, 169, 106, 0.12), transparent);
  color: var(--gold);
  transform: scale(1.08);
}
.frame .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}
.timeline-bar {
  width: 100%;
  max-width: 400px;
  height: 2px;
  background: var(--line-strong);
  border-radius: 1px;
  overflow: hidden;
}
.timeline-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  animation: progress 4s var(--ease-soft) infinite;
}
@keyframes progress {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* LuxuryStageHaus */
.property { padding: 30px; }
.prop-card {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
}
.prop-img {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  background: linear-gradient(120deg, #2a2820, #3a3528);
}
.staged {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink-soft);
}
.staged.before {
  background: linear-gradient(135deg, #1a1d24, #252830);
  color: var(--ink-dim);
}
.staged.after {
  background:
    linear-gradient(135deg, rgba(201,169,106,0.15), transparent),
    linear-gradient(135deg, #3a3325, #4a3f2a);
  color: var(--gold-soft);
}
.slider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}
.slider::before {
  content: '⇿';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.prop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.prop-meta span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.prop-meta strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-soft);
  font-weight: 500;
}

/* Coming soon venture */
.venture.coming { opacity: 0.85; }
.coming-frame { flex-direction: column; gap: 20px; }
.coming-mark {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 120px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
.coming-frame p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.capabilities { border-top: 1px solid var(--line); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cap {
  background: var(--bg);
  padding: 56px 40px;
  transition: all 0.6s var(--ease);
  cursor: default;
  position: relative;
}
.cap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.cap:hover::before { opacity: 1; }
.cap:hover { background: var(--bg-2); }
.cap-icon {
  display: inline-block;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease);
}
.cap:hover .cap-icon { transform: rotate(45deg) scale(1.2); }
.cap h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
}
.cap p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  max-width: 800px;
}
.cta-inner h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.cta-inner h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-inner p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  padding: 120px 56px 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.footer-logo {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.footer-sub {
  font-size: 14px;
  color: var(--ink-dim);
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav, .nav.scrolled { padding: 20px 32px; }
  .nav-links { display: none; }
  .section { padding: 120px 32px; }
  .footer { padding: 100px 32px 32px; }
  .hero { padding: 120px 32px 80px; }
  .two-col { grid-template-columns: 1fr; gap: 60px; }
  .col-left { position: static; }
  .venture, .venture.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 50px;
    margin-bottom: 120px;
  }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .brand-name { display: none; }
  .section { padding: 80px 20px; }
  .footer { padding: 80px 20px 24px; }
  .hero { padding: 100px 20px 60px; }
  .hero-meta {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .meta-divider { width: 36px; height: 1px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .cap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
