:root {
  --brand-blue: #104e70;
  --brand-blue-deep: #0d3b55;
  --brand-soft: #e8f2f4;
  --brand-mint: #87cfc6;
  --text: #133042;
  --text-soft: #4f6572;
  --white: #ffffff;
  --border: rgba(16, 78, 112, 0.14);
  --shadow: 0 18px 36px rgba(8, 37, 54, 0.12);
  --radius: 8px;
  --container: 1180px;
  --narrow: 860px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f6fafb;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p,
ul,
h1,
h2,
h3 {
  margin-top: 0;
}

ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--brand-blue-deep);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--narrow));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 78, 112, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 0.85rem 0;
}

.brand-logo {
  width: clamp(168px, 20vw, 210px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.link-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius);
  background: #1fa05a;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

section,
.site-footer {
  padding: 5rem 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--brand-soft);
}

.section-dark {
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: var(--white);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #cfeaf0;
}

.section-light h2,
.section-soft h2,
.section-dark h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-light h3,
.section-soft h3,
.section-dark h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-light p,
.section-soft p,
.section-dark p {
  font-size: 1.05rem;
}

.hero {
  padding-top: 5.3rem;
  padding-bottom: 4.7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.01;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #d7eff4;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lead {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.2rem;
}

.hero-points,
.bullet-list,
.offer-list,
.offer-list-light {
  display: grid;
  gap: 0.62rem;
}

.hero-points {
  margin-bottom: 1.45rem;
}

.bullet-list,
.offer-list {
  color: var(--text);
}

.offer-list-light {
  color: rgba(255, 255, 255, 0.94);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.cta-row-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover,
.button:focus-visible,
.link-action:hover,
.link-action:focus-visible,
.support-item-action:hover,
.support-item-action:focus-visible,
.button-primary {
  background: var(--brand-mint);
  color: var(--brand-blue-deep);
  box-shadow: 0 14px 28px rgba(64, 153, 143, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #97dbd3;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.button-secondary-dark {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(12, 49, 72, 0.18);
}

.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  background: var(--brand-blue-deep);
}

.micro-proof {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero-offer {
  display: grid;
  gap: 1rem;
}

.hero-image,
.offer-media img,
.support-media img,
.mentor-media img,
.founder-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-offer-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}
.hero-offer-badge,
.offer-badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(135, 207, 198, 0.18);
  color: #d0f4ef;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-offer-text {
  color: rgba(255, 255, 255, 0.9);
}

.hero-offer-price,
.offer-price,
.mentor-price,
.support-highlight {
  font-weight: 700;
}

.hero-offer-price {
  margin: 1rem 0 0.25rem;
  font-size: 1.95rem;
}

.hero-offer-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.problem-grid,
.pillars-grid,
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.problem-card,
.pillar,
.founder-card,
.module-card,
.support-group {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.problem-card h3,
.pillar h3,
.founder-card h3,
.support-group h3 {
  color: var(--brand-blue-deep);
}

.offer-stack,
.results-grid {
  display: grid;
  gap: 1.4rem;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  border-radius: var(--radius);
  padding: 1.35rem;
}

.offer-card-primary {
  background: #eef7f8;
  border: 1px solid rgba(16, 78, 112, 0.1);
}

.offer-card-secondary {
  background: #f7fbfc;
  border: 1px solid rgba(16, 78, 112, 0.08);
}

.offer-badge-secondary {
  background: rgba(16, 78, 112, 0.12);
  color: var(--brand-blue-deep);
}

.offer-subtitle {
  margin-bottom: 0.95rem;
}

.offer-price {
  margin: 1.05rem 0 0.25rem;
  font-size: 1.9rem;
  color: var(--brand-blue-deep);
}

.offer-guarantee {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.offer-guarantee-dark {
  color: var(--text-soft);
}

.results-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.module-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--brand-blue-deep);
}

.module-card p {
  color: var(--text);
}

.support-header,
.mentor-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.6rem;
  align-items: center;
}

.support-copy,
.mentor-copy {
  min-width: 0;
}

.support-highlight {
  margin: 1rem 0 0.35rem;
  font-size: 1.45rem;
  color: var(--brand-blue-deep);
}

