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

:root {
  --ink: hsl(215, 52%, 5%);
  --navy: hsl(215, 45%, 8%);
  --navy-mid: hsl(215, 40%, 11%);
  --navy-lift: hsl(215, 35%, 15%);
  --cream: #f0e9dc;
  --cream-dark: #e5ddd0;
  --gold: #c9a24a;
  --gold-hi: #ddb96a;
  --gold-lo: rgba(201,162,74,0.14);
  --teal: #00af9a;
  --teal-hi: #19d3c5;
  --white: #ffffff;
  --fog: rgba(255,255,255,0.88);
  --mist: rgba(255,255,255,0.55);
  --dusk: rgba(255,255,255,0.32);
  --smoke: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(201,162,74,0.22);
  --ink-text: hsl(215,50%,8%);
  --ink-mist: hsl(215,30%,38%);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 0.22s ease;
  --med: 0.5s var(--ease);
  --slow: 0.8s var(--ease);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--fog);
  overflow-x: hidden;
  line-height: 1.6;
}

body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.028;
  z-index: 9998;
  animation: grain 0.4s steps(2) infinite;
}

@keyframes grain {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-1%,1%); }
  75% { transform: translate(1%,-1%); }
}

::selection { background: var(--gold-lo); color: var(--gold); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.eyebrow-light {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink-mist);
  display: block;
}

.rule { display: block; width: 36px; height: 1px; background: var(--gold); }
.rule-long { display: block; width: 100%; height: 1px; background: var(--border); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity var(--slow), transform var(--slow); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity var(--slow), transform var(--slow); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background var(--fast), color var(--fast), border-color var(--fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline { background: transparent; color: var(--mist); border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.btn-dark { background: var(--ink); color: var(--gold); border-color: var(--gold); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }

.link-arrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--fast);
}
.link-arrow:hover { gap: 16px; }
.link-arrow::after { content: '→'; font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: 0; }

nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background var(--med), border-color var(--med), backdrop-filter var(--med);
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(3, 7, 16, 0.96);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 40px rgba(0,0,0,0.5);
}

.nav-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  transform: translateY(3px);
}
.nav-logo svg { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color var(--fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  transition: background var(--fast), border-color var(--fast), color var(--fast);
  white-space: nowrap;
}
.nav-btn:hover { background: var(--gold); color: var(--ink); }

.nav-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: var(--mist);
  transition: color var(--fast), border-color var(--fast), background var(--fast);
  flex-shrink: 0;
}
.nav-signin svg { width: 20px; height: 20px; }
.nav-signin:hover, .nav-signin.active { color: var(--gold); border-color: var(--gold); background: rgba(201,162,74,0.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--mist); transition: var(--fast); }

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 48px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand svg { width: 170px; height: auto; max-width: 100%; display: block; margin-bottom: 24px; overflow: visible; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: var(--dusk); max-width: 280px; }
.footer-col-head { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--dusk); transition: color var(--fast); }
.footer-links a:hover { color: var(--white); }
.footer-bar { border-top: 1px solid var(--border); }
.footer-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-legal { font-size: 11px; line-height: 1.7; color: rgba(255,255,255,0.2); max-width: 760px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); white-space: nowrap; flex-shrink: 0; }

.c { max-width: 1320px; margin: 0 auto; padding: 0 48px; }

.hero-home {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-home-bg {
  position: absolute;
  inset: 0;
}
.hero-home-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.04);
  transition: transform 14s ease;
}
.hero-home-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,11,20,0.92) 0%, rgba(5,11,20,0.60) 55%, rgba(5,11,20,0.25) 100%),
    linear-gradient(to top, rgba(5,11,20,0.95) 0%, transparent 40%);
}
.hero-home-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 0 96px;
}
.hero-home-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dusk);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}
.hero-display {
  font-family: var(--serif);
  font-size: clamp(72px, 10.5vw, 148px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 36px;
}
.hero-display span { display: block; }
.hero-display .italic { font-style: italic; color: var(--cream); }
.hero-word { opacity: 0; animation: fadeUp 0.9s var(--ease) forwards; }
.hero-word:nth-child(1) { animation-delay: 0.5s; }
.hero-word:nth-child(2) { animation-delay: 0.68s; }
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mist);
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.85s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusk);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--dusk), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } from { opacity:0; transform:translateY(20px); } }
@keyframes fadeIn { to { opacity:1; } from { opacity:0; } }

