@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('/assets/fonts/inter/InterDisplay-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Display';
  src: url('/assets/fonts/inter/InterDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: 'Inter', sans-serif;
  --font-display: 'Inter Display', 'Inter', sans-serif;
  --bg: #f5f7fb;
  --bg-alt: #e9eff8;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #0f1728;
  --surface-dark-2: #162238;
  --ink: #132238;
  --muted: #526174;
  --accent: #1768ff;
  --accent-2: #14936b;
  --accent-3: #7aa7ff;
  --line: rgba(19, 34, 56, 0.12);
  --line-strong: rgba(19, 34, 56, 0.18);
  --shadow-sm: 0 18px 40px rgba(19, 34, 56, 0.08);
  --shadow-md: 0 32px 80px rgba(19, 34, 56, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(23, 104, 255, 0.09), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(122, 167, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fb 52%, #eef3fb 100%);
  color: var(--ink);
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 18rem;
  height: 18rem;
  left: -8rem;
  top: 8rem;
  border-radius: 999px;
  background: rgba(23, 104, 255, 0.08);
  filter: blur(28px);
}

body::after {
  width: 24rem;
  height: 24rem;
  right: -10rem;
  bottom: 5rem;
  border-radius: 999px;
  background: rgba(20, 147, 107, 0.07);
  filter: blur(42px);
}

main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 96px;
}

section {
  margin: clamp(2rem, 5vw, 4rem) 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--muted);
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.page,
.page-shell {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 104, 255, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero,
.page-hero,
.section-shell,
.panel,
.cta-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero,
.page-hero {
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.92));
}

.hero::before,
.page-hero::before,
.section-shell::before,
.cta-banner::before {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before,
.page-hero::before {
  width: 18rem;
  height: 18rem;
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(23, 104, 255, 0.14), transparent 68%);
}

.section-shell,
.panel {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.section-shell--dark {
  background: linear-gradient(145deg, var(--surface-dark), var(--surface-dark-2));
  color: #f4f7fb;
}

.section-shell--dark h2,
.section-shell--dark h3,
.section-shell--dark p,
.section-shell--dark .section-kicker,
.section-shell--dark .module-card {
  color: inherit;
}

.section-shell--dark .section-kicker {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #d8e7ff;
}

.section-shell--muted {
  background: linear-gradient(180deg, rgba(233, 239, 248, 0.76), rgba(255, 255, 255, 0.88));
}

.section-shell--split,
.page-hero--split,
.belief-layout,
.contact-layout,
.club-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section__head--tight {
  align-items: start;
}

.section__lead {
  max-width: 48rem;
  font-size: 1.05rem;
}

.page-hero__actions,
.hero__actions,
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #3a88ff);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 34px rgba(23, 104, 255, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cta-button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 24px 40px rgba(23, 104, 255, 0.3);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.cta-button.secondary:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: rgba(23, 104, 255, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-grid,
.mission-grid,
.module-grid,
.process-grid,
.addon-grid,
.club-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.card,
.stat-card,
.info-chip,
.proof-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 1.6rem;
}

.card.highlight,
.stat-card--accent,
.belief-card--accent {
  border-color: rgba(23, 104, 255, 0.24);
  background: linear-gradient(155deg, rgba(23, 104, 255, 0.1), rgba(255, 255, 255, 0.96));
}

.price {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
  font-family: var(--font-display);
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.stat-card,
.info-chip,
.proof-card {
  padding: 1.3rem;
}

.stat-card {
  display: grid;
  gap: 0.45rem;
}

.stat-card__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(125deg, #132238, #1a3559);
  color: #f5f8fd;
}

.cta-banner::before {
  width: 20rem;
  height: 20rem;
  right: -8rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(255, 141, 69, 0.22), transparent 70%);
}

.cta-banner h2,
.cta-banner p,
.cta-banner .section-kicker {
  color: inherit;
}

.cta-banner .section-kicker {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner .cta-button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.panel h2,
.section-shell h2,
.cta-banner h2 {
  margin-bottom: 0.6rem;
}

form {
  display: grid;
  gap: 1rem;
}

form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 1px rgba(19, 34, 56, 0.04);
}

form textarea {
  min-height: 10rem;
  resize: vertical;
}

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(145deg, #132238, #1b2f4c);
  color: #d9e3f2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__top {
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
  display: grid;
  gap: 0.8rem;
}

.site-footer__tagline {
  max-width: 20rem;
  color: rgba(217, 227, 242, 0.8);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  gap: 1.2rem 2rem;
}

.footer-column {
  display: grid;
  gap: 0.7rem;
}

.footer-column a,
.site-footer__bottom a {
  color: #eef4ff;
}

.site-footer__bottom {
  align-items: center;
  padding-top: 1.25rem;
}

.logo--footer .logo__text {
  color: #fff;
}

@media (max-width: 960px) {
  .section-shell--split,
  .page-hero--split,
  .belief-layout,
  .contact-layout,
  .club-highlight {
    grid-template-columns: 1fr;
  }

  .section__head,
  .cta-banner,
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 720px) {
  main {
    width: min(1240px, calc(100% - 24px));
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 3.6rem);
  }

  .hero,
  .page-hero,
  .section-shell,
  .panel,
  .cta-banner {
    padding: 1.4rem;
  }

  .page-hero__actions,
  .hero__actions,
  .cta-banner__actions {
    width: 100%;
  }

  .cta-button {
    width: 100%;
  }

  .site-footer__nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

/* Pricing summary */
.summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

/* Page hero + panels */
.page-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(10, 92, 245, 0.18), transparent 70%);
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
