:root {
  --bg: #090909;
  --ink: #f4f3f1;
  --muted: #969390;
  --accent: #ff7a38;
  --line: #2b2826;
  --font: "DM Sans", sans-serif;
  --display: "Plus Jakarta Sans", sans-serif;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 var(--font);
  overflow-x: clip;
}
main {
  overflow: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
}
h2 {
  font-size: clamp(34px, 3.9vw, 54px);
  letter-spacing: -2px;
}
h2 > span {
  color: #a5a19d;
}
a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: #111;
}
.wrap {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 20px;
  transform: translateY(-200%);
  z-index: 200;
  background: var(--accent);
  color: #111;
  padding: 12px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #090909e8;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #ffffff0a;
}
.nav-row {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  font: 700 44px/1 var(--display);
  letter-spacing: -5px;
}
.brand-mark > span:first-child,
.brand-dot {
  color: var(--accent);
}
.brand-dot {
  letter-spacing: 0;
}
.brand-name {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1.4px;
  border-left: 1px solid #555;
  padding-left: 14px;
  font-weight: 700;
}
.site-header .brand-name {
  font-size: 14px;
}
nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
}
nav a {
  transition: color 0.2s;
}
nav a:hover,
.text-link:hover {
  color: var(--accent);
}
.nav-login {
  border: 1px solid #665244;
  background: linear-gradient(#28211c, #191512);
  border-radius: 7px;
  padding: 11px 19px;
  margin-left: 15px;
}
.nav-login span {
  margin-left: 15px;
  color: var(--accent);
}
.menu-toggle {
  display: none;
}
/* The hero focuses attention on the learning offer and the person teaching it. */
.hero {
  position: relative;
  isolation: isolate;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(
    ellipse 55% 42% at 50% 52%,
    #64260a55,
    transparent 90%
  );
}
.hero-atmosphere:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, #090909 99%);
}
.light-beam {
  position: absolute;
  top: -250px;
  left: calc(50% - 330px);
  width: 240px;
  height: 900px;
  background: linear-gradient(180deg, #ff8a3833, transparent);
  filter: blur(55px);
  transform: rotate(35deg);
  transform-origin: top;
  animation: beam 15s ease-in-out infinite alternate;
  opacity: 0.5;
}
.beam-two {
  left: calc(50% + 250px);
  transform: rotate(-35deg);
  animation-delay: -8s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#e49c6e08 1px, transparent 1px),
    linear-gradient(90deg, #e49c6e08 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, #000 80%);
}
.hero-inner {
  padding-top: 65px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #684128;
  background: #27180f9c;
  box-shadow: inset 0 1px #ffffff09;
  padding: 9px 15px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #e3bc9f;
  animation: enter 0.8s both var(--motion-ease);
}
.hero-badge > span:last-child {
  border-left: 1px solid #624431;
  margin-left: 3px;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px #ff7a3877;
}
.hero h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 600;
  letter-spacing: -4px;
  line-height: 1.13;
  margin-top: 26px;
  animation: enter 0.9s 0.1s both var(--motion-ease);
}
.hero h1 > span {
  position: relative;
  color: #ffad75;
  white-space: nowrap;
  background: linear-gradient(100deg, #ffad75, #ff723e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 svg {
  position: absolute;
  bottom: -16px;
  width: 100%;
  left: 0;
  height: 21px;
  overflow: visible;
}
.hero h1 path {
  stroke: #ff793d;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 510;
  stroke-dashoffset: 510;
  animation: underline 1.5s 0.6s forwards;
}
.hero-description {
  font-size: 15px;
  color: #aba6a2;
  line-height: 1.8;
  margin: 30px auto 0;
  animation: enter 1s 0.2s both var(--motion-ease);
}
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 23px;
  border-radius: 7px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-3px);
}
.primary {
  background: linear-gradient(120deg, #ff8b43, #df5726);
  color: white;
  box-shadow:
    inset 0 1px #ffcb9677,
    0 4px 20px #dd592722;
  border: 1px solid #fc8f5266;
}
.primary:hover {
  box-shadow:
    inset 0 1px #ffcb9699,
    0 6px 35px #dd592744;
}
.secondary {
  background: #16120fb3;
  border: 1px solid #514034;
  color: #e5d9cf;
  gap: 11px;
}
.play-icon {
  font-size: 19px !important;
}
.hero .actions {
  animation: enter 1s 0.3s both var(--motion-ease);
}
.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  animation: enter 1s 0.4s both var(--motion-ease);
}
.avatars {
  display: flex;
  padding-left: 8px;
}
.avatars img {
  width: 31px;
  height: 31px;
  border: 2px solid #221a15;
  border-radius: 50%;
  margin-left: -8px;
  object-fit: cover;
}
.hero-proof p {
  font-size: 14px;
  color: #aaa09a;
  text-align: left;
}
.hero-proof strong {
  color: #e5ddd7;
  font-weight: 600;
}
.hero-proof p > span {
  display: block;
  font-size: 14px;
  color: #94877e;
  margin-top: 2px;
}
.hero-proof b {
  color: #ffad75;
  letter-spacing: 2px;
  font-size: 14px;
  margin-right: 7px;
}
.hero-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 17px;
  margin-top: 60px;
  text-align: left;
  background: linear-gradient(135deg, #ffffff0a, #ffffff02);
  padding: 15px;
  border: 1px solid #61473566;
  border-radius: 16px;
  box-shadow: 0 30px 90px #0007;
  animation: enter 1s 0.45s both var(--motion-ease);
}
.mentor-preview {
  position: relative;
  min-height: 325px;
  border: 1px solid #5b4b40;
  border-radius: 9px;
  overflow: hidden;
  background: #171914;
}
.mentor-preview > img {
  position: absolute;
  width: 68%;
  height: 100%;
  right: 0;
  object-fit: cover;
  object-position: 50% 34%;
  filter: saturate(0.8);
  transition: transform 0.8s;
}
.mentor-preview:hover > img {
  transform: scale(1.04);
}
.mentor-preview-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #191c16 15%, #191c16cc 37%, transparent 75%),
    linear-gradient(0deg, #111711 0%, transparent 42%);
}
.preview-kicker {
  position: absolute;
  top: 22px;
  left: 23px;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: #c8c4ae;
  display: flex;
  gap: 7px;
  align-items: center;
}
.preview-kicker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #dcad77;
}
.preview-copy {
  position: absolute;
  top: 95px;
  left: 25px;
  z-index: 1;
}
.preview-copy > span {
  font-size: 14px;
  color: #b1b4a7;
}
.preview-copy > strong {
  font: 600 30px/1.22 var(--display);
  letter-spacing: -1px;
  display: block;
  margin-top: 12px;
}
.preview-copy em {
  font-style: normal;
  color: #e9bb88;
}
.preview-play {
  position: absolute;
  right: 22px;
  bottom: 25px;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  background: #f1e9dc;
  color: #363528;
  font-size: 28px;
  box-shadow: 0 0 0 8px #ffffff0b;
  transition: box-shadow 0.3s;
}
.mentor-preview:hover .preview-play {
  box-shadow: 0 0 0 14px #ffffff12;
}
.preview-caption {
  position: absolute;
  bottom: 28px;
  left: 25px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #c5c1ae;
}
.showcase-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hero-social-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-social-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: center;
  gap: 10px;
  padding: 22px 20px;
  border: 1px solid #4d3b2e;
  border-radius: 9px;
  background: linear-gradient(120deg, #332114a8, #17120f);
  transition:
    border-color 0.4s var(--motion-ease),
    transform 0.4s var(--motion-ease);
}
.hero-social-card:hover {
  border-color: #b9774b;
  transform: translateY(-3px);
}
.hero-social-card strong {
  font: 600 clamp(27px, 2.7vw, 39px)/1.1 var(--display);
  letter-spacing: -1.5px;
  color: #ffe4c5;
}
.hero-social-card > span {
  grid-column: 1 / -1;
  font-size: 14px;
  color: #ebd4c1;
}
.hero-social-card p {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.6;
  color: #b9a494;
  margin: 6px 0 0;
}
@media (max-width: 480px) {
  .hero-social-stats {
    gap: 10px;
  }
  .hero-social-card {
    padding: 18px 12px;
    gap: 8px;
  }
  .hero-social-card svg {
    width: 24px;
  }
  .hero-social-card strong {
    font-size: 27px;
  }
  .hero-social-card > span {
    font-size: 14px;
  }
}
.stat-tile {
  position: relative;
  display: flex;
  gap: 18px;
  border: 1px solid #4d3b2e;
  border-radius: 9px;
  padding: 21px 24px;
  background: linear-gradient(120deg, #332114a8, #17120f);
  overflow: hidden;
}
.tile-icon {
  color: #d5a56f;
  font-size: 32px;
  line-height: 1.4;
}
.stat-tile strong {
  font: 600 45px/1 var(--display);
  letter-spacing: -2px;
  color: #ffe4c5;
}
.stat-tile strong > span {
  font-size: 29px;
  font-weight: 400;
  color: #bb8858;
  vertical-align: top;
}
.stat-tile h2 {
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 12px;
}
.stat-tile p {
  font-size: 14px;
  color: #a99888;
  margin-top: 5px;
}
.mini-avatars {
  margin-left: auto;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 95px;
  gap: 5px;
  transform: rotate(-8deg);
}
.mini-avatars > span {
  background: #473328;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #d8bea7;
}
.mini-avatars > span:nth-child(2) {
  background: #354036;
}
.mini-avatars > span:nth-child(3) {
  background: #413640;
}
.mini-avatars > span:last-child {
  font-size: 14px;
  width: 59px;
  background: #5e402b;
  color: #f2ccb0;
}
.practice-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #16161c, #1c1a27);
  border: 1px solid #3f3b4c;
  border-radius: 9px;
  padding: 21px 24px;
  overflow: hidden;
}
.tile-label {
  font-size: 14px;
  letter-spacing: 1.3px;
  color: #a49cac;
}
.practice-tile h2 {
  font-size: 21px;
  letter-spacing: -0.7px;
  margin-top: 9px;
}
.practice-link {
  display: block;
  font-size: 14px;
  color: #bfb5d5;
  margin-top: 13px;
}
.practice-visual {
  position: relative;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.practice-visual > span {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c8b7df, #665978);
  color: #221b2d;
  font: 24px monospace;
  width: 60px;
  height: 60px;
  border-radius: 13px;
  transform: rotate(-12deg);
  border: 1px solid #d0b9f2;
  box-shadow: -5px 5px 0 #473d55;
  transition: transform 0.4s;
}
.practice-tile:hover .practice-visual > span {
  transform: rotate(0) translateY(-3px);
}
.practice-visual i {
  position: absolute;
  inset: 0;
  border: 1px solid #9080ad22;
  border-radius: 22px;
  transform: rotate(-12deg);
  pointer-events: none;
}
.practice-visual i:last-child {
  inset: -16px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 20px 0;
  color: #72675e;
  font: 14px monospace;
  letter-spacing: 0.9px;
}
.hero-bottom a span {
  color: #c19a78;
  margin-left: 12px;
}
.companies {
  padding: 42px 0 60px;
  border-bottom: 1px solid var(--line);
}
.companies p {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #7f7770;
  text-align: center;
  margin-bottom: 30px;
}
.company-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 28px;
  align-items: center;
}
.company-logo {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 66px;
}
.company-logo img {
  width: 130px;
  max-width: 85%;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.58;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.company-logo:hover img {
  opacity: 0.95;
  transform: translateY(-2px);
}
.company-logo img[alt="Salesforce"],
.company-logo img[alt="Jio"] {
  filter: grayscale(1);
  opacity: 0.85;
}
.section {
  padding-block: 95px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 43px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
}
.section-aside {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 240px;
}
.text-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #e6b28c;
  margin-top: 15px;
}
/* Inset course panel: the page background stays visible on either side. */
.course-panel {
  width: min(1180px, 78%);
  margin: 90px auto;
  padding: 65px clamp(24px, 3.5vw, 55px) 45px;
  background: #fff4ef;
  color: #151311;
  border-radius: 20px;
}
.course-panel-heading {
  text-align: center;
  margin-bottom: 30px;
}
.course-panel-heading .eyebrow {
  display: inline-block;
  border: 1px solid #d8714b;
  color: #81543e;
  padding: 2px 10px;
  font-size: 14px;
  letter-spacing: 1px;
}
.course-panel-heading h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -1.1px;
  margin: 20px auto 25px;
  max-width: 850px;
}
.course-panel-explore {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 22px;
  border-radius: 9px;
  background: linear-gradient(110deg, #d65323, #a13b18);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.course-panel-stack {
  display: grid;
  gap: 22px;
  isolation: isolate;
}
.stack-course {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(25px, 3vw, 48px);
  padding: 30px;
  min-height: 420px;
  border: 1px solid #e3ded8;
  border-radius: 18px;
  background: #fff;
}
.stack-course--1 {
  background: #181818;
  color: #f5f2ed;
  border-color: #383532;
}
.stack-course--2 {
  background: #241c17;
  color: #f5f2ed;
  border-color: #4a382c;
  grid-template-columns: 1.15fr 1fr;
}
.stack-course--2 .stack-course-art {
  order: 2;
}
.stack-course--3 {
  background: #080808;
  color: #f5f2ed;
  border-color: #080808;
}
.stack-course-art {
  min-width: 0;
  background: #161716;
  border-radius: 12px;
  overflow: hidden;
}
.stack-course-art img {
  display: block;
  width: 100%;
  height: auto;
}
.stack-course-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.7px;
}
.stack-course-copy h3 {
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -1px;
  margin: 0 0 13px;
}
.stack-course-description {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #69615a;
}
.stack-course--1 .stack-course-description,
.stack-course--2 .stack-course-description,
.stack-course--3 .stack-course-description {
  color: #c8c2bb;
}
.stack-course-facts {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  gap: 12px;
  margin: 23px 0 25px;
}
.stack-course-facts dt {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.stack-course-facts dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
.stack-course-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin: 0 0 12px;
}
.stack-course-price > span {
  font-size: 23px;
}
.stack-course-price strong {
  color: #bb4118;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -1px;
}
.stack-course-price del {
  font-size: 14px;
  color: #6d6259;
}
.stack-course--1 .stack-course-price strong,
.stack-course--2 .stack-course-price strong,
.stack-course--3 .stack-course-price strong {
  color: #ff8a45;
}
.stack-course--1 .stack-course-price del,
.stack-course--2 .stack-course-price del,
.stack-course--3 .stack-course-price del {
  color: #c8c2bb;
}
.stack-course-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 9px 18px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
}
.stack-course--1 .stack-course-link,
.stack-course--2 .stack-course-link,
.stack-course--3 .stack-course-link {
  background: #ff8a45;
  color: #181818;
  font-weight: 600;
}
.stack-course-link:hover,
.course-panel-explore:hover {
  filter: brightness(1.12);
}
@media (min-width: 1000px) and (min-height: 720px) and (prefers-reduced-motion: no-preference) {
  .stack-course {
    position: sticky;
    top: 110px;
    transform-origin: center top;
    will-change: transform;
    backface-visibility: hidden;
  }
  .stack-course--2 {
    top: 125px;
  }
  .stack-course--3 {
    top: 140px;
  }
}
@media (max-width: 1100px) {
  .course-panel {
    padding-inline: 25px;
  }
  .stack-course {
    padding: 24px;
    gap: 24px;
  }
}
@media (max-width: 850px) {
  .course-panel {
    width: calc(100% - 40px);
    padding: 45px 20px 25px;
    margin-block: 55px;
  }
  .stack-course {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }
  .stack-course--2 .stack-course-art {
    order: 0;
  }
  .stack-course-art {
    width: 100%;
  }
  .stack-course-copy h3 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .course-panel {
    width: calc(100% - 28px);
    padding: 35px 14px 18px;
    border-radius: 16px;
  }
  .course-panel-heading h2 {
    font-size: 27px;
  }
  .stack-course {
    padding: 18px;
    gap: 22px;
  }
  .stack-course-facts {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stack-course-copy h3 {
    font-size: 27px;
  }
  .stack-course-price > span {
    font-size: 20px;
  }
  .stack-course-price strong {
    font-size: 27px;
  }
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.course-card {
  border: 1px solid #33302e;
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(130deg, #1b1917, #121110);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.course-card:hover {
  transform: translateY(-7px);
  border-color: #986748;
  box-shadow: 0 20px 45px #0006;
}
.course-image {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 10px;
  border-radius: 5px;
  background: #1b1917;
}
.course-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s;
}
.course-card:hover img {
  transform: scale(1.04);
}
.course-image-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #f5eee2;
  color: #211710;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.course-card:hover .course-image-arrow {
  opacity: 1;
  transform: none;
}
.course-body {
  padding: 14px 23px 23px;
}
.course-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 14px monospace;
  letter-spacing: 0.6px;
  color: #b79273;
  margin-bottom: 17px;
}
.course-meta .status-dot {
  width: 4px;
  height: 4px;
  margin-right: 5px;
}
.course-card h3 {
  font-size: 21px;
  letter-spacing: -0.8px;
  line-height: 1.3;
}
.course-card p {
  font-size: 14px;
  color: #99918a;
  margin-top: 14px;
  line-height: 1.8;
  min-height: 66px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.tags span {
  font-size: 14px;
  border: 1px solid #44392f;
  color: #bca997;
  padding: 4px 7px;
  border-radius: 4px;
}
.course-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #393028;
  margin-top: 22px;
  padding-top: 17px;
  font-size: 14px;
  font-weight: 500;
}
.course-cta span {
  font-size: 20px;
  color: var(--accent);
}
.course-footnote {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}
.course-footnote a {
  color: #e6ad83;
}
.approach {
  background:
    radial-gradient(ellipse at 50% 0, #3b251422, transparent 65%), #11100f;
  border-block: 1px solid #29231d;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}
.feature {
  border: 1px solid #3a3028;
  border-radius: 10px;
  padding: 29px;
  background: linear-gradient(130deg, #211a15, #15120f);
}
.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #826952;
  font: 14px monospace;
  margin-bottom: 28px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eab286;
  background: #be793d17;
  border: 1px solid #62452c;
  border-radius: 9px;
  width: 43px;
  height: 43px;
  font: 23px var(--display);
}
.feature h3 {
  font-size: 22px;
  letter-spacing: -0.7px;
}
.feature p {
  font-size: 14px;
  color: #a49385;
  line-height: 1.9;
  margin-top: 17px;
}
.build-flow {
  display: flex;
  gap: 10px;
  align-items: center;
  font: 14px monospace;
  margin-top: 29px;
}
.build-flow > span {
  border: 1px solid #69503a;
  border-radius: 4px;
  padding: 8px;
}
.build-flow i {
  font-style: normal;
  color: #886e56;
}
.build-flow .shipped {
  color: #f2b381;
  background: #783e2422;
  border-color: #885032;
}
.mentor {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 95px;
  align-items: center;
  padding-block: 115px;
}
.mentor-photo {
  position: relative;
  padding: 10px;
  background: linear-gradient(135deg, #6a5141, #241d18);
  border-radius: 15px;
}
.mentor-photo > img {
  aspect-ratio: 1/1.08;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.85);
}
.mentor-photo:after {
  content: "";
  position: absolute;
  inset: 50% 10px 10px;
  background: linear-gradient(transparent, #0c0d08cc);
  border-radius: 8px;
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  font-size: 14px;
  letter-spacing: 1.2px;
  color: #d0cebe;
}
.mentor-stamp {
  position: absolute;
  right: -25px;
  top: 30px;
  border: 1px solid #9c7455;
  background: #312419e8;
  backdrop-filter: blur(10px);
  border-radius: 9px;
  padding: 17px 21px;
  z-index: 3;
  color: #f1c08f;
  font: 600 31px var(--display);
  box-shadow: 0 10px 25px #0003;
}
.mentor-stamp small {
  font: 14px var(--font);
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}
.mentor-copy .eyebrow {
  margin-bottom: 23px;
}
.mentor h2 {
  font-size: 46px;
}
.mentor-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: #9e9690;
  margin-top: 20px;
  line-height: 1.9;
}
.mentor-copy .mentor-quote {
  font-size: 20px !important;
  color: #e2d9d2 !important;
  line-height: 1.6;
  max-width: 390px;
  margin-top: 27px !important;
}
.mentor-copy .text-link {
  margin-top: 25px;
}
.testimonials {
  background: #12100f;
  border-block: 1px solid #2f2721;
}
.review-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 200px;
}
.stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: #e9a56b;
}
.review-rating strong {
  font: 500 33px var(--display);
}
.review-rating > span:last-child {
  font-size: 14px;
  color: #9d8f84;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.review {
  padding: 29px;
  border: 1px solid #3a2f27;
  border-radius: 10px;
  background: linear-gradient(140deg, #211a16, #17120f);
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font:
    60px/0.8 Georgia,
    serif;
  color: #c08a5c;
}
.review blockquote {
  font-size: 14px;
  color: #b7a99d;
  line-height: 1.9;
  margin: 14px 0 30px;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #423022;
  color: #f2b681;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.review figcaption strong {
  font-size: 14px;
  font-weight: 500;
}
.review figcaption small {
  font-size: 14px;
  color: #a18977;
  display: block;
  margin-top: 2px;
}
.free-learning {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-block: 110px;
}
.free-learning .eyebrow {
  margin-bottom: 23px;
}
.free-learning h2 {
  font-size: 44px;
}
.free-learning p:not(.eyebrow) {
  font-size: 14px;
  color: #a4978c;
  margin: 25px 0;
  max-width: 370px;
}
.video-card {
  border: 1px solid #63452e;
  border-radius: 12px;
  background: #211810;
  overflow: hidden;
  transition: transform 0.4s;
}
.video-card:hover {
  transform: translateY(-6px);
}
.video-art {
  position: relative;
  min-height: 280px;
  padding: 28px;
  background:
    radial-gradient(ellipse at 100% 100%, #d57f3444, transparent 65%),
    linear-gradient(135deg, #342519, #171410);
  overflow: hidden;
}
.video-art:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: -90px;
  border: 1px solid #cb874633;
  border-radius: 50%;
  box-shadow:
    0 0 0 30px #ca864414,
    0 0 0 60px #ca86440b;
}
.video-kicker {
  font-size: 14px;
  letter-spacing: 1.4px;
  color: #c6a686;
}
.video-art strong {
  position: relative;
  display: block;
  font: 600 39px/1.15 var(--display);
  letter-spacing: -1.5px;
  margin-top: 32px;
}
.video-art em {
  font-style: normal;
  color: #e8b787;
}
.big-play {
  position: absolute;
  right: 25px;
  bottom: 40px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4c391;
  color: #362313;
  font-size: 35px;
  box-shadow: 0 0 0 9px #ffd3a40a;
  transition: scale 0.3s;
}
.video-card:hover .big-play {
  scale: 1.08;
}
.video-code {
  font: 14px monospace;
  color: #ac8e70;
  display: block;
  margin-top: 25px;
}
.video-caption {
  display: flex;
  justify-content: space-between;
  padding: 18px 25px;
  font-size: 14px;
  color: #e2bc96;
}
.video-caption > span:last-child {
  color: #a4876d;
}
.extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 90px;
}
.extras > a {
  display: flex;
  align-items: center;
  gap: 20px;
  border-block: 1px solid #362a20;
  padding: 25px 0;
}
.extras h3 {
  font-size: 19px;
  letter-spacing: -0.5px;
}
.extras p {
  font-size: 14px;
  color: #9a8b7e;
  margin-top: 6px;
}
.extras > a > span:last-child {
  margin-left: auto;
  color: #dba272;
}
.extras .feature-icon {
  flex-shrink: 0;
}
.final-cta {
  text-align: center;
  padding: 70px 35px;
  background:
    radial-gradient(ellipse at 50% 100%, #b1572255, transparent 70%),
    linear-gradient(120deg, #2c1c11, #15110d);
  border: 1px solid #715039;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.final-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #ffd3a006, transparent);
  transform: translateX(-100%);
  animation: sheen 10s ease-in-out infinite;
  pointer-events: none;
}
.final-cta h2 {
  font-size: 55px;
  margin-top: 22px;
  letter-spacing: -2.5px;
}
.final-cta h2 > span {
  color: #edb783;
}
.final-cta .eyebrow {
  color: #bda087;
}
.final-cta .actions {
  margin-top: 31px;
}
.dark-button {
  background: #f0d8be;
  color: #362519;
  border: 1px solid #f6e5d1;
}
.outline-dark {
  border: 1px solid #7b5a3b;
  color: #dfbe9a;
}
footer {
  padding-top: 75px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-main p {
  font-size: 14px;
  color: #998b7f;
  margin-top: 20px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
  color: #9e9186;
}
.footer-column h3 {
  font: 500 14px var(--font);
  color: #e9d8c8;
  margin: 5px 0 12px;
}
.footer-column a {
  overflow-wrap: anywhere;
}
.footer-column a:hover {
  color: #e4b184;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #2f251e;
  padding: 23px 0;
  font-size: 14px;
  color: #8b7a6c;
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}

dialog {
  width: min(780px, calc(100% - 30px));
  max-height: 85vh;
  border: 1px solid #6b4c32;
  border-radius: 10px;
  background: #19130f;
  color: var(--ink);
  padding: 0;
}
dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(8px);
}
.dialog-top {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #19130f;
  border-bottom: 1px solid #443222;
  padding: 19px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dialog-top h2 {
  font-size: 21px;
  letter-spacing: -0.5px;
}
.dialog-top button {
  background: #3d2a1b;
  border: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
#policy-content {
  padding: 28px;
  font-size: 14px;
  overflow-wrap: anywhere;
}
#policy-content ol,
#policy-content ul {
  padding-left: 23px;
}
#policy-content a {
  color: #efb885;
}
#lesson-dialog {
  width: min(950px, calc(100% - 30px));
}
#lesson-player {
  aspect-ratio: 16/9;
  background: #000;
}
#lesson-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lesson-fallback {
  padding: 14px 20px;
  font-size: 14px;
  color: #ae9580;
}
.lesson-fallback a {
  color: #efb885;
}
.no-script-note {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
[data-reveal].reveal-ready {
  opacity: 0;
  translate: 0 18px;
  transition:
    opacity 0.8s var(--motion-ease),
    translate 0.9s var(--motion-ease);
}
[data-reveal].revealed {
  opacity: 1;
  translate: 0 0;
}
.course-grid > [data-reveal]:nth-child(2),
.review-grid > [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.course-grid > [data-reveal]:nth-child(3),
.review-grid > [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.motion-paused * {
  animation-play-state: paused !important;
}
.motion-paused {
  scroll-behavior: auto;
}
.motion-paused [data-reveal] {
  opacity: 1;
  translate: none;
  transition: none;
}
@keyframes enter {
  from {
    opacity: 0;
    translate: 0 18px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes underline {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes beam {
  to {
    opacity: 0.2;
    translate: 90px 0;
  }
}
@keyframes sheen {
  0%,
  60% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  nav {
    gap: 23px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -3.2px;
  }
  .hero-inner {
    padding-top: 55px;
  }
  .hero-showcase {
    margin-top: 50px;
  }
  .stat-tile {
    padding: 20px;
    gap: 13px;
  }
  .mini-avatars {
    display: none;
  }
  .practice-tile {
    padding: 20px;
  }
  .practice-visual {
    margin-right: 0;
    width: 70px;
    height: 70px;
  }
  .preview-copy > strong {
    font-size: 28px;
  }
  .course-grid {
    gap: 18px;
  }
  .course-body {
    padding: 14px 19px 20px;
  }
  .course-card h3 {
    font-size: 19px;
  }
  .course-meta {
    font-size: 14px;
  }
  .course-card p {
    min-height: 86px;
  }
  .feature {
    padding: 23px;
  }
  .build-flow {
    gap: 6px;
  }
  .build-flow > span {
    padding: 6px;
  }
  .mentor {
    gap: 65px;
  }
  .mentor h2 {
    font-size: 40px;
  }
  .free-learning {
    gap: 55px;
  }
  .free-learning h2 {
    font-size: 38px;
  }
  .footer-main {
    gap: 25px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-row {
    height: 74px;
  }
  .brand-mark {
    font-size: 37px;
  }
  .brand-name {
    font-size: 14px;
  }
  .site-header .brand-name {
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 1px solid #5f4531;
    border-radius: 6px;
    background: transparent;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #17110dfa;
    border-bottom: 1px solid #513620;
    padding: 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 13px;
  }
  .nav-login {
    margin: 10px 0 0;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(46px, 7.3vw, 60px);
    letter-spacing: -2.8px;
  }
  .hero-inner {
    padding-top: 45px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 540px;
  }
  .hero-showcase {
    grid-template-columns: 1fr 1fr;
    padding: 11px;
    gap: 12px;
  }
  .mentor-preview {
    min-height: 320px;
  }
  .preview-copy {
    left: 20px;
    top: 93px;
  }
  .preview-copy > strong {
    font-size: 25px;
  }
  .preview-copy > span {
    font-size: 14px;
  }
  .preview-kicker {
    font-size: 14px;
    left: 20px;
    letter-spacing: 1px;
  }
  .preview-caption {
    font-size: 14px;
    left: 20px;
    max-width: 140px;
  }
  .preview-play {
    width: 38px;
    height: 38px;
    right: 18px;
    bottom: 25px;
    font-size: 24px;
  }
  .stat-tile {
    padding: 20px 16px;
    gap: 12px;
  }
  .stat-tile strong {
    font-size: 36px;
  }
  .stat-tile h2 {
    font-size: 14px;
  }
  .stat-tile p {
    font-size: 14px;
  }
  .tile-icon {
    font-size: 25px;
  }
  .practice-tile {
    padding: 20px 16px;
  }
  .practice-tile h2 {
    font-size: 18px;
  }
  .practice-visual {
    width: 55px;
    height: 65px;
  }
  .practice-visual > span {
    width: 43px;
    height: 43px;
    font-size: 20px;
    border-radius: 10px;
  }
  .practice-visual i {
    display: none;
  }
  .tile-label {
    font-size: 14px;
  }
  .practice-link {
    font-size: 14px;
  }
  .hero-bottom {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .hero-bottom > span {
    max-width: 210px;
  }
  .companies {
    padding-block: 35px 45px;
  }
  .company-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 24px;
  }
  .section {
    padding-block: 70px;
  }
  h2 {
    font-size: 39px;
    letter-spacing: -1.7px;
  }
  .section-heading {
    gap: 25px;
    margin-bottom: 35px;
  }
  .section-aside {
    max-width: 210px;
    font-size: 14px;
  }
  .course-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .course-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
  .course-image {
    margin: 12px;
  }
  .course-body {
    padding: 22px 22px 22px 10px;
  }
  .course-card h3 {
    font-size: 22px;
  }
  .course-meta {
    font-size: 14px;
  }
  .course-card p {
    min-height: 0;
  }
  .tags {
    margin-top: 16px;
  }
  .course-cta {
    margin-top: 17px;
    padding-top: 13px;
  }
  .approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .feature-large {
    grid-column: 1/-1;
  }
  .feature-large p {
    max-width: 500px;
  }
  .build-flow {
    gap: 14px;
  }
  .build-flow > span {
    padding: 8px 12px;
  }
  .mentor {
    gap: 40px;
    padding-block: 85px;
  }
  .mentor h2 {
    font-size: 34px;
  }
  .mentor-stamp {
    padding: 13px 15px;
    font-size: 26px;
    right: -17px;
  }
  .mentor-stamp small {
    font-size: 14px;
  }
  .photo-caption {
    font-size: 14px;
    left: 20px;
  }
  .mentor-copy .mentor-quote {
    font-size: 17px !important;
  }
  .mentor-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .review-grid {
    gap: 15px;
  }
  .review {
    padding: 23px;
  }
  .review blockquote {
    font-size: 14px;
  }
  .review-rating {
    max-width: 170px;
  }
  .free-learning {
    gap: 32px;
  }
  .free-learning h2 {
    font-size: 34px;
  }
  .video-art {
    min-height: 255px;
    padding: 22px;
  }
  .video-art strong {
    font-size: 30px;
  }
  .video-kicker {
    font-size: 14px;
  }
  .big-play {
    width: 40px;
    height: 40px;
    font-size: 27px;
    right: 18px;
    bottom: 35px;
  }
  .video-code {
    font-size: 14px;
  }
  .video-caption {
    padding: 16px;
    font-size: 14px;
  }
  .extras {
    gap: 25px;
    margin-bottom: 70px;
  }
  .extras > a {
    gap: 14px;
  }
  .extras h3 {
    font-size: 16px;
  }
  .extras p {
    font-size: 14px;
  }
  .extras .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 19px;
  }
  .final-cta {
    padding: 55px 30px;
  }
  .final-cta h2 {
    font-size: 45px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .hero-inner {
    padding-top: 38px;
  }
  .hero-badge {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 8px 12px;
    gap: 8px;
  }
  .hero h1 {
    font-size: clamp(33px, 8.8vw, 45px);
    letter-spacing: -1.8px;
    line-height: 1.2;
    margin-top: 24px;
  }
  .hero h1 > span {
    display: inline-block;
  }
  .hero h1 svg {
    height: 14px;
    bottom: -10px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 27px;
    max-width: 320px;
  }
  .hero-description br {
    display: none;
  }
  .button {
    font-size: 14px;
    padding: 14px 16px;
    gap: 12px;
  }
  .button span {
    font-size: 16px;
  }
  .actions {
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .secondary {
    gap: 8px;
  }
  .hero-proof {
    gap: 11px;
    margin-top: 22px;
  }
  .avatars img {
    width: 25px;
    height: 25px;
  }
  .hero-proof p {
    font-size: 14px;
  }
  .hero-proof p > span {
    font-size: 14px;
  }
  .hero-proof b {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .hero-showcase {
    margin-top: 34px;
    grid-template-columns: 1fr;
    padding: 9px;
    border-radius: 12px;
    gap: 10px;
  }
  .mentor-preview {
    min-height: 275px;
  }
  .mentor-preview > img {
    width: 65%;
    object-position: 50% 30%;
  }
  .preview-kicker {
    top: 21px;
    font-size: 14px;
  }
  .preview-copy {
    top: 88px;
    left: 20px;
  }
  .preview-copy > strong {
    font-size: 27px;
  }
  .preview-copy > span {
    font-size: 14px;
  }
  .preview-caption {
    font-size: 14px;
    bottom: 23px;
    max-width: none;
  }
  .preview-play {
    bottom: 23px;
    right: 20px;
    width: 39px;
    height: 39px;
  }
  .showcase-side {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-tile {
    padding: 18px 14px;
    display: block;
  }
  .tile-icon {
    display: none;
  }
  .stat-tile strong {
    font-size: 33px;
  }
  .stat-tile strong > span {
    font-size: 23px;
  }
  .stat-tile h2 {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 9px;
  }
  .stat-tile p {
    font-size: 14px;
    margin-top: 7px;
    line-height: 1.7;
  }
  .practice-tile {
    padding: 18px 14px;
    align-items: flex-start;
  }
  .practice-tile h2 {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-top: 15px;
  }
  .practice-link {
    font-size: 14px;
    margin-top: 17px;
  }
  .tile-label {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .practice-visual {
    display: none;
  }
  .hero-bottom {
    justify-content: center;
    margin-top: 8px;
    padding: 15px 0;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom a {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .companies {
    padding: 30px 0 40px;
  }
  .companies p {
    font-size: 14px;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
  }
  .company-list {
    gap: 12px 14px;
  }
  .company-logo {
    height: 48px;
  }
  .company-logo img {
    height: 30px;
    max-width: 90%;
  }
  .section {
    padding-block: 57px;
  }
  h2 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }
  .eyebrow {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .section-aside {
    max-width: none;
    margin-top: 20px;
    font-size: 14px;
  }
  .section-aside br {
    display: none;
  }
  .text-link {
    font-size: 14px;
    margin-top: 12px;
  }
  .course-card {
    display: block;
  }
  .course-image {
    margin: 10px;
  }
  .course-body {
    padding: 15px 23px 23px;
  }
  .course-meta {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .course-card h3 {
    font-size: 23px;
  }
  .course-card p {
    font-size: 14px;
  }
  .tags span {
    font-size: 14px;
  }
  .course-cta {
    font-size: 14px;
    padding-top: 17px;
    margin-top: 21px;
  }
  .course-footnote {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    margin-top: 25px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-large {
    grid-column: auto;
  }
  .feature {
    padding: 25px;
  }
  .feature-top {
    margin-bottom: 23px;
  }
  .feature h3 {
    font-size: 23px;
  }
  .feature p {
    font-size: 14px;
  }
  .mentor {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 70px;
  }
  .mentor-photo {
    width: calc(100% - 15px);
  }
  .mentor-photo > img {
    aspect-ratio: 1/1;
  }
  .mentor-stamp {
    padding: 15px 18px;
    font-size: 29px;
  }
  .photo-caption {
    font-size: 14px;
    bottom: 25px;
    left: 23px;
  }
  .mentor h2 {
    font-size: 39px;
  }
  .mentor-copy .eyebrow {
    margin-bottom: 20px;
  }
  .mentor-copy .mentor-quote {
    font-size: 20px !important;
  }
  .mentor-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .review-rating {
    justify-content: flex-start;
    max-width: none;
    margin-top: 25px;
  }
  .review-rating strong {
    font-size: 27px;
  }
  .stars {
    font-size: 14px;
  }
  .review-rating > span:last-child {
    font-size: 14px;
  }
  .review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review {
    padding: 26px;
  }
  .review blockquote {
    font-size: 14px;
    line-height: 1.9;
  }
  .free-learning {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .free-learning h2 {
    font-size: 38px;
  }
  .free-learning p:not(.eyebrow) {
    font-size: 14px;
    margin: 20px 0;
  }
  .video-art {
    padding: 25px;
    min-height: 265px;
  }
  .video-art strong {
    font-size: 35px;
  }
  .video-kicker {
    font-size: 14px;
  }
  .big-play {
    width: 46px;
    height: 46px;
    font-size: 30px;
    right: 22px;
  }
  .video-caption {
    font-size: 14px;
    padding: 17px 22px;
  }
  .extras {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 57px;
  }
  .extras > a:last-child {
    border-top: 0;
  }
  .extras h3 {
    font-size: 18px;
  }
  .extras p {
    font-size: 14px;
  }
  .extras > a {
    padding: 23px 0;
  }
  .final-cta {
    padding: 40px 20px;
    border-radius: 11px;
  }
  .final-cta .eyebrow {
    font-size: 14px;
  }
  .final-cta h2 {
    font-size: clamp(27px, 7.7vw, 37px);
    letter-spacing: -1.3px;
    margin-top: 20px;
  }
  .final-cta .actions {
    margin-top: 26px;
    flex-direction: column;
  }
  .final-cta .button {
    width: 210px;
  }
  .footer-main {
    gap: 30px 20px;
  }
  .footer-main > div:first-child,
  .footer-column:last-child {
    grid-column: 1/-1;
  }
  footer {
    padding-top: 55px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom > div {
    gap: 18px;
  }
  .dialog-top {
    padding: 16px;
  }
  .dialog-top h2 {
    font-size: 16px;
  }
  #policy-content {
    padding: 20px;
  }
  .lesson-fallback {
    font-size: 14px;
  }
}
/* YouTube and student stories share accessible, native-scrolling rails. */
.youtube-library {
  border-top: 1px solid #30251d;
}
.student-stories {
  background: #100c0a;
  border-block: 1px solid #30221a;
}
.moving-section-heading {
  text-align: center;
  margin-bottom: 45px;
}
.moving-section-heading .eyebrow {
  margin-bottom: 20px;
}
.moving-section-heading h2 {
  font-size: clamp(34px, 3.6vw, 49px);
  line-height: 1.25;
}
.moving-section-heading > p:last-child {
  font-size: 14px;
  color: #a4968a;
  margin: 20px auto 0;
  max-width: 590px;
}
.youtube-library .youtube-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  letter-spacing: 2px;
}
.youtube-label svg {
  flex-shrink: 0;
}
.youtube-library .moving-section-heading h2 {
  font-size: clamp(36px, 4.1vw, 56px);
}
.youtube-library .moving-section-heading > p:last-child {
  font-size: 14px;
}
.content-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: #67422b transparent;
  padding: 10px 0 18px;
}
.content-carousel:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -3px;
}
.carousel-track {
  display: flex;
  width: max-content;
}
.carousel-group {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px;
}
.content-carousel:not(.carousel-enhanced) .carousel-track {
  padding-inline: 40px;
}
.carousel-enhanced {
  scrollbar-width: none;
}
.carousel-enhanced::-webkit-scrollbar {
  display: none;
}
.youtube-card {
  flex: 0 0 auto;
  width: 390px;
  border: 1px solid #4a3b30;
  border-radius: 11px;
  background: linear-gradient(140deg, #1c1815, #0c0b0a);
  padding: 13px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.youtube-card:hover,
.youtube-card:focus-visible {
  border-color: #c58353;
  transform: translateY(-4px);
}
.youtube-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: #30251c;
}
.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.youtube-card:hover img {
  transform: scale(1.035);
}
.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e43222ed;
  color: white;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.25s;
}
.youtube-card:hover .youtube-play,
.youtube-card:focus-visible .youtube-play {
  opacity: 1;
}
.youtube-duration {
  position: absolute;
  bottom: 9px;
  right: 9px;
  background: #000d;
  border-radius: 4px;
  padding: 3px 6px;
  font: 14px monospace;
  color: #fff;
}
.youtube-card-body {
  padding: 19px 8px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.youtube-category {
  font: 14px monospace;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #dca076;
}
.youtube-card h3 {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.3px;
  margin-top: 9px;
  margin-bottom: 19px;
}
.youtube-card-body p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #a99a8e;
  margin-top: auto;
}
.youtube-card-body p span {
  color: #dfae87;
  font-size: 19px;
}
.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 28px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}
.carousel-controls[hidden] {
  display: none;
}
.carousel-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid #59402d;
  background: #20160f;
  border-radius: 50%;
  font-size: 17px;
}
.carousel-controls button:hover {
  background: #422716;
}

.carousel-footer .text-link {
  margin: 0;
}
.review-carousel + .review-carousel {
  margin-top: 14px;
}
.student-review {
  width: 430px;
  flex: 0 0 auto;
  padding: 27px 29px;
  border: 1px solid #473024;
  border-radius: 12px;
  background: linear-gradient(135deg, #21130d, #160906);
}
.student-review figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid #4c3022;
}
.student-avatar {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #563721;
  color: #f1c295;
  font-size: 14px;
  flex-shrink: 0;
}
.student-review:nth-child(2n) .student-avatar {
  background: #393144;
  color: #d4bfea;
}
.student-review:nth-child(3n) .student-avatar {
  background: #2e3d32;
  color: #c2d3b8;
}
.student-review figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.student-review figcaption div > span {
  display: block;
  font-size: 14px;
  color: #a68c7a;
  margin-top: 4px;
}
.student-quote-mark {
  margin-left: auto;
  font:
    45px/1 Georgia,
    serif;
  color: #b07548;
}
.student-review blockquote {
  font-size: 14px;
  line-height: 1.85;
  color: #c6b2a3;
  margin: 19px 0 0;
}
@media (max-width: 800px) {
  .youtube-card {
    width: 350px;
  }
  .student-review {
    width: 375px;
    padding: 24px;
  }
}
@media (max-width: 520px) {
  .moving-section-heading {
    margin-bottom: 29px;
  }
  .moving-section-heading h2 {
    font-size: 32px;
    letter-spacing: -1.3px;
  }
  .moving-section-heading > p:last-child {
    font-size: 14px;
    line-height: 1.8;
  }
  .youtube-card {
    width: min(84vw, 350px);
    padding: 10px;
  }
  .youtube-card h3 {
    font-size: 14px;
  }
  .youtube-card-body {
    padding: 15px 7px 7px;
  }
  .youtube-category {
    font-size: 14px;
  }
  .youtube-play {
    opacity: 0.9;
    width: 38px;
    height: 29px;
    font-size: 14px;
  }
  .carousel-group {
    gap: 16px;
    padding-right: 16px;
  }
  .carousel-footer {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 18px;
  }
  .student-review {
    width: min(86vw, 360px);
    padding: 23px;
  }
  .student-review blockquote {
    font-size: 14px;
  }
  .student-review figcaption {
    gap: 11px;
  }
  .student-review figcaption strong {
    font-size: 14px;
  }
  .student-review figcaption div > span {
    font-size: 14px;
  }
  .student-avatar {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .review-carousel + .review-carousel {
    margin-top: 6px;
  }
}
/* Campus stories: a native horizontal gallery, driven by page scroll on desktop. */
.campus-gallery {
  padding-top: 90px;
  background: #090909;
  --campus-progress: 0%;
}
.campus-pin {
  padding: 30px 0 45px;
}
.campus-heading {
  text-align: center;
}
.campus-heading .eyebrow {
  margin-bottom: 18px;
}
.campus-heading h2 {
  font-size: clamp(34px, 3.3vw, 48px);
}
.campus-intro {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.campus-rail {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: #5e3e29 transparent;
  scroll-snap-type: x proximity;
  margin-top: 35px;
  padding-bottom: 12px;
}
.campus-rail:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -3px;
}
.campus-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 5px max(40px, calc((100vw - 1180px) / 2)) 55px;
}
.campus-card {
  flex: 0 0 auto;
  position: relative;
  width: clamp(255px, 23vw, 335px);
  height: clamp(340px, 32vw, 425px);
  border-radius: 9px;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: center;
  background: #28231e;
  border: 1px solid #ffffff16;
}
.campus-card:nth-child(even) {
  margin-top: 42px;
}
.campus-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.55s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.campus-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #00000018, transparent 35%, #100b08aa);
  pointer-events: none;
}
.campus-card-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 28%,
    #bd491d66 58%,
    #e8602c 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.campus-card-tag {
  position: absolute;
  top: 18px;
  left: 17px;
  background: #e8602c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 11px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(-7px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.campus-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #090909e8;
  color: #fff;
  font-size: 20px;
  transition:
    transform 0.35s,
    background 0.35s;
}
.campus-card-copy {
  position: absolute;
  bottom: 23px;
  left: 22px;
  right: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.campus-card-index {
  font: 14px monospace;
  letter-spacing: 1px;
  color: #fff2e5;
}
.campus-card-copy h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.7px;
  margin-top: 9px;
  color: #fff;
}
.campus-card-copy p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  color: #fff3e9;
}
.campus-card:is(:hover, :focus-visible) > img {
  filter: grayscale(1);
  transform: scale(1.055);
}
.campus-card:is(:hover, :focus-visible) .campus-card-shade::after,
.campus-card:is(:hover, :focus-visible) .campus-card-copy,
.campus-card:is(:hover, :focus-visible) .campus-card-tag {
  opacity: 1;
  transform: none;
}
.campus-card:is(:hover, :focus-visible) .campus-card-arrow {
  transform: rotate(45deg);
  background: #17100b;
}
.campus-gallery-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 10px;
}
.campus-navigation {
  display: flex;
  align-items: center;
  gap: 9px;
}
.campus-navigation button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #574130;
  background: #17120e;
  font-size: 17px;
}
.campus-navigation button:hover:not(:disabled) {
  background: #3a2416;
}
.campus-navigation button:disabled {
  opacity: 0.35;
  cursor: default;
}
.campus-scroll-hint {
  font: 14px monospace;
  letter-spacing: 1px;
  color: #a18c7c;
  margin-left: 9px;
}
.campus-progress {
  height: 2px;
  background: #30241b;
  flex: 1;
}
.campus-progress > span {
  display: block;
  height: 100%;
  width: var(--campus-progress);
  background: var(--accent);
}
.campus-gallery-footer .text-link {
  margin: 0;
  white-space: nowrap;
}
.campus-gallery.is-scroll-driven {
  padding-top: 0;
}
.is-scroll-driven .campus-pin {
  position: sticky;
  top: 88px;
}
.is-scroll-driven .campus-rail {
  scroll-snap-type: none;
  scrollbar-width: none;
}
.is-scroll-driven .campus-rail::-webkit-scrollbar {
  display: none;
}
@media (min-width: 901px) and (max-height: 850px) {
  .is-scroll-driven .campus-pin {
    padding-top: 18px;
    padding-bottom: 20px;
  }
  .is-scroll-driven .campus-heading h2 {
    font-size: 36px;
  }
  .is-scroll-driven .campus-heading .eyebrow {
    margin-bottom: 12px;
  }
  .is-scroll-driven .campus-intro {
    margin-top: 12px;
  }
  .is-scroll-driven .campus-rail {
    margin-top: 22px;
  }
  .is-scroll-driven .campus-card {
    height: 295px;
  }
  .is-scroll-driven .campus-track {
    padding-bottom: 35px;
  }
  .is-scroll-driven .campus-card:nth-child(even) {
    margin-top: 25px;
  }
}
@media (max-width: 900px) {
  .campus-gallery {
    padding-top: 50px;
  }
  .campus-pin {
    padding: 20px 0 30px;
  }
  .campus-track {
    gap: 18px;
    padding-inline: 20px;
    padding-bottom: 35px;
  }
  .campus-card {
    width: 290px;
    height: 375px;
  }
  .campus-card:nth-child(even) {
    margin-top: 25px;
  }
  .campus-gallery-footer {
    gap: 15px;
  }
  .campus-scroll-hint {
    display: none;
  }
}
@media (hover: none), (max-width: 600px) {
  .campus-card-copy,
  .campus-card-tag {
    opacity: 1;
    transform: none;
  }
  .campus-card-shade::after {
    opacity: 0.88;
  }
  .campus-card > img {
    filter: none;
  }
}
@media (max-width: 520px) {
  .campus-heading h2 {
    font-size: 34px;
  }
  .campus-intro {
    font-size: 14px;
    max-width: 285px;
    margin-inline: auto;
  }
  .campus-rail {
    margin-top: 27px;
  }
  .campus-card {
    width: min(76vw, 290px);
    height: 365px;
  }
  .campus-card-copy {
    left: 19px;
    right: 19px;
    bottom: 20px;
  }
  .campus-card-copy h3 {
    font-size: 21px;
  }
  .campus-gallery-footer {
    flex-wrap: wrap;
    row-gap: 18px;
  }
  .campus-gallery-footer .text-link {
    margin-left: auto;
    font-size: 14px;
  }
  .campus-progress {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal].reveal-ready {
    opacity: 1;
    translate: none;
  }
  .hero h1 path {
    stroke-dashoffset: 0;
  }
}

/* Shared easing keeps entrances and hover transitions consistent across the page. */
@media (prefers-reduced-motion: no-preference) {
  .button,
  .mentor-preview,
  .mentor-preview img,
  .company-logo,
  .course-card,
  .course-image img,
  .course-image-arrow,
  .youtube-card,
  .youtube-thumbnail img,
  .youtube-play,
  .campus-card > img,
  .campus-card-shade::after,
  .campus-card-tag,
  .campus-card-arrow,
  .campus-card-copy,
  .extras a,
  .menu-toggle,
  .stack-course-link,
  .course-panel-explore {
    transition-timing-function: var(--motion-ease);
  }
  .youtube-card {
    transition-duration: 0.45s;
  }
  .youtube-play {
    transition-duration: 0.4s;
  }
  .campus-card-copy,
  .campus-card-tag,
  .campus-card-shade::after {
    transition-duration: 0.55s;
  }
  .carousel-track,
  .is-scroll-driven .campus-track {
    will-change: transform;
  }
}

/* Readable supporting type at every breakpoint. */
.hero-proof p,
.hero-proof p > span {
  font-size: 14px;
  line-height: 1.7;
  color: #c5b8ad;
}
.hero-proof {
  flex-wrap: wrap;
}
.hero-bottom {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: #b7a699;
  flex-wrap: wrap;
}
.companies p {
  font-size: 14px;
  line-height: 1.7;
  color: #c2b4a8;
  letter-spacing: 1px;
}
.preview-caption {
  max-width: calc(100% - 110px);
  line-height: 1.5;
  letter-spacing: 0.4px;
}
.preview-kicker {
  letter-spacing: 0.7px;
  max-width: calc(100% - 40px);
}
.tile-label {
  letter-spacing: 0.7px;
}
.hero-social-card p,
.practice-link {
  color: #c5b6a9;
}
.hero-social-card {
  min-width: 0;
}
.hero-social-card > span,
.hero-social-card p {
  overflow-wrap: break-word;
}
.stack-course-description,
.student-review blockquote,
.mentor-copy > p,
.campus-intro,
.moving-section-heading > p:last-child {
  font-size: 16px;
  line-height: 1.75;
}
.youtube-library .moving-section-heading > p:last-child {
  font-size: 16px;
}
.student-review figcaption strong {
  font-size: 16px;
}
.student-review figcaption div > span {
  font-size: 14px;
}
.youtube-category {
  letter-spacing: 0.7px;
}
.youtube-card-body p {
  font-size: 14px;
}
.stack-course-facts {
  grid-template-columns: 1fr 1fr;
}
.hero-badge {
  font-size: 14px;
  letter-spacing: 0.8px;
  max-width: 100%;
}
@media (max-width: 800px) {
  .showcase-side {
    grid-template-columns: 1fr;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .hero-bottom > span {
    display: block;
  }
  .hero-bottom a {
    font-size: 14px;
  }
  .preview-kicker {
    font-size: 13px;
  }
  .preview-caption {
    font-size: 14px;
  }
  .hero-proof p {
    text-align: center;
  }
  .hero-proof {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .hero-badge {
    font-size: 12px;
    letter-spacing: 0.2px;
    gap: 6px;
    padding-inline: 9px;
  }
  .hero-badge > span:last-child {
    display: none;
  }
  .hero-social-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-social-card {
    padding: 18px 12px;
    grid-template-columns: 1fr;
  }
  .hero-social-card strong {
    font-size: 30px;
  }
  .hero-social-card > span,
  .hero-social-card p {
    font-size: 14px;
  }
  .mentor-preview {
    min-height: 340px;
  }
  .preview-copy {
    top: 105px;
  }
  .practice-tile h2 {
    font-size: 24px;
  }
  .stack-course-description,
  .student-review blockquote {
    font-size: 15px;
  }
  .campus-card-copy {
    bottom: 18px;
  }
  .campus-card-copy p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 1100px) {
  .practice-visual {
    display: none;
  }
  .practice-tile > div:first-child {
    min-width: 0;
  }
}

/* Mentor experience in the hero. */
.hero-mentor-credentials {
  max-width: 720px;
  margin: 12px auto 0;
  color: #c4b5a8;
  font-size: 16px;
  line-height: 1.75;
}
.hero-experience {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 25px auto 0;
  max-width: 740px;
}
.hero-experience li {
  flex: 1;
  padding: 15px 18px;
  border: 1px solid #65422c;
  border-radius: 10px;
  background: #24170f99;
}
.hero-experience strong {
  display: block;
  color: #ffb886;
  font: 600 24px/1.3 var(--display);
}
.hero-experience span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #dfcec0;
  margin-top: 5px;
}
@media (max-width: 520px) {
  .hero-mentor-credentials {
    font-size: 15px;
  }
  .hero-experience {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-experience li {
    flex: 1 1 125px;
    padding: 13px 10px;
  }
  .hero-experience strong {
    font-size: 22px;
  }
}

.hero-credentials {
  margin: 38px auto 0;
  padding: 28px 0 12px;
  max-width: 850px;
}
.hero-credentials h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.6px;
}
@media (max-width: 520px) {
  .hero-credentials {
    margin-top: 24px;
    padding-top: 18px;
  }
}

/* A relaxed desktop hero with clear space between each content group. */
@media (min-width: 1000px) {
  .nav-row {
    height: 80px;
  }
  .hero-inner {
    padding-top: clamp(30px, 4vh, 48px);
  }
  .hero-badge {
    padding: 7px 15px;
    font-size: 14px;
  }
  .hero h1 {
    font-size: clamp(52px, 4.6vw, 68px);
    line-height: 1.14;
    letter-spacing: -3px;
    margin-top: 24px;
  }
  .hero-description {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.8;
  }
  .hero .actions {
    margin-top: 24px;
  }
  .hero .button {
    padding: 13px 25px;
  }
  .hero-proof {
    margin-top: 20px;
  }
  .hero-showcase {
    margin-top: 38px;
    padding: 16px;
    gap: 18px;
  }
  .mentor-preview {
    min-height: 320px;
  }
  .showcase-side {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .hero-social-card {
    padding: 20px;
    gap: 10px;
  }
  .hero-social-card p {
    margin-top: 6px;
    line-height: 1.6;
  }
  .practice-tile {
    padding: 20px 24px;
  }
  .hero-credentials {
    margin-top: 48px;
  }
}

/* A continuous, single-row company showcase using the shared smooth carousel. */
.company-carousel {
  padding-block: 10px;
}
.company-carousel .company-list {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
}
.company-carousel .company-logo {
  flex: 0 0 160px;
  width: 160px;
  height: 72px;
}
.company-carousel .company-logo img {
  width: 145px;
  height: 48px;
  max-width: 100%;
  opacity: 0.8;
}
.company-wordmark span {
  color: #d5d2ce;
  font: 600 24px/1.2 var(--display);
  text-align: center;
  letter-spacing: -0.8px;
}
@media (max-width: 520px) {
  .company-carousel .company-list {
    gap: 25px;
    padding-right: 25px;
  }
  .company-carousel .company-logo {
    flex-basis: 130px;
    width: 130px;
    height: 60px;
  }
  .company-carousel .company-logo img {
    width: 120px;
    height: 40px;
  }
  .company-wordmark span {
    font-size: 21px;
  }
}