.manifesto {
  background: var(--cream);
  padding: 120px 48px;
}
.manifesto-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.manifesto-col {
  padding: 0 64px 0 0;
  position: relative;
}
.manifesto-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--cream-dark);
}
.manifesto-col:first-child { padding-left: 0; }
.manifesto-num {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  opacity: 0.7;
}
.manifesto-col h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-text);
  margin-bottom: 16px;
}
.manifesto-col p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mist);
}

.story {
  background: var(--navy);
  padding: 144px 0;
  overflow: hidden;
}
.story-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.story-image {
  position: relative;
  height: 580px;
  overflow: hidden;
  margin-right: 80px;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border-gold);
  z-index: 1;
  pointer-events: none;
}
.story-content { padding-left: 16px; }
.story-content .eyebrow { margin-bottom: 32px; }
.story-blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 32px;
}
.story-blockquote cite {
  display: block;
  margin-top: 16px;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 40px;
}

.eco-rows-section {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 144px 0;
}
.eco-rows-head {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 72px;
}
.eco-rows-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-text);
}
.eco-rows-head p { font-size: 15px; line-height: 1.8; color: var(--ink-mist); }
.eco-list {
  border-top: 1px solid var(--cream-dark);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.eco-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  transition: background var(--fast);
  cursor: default;
}
.eco-item:hover { background: rgba(0, 0, 0, 0.025); margin: 0 -48px; padding-left: 48px; padding-right: 48px; }
.eco-item-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--gold); opacity: 0.85; line-height: 1; }
.eco-item-title { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); font-weight: 400; color: var(--ink-text); }
.eco-item-desc { font-size: 14px; line-height: 1.75; color: var(--ink-mist); }
.eco-item-icon { font-size: 20px; color: var(--gold); opacity: 0; transition: opacity var(--fast), color var(--fast); }
.eco-item:hover .eco-item-icon { opacity: 1; color: var(--gold); }
.eco-link-row {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 48px 0;
  display: flex;
  justify-content: flex-end;
}

.cta-home {
  position: relative;
  background: var(--navy-mid);
  padding: 160px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-home::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201,162,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-home-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-rule { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 52px; }
.cta-home h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.cta-home h2 em { font-style: italic; color: var(--cream); opacity: 0.8; }
.cta-home p { font-size: 16px; line-height: 1.8; color: var(--mist); max-width: 520px; margin: 0 auto 48px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-note { margin-top: 72px; font-size: 13px; font-style: italic; color: var(--dusk); }

.page-header {
  position: relative;
  min-height: max(480px, 56vh);
  padding-top: 140px;
  padding-bottom: 64px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
}
.page-header-bg { position: absolute; inset: 0; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, rgba(5,11,20,0.75) 50%, rgba(5,11,20,0.55) 100%);
}
.page-header-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ghost-text {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 400;
  color: rgba(255,255,255,0.028);
  white-space: nowrap;
  letter-spacing: 0.05em;
  user-select: none;
}
.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-header-inner .eyebrow { margin-bottom: 24px; }
.page-header-inner h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 820px;
}
.page-header-inner h1 em { font-style: italic; color: var(--cream); }
.page-header-inner p { font-size: 17px; line-height: 1.8; color: var(--mist); max-width: 520px; }

.inst-who {
  padding: 128px 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.inst-who-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
.inst-who-inner h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-top: 20px;
}
.inst-who-inner h2 em { font-style: italic; color: var(--cream); }
.inst-body p { font-size: 16px; line-height: 1.85; color: var(--mist); margin-bottom: 20px; }
.inst-body p strong { color: var(--white); font-weight: 400; }
.inst-body p:last-child { margin-bottom: 0; }

.inst-foundations {
  padding: 128px 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}
.inst-foundations-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stat-block {
  padding: 44px 36px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--fast), border-color var(--fast);
}
.stat-block:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--border-gold);
}
.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-value {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.stat-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist);
}
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--fast);
}
.stat-block:hover::before { opacity: 1; }
.stat-label { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.stat-value { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.stat-desc { font-size: 13px; line-height: 1.7; color: var(--mist); }

.governance-quote {
  background: var(--cream);
  padding: 120px 48px;
  text-align: center;
}
.governance-quote-inner { max-width: 900px; margin: 0 auto; }
.governance-quote .eyebrow-light { margin-bottom: 32px; }
.governance-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink-text);
  margin-bottom: 32px;
}
.governance-quote cite {
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mist);
}

