@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap");

:root {
  --deep-navy: #30425e;
  --deep-mid-blue: #4a6a9c;
  --deep-steel-blue: #4f85b0;
  --light-blue: #c5e5ff;
  --warm-gold: #c8a96e;
  --off-white: #f7f6f4;
  --white: #ffffff;
  --ink: #30425e;
  --muted: #536276;
  --line: rgba(48, 66, 94, 0.16);
  --shadow: 0 24px 64px rgba(48, 66, 94, 0.13);
  --shadow-soft: 0 14px 34px rgba(48, 66, 94, 0.09);
  --radius: 24px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: "DM Sans", "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(197, 229, 255, 0.82), rgba(247, 246, 244, 0) 31rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 246, 244, 0) 28rem);
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.02;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  color: var(--deep-navy);
  font-size: clamp(3.45rem, 7vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  color: var(--deep-navy);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 5;
  background: transparent;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 0.8rem;
  gap: 1.25rem;
  border: 1px solid rgba(9, 17, 31, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.75rem;
  align-items: center;
  color: var(--deep-navy);
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 6px 18px rgba(48, 66, 94, 0.16);
}

.brand-name {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-line {
  display: none;
  color: var(--deep-steel-blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.text-link {
  color: var(--deep-navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration-color: rgba(197, 229, 255, 0.7);
  text-underline-offset: 0.22rem;
}

.text-link:hover {
  color: var(--deep-steel-blue);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-family: "DM Sans", "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--light-blue);
  outline-offset: 3px;
}

.button-small {
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  color: var(--white);
  background: var(--deep-navy);
}

.button-small:hover {
  color: var(--white);
  background: var(--deep-mid-blue);
}

.button-gold {
  color: var(--white);
  background: var(--deep-navy);
  box-shadow: 0 14px 26px rgba(48, 66, 94, 0.2);
}

.button-gold:hover {
  background: var(--deep-mid-blue);
  box-shadow: 0 18px 34px rgba(48, 66, 94, 0.24);
}

.button-secondary {
  color: var(--deep-navy);
  border-color: rgba(48, 66, 94, 0.2);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  border-color: rgba(48, 66, 94, 0.32);
  background: #fbfbf9;
}

.button-secondary-on-light {
  color: var(--deep-navy);
  border-color: rgba(48, 66, 94, 0.28);
  background: var(--white);
}

.button-secondary-on-light:hover {
  border-color: var(--deep-steel-blue);
  background: var(--light-blue);
}

.section {
  padding: clamp(4rem, 7vw, 6.25rem) 0;
}

.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 66, 94, 0.98) 0%, rgba(74, 106, 156, 0.94) 100%),
    var(--deep-navy);
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: var(--white);
}

.section-tinted {
  background: rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(9rem, 14vw, 11.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.hero.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(48, 66, 94, 0.98) 0%, rgba(74, 106, 156, 0.96) 100%),
    var(--deep-navy);
}

.hero.section-dark .eyebrow {
  color: var(--deep-navy);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  display: none;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.72), transparent);
}

.hero-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 880px;
}

.program-logo {
  width: clamp(92px, 13vw, 132px);
  height: clamp(92px, 13vw, 132px);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(14, 24, 42, 0.22);
}

.section-logo {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
  border: 1px solid rgba(200, 169, 110, 0.36);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(48, 66, 94, 0.12);
}

.section-logo-light {
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 18px 42px rgba(10, 18, 31, 0.24);
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(20, 30, 45, 0.16);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(197, 229, 255, 0.55);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(48, 66, 94, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 820px;
  margin-top: 1.2rem;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
}

.body-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-body {
  max-width: 780px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-panel {
  max-width: 880px;
  border: 1px solid rgba(197, 229, 255, 0.42);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.45rem);
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin-bottom: 1.25rem;
  color: var(--deep-mid-blue);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
}

.hero-panel li {
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(48, 66, 94, 0.14);
  border-radius: 22px;
  padding: 1rem;
  background: var(--white);
}

.hero-panel strong {
  color: var(--deep-navy);
  font-size: 1.02rem;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5.25rem);
}

.lead-copy {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.13rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.4rem;
  list-style: none;
}

.pill-list li {
  border: 1px solid rgba(79, 133, 176, 0.24);
  border-radius: 999px;
  padding: 0.75rem 0.95rem;
  color: var(--deep-navy);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(48, 66, 94, 0.05);
  font-weight: 850;
}

