@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-italic-latin.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 100 900;
}

:root {
  --navy: #12244b;
  --navy-card: #1b315c;
  --cream: #f9f7f4;
  --pink: #ff89b8;
  --teal: #8dd8db;
  --periwinkle: #83abf2;
  --gray: #b9bcc1;
  --muted: #636e82;
  --line-light: rgba(249, 247, 244, 0.28);
  --line-dark: rgba(18, 36, 75, 0.24);
  --content: 980px;
  --reading: 860px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  text-wrap: balance;
}

p,
li,
blockquote {
  text-wrap: pretty;
}

strong {
  font-weight: 700;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--cream);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.content {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.reading {
  max-width: var(--reading);
}

.cream {
  color: var(--navy);
  background: var(--cream);
}

.navy {
  color: var(--cream);
  background: var(--navy);
}

.eyebrow {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.teal {
  color: var(--teal);
}

.section-title {
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.highlight::before {
  position: absolute;
  z-index: -1;
  right: -0.18em;
  bottom: 0.11em;
  left: -0.18em;
  height: 0.76em;
  border-radius: 18px 22px 14px 20px;
  background: var(--pink);
  content: "";
  transform: rotate(-1deg);
}

.site-header {
  display: flex;
  height: 88px;
  align-items: center;
  padding-inline: 64px;
  color: var(--cream);
  background: var(--navy);
}

.brand-link {
  display: inline-flex;
  border-radius: 6px;
}

.brand-link img {
  width: 110px;
  height: 44px;
}

.hero {
  display: grid;
  min-height: 872px;
  place-items: center;
  padding: 72px 24px 96px;
  text-align: center;
}

.hero-inner {
  display: flex;
  width: min(1180px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.event-pill {
  padding: 11px 16px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 1180px;
  font-size: clamp(56px, 6.67vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-promise {
  max-width: 1040px;
  color: rgba(249, 247, 244, 0.82);
  font-size: 22px;
  line-height: 34px;
}

.hero-actions {
  display: flex;
  width: min(930px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-pink {
  color: var(--navy);
  background: var(--pink);
}

.cta-navy {
  color: var(--cream);
  background: var(--navy);
}

.hero-meta {
  color: var(--gray);
  font-size: 13px;
  line-height: 20px;
}

.problem {
  display: flex;
  align-items: flex-start;
  padding-block: 96px 44px;
}

.problem-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.problem h2 {
  max-width: 980px;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.problem-copy {
  max-width: 860px;
}

.problem-copy p + p {
  margin-top: 24px;
}

.flow {
  padding-block: 36px 112px;
}

.flow-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.flow h2 {
  max-width: 900px;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.flow-intro {
  max-width: 860px;
}

.flow-intro p + p {
  margin-top: 24px;
}

.loop-diagram {
  width: 100%;
  aspect-ratio: 980 / 600;
}

.loop-diagram img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-examples {
  max-width: 860px;
}

.flow-examples p + p {
  margin-top: 24px;
}

.pull-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 74px 24px 0;
  text-align: center;
}

.pull-quote::before {
  width: 272px;
  max-width: 40%;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 2px;
  background: var(--pink);
  content: "";
}

.pull-quote blockquote {
  max-width: 980px;
  font-size: 44px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.pull-quote cite {
  margin-top: 22px;
  font-size: 18px;
  font-style: italic;
}

.days {
  padding-block: 96px 112px;
}

.days h2 {
  margin-bottom: 64px;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.day-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.day-card {
  display: grid;
  min-height: 420px;
  grid-template-columns: 420px 1fr;
  overflow: hidden;
  border: 1px solid var(--periwinkle);
  border-radius: 16px;
  color: var(--cream);
  background: var(--navy-card);
}

.day-card:nth-child(even) {
  grid-template-columns: 1fr 420px;
}

.day-card:nth-child(even) .day-image {
  order: 2;
}

.day-image {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
}

.day-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.day-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.day-label {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.day-copy h3 {
  margin-top: 16px;
  font-size: 36px;
  line-height: 44px;
}

.day-body {
  margin-top: 18px;
  font-size: 18px;
  line-height: 30px;
}

.day-finish {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--periwinkle);
  font-weight: 700;
  line-height: 30px;
}

.day-finish span {
  color: var(--teal);
}

.day-end {
  max-width: 860px;
  margin-top: 54px;
  font-size: 22px;
  line-height: 34px;
}

.included {
  padding-block: 112px;
}

.included-header {
  margin-bottom: 56px;
}

.included h2 {
  max-width: 980px;
  margin-top: 22px;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.command-panel {
  display: grid;
  min-height: 440px;
  grid-template-columns: 278px 1fr;
  align-items: center;
  gap: 30px;
  padding: 38px 32px;
  border-radius: 16px;
  color: var(--cream);
  background: var(--navy);
}

.command-copy h3 {
  margin-top: 30px;
  font-size: 36px;
  line-height: 44px;
}

.command-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
}

.command-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.command-ui-refresh {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18.36%;
  padding: 1.5% 1.15%;
  border-right: 1px solid #dedbd7;
  color: #2c2c2c;
  background: linear-gradient(145deg, #f8f6f3 45%, #eef8f7 100%);
  font-family: Arial, sans-serif;
}

.command-brand {
  margin-top: 1%;
  font-size: clamp(5px, 1.15vw, 16px);
  font-weight: 700;
  white-space: nowrap;
}

.command-brand span {
  font-weight: 400;
}

.command-sidebar-links,
.command-sidebar-groups {
  display: flex;
  flex-direction: column;
  font-size: clamp(4px, 1.02vw, 14px);
  line-height: 1.2;
}

.command-sidebar-links {
  gap: clamp(3px, 1vw, 14px);
  margin-top: 8%;
}

.command-sidebar-groups {
  gap: clamp(4px, 1.65vw, 22px);
  margin-top: 12%;
  color: #9b9997;
}

.command-main-label {
  position: absolute;
  top: 2.15%;
  left: 20.1%;
  min-width: 18%;
  padding: 0.35% 0.45%;
  color: #292929;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(5px, 1.02vw, 14px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.build-kit {
  display: grid;
  min-height: 440px;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 48px;
  border: 1px solid var(--navy);
  border-radius: 16px;
}

.kit-title h3 {
  margin-top: 24px;
  font-size: 36px;
  line-height: 44px;
}

.kit-title strong {
  color: var(--pink);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kit-item {
  min-height: 136px;
  padding: 20px;
  border-radius: 14px;
  color: var(--cream);
  background: var(--navy);
}

.kit-item h4 {
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.kit-item p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 22px;
}

.access {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--navy);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.access-item strong {
  display: block;
  font-size: 36px;
  line-height: 44px;
}

.access-item p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 27px;
}

.fit {
  padding-block: 112px;
}

.fit h2 {
  margin-top: 24px;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.02em;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.fit-card {
  min-height: 420px;
  padding: 36px;
  border: 1px solid var(--pink);
  border-radius: 14px;
  color: var(--navy);
  background: var(--cream);
  box-shadow: 0 10px 20px rgba(18, 36, 75, 0.18);
}

.fit-card.not {
  border-color: var(--teal);
}

.fit-card .eyebrow {
  color: var(--navy);
}

.fit-accent-pink {
  color: var(--pink);
}

.fit-accent-teal {
  color: var(--teal);
}

.fit-card h3 {
  margin-top: 26px;
  font-size: 30px;
  line-height: 40px;
}

.fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 30px;
}

.fit-card li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.fit-card.not li::before {
  background: var(--teal);
}

.platform-note {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 70px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.founder {
  min-height: 940px;
  padding-block: 112px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  grid-template-areas:
    "intro portrait"
    "body portrait";
  column-gap: 70px;
  row-gap: 0;
  align-items: end;
}

.founder-intro {
  grid-area: intro;
}

.founder h2 {
  margin-top: 28px;
  font-size: 52px;
  line-height: 60px;
  letter-spacing: -0.02em;
}

.founder-copy {
  grid-area: body;
  margin-top: 28px;
  font-size: 18px;
  line-height: 30px;
}

.founder-copy p + p {
  margin-top: 24px;
}

.founder-you {
  color: var(--pink);
}

.founder-portrait {
  grid-area: portrait;
  display: flex;
  height: 670px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.founder-portrait img {
  max-width: 420px;
  max-height: 100%;
  object-fit: contain;
  transform: translateY(48px);
}

.testimonials {
  padding-block: 112px;
}

.testimonials h2 {
  margin-top: 20px;
  font-size: 56px;
  line-height: 64px;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
}

.testimonial {
  padding: 26px 40px 30px;
  border: 0;
  border-radius: 12px;
  color: var(--navy);
  background: var(--cream);
}

.stars {
  color: var(--pink);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.testimonial blockquote {
  max-width: 900px;
  margin-top: 10px;
  font-size: 17px;
  line-height: 28px;
}

.testimonial blockquote p + p {
  margin-top: 22px;
}

.testimonial cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
}

.pricing {
  scroll-margin-top: 16px;
  padding-block: 112px 96px;
}

.pricing-header {
  text-align: center;
}

.pricing h2 {
  margin-top: 18px;
  font-size: 56px;
  line-height: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.price-card {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  padding: 32px;
  border-radius: 12px;
}

.price-card.base {
  color: var(--cream);
  background: var(--navy);
}

.price-card.private {
  color: var(--navy);
  background: var(--periwinkle);
}

.price-card h3 {
  min-height: 76px;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
}

.price-stack {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  margin-top: 6px;
}

.early-label {
  order: 3;
  width: 100%;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.early-price {
  order: 2;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

.standard-price {
  order: 1;
  color: var(--gray);
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: line-through;
}

.private .standard-price {
  color: rgba(18, 36, 75, 0.5);
}

.price-description {
  min-height: 76px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: 15px;
  line-height: 23px;
}

.includes-label {
  margin-top: 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.private .includes-label {
  color: var(--navy);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 24px;
}

.price-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 700;
}

.private .price-list li::before {
  color: var(--pink);
}

.ownership {
  margin-top: 12px;
  color: rgba(18, 36, 75, 0.62);
  font-size: 12px;
  font-style: italic;
  line-height: 19px;
}

.price-card .cta {
  min-width: 232px;
  margin: auto auto 0;
}

.price-date {
  margin-top: 42px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.faq {
  padding-block: 112px;
}

.faq h2 {
  margin-top: 18px;
  font-size: 56px;
  line-height: 64px;
}

.faq-list {
  margin-top: 34px;
}

.faq-row {
  border-bottom: 1px solid rgba(141, 216, 219, 0.45);
}

.faq-row summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 700;
  line-height: 33px;
  list-style: none;
}

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

.faq-row summary::after {
  color: var(--teal);
  content: "+";
  font-size: 28px;
  line-height: 1;
}

.faq-row[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 900px;
  padding: 0 0 22px;
  font-size: 17px;
  line-height: 28px;
}

.final-close {
  display: flex;
  min-height: 720px;
  align-items: center;
  text-align: center;
}

.final-close-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.final-close h2 {
  max-width: 980px;
  font-size: 56px;
  line-height: 64px;
}

.final-close .outcome {
  max-width: 760px;
  font-size: 21px;
  line-height: 33px;
}

.final-meta {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
}

.free-tools {
  padding-block: 96px;
}

.free-grid {
  display: grid;
  grid-template-columns: 500px 420px;
  gap: 60px;
  align-items: center;
}

.free-copy {
  align-self: start;
  padding-top: 14px;
}

.free-copy h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 60px;
}

.free-copy > p {
  margin-top: 22px;
}

.tool-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.tool-item {
  display: grid;
  min-height: 52px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--cream);
}

.tool-number {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
}

.tool-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}

.form-card {
  width: 420px;
  padding: 32px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--cream);
  box-shadow: 0 12px 24px rgba(18, 36, 75, 0.2);
}

.form-card,
.form-card input,
.form-card button {
  font-family: "Montserrat", Arial, sans-serif !important;
}

.form-card .form-eyebrow {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.08em;
}

.form-card h3 {
  margin-top: 8px;
  font-size: 28px;
  line-height: 36px;
}

.sib-form-message-panel {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid;
  border-radius: 6px;
  font-size: 13px;
  line-height: 20px;
}

.sib-form-message-panel__text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sib-notification__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

#error-message {
  border-color: #ff4949;
  color: #661d1d;
  background: #ffeded;
}

#success-message {
  border-color: #13ce66;
  color: #085229;
  background: #e7faf0;
}

#sib-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

#sib-container {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field .form__entry,
.form-field .form__label-row {
  display: flex;
  flex-direction: column;
}

.form-field .form__label-row {
  gap: 7px;
}

.entry__label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
}

.entry__field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  background: var(--cream);
  font-size: 14px;
}

.entry__field input::placeholder {
  color: var(--muted);
  opacity: 0.78;
}

.entry__error {
  min-height: 0;
  color: #661d1d;
  font-size: 12px;
  line-height: 18px;
}

.consent-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.sib-optin,
.sib-optin .form__entry,
.sib-optin .entry__choice {
  height: auto !important;
  min-height: 0 !important;
}

.sib-optin .entry__choice {
  margin: 0 !important;
  padding: 0 !important;
}

.sib-optin .consent-label {
  display: grid !important;
  grid-template-columns: 20px 1fr !important;
  gap: 10px !important;
  text-indent: 0 !important;
}

.consent-label input.input_replaced {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  opacity: 0 !important;
}

.consent-box {
  display: grid;
  width: 20px;
  height: 20px;
  grid-column: 1;
  margin-top: 1px;
  place-content: center;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--cream);
  text-indent: 0 !important;
}

.consent-box::before {
  width: 5px;
  height: 10px;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  content: "";
  opacity: 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.consent-label input.input_replaced:checked + .consent-box {
  background: var(--pink);
}

.consent-label input.input_replaced:checked + .consent-box::before {
  opacity: 1;
}

.consent-label input.input_replaced:focus-visible + .consent-box {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.consent-copy {
  min-width: 0;
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
  line-height: 18px;
  text-indent: 0 !important;
}

.consent-copy a {
  text-underline-offset: 2px;
}

.sib-form-block__button {
  display: inline-flex;
  width: auto;
  min-height: 56px;
  align-self: center;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--pink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding-inline: 28px;
}

.sib-form-block__button .progress-indicator__icon {
  display: none;
}

.input--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer {
  display: flex;
  min-height: 260px;
  align-items: center;
  border-top: 1px solid rgba(18, 36, 75, 0.18);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.footer-brand img {
  width: 122px;
  height: auto;
}

.footer-motto {
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 14px;
  font-size: 15px;
  line-height: 24px;
}

.footer-links a {
  color: var(--cream);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--pink);
}

@media (max-width: 1040px) {
  .command-panel,
  .build-kit,
  .founder-grid,
  .free-grid {
    grid-template-columns: 1fr;
  }

  .command-copy {
    max-width: 520px;
  }

  .founder-portrait {
    height: 540px;
  }

  .founder-portrait img {
    transform: none;
  }

  .free-grid {
    gap: 42px;
  }

  .form-card {
    width: min(540px, 100%);
  }

  .free-copy {
    max-width: 620px;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .day-card,
  .day-card:nth-child(even) {
    width: min(620px, 100%);
    min-height: 0;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .day-card:nth-child(even) .day-image {
    order: 0;
  }

  .day-image {
    height: 360px;
    min-height: 360px;
  }

  .day-image img {
    width: 360px;
    height: 360px;
  }

  .fit-grid,
  .pricing-grid {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "portrait"
      "body";
    gap: 32px;
  }

  .founder-copy {
    margin-top: 0;
  }

  .founder-portrait {
    height: 520px;
  }

  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
    line-height: 28px;
  }

  .content {
    width: min(342px, calc(100% - 48px));
  }

  .eyebrow {
    font-size: 12px;
    line-height: 16px;
  }

  .site-header {
    height: 72px;
    padding-inline: 24px;
  }

  .brand-link img {
    width: 90px;
    height: 36px;
  }

  .hero {
    min-height: 0;
    padding: 56px 24px 64px;
  }

  .hero-inner {
    gap: 24px;
  }

  .event-pill {
    width: 100%;
    min-height: 42px;
    padding: 12px;
    font-size: 10px;
    line-height: 14px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.03em;
  }

  .hero-promise {
    font-size: 17px;
    line-height: 27px;
  }

  .hero .cta {
    width: 100%;
  }

  .hero-meta {
    font-size: 11px;
    line-height: 18px;
  }

  .problem {
    min-height: 0;
    padding-block: 72px 30px;
  }

  .problem-inner {
    gap: 32px;
  }

  .problem h2,
  .flow h2,
  .days h2,
  .included h2,
  .fit h2,
  .founder h2,
  .testimonials h2,
  .pricing h2,
  .faq h2,
  .final-close h2,
  .free-copy h2 {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -0.02em;
  }

  .problem-copy p + p {
    margin-top: 22px;
  }

  .flow {
    padding-block: 22px 72px;
  }

  .flow-inner {
    gap: 32px;
  }

  .flow-intro p + p {
    margin-top: 22px;
  }

  .flow-examples {
    font-size: 16px;
    line-height: 27px;
  }

  .pull-quote {
    padding: 28px 0 0;
  }

  .pull-quote::before {
    width: 100px;
    margin-bottom: 14px;
  }

  .pull-quote blockquote {
    font-size: 19px;
    line-height: 29px;
  }

  .pull-quote cite {
    margin-top: 12px;
    font-size: 12px;
    line-height: 19px;
  }

  .days {
    padding-block: 72px;
  }

  .days h2 {
    margin-bottom: 28px;
  }

  .day-list {
    gap: 20px;
  }

  .day-card,
  .day-card:nth-child(even) {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .day-card:nth-child(even) .day-image {
    order: 0;
  }

  .day-image {
    min-height: 190px;
    height: 190px;
  }

  .day-image img {
    width: 190px;
    height: 190px;
  }

  .day-copy {
    gap: 12px;
    padding: 24px;
  }

  .day-label {
    font-size: 12px;
    line-height: 16px;
  }

  .day-copy h3 {
    margin-top: 0;
    font-size: 24px;
    line-height: 30px;
  }

  .day-body {
    margin-top: 0;
    font-size: 15px;
    line-height: 24px;
  }

  .day-finish {
    margin-top: 0;
    padding-top: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  .day-end {
    margin-top: 32px;
    font-size: 17px;
    line-height: 27px;
  }

  .included,
  .fit,
  .founder,
  .testimonials,
  .pricing,
  .faq,
  .free-tools {
    padding-block: 72px;
  }

  .founder {
    min-height: 0;
  }

  .included-header {
    margin-bottom: 32px;
  }

  .included h2 {
    margin-top: 14px;
  }

  .command-panel {
    min-height: 0;
    gap: 24px;
    padding: 24px;
  }

  .command-copy h3 {
    margin-top: 18px;
    font-size: 28px;
    line-height: 34px;
  }

  .build-kit {
    min-height: 0;
    gap: 26px;
    margin-top: 28px;
    padding: 28px 24px;
  }

  .kit-title h3 {
    margin-top: 16px;
    font-size: 28px;
    line-height: 34px;
  }

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

  .kit-item {
    min-height: 0;
  }

  .access {
    margin-top: 32px;
  }

  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .access-item strong {
    font-size: 28px;
    line-height: 34px;
  }

  .access-item p {
    font-size: 14px;
    line-height: 23px;
  }

  .fit h2 {
    margin-top: 14px;
  }

  .fit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    gap: 20px;
    margin-top: 32px;
  }

  .fit-card {
    min-height: 0;
    padding: 24px;
  }

  .fit-card h3 {
    margin-top: 16px;
    font-size: 24px;
    line-height: 30px;
  }

  .fit-card ul {
    gap: 12px;
    margin-top: 16px;
  }

  .fit-card li {
    padding-left: 22px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }

  .platform-note {
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 23px;
  }

  .founder-grid {
    grid-template-areas:
      "intro"
      "portrait"
      "body";
    column-gap: 0;
    gap: 20px;
  }

  .founder h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 38px;
  }

  .founder-portrait {
    height: 400px;
  }

  .founder-copy {
    margin-top: 0;
    font-size: 15px;
    line-height: 25px;
  }

  .testimonials h2 {
    margin-top: 12px;
  }

  .testimonial-list {
    margin-top: 30px;
  }

  .testimonial {
    padding: 24px;
  }

  .testimonial blockquote {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
  }

  .testimonial blockquote p + p {
    margin-top: 27px;
  }

  .testimonial cite {
    margin-top: 16px;
    font-size: 11px;
    font-style: italic;
    line-height: 18px;
  }

  .pricing-header {
    text-align: left;
  }

  .pricing h2 {
    margin-top: 12px;
  }

  .pricing-grid {
    gap: 20px;
    margin-top: 32px;
  }

  .price-card {
    min-height: 680px;
    padding: 24px;
  }

  .price-card h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .early-label {
    order: 1;
    font-size: 14px;
    line-height: 20px;
  }

  .early-price {
    order: 2;
    font-size: 50px;
    line-height: 56px;
  }

  .standard-price {
    order: 3;
    font-size: 28px;
    line-height: 36px;
  }

  .price-stack {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }

  .price-description {
    min-height: 0;
  }

  .price-card .cta {
    width: 100%;
    min-width: 0;
    font-size: 14px;
  }

  .price-date {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 36px;
    font-size: 24px;
    line-height: 1.3;
  }

  .price-date-separator {
    display: none;
  }

  .faq h2 {
    margin-top: 12px;
  }

  .faq-list {
    margin-top: 22px;
  }

  .faq-row summary {
    min-height: 0;
    padding-block: 24px;
    font-size: 20px;
    line-height: 28px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 23px;
  }

  .final-close {
    min-height: 0;
    padding-block: 72px;
  }

  .final-close-inner {
    gap: 24px;
  }

  .final-close .outcome {
    font-size: 16px;
    line-height: 26px;
  }

  .final-close .cta {
    width: 100%;
  }

  .final-meta {
    font-size: 11px;
    line-height: 18px;
  }

  .free-grid {
    gap: 32px;
  }

  .free-copy {
    padding-top: 0;
  }

  .free-copy > .eyebrow {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .free-copy h2 {
    margin-top: 20px;
  }

  .free-copy > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 24px;
  }

  .tool-item {
    height: 52px;
    min-height: 52px;
    padding: 0 14px;
  }

  .tool-list {
    margin-top: 20px;
  }

  .tool-name {
    font-size: 13px;
    line-height: 20px;
  }

  .form-card {
    width: 100%;
    padding: 24px;
  }

  .form-card h3 {
    margin-top: 16px;
    font-size: 26px;
    line-height: 32px;
  }

  .form-card .form-eyebrow {
    font-size: 12px;
    line-height: 15px;
  }

  #sib-form {
    gap: 16px;
  }

  #sib-form > .sib-form-block {
    padding-inline: 0;
  }

  #sib-form .form-field {
    height: 78px;
  }

  #sib-form .form-field .form__entry,
  #sib-form .form-field .form__label-row {
    height: 100%;
  }

  #sib-form .entry__label {
    line-height: 16px;
  }

  #sib-form .sib-optin {
    height: 40px;
  }

  #sib-form .consent-label {
    display: grid;
  }

  .site-footer {
    min-height: 250px;
    padding-block: 48px;
  }

  .footer-inner {
    gap: 16px;
  }

  .footer-motto {
    max-width: 290px;
    font-size: 15px;
    line-height: 22px;
  }

  .footer-links {
    gap: 0 10px;
    font-size: 13px;
    line-height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