.three-pillars {
  background: var(--ink);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.three-pillars-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 72px 48px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--fast);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,0.018); }
.pillar-num { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 24px; }
.pillar h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.pillar p { font-size: 14px; line-height: 1.8; color: var(--mist); }

.ecosystem-deep {
  background: var(--navy-mid);
  padding: 144px 0;
}
.section-head-center {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px 80px;
  text-align: center;
}
.section-head-center .eyebrow { margin-bottom: 24px; }
.section-head-center h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.section-head-center h2 em { font-style: italic; color: var(--cream); opacity: 0.8; }
.section-head-center p { font-size: 16px; line-height: 1.8; color: var(--mist); max-width: 600px; margin: 0 auto; }

.eco-cards {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
}
.eco-card {
  background: var(--navy-mid);
  padding: 52px 44px;
  border: 1px solid var(--border);
  transition: background var(--fast), border-color var(--fast);
}
.eco-card:hover { background: var(--navy-lift); }
.eco-card-num { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; }
.eco-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.eco-card-sub { font-size: 13px; font-style: italic; color: var(--gold); margin-bottom: 24px; }
.eco-card p { font-size: 14px; line-height: 1.8; color: var(--mist); margin-bottom: 16px; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.eco-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--dusk);
  transition: border-color var(--fast), color var(--fast);
}
.eco-tag:hover { border-color: var(--border-gold); color: var(--gold); }

.gov-banner {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 120px 48px;
  text-align: center;
}
.gov-banner-inner { max-width: 800px; margin: 0 auto; }
.gov-banner .eyebrow { margin-bottom: 24px; color: var(--gold); }
.gov-banner h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-text);
  margin-bottom: 32px;
}
.gov-banner p { font-size: 15px; line-height: 1.85; color: var(--ink-mist); margin-bottom: 16px; }
.gov-banner .maxim { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--ink-text); opacity: 0.9; margin-top: 36px; }

.arch-section {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 96px 48px;
}
.arch-wrap { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0; }
.arch-head { text-align: center; margin-bottom: 56px; }
.arch-head .eyebrow { margin-bottom: 12px; color: var(--gold); }
.arch-head h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink-text); }
.arch-box {
  padding: 12px 28px;
  border: 1px solid var(--cream-dark);
  background: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-text);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.arch-box.gold { border-color: var(--gold); color: var(--gold); background: #ffffff; font-size: 11px; letter-spacing: 0.3em; }
.arch-arr { width: 1px; height: 28px; background: var(--cream-dark); position: relative; }
.arch-arr::after { content:''; position:absolute; bottom:0; left:-3px; width:7px; height:7px; border-right:1px solid var(--cream-dark); border-bottom:1px solid var(--cream-dark); transform:rotate(45deg) translateY(-2px); }
.arch-leaves { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.arch-leaf { border: 1px solid var(--cream-dark); background: #ffffff; padding: 9px 16px; font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mist); box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.arch-final { margin-top: 28px; font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--ink-text); text-align: center; }

.principles-section {
  background: var(--navy);
  padding: 144px 0;
  border-top: 1px solid var(--border);
}
.principles-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
  margin-top: 72px;
}
.principle-card {
  background: var(--navy);
  padding: 60px 52px;
  border: 1px solid var(--border);
}
.principle-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--white); margin-bottom: 24px; }
.principle-card p { font-size: 15px; line-height: 1.85; color: var(--mist); margin-bottom: 16px; }
.principle-card p:last-child { margin-bottom: 0; }

.difference {
  background: var(--cream);
  padding: 120px 48px;
  text-align: center;
}
.difference-inner { max-width: 800px; margin: 0 auto; }
.difference .eyebrow-light { margin-bottom: 32px; }
.difference h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-text);
  margin-bottom: 28px;
}
.difference p { font-size: 16px; line-height: 1.8; color: var(--ink-mist); margin-bottom: 16px; }

