:root {
  --navy: #1A3560;
  --gold: #E8961E;
  --gold-hover: #C97D10;
  --off-white: #F9F8F6;
  --white: #FFFFFF;
  --dark-text: #1C1C1C;
  --muted-text: #5C5C5C;
  --border: #E2E0DC;
  --community-bg: #F2F0EB;
  --sand: #F7F4EF;
  --community-bg-2: #EFE8D8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--off-white);
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 60px 0; }

h1, h2, h3 { font-weight: 600; color: var(--navy); }

h2.section-heading {
  font-size: 36px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 10px;
}

p.section-subtext {
  font-size: 18px;
  color: var(--muted-text);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.eyebrow-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
}

.eyebrow-gold {
  display: inline-block;
  background: rgba(232,150,30,0.12);
  color: var(--gold-hover);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 24px;
}
.btn-gold:hover { background: var(--gold-hover); }

.btn-gold-sm {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 24px;
}
.btn-gold-sm:hover { background: var(--gold-hover); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 14px 28px;
  border-radius: 24px;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-text-arrow {
  background: none;
  color: var(--dark-text);
  font-weight: 500;
  padding: 14px 4px;
}
.btn-text-arrow span { color: var(--gold); margin-left: 6px; transition: margin-left 0.15s ease; }
.btn-text-arrow:hover span { margin-left: 10px; }

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo .arrow { color: var(--gold); margin: 0 2px; }

.logo-mark { display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 26px; height: 26px; border-radius: 6px; }

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

nav.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
}
nav.nav-links a:hover { color: var(--gold-hover); }

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

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--sand);
  padding: 20px 0 40px;
}
.hero .container {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.hero-text { flex: 0 0 55%; }
.hero-visual { flex: 0 0 40%; margin-left: auto; }

.hero-text h1 {
  font-size: 52px;
  line-height: 1.15;
  margin: 20px 0 16px;
}

.hero-text p.sub {
  font-size: 18px;
  color: var(--muted-text);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-visual-card {
  max-width: 480px;
  margin-left: auto;
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
}
.hero-visual-card .accent-bar { height: 4px; background: var(--gold); }
.hero-visual-card .placeholder-content {
  padding: 64px 24px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* "LIVE MOMENT LOG" hero visual */
.moment-log-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.moment-log-label {
  font: 11px ui-monospace, Menlo, monospace;
  color: rgba(255,255,255,0.5);
  padding: 0 4px 4px;
  letter-spacing: 0.05em;
}
.moment-log-item {
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.moment-log-item-title { color: var(--white); font-size: 13.5px; font-weight: 600; }
.moment-log-item-meta { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 3px; }
.moment-log-tag {
  background: rgba(232,150,30,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.moment-log-tag.done { background: rgba(255,255,255,0.15); color: var(--white); }

/* ---------- Capabilities ---------- */
#capabilities { padding-bottom: 28px; }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.capability-card {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
  position: relative;
}
.capability-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.capability-icon-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 16px;
}

.capability-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232,150,30,0.12);
  color: var(--gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.capability-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 14px;
  color: var(--muted-text);
}

.capability-card .card-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  font-size: 15px;
}
.capability-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- How Leadra works (4-step loop) ---------- */
#how-it-works { padding-top: 20px; background: var(--sand); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  background: var(--white);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 { font-size: 15px; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--muted-text); }

/* ---------- Grounded in behavioural science ---------- */
.science-section {
  background: var(--navy);
  color: var(--white);
}
.science-section .section-heading,
.science-section h2 { color: var(--white); text-align: left; margin: 0 0 10px; max-width: none; }
.science-section .section-subtext {
  color: rgba(255,255,255,0.65);
  text-align: left;
  margin: 0 0 36px;
  max-width: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar {
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.pillar:first-child { padding-left: 0; border-left: none; }

.pillar .num {
  width: 34px;
  height: 34px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--white);
}

.pillar p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

/* ---------- Bring Leadra to your organisation ---------- */
.org-section { background: var(--sand); }

.eyebrow-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.org-heading { font-size: 32px; margin: 0 0 12px; }
.org-subheading { font-size: 17px; color: var(--navy); font-weight: 700; margin: 0 0 18px; }
.org-divider { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 0 0 22px; }
.org-body { color: var(--muted-text); max-width: 640px; margin: 0 0 40px; }

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

.org-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(22,35,61,0.06);
}
.org-card.dark { background: var(--navy); color: var(--white); }

.org-card-num {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.org-card.dark .org-card-num { background: var(--gold); color: var(--navy); }

.org-card h3 { font-size: 16px; margin-bottom: 10px; }
.org-card.dark h3 { color: var(--white); }
.org-card p { color: var(--muted-text); font-size: 13.5px; line-height: 1.55; }
.org-card.dark p { color: rgba(255,255,255,0.7); }

.org-cta { margin-top: 36px; }

/* ---------- Pricing ---------- */
#pricing { padding-top: 28px; }

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

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--gold);
}

.price-card.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.price-card.dark h3 { color: var(--white); }
.price-card.dark .price { color: var(--white); }
.price-card.dark .price span { color: rgba(255,255,255,0.6); }
.price-card.dark .tagline { color: rgba(255,255,255,0.65); }
.price-card.dark ul li { color: rgba(255,255,255,0.85); }
.price-card.dark ul li span.check { color: var(--gold); }
.price-card.dark hr.price-divider { border-color: rgba(255,255,255,0.15); }

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.price-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0 0 24px;
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.price-card .price {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card .price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted-text);
}

