:root {
  --charcoal: #1f1f1f;
  --graphite: #3b3b3b;
  --soft-white: #f5f2ee;
  --stone: #d8d2cb;
  --burgundy: #5a1e2d;
  --petroleum: #3f5661;
  --mauve: #8d7a8c;
  --champagne: #d6c2a1;
  --cream: #fffaf4;
  --community-bg: #ece6de;
  --shadow: 0 18px 45px rgba(31, 31, 31, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

.dark-theme {
  --soft-white: #111111;
  --charcoal: #f4f1eb;
  --cream: #1a1a1a;
  --graphite: #c2bcb4;
  --stone: #2e2e2d;
  --community-bg: #181715;
  --burgundy: #d44d6c; /* More vibrant rose-burgundy for contrast in dark mode */
  --petroleum: #668291; /* Brighter petroleum for contrast */
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  border-radius: 50%;
  transition: background-color 200ms ease, color 200ms ease;
  width: 38px;
  height: 38px;
}

.theme-toggle:hover {
  background-color: rgba(63, 86, 97, 0.12);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle:hover svg {
  transform: rotate(15deg);
}

/* Sun/Moon visibility toggle */
.dark-theme .theme-toggle .sun-icon {
  display: block;
}
.dark-theme .theme-toggle .moon-icon {
  display: none;
}
.theme-toggle .sun-icon {
  display: none;
}
.theme-toggle .moon-icon {
  display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

img[src*="isotipo-claro"] {
  object-fit: contain !important;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(63, 86, 97, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, 1220px);
  margin-inline: auto;
}

.hero .container {
  width: min(100% - 64px, 1500px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--soft-white) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--stone) 72%, transparent);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-icon {
  width: 29px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 44px);
  font-size: 0.88rem;
  color: var(--charcoal);
}

.site-nav a {
  position: relative;
  padding: 29px 0 25px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--burgundy);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.language-toggle button {
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  transition: color 240ms ease;
}

.language-toggle button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.language-toggle button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

.icon-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
}

.language-toggle button[aria-pressed="false"] {
  color: var(--graphite);
  font-weight: 500;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.icon-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 38px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(335px, 0.66fr) minmax(650px, 1.34fr);
  align-items: end;
  gap: clamp(28px, 4vw, 54px);
}

.hero-copy {
  padding-top: clamp(58px, 7vw, 104px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--burgundy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.explore-copy h2,
.courses-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(3.2rem, 5.35vw, 5.35rem);
}

.hero-lead {
  max-width: 520px;
  margin: 24px 0 12px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
}

.hero-text {
  max-width: 590px;
  margin: 0;
  color: var(--graphite);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--burgundy);
  color: white;
}

.button-primary:hover {
  background: #461521;
}

.button-outline {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.button-outline:hover {
  background: rgba(90, 30, 45, 0.08);
}

.button-secondary {
  background: var(--petroleum);
  color: white;
}

.button-secondary:hover {
  background: #31454f;
}

.hero-image-wrap {
  align-self: stretch;
  min-height: clamp(500px, 45vw, 655px);
  margin-right: calc((min(100vw - 64px, 1500px) - 100vw + 64px) / 2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.benefits-strip {
  background: linear-gradient(110deg, #191919, var(--graphite));
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefits-grid article {
  min-height: 170px;
  padding: 32px 28px;
  text-align: center;
  border-left: 1px solid rgba(214, 194, 161, 0.42);
}

.benefits-grid article:first-child {
  border-left: 0;
}

.benefits-grid svg,
.category-tile svg,
.path-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-grid svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: var(--champagne);
  stroke-width: 1.4;
}

.benefits-grid h2 {
  margin: 0 0 5px;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.benefits-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.section {
  position: relative;
  padding: clamp(64px, 7vw, 102px) 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.narrow {
  max-width: 730px;
  margin-inline: auto;
}

.section-heading h2,
.courses-section h2 {
  font-size: clamp(2.3rem, 4vw, 4.35rem);
}

.section-heading p {
  margin: 16px auto 0;
  color: var(--graphite);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.heading-line {
  display: block;
  width: 100px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--champagne);
}

.section-watermark {
  position: absolute;
  right: 7vw;
  top: 24px;
  width: min(23vw, 260px);
  opacity: 0.035;
  pointer-events: none;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.path-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(180px, 1fr) minmax(180px, 0.85fr);
  align-items: center;
  gap: 22px;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: color-mix(in srgb, var(--cream) 74%, transparent);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(31, 31, 31, 0.13);
}

.path-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-left: 28px;
  border-radius: 50%;
  background: rgba(216, 210, 203, 0.48);
  color: var(--graphite);
}

.path-icon img {
  width: 26px;
  opacity: 0.68;
}

.path-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.4;
}

.path-content {
  position: relative;
  z-index: 2;
  padding: 24px 0;
}

.path-content h3,
.product-card h3,
.course-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.path-content p {
  margin: 17px 0;
  color: var(--graphite);
}

.path-content a {
  color: var(--burgundy);
  font-weight: 700;
}

.path-card > img {
  width: 100%;
  height: 238px;
  align-self: stretch;
  object-fit: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-image {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.035);
}

.product-body {
  padding: 16px;
}

.product-card h3 {
  min-height: 46px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.22;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 11px;
  padding: 0 17px;
  border-radius: 99px;
  background: rgba(214, 194, 161, 0.72);
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 600;
}

.product-card p {
  margin: 13px 0 0;
  color: var(--graphite);
  font-size: 0.82rem;
}

.product-card p span {
  display: inline-block;
  margin: 0 12px;
  color: var(--stone);
}

.development-note {
  max-width: 940px;
  margin: 28px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(216, 194, 161, 0.72);
  border-radius: 6px;
  background: color-mix(in srgb, var(--cream) 68%, transparent);
  color: var(--graphite);
  font-size: 0.9rem;
  text-align: center;
}

.explore-section {
  padding: clamp(60px, 7vw, 90px) 0;
  background: linear-gradient(115deg, #171717, #333);
  color: white;
}

.explore-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(600px, 1.38fr);
  align-items: center;
  gap: 44px;
}

.explore-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.category-tile {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--accent);
  isolation: isolate;
}

.category-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  z-index: -2;
}

.category-tile::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31, 31, 31, 0.12), rgba(31, 31, 31, 0.54)),
    linear-gradient(to top, color-mix(in srgb, var(--accent) 72%, transparent), transparent 48%);
  content: "";
  opacity: 0.82;
  transition: transform 240ms ease, opacity 180ms ease;
  z-index: -1;
}