.mem-hero-text {
  position: relative;
  background: var(--ink);
  padding: 144px 0;
  overflow: hidden;
}
.mem-hero-text-ghost {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(150px, 22vw, 280px);
  font-weight: 400;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  letter-spacing: 0.04em;
  user-select: none;
  pointer-events: none;
}
.mem-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.mem-hero-inner .eyebrow { margin-bottom: 32px; }
.mem-hero-inner h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.mem-hero-inner h2 em { font-style: italic; color: var(--cream); }
.mem-hero-inner p { font-size: 17px; line-height: 1.8; color: var(--mist); max-width: 560px; }

.philosophy-split {
  background: var(--navy-mid);
  padding: 144px 0;
  border-top: 1px solid var(--border);
}
.philosophy-split-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.philo-block .eyebrow { margin-bottom: 24px; }
.philo-block h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; font-style: italic; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.philo-block p { font-size: 15px; line-height: 1.85; color: var(--mist); margin-bottom: 16px; }
.philo-block p:last-child { margin-bottom: 0; }

.journey-section {
  background: var(--cream);
  padding: 144px 0;
}
.journey-inner { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.journey-inner .eyebrow-light { margin-bottom: 32px; }
.journey-inner h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-text);
  margin-bottom: 80px;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--cream-dark);
  list-style: none;
  padding: 0;
  margin: 0;
}
.journey-step {
  padding: 44px 32px;
  border-right: 1px solid var(--cream-dark);
  transition: background var(--fast);
  list-style: none;
}
.journey-step::marker {
  content: "";
  display: none;
}
.journey-step:last-child { border-right: none; }
.journey-step:hover { background: rgba(0,0,0,0.03); }
.j-num { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; }
.j-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink-text); margin-bottom: 14px; line-height: 1.2; }
.j-body { font-size: 13px; line-height: 1.75; color: var(--ink-mist); }

