/* ============================================================
   RESET & VARIABLES
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:         #0B1929;
  --navy-2:       #0E1F35;
  --navy-3:       #122440;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dark:    #A88330;
  --gold-subtle:  rgba(201, 168, 76, 0.10);
  --gold-border:  rgba(201, 168, 76, 0.20);
  --white:        #F5F0E8;
  --white-70:     rgba(245, 240, 232, 0.70);
  --white-40:     rgba(245, 240, 232, 0.40);
  --muted:        #6B8099;
  --muted-2:      #4A607A;
  --max-w:        1200px;
  --section-py:   96px;
  --radius:       0px; /* intentionally square — financial/institutional */
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  color: var(--white-70);
  font-size: 0.95rem;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
  color: var(--gold-light);
}

sup {
  font-size: 0.65em;
  color: var(--muted);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
}

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

.section-dark {
  background-color: var(--navy-2);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.038) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section-thin {
  padding: 56px 0;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-gold:hover::after {
  left: 160%;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--white-70);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.18);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

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

.btn-gold-outline {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

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

.btn-lg {
  padding: 16px 40px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
  text-align: center;
  display: block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s, border-bottom 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
  background: rgba(11, 25, 41, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 30px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 22px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white-70);
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px 36px;
  background: rgba(11, 25, 41, 0.98);
  border-top: 1px solid var(--gold-border);
}

.nav-mobile.open {
  display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.72rem !important;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-headline {
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-sub {
  font-size: 1.05rem !important;
  line-height: 1.72;
  color: var(--white-70) !important;
  max-width: 580px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 0.75rem !important;
  color: var(--muted) !important;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); }
  50%       { opacity: 0.9;  transform: scaleY(1); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 44px 0;
  background: var(--navy-2);
}

.stats-grid {
  display: flex;
  align-items: center;
}

.stat {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-text .section-headline {
  margin-bottom: 28px;
}

.problem-text p {
  margin-bottom: 18px;
}

.problem-callout {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.7rem !important;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 32px !important;
  line-height: 1.3;
}

.problem-gaps-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.gap-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-border);
}

.gap-item:first-of-type {
  border-top: 1px solid var(--gold-border);
}

.gap-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}

.gap-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.gap-highlight {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: var(--gold-subtle);
  font-size: 0.84rem;
  color: var(--white-70);
  line-height: 1.65;
  font-style: italic;
}

/* ============================================================
   PRODUCT / NDS
   ============================================================ */
.product-intro {
  max-width: 760px;
  margin-bottom: 60px;
}

.product-sub {
  font-size: 1rem !important;
  color: var(--white-70) !important;
  line-height: 1.75;
}