.category-tile:hover::before {
  opacity: 0.62;
}

.category-tile:hover > img {
  transform: scale(1.06);
}

.category-tile div {
  position: absolute;
  right: 14px;
  bottom: 20px;
  left: 14px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.category-tile svg {
  width: 44px;
  height: 44px;
  color: white;
  stroke-width: 1.4;
}

.category-tile h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.category-color { --accent: var(--burgundy); }
.category-face { --accent: var(--petroleum); }
.category-style { --accent: var(--champagne); }
.category-makeup { --accent: var(--mauve); }
.category-resources { --accent: #6f6a64; }

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.course-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 28px;
  margin-top: 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--stone);
  border-radius: 8px;
  background: color-mix(in srgb, var(--cream) 75%, transparent);
}

.course-card > div:last-child {
  padding: 28px 24px 28px 0;
}

.course-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.course-meta {
  margin: 14px 0 0;
  font-weight: 600;
}

.course-card p:last-child,
.future-panel p {
  color: var(--graphite);
}

.future-panel {
  padding-left: 64px;
  border-left: 1px solid var(--stone);
}

.future-panel > p {
  max-width: 620px;
  margin: 22px 0 24px;
}

.future-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.future-items span {
  min-height: 70px;
  padding-top: 44px;
  background:
    radial-gradient(circle at 50% 14px, transparent 0 9px, var(--graphite) 10px 11px, transparent 12px),
    radial-gradient(circle at 50% 14px, rgba(214, 194, 161, 0.32), transparent 22px);
  color: var(--graphite);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.community-strip {
  padding: 34px 0;
  background: var(--community-bg);
  border-block: 1px solid color-mix(in srgb, var(--stone) 90%, transparent);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr 1.35fr;
  align-items: center;
  gap: 28px;
}

.community-no-quote {
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.community-main strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.85;
}

.community-main span,
.proof-item span {
  font-weight: 700;
}

.community-main p,
.proof-item p {
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 0.88rem;
}

.proof-item {
  min-height: 84px;
  padding-left: 24px;
  border-left: 1px solid rgba(63, 86, 97, 0.24);
}

.waitlist-band {
  padding: 28px 0;
  background: linear-gradient(100deg, #681d2f, var(--burgundy), #7a2437);
  color: white;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 34px;
}

.waitlist-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.waitlist-copy img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 9px;
  border: 1px solid rgba(214, 194, 161, 0.56);
  border-radius: 50%;
}

.waitlist-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
}