.support-note {
  margin-bottom: 0;
  color: var(--text-soft);
}

.support-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.support-group-wide {
  grid-column: 1 / -1;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.support-wide-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.support-group-wide .support-item {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.support-group-wide .support-item:first-of-type {
  padding-top: 0.1rem;
}

.support-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(16, 78, 112, 0.12);
}

.support-item:first-of-type {
  border-top: 0;
  padding-top: 0.2rem;
}

.support-item-main {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.support-item-main strong {
  color: var(--text);
  font-size: 1rem;
}

.support-item-price {
  color: var(--brand-blue);
  font-weight: 700;
}

.support-item-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 7px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.support-item-action:hover,
.support-item-action:focus-visible {
  background: var(--brand-blue-deep);
}

.support-footer {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  text-align: center;
}

.support-footer p {
  width: min(100%, 720px);
  margin-bottom: 0;
  color: var(--text-soft);
}
.mentor-price {
  margin: 0.95rem 0 0.35rem;
  font-size: 1.5rem;
  color: var(--brand-blue-deep);
}

.mentor-note {
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.mentor-secondary-action {
  margin-top: 0.9rem;
}

.mentor-secondary-action a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.mentor-secondary-action a:hover,
.mentor-secondary-action a:focus-visible {
  text-decoration: underline;
}

.founder-card {
  display: flex;
  flex-direction: column;
}

.founder-photo {
  aspect-ratio: 4 / 4.8;
  margin-bottom: 1rem;
}

.founder-card p {
  margin-bottom: 0;
  color: var(--text);
}

.founder-card p + p {
  margin-top: 0.8rem;
}

.founder-photo-martina {
  object-position: center 12%;
}

.founder-photo-charlene {
  object-position: center 58%;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list details p {
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: #082537;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 160px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--brand-mint);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  section,
  .site-footer {
    padding: 4rem 0;
  }

  .hero,
  .offer-card,
  .results-grid,
  .support-header,
  .mentor-grid,
  .problem-grid,
  .pillars-grid,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .modules-grid,
  .support-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  section,
  .site-footer {
    padding: 3.25rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header {
    backdrop-filter: blur(8px);
  }

  .header-inner {
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .brand-logo {
    width: 132px;
  }

  .header-actions {
    width: auto;
  }

  .link-action {
    width: auto;
    min-height: 40px;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3.1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 2.9rem);
    line-height: 1.03;
    max-width: 100%;
    margin-bottom: 0.85rem;
  }

  .section-light h2,
  .section-soft h2,
  .section-dark h2 {
    font-size: clamp(1.82rem, 8vw, 2.35rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-light p,
  .section-soft p,
  .section-dark p,
  .bullet-list,
  .offer-list,
  .offer-list-light,
  .hero-points {
    font-size: 0.98rem;
  }

  .eyebrow,
  .section-kicker,
  .section-kicker-light {
    font-size: 0.78rem;
    margin-bottom: 0.8rem;
  }

  .lead {
    margin-bottom: 1rem;
  }

  .hero-points {
    gap: 0.55rem;
    margin-bottom: 1.2rem;
  }

  .micro-proof {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-offer-panel,
  .problem-card,
  .pillar,
  .offer-card,
  .module-card,
  .support-group,
  .founder-card,
  .faq-list details {
    padding: 1.05rem;
    border-radius: 7px;
  }

  .hero-image,
  .offer-media img,
  .support-media img,
  .mentor-media img {
    max-height: 280px;
  }

  .modules-grid,
  .support-groups {
    grid-template-columns: 1fr;
  }

  .support-groups {
    gap: 0.85rem;
    margin-top: 1.25rem;
  }

  .support-wide-items {
    grid-template-columns: 1fr;
  }

  .support-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .support-item-action,
  .button {
    width: 100%;
  }

  .cta-row {
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .button {
    min-height: 50px;
    padding: 0.9rem 1rem;
    font-size: 0.97rem;
  }

  .founder-photo {
    aspect-ratio: 4 / 5.25;
  }

  .founder-photo-martina {
    object-position: center 8%;
  }

  .founder-photo-charlene {
    object-position: center 54%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-offer-action {
  width: 100%;
  margin-top: 1rem;
}
