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

* { 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; }

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(--off-white);
  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;
}

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

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

.capability-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.15s ease, transform 0.15s ease;
  position: relative;
}
.capability-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.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 it works ---------- */
#how-it-works { padding-top: 20px; }

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

.pillar .num {
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.pillar h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pillar p {
  color: var(--muted-text);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 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);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

.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);
  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; }

.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: roadmap ---------- */
.roadmap-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted-text);
  font-size: 18px;
}

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

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

.roadmap-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: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.roadmap-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.roadmap-card p {
  color: var(--muted-text);
}

/* ---------- 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); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .roadmap-grid { grid-template-columns: 1fr; gap: 20px; }
}

@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 { 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; }
}

@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; }
}