.price-card .tagline {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 20px;
}

.price-card ul {
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: var(--dark-text);
}
.price-card ul li span.check { color: var(--gold); font-weight: 600; }

.price-card .btn { text-align: center; width: 100%; }

.pricing-footnote {
  text-align: center;
  color: var(--muted-text);
  margin-top: 28px;
  font-size: 14px;
}

/* ---------- Community ---------- */
.community-section {
  background: var(--community-bg-2);
  text-align: center;
}
.community-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.community-inner h2 { font-size: 36px; margin: 14px 0 12px; }
.community-inner p { color: var(--muted-text); margin-bottom: 24px; }

.community-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.community-tag {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: #4c4335;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
}

.email-capture {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-capture input {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 300px;
  max-width: 100%;
  background: var(--white);
  color: var(--dark-text);
}
.email-capture input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

.email-capture button {
  border-radius: 24px;
  padding: 13px 26px;
}

/* ---------- Get access ---------- */
.get-access {
  background: var(--off-white);
  text-align: center;
}
.get-access h2 { margin-bottom: 10px; }
.get-access .section-subtext { margin-bottom: 28px; }
.get-access-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.get-access .fine-print {
  color: var(--muted-text);
  font-size: 14px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo .arrow { color: var(--gold); margin: 0 2px; }

.footer-tagline {
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-heading.second { margin-top: 20px; }

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.85); font-size: 15px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* ---------- About page: page header ---------- */
.page-header {
  background: var(--off-white);
  text-align: center;
  padding: 12px 0 8px;
}
.page-header h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-top: 24px;
}

#what-is-leadra { padding-top: 12px; }

/* ---------- About page: prose ---------- */
.prose {
  max-width: 640px;
  margin: 0 auto;
}
.prose p {
  margin-bottom: 20px;
  color: var(--dark-text);
}
.prose p:last-child { margin-bottom: 0; }

/* ---------- About page: founder ---------- */
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.avatar-placeholder {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
}

.founder-card .founder-text p {
  color: var(--dark-text);
  margin-bottom: 14px;
}
.founder-card .founder-text p:last-child { margin-bottom: 0; }

.founder-note {
  font-size: 13px;
  color: var(--muted-text);
  font-style: italic;
  margin-bottom: 14px;
}

/* ---------- About page: how we use AI (trust section) ---------- */
.trust-section {
  background: var(--community-bg);
}

/* ---------- About page: who it's for (career-stage cards) ---------- */
.stage-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted-text);
  font-size: 18px;
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 28px;
}

