:root {
  --blue: #00A8FF;
  --blue-deep: #0077B6;
  --blue-soft: #E6F6FF;
  --ink: #083B56;
  --ink-muted: #47718A;
  --white: #FFFFFF;
  --line: rgba(0, 119, 182, .14);
  --shadow: 0 24px 70px rgba(0, 119, 182, .13);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100%;
  background: var(--blue-soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

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

.glow {
  position: relative;
  isolation: isolate;
}

.glow::before,
.glow::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
  opacity: .75;
}

.glow::before {
  width: 42vw;
  height: 42vw;
  top: -18vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(0,168,255,.15), transparent 67%);
}

.glow::after {
  width: 38vw;
  height: 38vw;
  bottom: -21vw;
  left: -15vw;
  background: radial-gradient(circle, rgba(0,119,182,.09), transparent 68%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(24px, 5vw, 78px);
  background: rgba(230, 246, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 168, 255, .08);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.brandmark img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: white;
  box-shadow: 0 0 0 4px rgba(0,168,255,.12);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,168,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.8);
  color: var(--blue-deep);
  cursor: pointer;
  padding: 0;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -.01em;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--blue); }

.nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.nav .cta,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--blue);
  color: white !important;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,168,255,.25);
  border: 0;
  cursor: pointer;
}

.nav .cta {
  padding: 11px 18px;
  font-size: 14px;
  text-decoration: none !important;
}

.cta:hover { filter: brightness(1.04); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,168,255,.22);
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.cta-ghost:hover { border-color: var(--blue); color: var(--blue); }

.wrap {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 78px);
}

.hero {
  min-height: clamp(560px, 82vh, 860px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vh, 100px) 0 clamp(64px, 10vh, 120px);
}

.hero-inner { max-width: 720px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  max-width: 850px;
  color: var(--blue-deep);
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 800;
}

h2 {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.025em;
  font-weight: 800;
}

.lede {
  margin: 0 0 36px;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  letter-spacing: -.02em;
}

.section {
  padding: clamp(56px, 9vh, 110px) 0;
}

.section-tight { padding-top: 0; }

.muted {
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
}

.card {
  border-radius: var(--radius);
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(0,168,255,.16);
  box-shadow: var(--shadow);
}

.who-card {
  max-width: 720px;
  padding: clamp(32px, 4vw, 52px);
}

.who-card .line {
  width: 64px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 9px;
  background: var(--blue);
}

.who-card p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
  letter-spacing: -.02em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0,119,182,.08);
  color: var(--blue-deep);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 800;
  text-decoration: none;
}

.chip:hover { border-color: var(--blue); }

.chip b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.section-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-head .muted { margin: 0; }

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
  align-items: stretch;
}

.plans > .plan-card {
  min-width: 0; /* keep two columns from overflowing into a stack */
}

.plan-card {
  position: relative;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
}

.plan-card.is-featured {
  border-color: rgba(0,168,255,.42);
  box-shadow: 0 24px 70px rgba(0, 168, 255, .18);
  padding-top: 36px; /* room for Best value badge */
}

.plan-cta {
  display: inline-flex;
  margin-top: auto;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.plan-card .plan-cta {
  font-size: 0.92rem;
  padding: 12px 16px;
  margin-top: auto; /* pin to card bottom so both plans match height */
  padding-top: 12px;
}


.plan-label {
  margin: 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}

.price-big {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 4px;
  color: var(--blue-deep);
}

.price-big strong {
  font-size: clamp(40px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 900;
}

.price-big span {
  font-size: 18px;
  font-weight: 800;
}

.plan-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.4;
}

.pricing-follow {
  margin-top: 24px;
  margin-inline: auto;
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}


.pricing-mastermind {
  margin-top: 16px;
  margin-inline: auto;
  max-width: 820px;
  width: 100%;
  padding: 28px 28px 26px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}


.mastermind-motto {
  margin: 0;
  color: var(--blue);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 800;
  letter-spacing: -.01em;
  font-style: italic;
  line-height: 1.35;
}

.pricing-mastermind h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -.03em;
  font-weight: 900;
  line-height: 1.15;
}

.pricing-mastermind .plan-note {
  max-width: 52ch;
}

.pricing-mastermind .cta {
  margin-top: 12px;
}

.pricing-shared {
  margin-top: 24px;
  margin-inline: auto;
  max-width: 820px;
  width: 100%;
  padding: 28px 28px 26px;
  box-sizing: border-box;
}

.pillars {
  display: grid;
  gap: 16px;
}

