:root {
  --ink: #111827;
  --panel: #ffffff;
  --paper: #f7f9fc;
  --muted: #5b6472;
  --line: #d8dee8;
  --blue: #1155cc;
  --cyan: #087f8c;
  --orange: #e4572e;
  --green: #28784f;
  --dark: #0b1220;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(10, 18, 32, 0.14);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 32px)); }
.skip-link { position: absolute; left: -999px; top: 10px; }
.skip-link:focus { left: 10px; z-index: 100; background: white; padding: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1220px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--dark);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}
.brand-name { font-weight: 800; font-size: 1.1rem; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none;
  color: #344054;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: #eef4ff; color: var(--blue); }
.nav-links .nav-cta { background: var(--orange); color: white; margin-left: 6px; }
.nav-links .nav-cta:hover { background: #c94321; color: white; }
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
}

.breadcrumb { width: min(1160px, calc(100% - 32px)); margin: 18px auto 0; font-size: 0.9rem; color: var(--muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #98a2b3; }

.home-hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 36%; opacity: 0.62; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,20,0.88) 0%, rgba(5,10,20,0.66) 48%, rgba(5,10,20,0.24) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 92px 0 70px; color: white; }
.kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(2.4rem, 6vw, 5rem); max-width: 860px; }
.hero-subheadline, .lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 760px;
  color: rgba(255,255,255,0.88);
  margin: 20px 0 0;
}
.page-hero {
  padding: 72px 0 58px;
  background: linear-gradient(135deg, #0b1220, #18324c);
  color: white;
  border-bottom: 6px solid var(--orange);
}
.page-hero .lede { color: rgba(255,255,255,0.86); }

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}
.button.primary { background: var(--orange); color: white; }
.button.primary:hover { background: #c94321; }
.button.secondary { background: white; color: var(--ink); border-color: var(--line); }
.button.secondary:hover { border-color: #98a2b3; }
.button.light { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.36); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}
.hero-proof span, .placeholder-strip span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 750;
}

.section { padding: 72px 0; }
.band { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-band { background: white; border-bottom: 1px solid var(--line); padding: 52px 0; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2, .split h2, .cta-band h2 { margin: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.section-heading p, .split p, .card p, .answer-card p, .price-card p, .contact-grid p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .answer-card, .price-card, .conversion-form, .contact-grid article, .social-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(16,24,40,0.04);
}
.card h2, .answer-card h3 { margin: 0 0 8px; font-size: 1.18rem; }

.audience-path-section {
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
}
.audience-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(16,24,40,0.04);
}
.audience-card.featured {
  border-color: rgba(228, 87, 46, 0.42);
  box-shadow: 0 10px 28px rgba(228, 87, 46, 0.1);
}
.audience-label {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.audience-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}
.audience-card p:not(.audience-label) {
  margin: 0 0 18px;
  color: var(--muted);
}
.audience-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}
.audience-link:hover {
  text-decoration: underline;
}
.program-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.program-proof-strip span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 750;
}

.media-section { background: #edf4f8; }
.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.media-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.placeholder-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.placeholder-strip span { background: white; color: var(--ink); border-color: var(--line); }

.answer-section { background: #fbfcfe; }
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.answer-card { box-shadow: none; }

.module-list, .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.module-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.module-list span {
  color: var(--cyan);
  font-weight: 900;
  font-size: 1.45rem;
}
.module-list h2 { margin: 0 0 6px; }
.module-list p { margin: 0; color: var(--muted); }
.timeline-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.check-list { margin: 0; padding-left: 20px; color: var(--muted); }
.check-list li { margin: 8px 0; }
.path-list p { margin-top: 0; }
.pricing-grid, .contact-grid, .form-layout, .social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.price { font-size: 2.2rem; color: var(--blue); font-weight: 900; margin: 6px 0 12px; }

.conversion-form label { display: grid; gap: 6px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(17,85,204,0.18); border-color: var(--blue); }
.checkbox-line { display: flex !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; font-weight: 650 !important; color: var(--muted) !important; }
.checkbox-line input { width: 18px; height: 18px; margin-top: 4px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; }
.form-message { min-height: 24px; margin: 8px 0 12px; color: var(--green); font-weight: 800; }
.form-message.error { color: #b42318; }
.compact { box-shadow: none; }

.map-placeholder {
  margin-top: 18px;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed #98a2b3;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17,85,204,0.08) 1px, transparent 1px),
    linear-gradient(rgba(17,85,204,0.08) 1px, transparent 1px),
    #f8fafc;
  background-size: 28px 28px;
  color: var(--muted);
  text-align: center;
  padding: 18px;
}

.cta-band {
  padding: 48px 0;
  background: var(--dark);
  color: white;
}
.cta-layout {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,0.78); max-width: 680px; }

.site-footer {
  background: #070b13;
  color: rgba(255,255,255,0.82);
  padding: 48px 0 24px;
}
.footer-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 28px;
}
.footer-brand { color: white; font-weight: 900; text-decoration: none; font-size: 1.2rem; }
.site-footer h2 { margin: 0 0 10px; font-size: 0.95rem; color: white; }
.site-footer a { display: block; color: rgba(255,255,255,0.82); text-decoration: none; margin: 7px 0; }
.site-footer a:hover { color: white; text-decoration: underline; }
.ecosystem-note { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-bottom {
  width: min(1160px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}
.footer-bottom a { display: inline; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin-left: 0; }
  .card-grid.three, .card-grid, .answer-grid, .audience-path-grid, .split, .media-layout, .pricing-grid, .contact-grid, .form-layout, .social-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-layout { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 24px, 1160px); }
  .home-hero { min-height: 86vh; }
  .hero-copy { padding-top: 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .module-list li { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { width: 100%; }
  .button { width: 100%; }
}