/* Score display */
.score-display {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.score-example {
  background: var(--navy-3);
  border: 1px solid var(--gold-border);
  padding: 36px 44px;
  max-width: 600px;
  width: 100%;
}

.score-company {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.score-value-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.score-label-sm {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.score-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.score-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.score-max {
  font-size: 1.4rem;
  color: var(--muted);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.score-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.07);
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.score-risk {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E0944A;
  white-space: nowrap;
}

/* Mini metrics breakdown inside score card */
.score-metrics-mini {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 16px;
}

.score-mini-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  gap: 8px;
}

.score-mini-val {
  font-weight: 500;
  white-space: nowrap;
}
.score-mini-val.high { color: #E0944A; }
.score-mini-val.mid  { color: var(--gold); }
.score-mini-val.low  { color: #6CB07A; }

.score-note {
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  line-height: 1.6;
}

/* Metrics grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-bottom: 48px;
}

.metric-card {
  background: var(--navy-2);
  padding: 32px 28px;
  transition: background 0.25s;
}

.metric-card:hover {
  background: var(--navy-3);
}

.metric-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}

.metric-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.metric-desc {
  font-size: 0.81rem !important;
  color: var(--muted) !important;
  line-height: 1.62;
}

/* Tech note */
.tech-note {
  display: flex;
  justify-content: center;
}

.tech-note-inner {
  border: 1px solid var(--gold-border);
  padding: 22px 36px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 100%;
}

.tech-note-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
  padding-top: 2px;
}

.tech-note-inner p {
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  line-height: 1.65;
}

/* ============================================================
   ACADEMIC STRIP
   ============================================================ */
.academic-strip {
  border: 1px solid var(--gold-border);
  padding: 36px 40px;
}

.academic-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}

.academic-papers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.paper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paper-ref {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}

.paper-journal {
  font-size: 0.7rem;
  color: var(--gold);
  font-style: italic;
}

.paper-finding {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.icp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-bottom: 28px;
}

.icp-card {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  padding: 32px 24px;
  transition: background-color 0.25s;
}

.icp-card:hover {
  background-color: var(--navy-2);
}

.icp-icon {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.icp-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.icp-desc {
  font-size: 0.81rem !important;
  color: var(--muted) !important;
  line-height: 1.65;
  margin-bottom: 20px;
}

.icp-detail {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid var(--gold-border);
  line-height: 1.5;
}

.not-a-fit {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 14px 20px;
  border-left: 2px solid rgba(255,255,255,0.08);
  line-height: 1.6;
}

.not-fit-label {
  font-weight: 500;
  color: var(--white-40);
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--navy-2);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-featured {
  background: var(--navy-3);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.pricing-tier {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.pricing-target {
  font-size: 0.73rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.4;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-border);
}

.pricing-currency {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.pricing-period {
  font-size: 0.73rem;
  color: var(--muted);
}

.pricing-custom {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.81rem;
  color: var(--white-70);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.pricing-note {
  font-size: 0.76rem !important;
  color: var(--muted) !important;
  text-align: center;
  padding: 0 20px;
  line-height: 1.7;
}

.pricing-waitlist {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
}

.pricing-waitlist-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-waitlist-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}

.pricing-waitlist-lock {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ============================================================
   TEAM STRIP
   ============================================================ */
.team-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 56px;
  border: 1px solid var(--gold-border);
  padding: 44px 52px;
}

.team-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.68;
}

.team-divider {
  width: 1px;
  min-height: 80px;
  background: var(--gold-border);
  align-self: stretch;
}

/* ============================================================
   ACCESS FORM
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.access-left .section-headline {
  margin-bottom: 20px;
}

.access-left p {
  margin-bottom: 16px;
}

.access-info {
  margin-top: 40px;
  border-top: 1px solid var(--gold-border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.access-info-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 110px;
  flex-shrink: 0;
  padding-top: 2px;
}

.access-info-val {
  font-size: 0.81rem;
  color: var(--white-70);
  line-height: 1.55;
}

.access-info-val a {
  color: var(--gold);
  transition: color 0.2s;
}

.access-info-val a:hover {
  color: var(--gold-light);
}

/* Form */
.access-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}

.form-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-2);
  font-size: 0.65rem;
  font-weight: 400;
}

.form-input {
  background: var(--navy-2);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.22s, background 0.22s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--navy-3);
}

.form-input::placeholder {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8099' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

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

.form-error {
  font-size: 0.8rem;
  color: #E07070;
  padding: 12px 16px;
  border: 1px solid rgba(224, 112, 112, 0.3);
  background: rgba(224, 112, 112, 0.05);
  line-height: 1.55;
}

.form-error a {
  color: var(--gold);
}

.form-disclaimer {
  font-size: 0.7rem !important;
  color: var(--muted-2) !important;
  line-height: 1.55;
  text-align: center;
  margin-top: -4px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 64px 40px;
  border: 1px solid var(--gold-border);
  background: var(--navy-2);
}

.success-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.form-success h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  line-height: 1.72;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--gold-border);
  padding: 64px 0 32px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 4px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.81rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 0.7rem;
  color: var(--muted);
}

.footer-ref {
  font-style: italic;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .icp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .academic-papers {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 18px 20px;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .hero-scroll {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stat {
    padding: 0;
  }

  .stat-divider {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .score-metrics-mini {
    grid-template-columns: 1fr 1fr;
  }

  .icp-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    order: -1;
  }

  .team-strip {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .team-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .tech-note-inner {
    flex-direction: column;
    gap: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .academic-strip {
    padding: 28px 24px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .academic-papers {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .score-example {
    padding: 28px 24px;
  }

  .score-metrics-mini {
    grid-template-columns: 1fr;
  }
}