.pillar-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  padding: clamp(22px, 3vw, 32px);
}

.pillar-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--blue);
  color: white;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.06em;
  box-shadow: 0 12px 28px rgba(0,168,255,.22);
}

.pillar-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pillar-card li {
  color: var(--ink-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}

.pillar-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero {
  /* top/bottom only — keep .wrap horizontal padding */
  padding-top: clamp(40px, 7vh, 72px);
  padding-bottom: clamp(36px, 5vh, 56px);
}

.page-hero .lede { margin-bottom: 0; }

.pricing-page-card {
  max-width: 640px;
  padding: clamp(36px, 5vw, 56px);
}

.pricing-page-card .muted { margin: 0 0 28px; }

.pricing-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.35;
}

.pricing-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 13px;
}

.note {
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.45;
}

.note a {
  color: var(--blue-deep);
  font-weight: 750;
}

.steps {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  padding: clamp(24px, 3vw, 36px);
}

.step-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue);
  color: white;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 12px 28px rgba(0,168,255,.22);
}

.step-card p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
}

.step-card a {
  color: var(--blue-deep);
  font-weight: 750;
}

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

.faq details {
  border-radius: 20px;
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(0,168,255,.16);
  padding: 4px 22px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  color: var(--blue-deep);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 900;
}

.faq details[open] summary::after { content: "–"; }

.faq details p {
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
}

.faq details a {
  color: var(--blue-deep);
  font-weight: 750;
}

.about-card {
  max-width: 680px;
  padding: clamp(32px, 4vw, 48px);
}

.about-card p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
}

.about-card p:last-child { margin-bottom: 0; }

.contact-card {
  max-width: 560px;
  padding: clamp(32px, 4vw, 48px);
}

.contact-card p {
  margin: 0 0 20px;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.45;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.02em;
}

.contact-email:hover { color: var(--blue); }

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vh, 100px) 0;
}

.error-page .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.site-footer {
  padding: 40px clamp(24px, 5vw, 78px) 56px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 168, 255, .08);
}

.footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 700;
}

.footer-nav a:hover { color: var(--blue); }

.site-footer a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover { color: var(--blue); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(230, 246, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 168, 255, .12);
    box-shadow: 0 18px 40px rgba(0,119,182,.1);
  }

  .nav.is-open { display: flex; }

  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0,168,255,.1);
  }

  .nav .cta {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0;
  }

  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .pillar-card,
  .step-card { grid-template-columns: 1fr; }

  .pillar-num {
    width: 52px;
    height: 52px;
    font-size: 24px;
    border-radius: 16px;
  }

  .step-num {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  h1 { font-size: clamp(44px, 12vw, 64px); }
}

/* Desktop: keep Monthly | Annual side by side */
@media (min-width: 641px) {
  .plans {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 28px;
    padding-bottom: 40px; /* lift headline, widen gap above cards */
  }

  .page-hero h1 {
    margin-bottom: 8px;
  }

  .page-hero .lede {
    margin-bottom: 0;
  }

  .section-tight {
    padding-top: 8px;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 10px;
    margin-inline: auto;
  }

  .plan-card {
    padding: 18px 18px 16px;
    gap: 4px;
    border-radius: 18px;
  }

  .plan-card.is-featured {
    padding-top: 28px;
  }

  .plan-label {
    font-size: 11px;
    letter-spacing: .1em;
  }

  .price-big {
    margin: 2px 0;
    gap: 6px;
  }

  .price-big strong {
    font-size: 32px;
  }

  .price-big span {
    font-size: 15px;
  }

  .plan-note {
    font-size: 13px;
    line-height: 1.35;
  }

  .plan-card .plan-cta {
    margin-top: 14px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .plan-badge {
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .pricing-mastermind {
    max-width: 340px;
    margin-top: 12px;
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .pricing-mastermind h3 {
    font-size: 22px;
  }

  .pricing-mastermind .cta {
    margin-top: 10px;
    padding: 11px 16px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .pricing-shared {
    max-width: 340px;
    margin-top: 16px;
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .pricing-shared .pricing-list {
    margin-bottom: 16px !important;
  }

  .pricing-list li {
    font-size: 14px;
    padding: 6px 0 6px 28px;
  }

  .pricing-shared .cta {
    padding: 11px 16px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-shared .note {
    margin-top: 12px;
    font-size: 13px;
  }

  /* Home pricing follow row stays compact */
  .pricing-follow {
    margin-top: 16px;
    gap: 8px;
  }

}

