:root {
  --home-ink: #142133;
  --home-muted: #586779;
  --home-navy: #08192b;
  --home-navy-soft: #102c47;
  --home-paper: #f7f2e9;
  --home-white: #fffdfa;
  --home-line: #ded7ca;
  --home-warm: #f2a51a;
  --home-warm-dark: #a85a00;
  --home-blue: #1f67bf;
}

.home-page {
  overflow-x: hidden;
  color: var(--home-ink);
  background: var(--home-paper);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--home-navy);
  transform: translateY(-160%);
}

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

.home-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.home-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 40px));
  min-height: 82px;
  transform: translateX(-50%);
}

.home-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
}

.home-brand img {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.home-navigation,
.home-nav {
  display: flex;
  align-items: center;
}

.home-navigation {
  gap: 18px;
}

.home-nav {
  gap: 4px;
}

.home-nav__group {
  position: relative;
}

.home-nav__group summary,
.home-nav__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #dbe7f2;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.home-nav__group summary::after {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.home-nav__group summary:hover,
.home-nav__link:hover,
.home-nav__group[open] summary {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.home-nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 290px;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(6, 22, 38, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.home-nav__menu a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
}

.home-nav__menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-nav__menu span {
  color: #aebed0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #1d1608;
  background: var(--home-warm);
  font-size: 0.88rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.home-hero {
  min-height: 790px;
  display: grid;
  align-items: center;
  padding: 130px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 73% 26%, rgba(45, 115, 182, 0.32), transparent 27%),
    radial-gradient(circle at 15% 76%, rgba(242, 165, 26, 0.12), transparent 24%),
    linear-gradient(135deg, #071626, #0b2239 62%, #123c61);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.home-eyebrow {
  margin: 0 0 14px;
  color: #f6c861;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-eyebrow--dark {
  color: var(--home-warm-dark);
}

.home-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(3.8rem, 7vw, 6.7rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.home-hero__lead {
  max-width: 680px;
  color: #d7e3ee;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.58;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 25px;
}

.home-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.home-button--primary,
.home-button--warm {
  color: #211806;
  background: var(--home-warm);
}

.home-button--secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-button--ink {
  margin-top: 12px;
  color: #fff;
  background: var(--home-navy);
}

.home-button--outline {
  border-color: #b9aea0;
  color: var(--home-ink);
  background: transparent;
}

.home-button--light {
  color: var(--home-navy);
  background: #fff;
}

.home-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  color: #aebfd0;
  font-size: 0.85rem;
  font-weight: 700;
  list-style: none;
}

.home-hero__signals li::before {
  margin-right: 8px;
  color: var(--home-warm);
  content: "•";
}

.home-hero__visual {
  position: relative;
  min-height: 550px;
}

.otavio-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 200, 97, 0.28);
  border-radius: 26px;
  background: #17324d;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.otavio-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.02) contrast(1.08) brightness(0.96);
}

.otavio-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(7, 22, 38, 0.82);
  backdrop-filter: blur(8px);
}

.otavio-card figcaption span {
  color: #b6c7d8;
  font-size: 0.84rem;
}

.output-stack {
  position: absolute;
  bottom: 8px;
  left: -24px;
  display: grid;
  width: min(250px, 62%);
  gap: 12px;
}

.output-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.output-card span {
  color: #9fc9ef;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.output-card--app {
  background: rgba(9, 28, 47, 0.96);
}

.output-card--guide {
  color: #1f2832;
  background: #f5bf3f;
  transform: translateX(20px);
}

.output-card--guide span,
.output-card--guide small {
  color: #65410b;
}

.mini-app {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 5px;
  margin-top: 8px;
}

.mini-app i {
  height: 42px;
  border-radius: 5px;
  background: #1f67bf;
}

.mini-app i:nth-child(2) {
  background: #63a4dc;
}

.mini-app i:nth-child(3) {
  background: #d9e9f7;
}

.home-section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.philosophy-section h2,
.about-section h2,
.final-paths h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.section-heading--row > p,
.about-copy p,
.final-paths article > p:not(.home-eyebrow) {
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 60px;
  align-items: end;
}

.section-heading--center {
  margin: 0 auto 50px;
  text-align: center;
}

.path-section {
  background: var(--home-paper);
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 46px;
}

.path-card {
  position: relative;
  display: grid;
  min-height: 480px;
  align-content: start;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 18px;
}

.path-card--learn {
  background: #fffdfa;
}

