:root {
  --bg: #0A0907;
  --bg-2: #14110D;
  --bg-3: #1C1814;
  --bg-4: #252019;

  --sage: #A8C0A2;
  --sage-2: #7E9B7A;
  --sage-3: #5E7858;
  --sage-glow: rgba(168, 192, 162, 0.15);

  --amber: #D89060;
  --amber-2: #B87340;
  --copper: #C97A4A;

  --text: #E8E2D5;
  --text-2: #B5AC9C;
  --text-3: #7A7163;
  --text-4: #524A40;

  --line: rgba(232, 226, 213, 0.08);
  --line-2: rgba(232, 226, 213, 0.16);
  --line-3: rgba(232, 226, 213, 0.28);

  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.g1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--copper) 0%, transparent 70%);
  top: -20%; right: -15%;
  animation: pulse-g 18s ease-in-out infinite;
}
.g2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-3) 0%, transparent 70%);
  bottom: -10%; left: -10%;
  animation: pulse-g 22s ease-in-out infinite -8s;
}
@keyframes pulse-g {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(40px, -30px) scale(1.1); opacity: 0.45; }
}

/* Cursor */
.cursor {
  position: fixed;
  width: 24px; height: 24px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.25s;
  opacity: 0.5;
}
.cursor-dot {
  position: fixed;
  width: 3px; height: 3px;
  background: var(--sage);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor.grow {
  width: 56px; height: 56px;
  background: var(--sage-glow);
  border-color: var(--sage);
  opacity: 1;
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
  body, body * { cursor: auto !important; }
}
@media (hover: hover) and (min-width: 901px) {
  body, body * { cursor: none; }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: 980px; }
section { position: relative; z-index: 2; }

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}

.sage { color: var(--sage); }
.amber { color: var(--amber); }
.em { color: var(--text); font-weight: 500; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-2);
  text-transform: uppercase;
}
.tag.sage-tag {
  border-color: rgba(168, 192, 162, 0.3);
  background: rgba(168, 192, 162, 0.08);
  color: var(--sage);
}
.tag.amber-tag {
  border-color: rgba(216, 144, 96, 0.3);
  background: rgba(216, 144, 96, 0.08);
  color: var(--amber);
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--sage);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled, body.subpage nav {
  padding: 14px 32px;
  background: rgba(10, 9, 7, 0.75);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.logo-mark { width: 24px; height: 24px; display: flex; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 10px;
  margin-left: 4px;
  border-left: 1px solid var(--line-2);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--sage); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--sage);
  opacity: 0.6;
}
.nav-cta {
  padding: 9px 16px;
  background: var(--sage);
  color: var(--bg) !important;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: background 0.25s, transform 0.25s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--text); transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  flex-direction: column;
  gap: 4px;
  padding: 9px;
  border-radius: 4px;
}
.mobile-toggle span {
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 11px 20px; }
  .logo-meta { display: none; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 24px; }
  .mobile-toggle { display: flex; z-index: 101; }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}

/* ============================================
   HERO (home)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 60px;
  position: relative;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-top-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 0;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .inner {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal 1.1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) .inner { animation-delay: 0.1s; }
.hero h1 .line:nth-child(3) .inner { animation-delay: 0.2s; }
@keyframes reveal { to { transform: translateY(0); } }

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 72px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  justify-self: end;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
}
.hero-stats::before {
  content: 'AUM TRACKER';
  position: absolute;
  top: -7px; left: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  background: var(--bg);
  padding: 0 8px;
  color: var(--text-3);
}
.hero-stat-num {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 8px;
}
.hero-stat-delta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--sage);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero { padding: 110px 0 50px; }
  .hero h1 { font-size: clamp(36px, 9.5vw, 64px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; margin-top: 44px; }
  .hero-stats { justify-self: stretch; flex-wrap: wrap; gap: 24px; }
  .hero-stat-num { font-size: 20px; }
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero-top {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.page-hero h1 {
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 1100px;
}
.page-hero-lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 720px;
  margin-top: 36px;
}
.page-hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.page-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-meta-num {
  font-family: var(--mono);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.page-hero-meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (max-width: 800px) {
  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: clamp(36px, 11vw, 64px); }
}

/* ============================================
   TICKER
   ============================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 50s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-2);
  text-transform: uppercase;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker-item .val { color: var(--text); }
.ticker-item .up { color: var(--sage); }
.ticker-item .down { color: var(--copper); }
.ticker-item::after {
  content: '';
  width: 4px; height: 4px;
  background: var(--text-4);
  border-radius: 50%;
  margin-left: 36px;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================
   PHILOSOPHY (home)
   ============================================ */