.stage-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.stage-card h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.stage-subtitle {
  font-size: 13px;
  color: var(--muted-text);
  margin-bottom: 12px;
}

.stage-body {
  color: var(--dark-text);
  font-size: 14.5px;
}

.stage-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 8px;
}

.stage-moments {
  color: var(--muted-text);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.stage-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.stage-focus-tag {
  display: inline-block;
  background: rgba(26,53,96,0.07);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.stage-insight {
  color: var(--muted-text);
  font-size: 13px;
  font-style: italic;
}

.stage-closing {
  text-align: center;
  max-width: 560px;
  margin: 40px auto 0;
  color: var(--muted-text);
  font-size: 15px;
}

.stage-cta {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .stage-card { grid-template-columns: 1fr; }
}

/* ---------- About page: why it sticks ---------- */
.sticks-section {
  background: var(--navy);
  color: var(--white);
}
.sticks-section .section-heading { color: var(--white); }

.sticks-intro {
  max-width: 700px;
  margin: 0 auto 40px;
}
.sticks-intro p {
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 16px;
}
.sticks-intro p:last-child { margin-bottom: 0; }

.sticks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.sticks-point .num {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sticks-point h3 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
}

.sticks-point p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

.sticks-closing {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

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

/* ---------- Capability detail pages ---------- */
.capability-page-header {
  background: var(--off-white);
  text-align: center;
  padding: 20px 0 8px;
}

h1.capability-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 32px;
}

.capability-page-header h2 {
  font-size: 28px;
  line-height: 1.3;
  max-width: 780px;
  margin: 20px auto 0;
}

.capability-supports-heading {
  font-size: 22px;
  max-width: 640px;
  margin: 20px auto 16px;
}

#capability-body { padding-top: 16px; }

.capability-cta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.capability-cta-card h2 { margin-bottom: 20px; }
.capability-back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted-text);
}
.capability-back-link:hover { color: var(--gold-hover); }

/* ---------- Modals (capability detail + organisation contact) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,53,96,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  padding: 40px;
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.contact-modal .modal-box { max-width: 520px; }

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.modal-icon { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.modal-header h2 { font-size: 24px; margin: 0; }

.modal-box p { font-size: 15px; line-height: 1.6; color: var(--dark-text); margin: 0 0 18px; }
.modal-box h3 { font-size: 15px; margin: 0 0 10px; }

.modal-close-row { text-align: right; margin-top: 20px; }
.modal-close-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.contact-modal h2 { font-size: 22px; margin: 0 0 6px; }
.contact-modal .modal-intro { font-size: 13.5px; color: var(--muted-text); margin: 0 0 28px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #3a4557;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}
.form-group textarea { resize: vertical; }

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}
.modal-btn-cancel {
  color: var(--dark-text);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.modal-btn-send {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 28px; }
  .pillar { padding: 0; border-left: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .roadmap-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .org-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 40px 0; }

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

  .hero { padding: 40px 0; }
  .hero .container { flex-direction: column; }
  .hero-text { flex: 1; }
  .hero-visual { flex: 1; margin: 32px 0 0; width: 100%; }
  .hero-visual-card, .moment-log-card { margin: 0; max-width: 100%; }
  .hero-text h1 { font-size: 36px; }

  h2.section-heading { font-size: 28px; }
  .page-header h1 { font-size: 32px; }
  .capability-page-header h2 { font-size: 24px; }
  .capability-pill { font-size: 15px; padding: 10px 22px; }

  .founder-card { flex-direction: column; align-items: center; text-align: center; }

  .nav-right { gap: 12px; }
  .nav-right .btn-gold-sm { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 28px; }
  .org-heading, .science-section h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .get-access-ctas { flex-direction: column; align-items: stretch; }
  .get-access-ctas .btn { text-align: center; }
}
