/* ============================================
   GOLDEN LOTUS VENTURES — STYLESHEET
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Custom Properties --- */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0D1E36;
  --navy-light: #122040;
  --gold:       #C9A84C;
  --gold-dim:   rgba(201, 168, 76, 0.12);
  --gold-border:rgba(201, 168, 76, 0.25);
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-800:   #1F2937;

  --font-display: 'Barlow', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
  --section-pad: 100px;
  --section-pad-sm: 64px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.22s var(--ease);
}

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: var(--section-pad-sm) 0;
}

/* Alternating section backgrounds */
.bg-navy  { background: var(--navy); color: var(--white); }
.bg-white { background: var(--white); color: var(--navy); }
.bg-off   { background: var(--off-white); color: var(--navy); }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(201, 168, 76, 0.65);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .btn-nav {
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}

.nav-links .btn-nav:hover {
  background: #d4b566;
  transform: translateY(-1px);
}

.nav-links .btn-nav::after { display: none; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  z-index: 999;
  padding: 16px 0 24px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.04);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
}

.display {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
.h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
.h3 { font-size: 1.25rem; font-weight: 700; }
.h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
}

.lead-dark {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 640px;
}

p { line-height: 1.75; }

/* Gold accent divider */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-line-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: #d4b566;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(10, 22, 40, 0.25);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 0.95rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Geometric dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.07) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Subtle diagonal accent */
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-headline .accent { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin-bottom: 40px;
}

/* ============================================
   STATS / COUNTER BLOCKS
   ============================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin: 64px 0;
}

.stat-block {
  background: var(--navy-mid);
  padding: 40px 36px;
  position: relative;
}

.stat-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-block:hover::after { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 60px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .lead-dark {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARDS / PILLARS
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}

.card-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
}

.card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* Cards on white background */
.card-light {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card-light:hover {
  box-shadow: 0 8px 32px rgba(10,22,40,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card-light .card-tag { color: var(--gold); }
.card-light h3 { color: var(--navy); }
.card-light p { color: var(--gray-600); }

/* ============================================
   DIFFERENTIATORS / FEATURE LIST
   ============================================ */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.diff-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-border);
  line-height: 1;
  min-width: 40px;
  letter-spacing: -0.04em;
}

.diff-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.diff-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.founder-photo {
  aspect-ratio: 3/4;
  background: var(--navy-light);
  border-radius: 6px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.3);
}

.founder-photo-placeholder svg {
  width: 80px;
  height: 80px;
}

.founder-photo-placeholder span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.founder-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1.05rem;
  color: rgba(10, 22, 40, 0.7);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-band .btn-group { justify-content: center; }

.cta-band .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(10,22,40,0.3);
}

.cta-band .btn-outline {
  color: var(--navy);
  border-color: rgba(10,22,40,0.3);
}

.cta-band .btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ============================================
   PAIN POINTS / CHECKLIST
   ============================================ */

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  transition: border-color var(--transition);
}

.check-item:hover {
  border-color: rgba(201,168,76,0.2);
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.check-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================================
   TWO-COLUMN SECTIONS
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-narrow {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ============================================
   PLATFORM PILLARS (Detailed)
   ============================================ */

.pillar {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pillar:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pillar h3 {
  font-size: 1.75rem;
  color: var(--white);
}

.pillar-body {
  max-width: 680px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
}

/* ============================================
   EXIT THESIS / MATH BOX
   ============================================ */

.math-box {
  background: var(--navy);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.math-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), transparent);
}

.math-box h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.math-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.math-formula {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
  line-height: 1.5;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-col h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-col p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #060E1A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  font-size: 1rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 80px) 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.06) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  max-width: 760px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================
   MOAT GRID
   ============================================ */

.moat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.moat-item {
  background: var(--navy);
  padding: 40px;
  transition: background var(--transition);
}

.moat-item:hover {
  background: var(--navy-mid);
}

.moat-item-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.moat-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.moat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================
   UTILITY
   ============================================ */

.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: rgba(255,255,255,0.55); }
.text-center { text-align: center; }

.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-16 { margin-top: 64px; }

.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }

.max-640 { max-width: 640px; }
.max-720 { max-width: 720px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid  { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 300px; aspect-ratio: 1/1; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col-narrow { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 64px;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }

  .cards-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .diff-grid  { grid-template-columns: 1fr; gap: 24px; }
  .moat-grid  { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-headline { font-size: 2.4rem; }
  .hero::after { display: none; }

  .math-box { padding: 32px 24px; }
  .pillar { margin-bottom: 48px; padding-bottom: 48px; }

  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-band .btn-group { align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-inner { padding: 60px 0 72px; }
  .card { padding: 28px 24px; }
  .stat-block { padding: 28px 24px; }
}