.philosophy {
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}
.philosophy h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-top: 20px;
}
.philosophy-body {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--text-2);
  font-weight: 400;
}
.philosophy-body p + p { margin-top: 24px; }

@media (max-width: 900px) {
  .philosophy { padding: 80px 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   MARKETS
   ============================================ */
.markets { padding: 120px 0 140px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.section-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  max-width: 800px;
}
.section-header-meta {
  font-size: 13px;
  color: var(--text-3);
  text-align: right;
  max-width: 280px;
  line-height: 1.55;
  font-family: var(--mono);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.market {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.market::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(168, 192, 162, 0.06));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.market:hover {
  border-color: var(--line-3);
  background: var(--bg-3);
  transform: translateY(-2px);
}
.market:hover::before { opacity: 1; }

.market-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.market-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  text-transform: uppercase;
}
.market-status {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.market-status::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--sage);
  border-radius: 50%;
}
.market-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.market-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 28px;
  min-height: 88px;
}
.market-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.market-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 8px;
}
.market-stat + .market-stat { padding-left: 14px; border-left: 1px solid var(--line); }
.market-stat-val {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1;
}
.market-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (max-width: 1000px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .markets { padding: 70px 0 90px; }
  .section-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
  .section-header-meta { text-align: left; }
  .markets-grid { grid-template-columns: 1fr; }
  .market-name { font-size: 20px; }
  .market-desc { min-height: 0; }
  .market-stat-val { font-size: 16px; }
}

/* ============================================
   BAND (big numbers)
   ============================================ */
.band {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  opacity: 0.4;
}
.band-head { margin-bottom: 60px; }
.band h2 {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
  max-width: 900px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
}
.big-num {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}
.big-num:last-child { border-right: none; }
.big-num:hover { background: var(--bg-3); }
.big-num-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.big-num-val {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-family: var(--sans);
}
.big-num-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .band { padding: 80px 0; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .big-num { border-bottom: 1px solid var(--line); }
  .big-num:nth-child(odd) { border-right: 1px solid var(--line); }
  .big-num:nth-child(even) { border-right: none; }
  .big-num:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 500px) {
  .band-grid { grid-template-columns: 1fr; }
  .big-num { border-right: none !important; border-bottom: 1px solid var(--line); }
  .big-num:last-child { border-bottom: none; }
}

/* ============================================
   APPLY
   ============================================ */
.apply { padding: 140px 0; }
.apply-header { margin-bottom: 60px; max-width: 760px; }
.apply-header h2 {
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 20px 0 18px;
}
.apply-header p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 580px;
}