.path-card--business {
  color: #fff;
  background: linear-gradient(145deg, #102b46, #0a192b);
}

.path-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(20, 33, 51, 0.1);
  font-size: 4.8rem;
  font-weight: 900;
}

.path-card--business .path-card__number {
  color: rgba(255, 255, 255, 0.09);
}

.path-card__label,
.card-kicker {
  margin: 0 0 28px;
  color: var(--home-warm-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.path-card--business .path-card__label {
  color: #f8c963;
}

.path-card h3 {
  max-width: 490px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.path-card > p:not(.path-card__label) {
  max-width: 520px;
  color: var(--home-muted);
  line-height: 1.68;
}

.path-card--business > p:not(.path-card__label) {
  color: #c1cfdd;
}

.path-card ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.path-card li::before {
  margin-right: 9px;
  color: var(--home-warm-dark);
  content: "✓";
  font-weight: 900;
}

.path-card--business li::before {
  color: #f8c963;
}

.path-card > a,
.text-cta {
  align-self: end;
  color: var(--home-warm-dark);
  font-weight: 900;
}

.path-card--business > a {
  color: #f8c963;
}

.featured-section {
  background: var(--home-white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  background: #fff;
}

.feature-visual {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.feature-visual--phone {
  background: linear-gradient(145deg, #0a1a2c, #143b60);
}

.feature-visual--phone > div {
  width: min(210px, 90%);
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #fff;
  background: rgba(3, 14, 26, 0.45);
}

.feature-visual--phone span,
.feature-visual--session span {
  display: block;
  margin-bottom: 12px;
  color: #9acdf7;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-visual--phone i {
  display: block;
  height: 45px;
  margin-top: 24px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--home-blue) 65%, #dceafb 65%);
}

.feature-visual--guide {
  place-items: start;
  align-content: center;
  color: #231a0b;
  background: #f4bd3f;
}

.feature-visual--guide span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-visual--guide strong {
  font-size: 5rem;
  line-height: 0.9;
}

.feature-visual--guide p {
  margin: 8px 0 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-visual--session {
  align-content: center;
  place-items: start;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 165, 26, 0.18), transparent 30%),
    var(--home-navy);
}

.feature-visual--session strong {
  max-width: 260px;
  font-size: 2rem;
  line-height: 1.05;
}

.feature-visual--session small {
  margin-top: 12px;
  color: #b8c8d7;
}

.feature-card__body {
  padding: 26px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.feature-card__body > p:not(.card-kicker) {
  min-height: 105px;
  color: var(--home-muted);
  line-height: 1.63;
}

.philosophy-section {
  padding: 110px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 90%, rgba(242, 165, 26, 0.13), transparent 25%),
    var(--home-navy);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.philosophy-lead {
  color: #c5d1dd;
  font-size: 1.2rem;
  line-height: 1.7;
}

.principle-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-list > li > span {
  color: #f6c861;
  font-weight: 900;
}

.principle-list h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.principle-list p {
  margin: 0;
  color: #b8c6d4;
  line-height: 1.6;
}

.outcomes-section {
  background: #fffdfa;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
}

.outcome-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.outcome-list article {
  padding: 24px;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: #fff;
}

.outcome-list article:last-child {
  grid-column: 1 / -1;
}

.outcome-list span {
  color: var(--home-warm-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-list h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
}

.outcome-list p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.55;
}

.process-section {
  background: #eee7dc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfc4b4;
  border-bottom: 1px solid #cfc4b4;
  list-style: none;
}

.process-grid li {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid #cfc4b4;
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--home-warm-dark);
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 74px;
  font-size: 1.55rem;
}

.process-grid p {
  color: var(--home-muted);
  line-height: 1.6;
}

.resource-section {
  background: #fffdfa;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.resource-card {
  display: grid;
  min-height: 310px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  box-shadow: 0 18px 45px rgba(31, 38, 45, 0.08);
  transform: translateY(-4px);
}

.resource-card__type {
  color: var(--home-warm-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 54px 0 12px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.resource-card p {
  color: var(--home-muted);
  line-height: 1.6;
}

.resource-card strong {
  align-self: end;
  margin-top: auto;
  color: var(--home-warm-dark);
}

.about-section {
  padding: 110px 0;
  background: #e7eff5;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  gap: 78px;
  align-items: center;
}

.about-portrait {
  position: relative;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 37, 57, 0.16);
}

.about-portrait > div {
  position: absolute;
  right: -28px;
  bottom: 30px;
  display: grid;
  width: min(260px, 80%);
  gap: 5px;
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--home-navy);
}

.about-portrait span {
  color: #f6c861;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 650px;
}

.contact-section {
  background: var(--home-paper);
}

.contact-section .contact-form {
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(42, 36, 26, 0.08);
}

.final-paths {
  color: #fff;
  background: var(--home-navy);
}

.final-paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.final-paths article {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: 64px 64px 64px 0;
}

.final-paths article + article {
  padding-right: 0;
  padding-left: 64px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.final-paths article > p:not(.home-eyebrow) {
  color: #bdcbd8;
}

.final-paths .home-button {
  justify-self: start;
  margin-top: 12px;
}

.home-footer {
  padding: 70px 0 28px;
  color: #c1cfda;
  background: #06111e;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 48px;
}

.home-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.9rem;
}

.home-footer__grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-footer__grid p {
  color: #8295a7;
}

.home-footer__grid a:not(.home-brand, .home-button) {
  color: #aab9c7;
  font-size: 0.9rem;
}

.home-footer__cta .home-button {
  justify-self: start;
  margin-top: 8px;
}

.home-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #73889a;
  font-size: 0.82rem;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page summary:focus-visible {
  outline: 3px solid #f6c95f;
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .home-nav__group summary,
  .home-nav__link {
    padding-inline: 7px;
    font-size: 0.8rem;
  }

  .home-navigation {
    gap: 8px;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    gap: 38px;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .feature-card__body > p:not(.card-kicker) {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .home-shell {
    width: min(100% - 36px, 720px);
  }

  .home-header {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    font-weight: 800;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .menu-toggle__icon {
    position: relative;
  }

  .menu-toggle__icon::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle__icon::after {
    position: absolute;
    top: 6px;
  }

  .home-navigation {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: none;
    min-height: 100svh;
    align-items: stretch;
    justify-content: space-between;
    padding: 90px 20px 24px;
    overflow-y: auto;
    background: rgba(6, 18, 31, 0.99);
  }

  .home-navigation.is-open {
    display: flex;
    flex-direction: column;
  }

  .home-nav {
    display: grid;
    align-content: start;
    gap: 4px;
  }

  .home-nav__group summary,
  .home-nav__link {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding-inline: 12px;
    color: #fff;
    font-size: 1rem;
  }

  .home-nav__menu {
    position: static;
    width: auto;
    margin: 2px 0 8px;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .header-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .home-hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .home-hero__grid,
  .philosophy-grid,
  .outcomes-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__visual {
    width: min(520px, 100%);
    min-height: 500px;
    margin: 20px auto 0;
  }

  .path-grid,
  .process-grid,
  .resource-grid,
  .final-paths__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .philosophy-grid,
  .outcomes-grid,
  .about-grid {
    gap: 48px;
  }

  .process-grid li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #cfc4b4;
  }

  .process-grid li:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 38px;
  }

  .final-paths article,
  .final-paths article + article {
    min-height: 360px;
    padding: 56px 0;
    border-left: 0;
  }

  .final-paths article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .home-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .home-shell {
    width: calc(100% - 32px);
  }

  .home-header {
    width: calc(100% - 28px);
  }

  .home-brand span {
    font-size: 0.92rem;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.35rem);
  }

  .home-actions,
  .home-actions .home-button {
    width: 100%;
  }

  .home-hero__signals {
    display: grid;
    gap: 8px;
  }

  .home-hero__visual {
    min-height: 440px;
  }

  .otavio-card {
    width: 100%;
  }

  .otavio-card figcaption {
    display: none;
  }

  .output-stack {
    left: 0;
    width: 68%;
  }

  .output-card--guide {
    transform: translateX(18px);
  }

  .home-section,
  .philosophy-section,
  .about-section {
    padding: 76px 0;
  }

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

  .path-card__number {
    top: 18px;
    right: 20px;
    font-size: 3.8rem;
  }

  .featured-grid,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
    display: block;
  }

  .outcome-list article:last-child {
    grid-column: auto;
  }

  .feature-visual {
    min-height: 210px;
  }

  .about-portrait {
    width: calc(100% - 18px);
  }

  .about-portrait > div {
    right: -18px;
  }

  .contact-section .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-footer__grid {
    grid-template-columns: 1fr;
  }

  .home-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .resource-card {
    transition: none;
  }
}