.mem-principles {
  background: var(--navy);
  padding: 144px 0;
  border-top: 1px solid var(--border);
}
.mem-principles-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
  margin-top: 72px;
}
.mem-principle-card {
  background: var(--navy);
  padding: 44px 36px;
  border: 1px solid var(--border);
}
.mem-principle-card h4 { font-family: var(--serif); font-size: 22px; font-style: italic; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.mem-principle-card p { font-size: 13px; line-height: 1.75; color: var(--mist); }

.eligibility-section {
  background: var(--navy-mid);
  padding: 144px 0;
  border-top: 1px solid var(--border);
}
.eligibility-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.elig-left .eyebrow { margin-bottom: 24px; }
.elig-left h2 { font-family: var(--serif); font-size: clamp(38px, 4vw, 52px); font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 28px; }
.elig-left h2 em { font-style: italic; color: var(--cream); opacity: 0.8; }
.elig-left p { font-size: 16px; line-height: 1.8; color: var(--mist); }
.elig-list { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.elig-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.6;
  color: var(--mist);
  position: relative;
  padding-left: 28px;
  transition: color var(--fast);
}
.elig-item::before { content:''; position:absolute; left:0; top:28px; width:14px; height:1px; background:var(--gold); }
.elig-item:hover { color: var(--white); }
.elig-note { padding-top: 24px; font-size: 13px; font-style: italic; color: var(--dusk); }

.mem-cta {
  background: var(--ink);
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mem-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,162,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.mem-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.mem-cta .eyebrow { margin-bottom: 32px; }
.mem-cta h2 { font-family: var(--serif); font-size: clamp(44px, 6vw, 80px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; color: var(--white); margin-bottom: 24px; }
.mem-cta h2 em { font-style: italic; color: var(--cream); }
.mem-cta p { font-size: 16px; line-height: 1.8; color: var(--mist); max-width: 520px; margin: 0 auto 48px; }
.mem-cta .cta-note { margin-top: 72px; font-size: 13px; font-style: italic; color: var(--dusk); }

.commitment {
  border: 1px solid var(--border);
  padding: 44px;
  max-width: 680px;
  margin: 52px auto 0;
  text-align: center;
}
.commitment .eyebrow { margin-bottom: 16px; }
.commitment p { font-size: 14px; line-height: 1.85; color: var(--mist); margin-bottom: 14px; }
.commitment p:last-child { margin-bottom: 0; font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--white); }

@media (max-width: 1100px) {
  .nav-wrap, .c { padding: 0 32px; }
  .hero-home-inner, .manifesto, .story-grid, .eco-rows-head, .eco-list, .eco-link-row,
  .cta-home, .page-header-inner, .inst-who-grid, .section-head-center, .eco-cards,
  .gov-banner, .arch-section, .principles-grid, .difference, .mem-hero-inner,
  .philosophy-split-inner, .journey-inner, .mem-principles-grid, .eligibility-inner,
  .mem-cta, .footer-grid, .footer-bar-inner { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 70px 0 0 0; background: rgba(3,7,16,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 40px 24px; gap: 24px; align-items: flex-start; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 14px; letter-spacing: 0.2em; }
  .hamburger { display: flex; }
  .nav-btn { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-col:not(:last-child)::after { display: none; }
  .manifesto-col { padding-right: 0; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-image { height: 400px; margin-right: 0; }
  .eco-rows-head { grid-template-columns: 1fr; gap: 24px; }
  .eco-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .eco-item-desc, .eco-item-icon { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .three-pillars-inner { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .eco-cards { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .philosophy-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-step { border-bottom: 1px solid var(--cream-dark); }
  .mem-principles-grid { grid-template-columns: repeat(2, 1fr); }
  .eligibility-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-header { min-height: 420px; padding-top: 120px; }
  .page-header-inner h1 { font-size: clamp(32px, 6.5vw, 56px); }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 70px 0 0 0; background: rgba(5,11,20,0.97); padding: 40px 24px; gap: 24px; align-items: flex-start; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 14px; }
  .hamburger { display: flex; }
  .nav-btn { display: none; }
  .hero-display { font-size: 58px; }
  .hero-home-content { padding-bottom: 56px; }
  .hero-home-inner { padding: 0 24px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-num { font-size: 60px; }
  .journey-steps { grid-template-columns: 1fr; }
  .mem-principles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar-inner { flex-direction: column; padding: 20px 24px; }
  .cta-home h2 { font-size: 48px; }
  .page-header-inner h1 { font-size: 44px; }
  .page-header { min-height: 50vh; }
  .ghost-text { font-size: 100px; }
  .mem-hero-text-ghost { font-size: 100px; }
  .hero-scroll { display: none; }
  .hero-badge { display: none; }
  .section-head-center, .inst-who-grid, .philosophy-split-inner, .journey-inner, .eligibility-inner, .mem-hero-inner, .gov-banner, .arch-section, .difference, .mem-cta { padding-left: 24px; padding-right: 24px; }
  .eco-list, .eco-link-row { padding-left: 24px; padding-right: 24px; }
}

/* Additional mobile improvements */
@media (max-width: 640px) {
  .nav-links { background: rgba(3,7,16,0.98); backdrop-filter: blur(20px); }
  .nav-links.open a { font-size: 14px; letter-spacing: 0.2em; }
  .nav-signin { width: 32px; height: 32px; }
  .hero-display { font-size: clamp(44px, 13vw, 58px); line-height: 0.95; }
  .hero-sub { font-size: 15px; }
  .story-body { font-size: 15px; }
  .nav-wrap { padding: 0 20px; gap: 12px; }
  .contact-intro-inner, .contact-faq-inner { padding-left: 24px; padding-right: 24px; }
  .contact-quote { padding: 72px 24px; }
}

/* ── Contact Page ─────────────────────────────────────────── */

.contact-intro {
  background: var(--navy);
  padding: 128px 0;
  border-bottom: 1px solid var(--border);
}
.contact-intro-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-intro-left h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 24px 0 28px;
}
.contact-intro-left h2 em { font-style: italic; color: var(--cream); }
.contact-intro-left p { font-size: 15px; line-height: 1.85; color: var(--mist); margin-bottom: 18px; }
.contact-intro-left p:last-child { margin-bottom: 0; }

.contact-channel {
  border: 1px solid var(--border);
  padding: 32px 36px;
  position: relative;
  transition: background var(--fast);
}
.contact-channel + .contact-channel { margin-top: 1px; }
.contact-channel:hover { background: rgba(255,255,255,0.02); }
.contact-channel::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--fast);
}
.contact-channel:hover::before { opacity: 1; }
.contact-channel-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-channel-value {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--fast);
}
a.contact-channel-value:hover { color: var(--gold); }
.contact-channel-note { font-size: 13px; line-height: 1.7; color: var(--dusk); }

.contact-quote {
  background: var(--cream);
  padding: 112px 48px;
  text-align: center;
}
.contact-quote-inner { max-width: 800px; margin: 0 auto; }
.contact-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink-text);
  margin-bottom: 28px;
}
.contact-quote cite {
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mist);
}

.contact-faq {
  background: var(--ink);
  padding: 128px 0;
  border-top: 1px solid var(--border);
}
.contact-faq-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.contact-faq-head {
  max-width: 560px;
  margin-bottom: 72px;
}
.contact-faq-head .eyebrow { margin-bottom: 20px; }
.contact-faq-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-faq-head h2 em { font-style: italic; color: var(--cream); opacity: 0.8; }
.contact-faq-head p { font-size: 15px; line-height: 1.8; color: var(--mist); }
.contact-faq-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
}
.contact-faq-item {
  background: var(--ink);
  padding: 48px 44px;
  border: 1px solid var(--border);
  transition: background var(--fast);
}
.contact-faq-item:hover { background: rgba(255,255,255,0.018); }
.contact-faq-item h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.contact-faq-item p { font-size: 14px; line-height: 1.8; color: var(--mist); }