.apply-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.apply-side {
  background: var(--bg-3);
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apply-side-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.tab {
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tab small {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.tab:hover { background: var(--bg-4); color: var(--text); }
.tab.active {
  background: var(--bg-4);
  border-color: var(--line-2);
  color: var(--text);
}
.tab.active small { color: var(--sage); }

.apply-main { padding: 36px 36px 32px; }

.form-panel { display: none; animation: fadeUp 0.4s var(--ease); }
.form-panel.active { display: block; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.fld { position: relative; }
.fld.full { grid-column: 1 / -1; }
.fld label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 8px;
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  padding: 13px 14px;
  letter-spacing: -0.005em;
  transition: border-color 0.25s, background 0.25s;
}
.fld textarea { resize: vertical; min-height: 110px; font-size: 14px; line-height: 1.55; font-family: var(--sans); }
.fld input::placeholder, .fld textarea::placeholder { color: var(--text-4); }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--sage); background: var(--bg-2); }
.fld select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7163' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.consent input { display: none; }
.consent-box {
  width: 17px; height: 17px;
  border: 1px solid var(--line-3);
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  margin-top: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.consent input:checked + .consent-box {
  background: var(--sage);
  border-color: var(--sage);
}
.consent input:checked + .consent-box::after {
  content: '';
  position: absolute;
  width: 5px; height: 9px;
  border: solid var(--bg);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  top: 1px; left: 5px;
}

.submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.submit-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.btn-submit {
  position: relative;
  padding: 13px 24px;
  background: var(--sage);
  color: var(--bg);
  border: none;
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-submit:hover {
  background: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 192, 162, 0.18);
}
.btn-submit svg { transition: transform 0.3s var(--ease); }
.btn-submit:hover svg { transform: translateX(3px); }

.success {
  display: none;
  text-align: left;
  padding: 30px 4px;
  animation: fadeUp 0.5s var(--ease);
}
.success.show { display: block; }
.success-icon {
  width: 44px; height: 44px;
  border-radius: 6px;
  background: rgba(168, 192, 162, 0.12);
  border: 1px solid rgba(168, 192, 162, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 20px;
}
.success-icon svg { width: 20px; height: 20px; }
.success h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.success p { color: var(--text-2); font-size: 14px; max-width: 480px; line-height: 1.55; }

@media (max-width: 800px) {
  .apply { padding: 80px 0; }
  .apply-wrap { grid-template-columns: 1fr; }
  .apply-side { border-right: none; border-bottom: 1px solid var(--line); flex-direction: row; flex-wrap: wrap; padding: 16px; gap: 8px; }
  .apply-side-label { width: 100%; margin-bottom: 4px; }
  .tab { flex: 1; min-width: 140px; padding: 12px 14px; }
  .apply-main { padding: 24px 22px 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .submit-row { flex-direction: column-reverse; align-items: stretch; }
  .btn-submit { justify-content: center; }
}

/* ============================================
   PROSE (long-form pages)
   ============================================ */
.prose-section { padding: 120px 0; border-bottom: 1px solid var(--line); }
.prose-section:last-of-type { border-bottom: none; }
.prose-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.prose-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prose-aside h3 {
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.prose-aside .mono { margin-bottom: 4px; }
.prose-body {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 720px;
}
.prose-body p + p { margin-top: 22px; }
.prose-body h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 48px 0 18px;
}
.prose-body h3:first-child { margin-top: 0; }
.prose-body ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.prose-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.prose-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 1px;
  background: var(--sage);
  opacity: 0.6;
}
.prose-body blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--sage);
  background: var(--bg-2);
  font-size: clamp(18px, 1.5vw, 22px);
  font-style: normal;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.prose-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (max-width: 900px) {
  .prose-section { padding: 70px 0; }
  .prose-grid { grid-template-columns: 1fr; gap: 32px; }
  .prose-aside { position: static; }
}

/* ============================================
   PILLARS (cards row, 4-col)
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 26px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.pillar:hover { border-color: var(--line-3); background: var(--bg-3); transform: translateY(-2px); }
.pillar-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pillar-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
}

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

/* ============================================
   PORTFOLIO
   ============================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  padding: 9px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--line-3); }
.filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pco {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.pco:hover { border-color: var(--line-3); background: var(--bg-3); transform: translateY(-2px); }
.pco-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pco-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: -0.01em;
  background: var(--bg);
}
.pco-stage {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pco-stage.exit { color: var(--amber); }
.pco-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 6px;
}
.pco-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  flex: 1;
}
.pco-meta {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.pco-meta span { display: flex; align-items: center; gap: 6px; }
.pco.hidden { display: none; }

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

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process {
  position: relative;
  padding-left: 40px;
}
.process::before {
  content: '';
  position: absolute;
  left: 12px; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--sage), var(--line-2));
  opacity: 0.5;
}
.step {
  position: relative;
  padding: 24px 0 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}
.step::before {
  content: '';
  position: absolute;
  left: -34px; top: 32px;
  width: 9px; height: 9px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg), 0 0 12px var(--sage-glow);
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
  padding-top: 4px;
}
.step-num strong {
  display: block;
  color: var(--sage);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.step-body h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 640px;
}

@media (max-width: 700px) {
  .process { padding-left: 28px; }
  .process::before { left: 4px; }
  .step { grid-template-columns: 1fr; gap: 8px; padding: 18px 0 28px; }
  .step::before { left: -28px; top: 26px; }
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.member {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.member:hover { border-color: var(--line-3); background: var(--bg-3); transform: translateY(-2px); }
.member-portrait {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  border-radius: 4px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.member-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--sage-glow), transparent 60%);
}
.member-mono {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: -0.02em;
  z-index: 1;
}
.member-name {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.member-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.member-bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
}
.team-section { padding: 90px 0; border-bottom: 1px solid var(--line); }
.team-section:last-of-type { border-bottom: none; }
.team-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 24px;
}
.team-section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.team-section-head p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  max-width: 280px;
  text-align: right;
}

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-section-head { flex-direction: column; align-items: flex-start; }
  .team-section-head p { text-align: left; }
}

/* ============================================
   NOTES / ESSAYS
   ============================================ */
.note-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.note {
  display: grid;
  grid-template-columns: 160px 1fr 200px;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s var(--ease);
  position: relative;
}
.note::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(168,192,162,0.04));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.note:hover { padding-left: 12px; padding-right: 12px; }
.note:hover::after { opacity: 1; }
.note-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.note-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}
.note-blurb {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 560px;
}
.note-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.note-meta .category { color: var(--sage); }
.note:hover .note-title { color: var(--sage); }

