:root {
  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --background: oklch(0.995 0 0);
  --foreground: oklch(0.16 0 0);
  --card: oklch(1 0 0);
  --secondary: oklch(0.965 0.002 90);
  --muted: oklch(0.5 0 0);
  --border: oklch(0.9 0 0);
  --input: oklch(0.9 0 0);
  --header-h: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.epc-site {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.epc-site.admin-bar {
  scroll-padding-top: calc(var(--header-h) + 32px);
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 100;
  background: var(--foreground);
  color: var(--background);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
}

.skip-link:focus {
  top: 0.75rem;
}

.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Layout */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

.wrap {
  margin-inline: auto;
  max-width: 72rem;
  padding-inline: 1.25rem;
  width: 100%;
}

.section {
  padding-block: 5rem;
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.muted {
  color: var(--muted);
}

.lede {
  margin-top: 1.25rem;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.625;
}

.page-hero {
  border-bottom: 1px solid var(--border);
}

.page-hero .wrap {
  padding-block: 4rem;
}

.page-hero h1 {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  line-height: 1.08;
}

/* Buttons */
.btn-solid,
.btn-outline,
.btn-invert,
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
  background: var(--foreground);
  color: var(--background);
}

.btn-solid:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  border-color: var(--foreground);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-invert {
  background: var(--background);
  color: var(--foreground);
}

.btn-invert:hover {
  opacity: 0.88;
}

.btn-ghost-light {
  border-color: color-mix(in oklch, var(--background) 50%, transparent);
  color: var(--background);
}

.btn-ghost-light:hover {
  background: color-mix(in oklch, var(--background) 10%, transparent);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-row.center {
  justify-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  background: color-mix(in oklch, var(--background) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 72rem;
  padding-inline: 1.25rem;
}

dl,
dd,
figure {
  margin: 0;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--foreground);
}

.header-cart {
  display: none;
  font-size: 0.875rem;
  color: var(--muted);
}

.header-cart:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .header-cart {
    display: inline-flex;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.site-header.is-open .menu-toggle .icon-menu {
  display: none;
}

.site-header.is-open .menu-toggle .icon-close {
  display: block;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.site-header.is-open .mobile-nav {
  display: block;
}

.mobile-nav nav {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  padding: 0.75rem 1.25rem 1.25rem;
}

.mobile-nav a {
  border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  padding-block: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.mobile-nav a.is-current {
  color: var(--foreground);
}

.mobile-nav .btn-solid {
  margin-top: 1rem;
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--secondary);
}

.site-footer__inner {
  margin-inline: auto;
  max-width: 72rem;
  padding: 3.5rem 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand p + p {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-col ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--foreground);
}

.footer-legal {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-legal p {
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted);
}

.footer-legal p + p {
  margin-top: 1.5rem;
}

.footer-legal .fine {
  margin-top: 1rem;
  font-size: 10px;
  color: color-mix(in oklch, var(--muted) 60%, transparent);
}

.footer-legal strong {
  color: var(--foreground);
  font-weight: 500;
}

/* Home hero */
.hero {
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.05;
}

.hero .intro {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted);
}

.hero .btn-row {
  margin-top: 2.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 28rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.375;
  color: var(--muted);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1);
}

/* Shared sections */
.split-cards {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.split-card {
  background: var(--card);
  padding: 2rem;
}

.split-card h2,
.split-card h3 {
  font-size: 1.125rem;
}

.split-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.audience-item {
  border-top: 1px solid color-mix(in oklch, var(--foreground) 80%, transparent);
  padding-top: 1.25rem;
}

.audience-item .num {
  font-size: 0.75rem;
  color: var(--muted);
}

.audience-item h3 {
  margin-top: 0.5rem;
  font-size: 1.125rem;
}

.audience-item p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-foreground {
  background: var(--foreground);
  color: var(--background);
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-head h2,
.section h2,
.cta-band h2 {
  font-size: 1.875rem;
}

.section-kicker {
  margin-top: 1rem;
  max-width: 42rem;
}

.quotes {
  display: grid;
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--border);
  background: var(--border);
}

.quote {
  background: var(--card);
  padding: 2rem;
  margin: 0;
}

.quote blockquote {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
}

.quote figcaption {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.fine-print {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.program-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-band {
  text-align: center;
}

.cta-band p {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.625;
  opacity: 0.8;
}

.cta-band .btn-row {
  margin-top: 2.25rem;
}

.cta-band.soft p {
  opacity: 1;
  color: var(--muted);
}

/* Program cards */
.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}

.program-card:hover {
  border-color: var(--foreground);
}

.program-card.is-featured {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

.program-card.is-featured:hover {
  border-color: var(--foreground);
}

.program-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.program-card__duration {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.program-card.is-featured .program-card__duration {
  color: inherit;
  opacity: 0.7;
}

.program-card__name {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.program-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.program-card__tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.program-card.is-featured .program-card__tagline {
  color: inherit;
  opacity: 0.8;
}

.program-card__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.program-card__list li {
  display: flex;
  gap: 0.75rem;
}

.program-card__list .icon {
  margin-top: 0.125rem;
  opacity: 0.6;
}

.program-card__list span {
  color: var(--muted);
}

.program-card.is-featured .program-card__list span {
  color: inherit;
  opacity: 0.9;
}

.program-card__cta {
  margin-top: auto;
  padding-top: 2rem;
  width: 100%;
}

/* How it works */
.steps {
  border-top: 1px solid var(--border);
}

.step {
  display: grid;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-block: 2rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.step h2 {
  font-size: 1.25rem;
}

.step p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

/* Pricing */
.commitment-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.commitment {
  background: var(--card);
  padding: 2.25rem;
}

.commitment.is-best {
  background: var(--foreground);
  color: var(--background);
}

.commitment .eyebrow,
.commitment .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.commitment.is-best .label {
  opacity: 0.7;
}

.commitment h2 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.commitment .note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.commitment.is-best .note {
  color: inherit;
  opacity: 0.8;
}

.commitment .rate {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
}

.commitment .rate span {
  margin-left: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  vertical-align: middle;
}

.table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  min-width: 560px;
  text-align: left;
  font-size: 0.875rem;
}

.price-table thead {
  background: var(--secondary);
}

.price-table th {
  padding: 1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-table td {
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.price-table .sub {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

/* About */
.about-section {
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

.about-copy h1 {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  line-height: 1.08;
}

.about-copy .stack {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  color: var(--muted);
  line-height: 1.625;
}

.about-copy .btn-solid {
  margin-top: 2.25rem;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
}

/* FAQ */
.faq-list {
  max-width: 48rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.faq-item button .icon {
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item.is-open button .icon {
  transform: rotate(180deg);
}

.faq-item .answer {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.faq-item.is-open .answer {
  display: block;
}

.faq-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.faq-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-note a:hover {
  color: var(--foreground);
}

/* Terms */
.terms-wrap {
  max-width: 48rem;
}

.disclaimer-box {
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 1.75rem;
}

.disclaimer-box h2 {
  font-size: 1.125rem;
}

.disclaimer-box p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.terms-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.terms-item {
  border-bottom: 1px solid var(--border);
  padding-block: 2rem;
}

.terms-item h2 {
  font-size: 1.125rem;
}

.terms-item p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

/* Get started */
.onboard-section {
  border-bottom: 1px solid var(--border);
}

.onboard {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

.field-grid {
  display: grid;
  gap: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid var(--input);
  background: var(--card);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 0;
  outline: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--foreground);
}

.addon {
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 1.5rem;
}

.addon p {
  font-size: 0.875rem;
  color: var(--muted);
}

.addon .label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  border: 1px solid var(--input);
  background: var(--card);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.chip:hover,
.chip.is-active {
  border-color: var(--foreground);
}

.chip.is-active {
  background: var(--foreground);
  color: var(--background);
}

.addon .note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted);
}

.addon .note strong {
  color: var(--foreground);
  font-weight: 500;
}

.onboard-form {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.form-actions .hint {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.notice {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
}

.notice.is-success {
  background: var(--secondary);
}

.notice.is-error {
  background: var(--secondary);
}

.summary {
  height: fit-content;
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 1.75rem;
}

.summary h2 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
}

.summary .duration {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.summary dl {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.summary .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary .row dt {
  color: var(--muted);
}

.summary .row.rule {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.summary .total {
  align-items: baseline;
}

.summary .total dt {
  font-weight: 500;
  color: var(--foreground);
}

.summary .total dd {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.summary .legal {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted);
}

.summary .legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.summary .legal a:hover {
  color: var(--foreground);
}

/* 404 */
.error-page {
  display: flex;
  min-height: 60vh;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  text-align: center;
}

.error-page h1 {
  font-size: 4.5rem;
}

.error-page h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.error-page p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.error-page .btn-solid {
  margin-top: 1.5rem;
}

/* Page fallback */
.prose {
  max-width: 42rem;
  padding-block: 4rem;
}

.prose h1 {
  font-size: 2.25rem;
}

.prose .content {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Responsive — sm 640 */
@media (min-width: 640px) {
  .wrap,
  .site-header__inner,
  .site-footer__inner,
  .mobile-nav nav {
    padding-inline: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .intro {
    font-size: 1.125rem;
  }

  .page-hero h1,
  .about-copy h1 {
    font-size: 3rem;
  }

  .section h2,
  .section-head h2,
  .cta-band h2 {
    font-size: 2.25rem;
  }

  .split-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .form-actions .btn-solid {
    width: auto;
  }
}

/* Responsive — md 768 */
@media (min-width: 768px) {
  .section {
    padding-block: 7rem;
  }

  .page-hero .wrap,
  .hero__grid,
  .about-grid,
  .onboard {
    padding-block: 5rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-block: 6rem;
  }

  .site-nav,
  .header-cta {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav,
  .site-header.is-open .mobile-nav {
    display: none;
  }

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

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

  .program-grid.home-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .step {
    grid-template-columns: 7rem 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

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

@media (min-width: 768px) and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Responsive — lg 1024 */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }

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

  .program-grid.cols-auto {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .onboard {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .summary {
    position: sticky;
    top: 6rem;
  }
}

@media (max-width: 767px) {
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-stats {
    gap: 0.75rem;
  }

  .hero-stats dt {
    font-size: 1.25rem;
  }

  .btn-solid,
  .btn-outline,
  .btn-invert,
  .btn-ghost-light {
    padding: 0.75rem 1.1rem;
    font-size: 0.75rem;
  }
}