.waitlist-copy p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  padding: 0 18px;
  background: color-mix(in srgb, var(--cream) 96%, transparent);
  color: var(--charcoal);
}

.champagne-button {
  background: var(--champagne);
  color: var(--charcoal);
}

.champagne-button:hover {
  background: #c7ad84;
}

.success-message {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding: 12px 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--champagne);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1), transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.success-message.error {
  border-left-color: #ff4a4a;
  background: rgba(255, 74, 74, 0.15);
}

.site-footer {
  background: #171717;
  color: white;
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 54px;
}

.footer-simple {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: 54px;
}

.footer-brand img {
  width: 42px;
  height: auto;
  object-fit: contain;
  opacity: 0.86;
}

.footer-brand h2 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
}

.footer-brand p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin: 0 0 15px;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav a {
  display: block;
  margin: 7px 0;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 24px;
}

.footer-disclaimer {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(214, 194, 161, 0.36);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.social-row {
  display: flex;
  gap: 12px;
  margin: 16px 0 20px;
}

.social-row a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(214, 194, 161, 0.35);
  border-radius: 50%;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
}

.professional-cta {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(214, 194, 161, 0.62);
  border-radius: 4px;
}

.professional-cta span {
  display: block;
  color: var(--champagne);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  text-align: center;
}

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--stone);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1), transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px;
  }

  .site-nav a::after {
    bottom: 8px;
    left: 13px;
    right: auto;
    width: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 560px;
  }

  .benefits-grid {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
  }

  .path-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }

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

  .category-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
  }

  .future-panel {
    padding-left: 0;
    border-left: 0;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-link {
    font-size: 2rem;
  }

  .brand-icon {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.1rem);
  }

  .button-row,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

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

  .hero-image-wrap {
    min-height: 330px;
    margin-inline: -14px;
  }

  .benefits-grid,
  .category-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .benefits-grid article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(214, 194, 161, 0.42);
  }

  .benefits-grid article:first-child {
    border-top: 0;
  }

  .path-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .path-icon {
    margin: 24px 0 0 24px;
  }

  .path-content {
    padding: 20px 24px 24px;
  }

  .path-card > img {
    height: 260px;
  }

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

  .product-image {
    height: 220px;
  }

  .category-tile {
    min-height: 190px;
  }

  .course-card,
  .future-items,
  .community-grid,
  .waitlist-grid,
  .footer-grid,
  .footer-simple {
    grid-template-columns: 1fr;
  }

  .course-card > div:last-child {
    padding: 24px;
  }

  .waitlist-copy {
    align-items: flex-start;
  }

  .proof-item {
    padding-left: 0;
    border-left: 0;
  }
}