@media (max-width: 800px) {
  .note { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .note-meta { flex-direction: row; gap: 14px; align-items: flex-start; }
  .note:hover { padding-left: 0; padding-right: 0; }
}

/* ============================================
   PRESS
   ============================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.press-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.press-card:hover { border-color: var(--line-3); background: var(--bg-3); transform: translateY(-2px); }
.press-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.press-pub { color: var(--sage); }
.press-title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}
.press-blurb { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.press-arrow {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  transition: gap 0.3s var(--ease);
}
.press-card:hover .press-arrow { gap: 14px; }

@media (max-width: 800px) { .press-grid { grid-template-columns: 1fr; } }

/* ============================================
   LEGAL (privacy/terms/disclosures)
   ============================================ */
.legal { padding: 80px 0 120px; }
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-toc-head {
  color: var(--text-3);
  margin-bottom: 14px;
}
.legal-toc a {
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s;
}
.legal-toc a:hover { color: var(--sage); }
.legal-body {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
}
.legal-body h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 48px 0 16px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p + p { margin-top: 16px; }
.legal-body ul { margin: 14px 0 14px 0; padding: 0; list-style: none; }
.legal-body li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--sage);
  opacity: 0.5;
}
.legal-updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .legal-toc a { border: 1px solid var(--line-2); padding: 6px 10px; border-radius: 4px; }
}

/* ============================================
   CTA STRIP (used at bottom of subpages)
   ============================================ */
.cta-strip {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  opacity: 0.3;
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.cta-wrap h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.cta-wrap p {
  font-size: 15px;
  color: var(--text-2);
  margin-top: 14px;
  max-width: 540px;
  line-height: 1.55;
}
.cta-btn {
  padding: 16px 28px;
  background: var(--sage);
  color: var(--bg);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.cta-btn:hover {
  background: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 192, 162, 0.18);
}
.cta-btn svg { transition: transform 0.3s var(--ease); }
.cta-btn:hover svg { transform: translateX(4px); }

@media (max-width: 700px) {
  .cta-strip { padding: 70px 0; }
  .cta-wrap { grid-template-columns: 1fr; gap: 24px; }
  .cta-btn { justify-self: start; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.footer-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 16px;
  display: block;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--sage); }
.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-meta { flex-direction: column; gap: 10px; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }
.reveal[data-d="6"] { transition-delay: 0.48s; }