@media (max-width: 960px) {
  .contact-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-faq-items { grid-template-columns: 1fr; }
}

/* ── Application / Request Access Form ───────────────────── */

.app-section {
  background: var(--ink);
  padding: 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,162,74,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.app-section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 128px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Framing copy */
.app-left {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.app-left h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.app-left h2 em { font-style: italic; color: var(--cream); }
.app-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.app-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 32px;
}
.app-assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 20px 22px;
}
.app-assurance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.app-assurance-icon svg { width: 16px; height: 16px; }
.app-assurance-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fog);
  margin-bottom: 4px;
}
.app-assurance-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--dusk);
}

/* Form card */
.app-right {
  max-width: 780px;
  width: 100%;
  background: rgba(11, 20, 35, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.app-form {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.app-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.app-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-label-note {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--dusk);
  text-transform: none;
}
.app-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--white);
  outline: none;
  transition: border-color var(--fast), background var(--fast);
  width: 100%;
}
.app-input::placeholder { color: rgba(255, 255, 255, 0.25); }
.app-input:focus { border-color: var(--gold); background: rgba(255, 255, 255, 0.06); }
.app-input:focus::placeholder { color: rgba(255,255,255,0.1); }
.app-textarea {
  resize: none;
  line-height: 1.7;
}

/* Referral field — special treatment */
.app-referral-group {
  background: rgba(201,162,74,0.04);
  border: 1px solid rgba(201,162,74,0.14);
  padding: 24px 28px;
  margin: 0 -4px;
  gap: 10px;
  position: relative;
}
.app-referral-group::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.app-referral-group .app-label { color: var(--gold); }
.app-referral-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dusk);
  font-style: italic;
}
.app-referral-group .app-input { border-bottom-color: rgba(201,162,74,0.2); }
.app-referral-group .app-input:focus { border-bottom-color: var(--gold); }

/* Form footer */
.app-form-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.app-form-privacy {
  font-size: 12px;
  line-height: 1.65;
  color: var(--dusk);
  max-width: 360px;
}
.app-form-privacy a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201,162,74,0.3); }
.app-form-privacy a:hover { text-decoration-color: var(--gold); }

/* Submit button */
.app-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background var(--fast), color var(--fast), gap var(--fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.app-submit:hover { background: var(--gold); color: var(--ink); gap: 18px; }
.app-submit:hover .app-submit-arrow { transform: translateX(2px); }
.app-submit-arrow { font-size: 14px; transition: transform var(--fast); }

/* Success state */
.app-success {
  text-align: center;
  padding: 48px 24px;
  animation: fadeUp 0.6s var(--ease) forwards;
}
.app-success-mark {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.7;
}
.app-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.app-success p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1080px) {
  .app-section-inner { gap: 64px; }
}
@media (max-width: 900px) {
  .app-section-inner { gap: 48px; padding: 96px 32px; }
  .app-assurance { grid-template-columns: 1fr; }
  .app-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .app-section-inner { padding: 72px 24px; }
  .app-form { padding: 36px 28px; }
  .app-form-footer { flex-direction: column; align-items: flex-start; }
  .app-submit { width: 100%; justify-content: center; }
  .app-referral-group { padding: 20px 20px; }
}
