:root {
  --purple: #7c3aed;
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --teal: #14b8a6;
  --navy: #0f172a;
  --navy-deep: #08111f;
  --soft-gray: #f3f4f6;
  --white: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.footer-brand,
.footer-links,
.hero-actions,
.trust-list,
.workshop-facts {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--navy);
}

.nav-links {
  gap: 26px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--teal));
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.22);
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(20, 184, 166, 0.22), 0 10px 24px rgba(124, 58, 237, 0.16);
}

.button.secondary {
  border: 1px solid #cbd5e1;
  color: #172033;
  background: rgba(255, 255, 255, 0.78);
}

.button.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.45);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  min-height: 680px;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 54px);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.16), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(20, 184, 166, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 46%, #eef6fb 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 120%, rgba(124, 58, 237, 0.18), transparent 46%),
    radial-gradient(ellipse at 86% 110%, rgba(20, 184, 166, 0.16), transparent 44%);
}

.hero-copy,
.hero-mentor {
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6.4vw, 5.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 800px;
  margin-bottom: 28px;
  color: #475569;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.trust-list {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.trust-list li {
  list-style: none;
  border: 1px solid #d7dde8;
  border-radius: 999px;
  padding: 10px 13px;
  color: #334155;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
}

.hero-mentor {
  align-self: center;
  width: min(100%, 540px);
  margin: 0 auto;
}

.hero-mentor::before {
  position: absolute;
  right: -38px;
  bottom: -28px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 68%);
}

.mentor-card {
  position: relative;
  display: grid;
  gap: 22px;
  border: 1px solid rgba(203, 213, 225, 0.94);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
}

.mentor-card::before {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.08), transparent 38%),
    linear-gradient(310deg, rgba(20, 184, 166, 0.1), transparent 42%);
}

.mentor-card-head,
.mentor-footer,
.mentor-checklist,
.mentor-card blockquote {
  position: relative;
}

.mentor-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mentor-card-head img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
  background: #07101f;
}

.mentor-card-head span,
.mentor-footer span {
  display: block;
  color: #64748b;
  font-weight: 700;
}

.mentor-card-head strong {
  display: block;
  margin-top: 3px;
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.1;
}

.mentor-card blockquote {
  margin: 0;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 18px 18px 18px 20px;
  color: #172033;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.18;
  background: #f3fbfc;
}

.mentor-checklist {
  display: grid;
  gap: 10px;
}

.mentor-checklist span {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  color: #243244;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.78);
}

.mentor-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.mini-founders {
  display: flex;
  flex: 0 0 auto;
}

.mini-founders img {
  width: 48px;
  height: 48px;
  border: 3px solid var(--white);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}

.mini-founders img + img {
  margin-left: -14px;
}

.mentor-footer strong {
  color: #0f172a;
}

.quiet-intro,
.pain-section,
.learn-section,
.difference-section,
.workshop-section,
.founders-section,
.process-section,
.reviews-section,
.faq-section,
.final-cta {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 54px);
}

.quiet-intro {
  display: grid;
  gap: 24px;
  align-items: center;
  background: var(--white);
}

.quiet-intro h2,
.section-heading h2,
.workshop-copy h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.quiet-intro p,
.section-heading p,
.workshop-copy p,
.workshop-note p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.18rem);
  line-height: 1.78;
}

.pain-section {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(139, 92, 246, 0.1), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.12), transparent 34%),
    #fbfdff;
}

.workshop-section,
.final-cta {
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.24), transparent 28%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.final-cta {
  color: var(--white);
}

.final-cta .eyebrow {
  color: #9deff2;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.pain-grid,
.learn-grid,
.comparison,
.founder-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.pain-grid article,
.panel-card,
.muted-card,
.brand-card,
.founder-card,
.process-grid article,
.faq-list details,
.workshop-note {
  border-radius: 8px;
}

.pain-grid article {
  padding: 24px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.pain-grid strong,
.pain-grid span {
  display: block;
}

.pain-grid strong {
  margin-bottom: 10px;
  color: #0f766e;
}

.pain-grid span {
  color: #475569;
  line-height: 1.6;
}

.learn-section,
.founders-section,
.faq-section {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  background: #f8fafc;
}

.learn-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.learn-grid article {
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  color: #243244;
  font-weight: 800;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.center-action {
  margin-top: 32px;
}

.difference-section {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  background: var(--white);
}

.comparison {
  align-items: stretch;
}

.muted-card,
.brand-card {
  padding: clamp(24px, 4vw, 38px);
}

.muted-card {
  border: 1px solid var(--line);
  background: #f8fafc;
}

.brand-card {
  border: 1px solid rgba(20, 184, 166, 0.34);
  color: var(--white);
  background: linear-gradient(135deg, #25185b, #0f172a 62%, #0b5960);
}

.comparison h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.comparison ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  line-height: 1.55;
}

.reassurance {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1.6;
}

.workshop-section {
  display: grid;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 16%, rgba(124, 58, 237, 0.1), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #edf7f8 100%);
}

.workshop-copy p {
  color: var(--muted);
}

.workshop-facts {
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.workshop-facts span {
  border: 1px solid #d7dde8;
  border-radius: 999px;
  padding: 10px 13px;
  color: #334155;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.76);
}

.workshop-note {
  border: 1px solid rgba(20, 184, 166, 0.22);
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 253, 250, 0.9));
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.workshop-note strong {
  display: block;
  margin-bottom: 10px;
  color: #0f766e;
  font-size: 1.2rem;
}

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

.founder-card {
  display: grid;
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.founder-card h3 {
  margin-bottom: 4px;
  font-size: 1.8rem;
}

.role {
  margin-bottom: 14px;
  color: var(--teal);
  font-weight: 900;
}

.founder-card p:not(.role) {
  color: var(--muted);
  line-height: 1.7;
}

.process-section {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  background: var(--white);
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-grid article {
  border: 1px solid var(--line);
  padding: 24px;
  background: #f8fafc;
}

.process-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--teal));
}

.process-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.reviews-section {
  border-top: 1px solid rgba(226, 232, 240, 0.72);
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.09), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(20, 184, 166, 0.1), transparent 32%),
    #fbfdff;
}

.reviews-widget {
  max-width: 1240px;
  min-height: 360px;
  margin: 0 auto;
}

.reviews-widget noscript {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  color: var(--muted);
  background: var(--white);
}

.reviews-widget noscript p {
  margin: 0;
}

.reviews-widget noscript a {
  color: #0f766e;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  padding: 18px 20px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.08rem, 1.7vw, 1.18rem);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.final-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 38px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.74);
  background: #07101f;
}

.footer-brand {
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--navy);
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.footer-brand p,
.copyright {
  margin-bottom: 0;
}

.footer-links {
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #9deff2;
  font-weight: 700;
}

.footer-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
}

.social-link span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(157, 239, 242, 0.35);
  border-radius: 999px;
  color: #9deff2;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.footer-links .social-link:hover {
  color: var(--white);
}

@media (min-width: 760px) {
  .hero,
  .quiet-intro,
  .workshop-section {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  }

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

  .pain-grid article:last-child {
    grid-column: span 2;
  }

  .founder-card {
    grid-template-columns: 220px 1fr;
  }

  .site-footer {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 0.78fr);
  }

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

  .founder-card {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span {
    max-width: 160px;
    font-size: 0.88rem;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }
}