.quiet-note {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2.4rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading h2 + p {
  margin-top: 1.2rem;
}

.narrow {
  max-width: 700px;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-card,
.pricing-card,
.secondary-option,
.waitlist-form,
.founder-panel {
  border: 1px solid rgba(48, 66, 94, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 190px;
  padding: 1.6rem;
}

.feature-card h3 {
  margin-top: 1.35rem;
}

.feature-card p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  color: var(--deep-navy);
  background: var(--light-blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.rhythm-section {
  background: rgba(255, 255, 255, 0.55);
}

.rhythm-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  counter-reset: rhythm;
}

.rhythm-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(48, 66, 94, 0.14);
  border-radius: 22px;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.72);
}

.rhythm-list li::before {
  counter-increment: rhythm;
  content: counter(rhythm, decimal-leading-zero);
  color: var(--deep-mid-blue);
  font-weight: 900;
}

.rhythm-list span {
  font-size: 1.05rem;
  font-weight: 760;
}

.compact-dark {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, var(--deep-navy), var(--deep-mid-blue));
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.theme-card {
  min-height: 104px;
  border: 1px solid rgba(197, 229, 255, 0.24);
  border-radius: var(--radius);
  padding: 1.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(11, 18, 30, 0.12);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.pricing-section {
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 1.2rem;
  align-items: stretch;
}

.pricing-card {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.45rem;
}

.price-option {
  border: 1px solid rgba(48, 66, 94, 0.14);
  border-radius: 22px;
  padding: clamp(1rem, 3vw, 1.3rem);
  background: rgba(255, 255, 255, 0.7);
}

.price-option-featured {
  border-color: rgba(200, 169, 110, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(197, 229, 255, 0.28));
}

.price-label {
  color: var(--deep-mid-blue);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  margin-top: 0.65rem;
  color: var(--deep-navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 4.65rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: inline-block;
  color: var(--muted);
  font-family: "DM Sans", "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.pricing-subhead {
  margin-top: 1.2rem;
  color: var(--deep-mid-blue);
  font-size: 1.2rem;
  font-weight: 800;
}

.pricing-note {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.1rem;
  margin: 1.8rem 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  content: "";
  background: var(--deep-mid-blue);
  transform: translateY(-50%);
}

.pricing-card .button {
  margin-top: 1.6rem;
}

.secondary-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    linear-gradient(160deg, rgba(197, 229, 255, 0.72), rgba(255, 255, 255, 0.96) 54%),
    var(--white);
}

.secondary-option p {
  margin-top: 1rem;
  color: var(--muted);
}

.secondary-option .button {
  margin-top: 1.5rem;
  align-self: flex-start;
}

.form-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), var(--off-white));
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.waitlist-form {
  padding: clamp(1.2rem, 4vw, 2rem);
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.full-span {
  grid-column: 1 / -1;
}

label {
  color: var(--deep-navy);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(48, 66, 94, 0.2);
  border-radius: 18px;
  padding: 0.86rem 0.92rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:hover,
textarea:hover {
  border-color: var(--deep-steel-blue);
}

.turnstile-wrap {
  margin-top: 1.25rem;
}

.security-note {
  color: rgba(48, 66, 94, 0.72);
  font-size: 0.84rem;
  margin: 0.45rem 0 0;
}

.form-button {
  margin-top: 1.25rem;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 1.6rem;
  margin-top: 1rem;
  color: var(--deep-navy);
  font-weight: 800;
}

.founder-section,
.hosts-section {
  background: var(--off-white);
}

.hosts-grid {
  display: grid;
  gap: 1.1rem;
}

.host-feature,
.host-card {
  border: 1px solid rgba(48, 66, 94, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.host-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.host-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.host-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.host-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  background: var(--light-blue);
}

.host-photo-large {
  min-height: clamp(360px, 44vw, 520px);
}

.host-copy {
  padding: clamp(0.4rem, 2vw, 1rem);
}

.host-kicker {
  margin-bottom: 0.5rem;
  color: var(--deep-mid-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.host-feature h3,
.host-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.host-card h3 {
  font-size: 2rem;
}

.host-credentials {
  margin: 0.35rem 0 0.85rem;
  color: var(--deep-mid-blue);
  font-weight: 800;
}

.host-feature p:not(.host-kicker, .host-credentials),
.host-card p:not(.host-kicker, .host-credentials) {
  color: var(--muted);
}

.founder-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.4rem, 4vw, 2rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.founder-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
}

.founder-panel h2 {
  margin-bottom: 1rem;
}

.founder-monogram {
  display: grid;
  width: clamp(94px, 15vw, 150px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(48, 66, 94, 0.22);
  border-radius: 50%;
  color: var(--deep-navy);
  background:
    linear-gradient(145deg, var(--light-blue), var(--white) 58%, rgba(48, 66, 94, 0.12));
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--deep-navy), var(--deep-mid-blue));
}

.final-cta-inner {
  max-width: 860px;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.15rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.final-cta .button {
  margin-top: 2rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 850;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration-color: rgba(197, 229, 255, 0.45);
  text-underline-offset: 0.2rem;
}

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

.copyright {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .pricing-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-panel ul {
    grid-template-columns: 1fr;
  }

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

  .host-feature,
  .host-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    width: min(var(--max-width), calc(100% - 28px));
    align-items: center;
    border-radius: 32px;
  }

  .nav-actions {
    display: none;
  }

  .brand-mark {
    grid-template-columns: 42px 1fr;
  }

  .brand-mark::before {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-line {
    display: none;
  }

  .section-inner {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .hero {
    padding-top: 8rem;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.35rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .six-grid,
  .theme-grid,
  .price-options,
  .check-list,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .theme-card {
    min-height: auto;
  }

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

  .founder-monogram {
    width: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
