@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/dm-sans.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url(/assets/manrope.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: dark;
  --bg: #111114;
  --surface: #1a1a20;
  --surface-raised: #24242c;
  --ink: #f5f5f6;
  --muted: #a5a5b1;
  --line: #303038;
  --green: #b6f36b;
  --purple: #b6a0f9;
  --font: "DM Sans", sans-serif;
  --heading: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  max-width: 100%;
  display: block;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 5px;
}
.container {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}
.header {
  height: 96px;
  border-bottom: 1px solid #ffffff0b;
  background: var(--bg);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.7px;
  line-height: 1;
}
.brand-symbol {
  font: 800 21px var(--heading);
  color: var(--bg);
  background: var(--green);
  border-radius: 11px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  letter-spacing: -4px;
  padding-right: 4px;
  margin-right: 11px;
}
.brand-dot {
  color: var(--green);
}
nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
nav > a {
  font-size: 14px;
  font-weight: 600;
  color: #d0cfd6;
}
nav > a:hover,
.text-link:hover {
  color: var(--green);
}
.button {
  display: inline-flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 9px;
  color: #16220a;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 25px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #c9ff89;
  color: #16220a;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 14px;
  gap: 22px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  min-height: 704px;
  padding-top: 64px;
  padding-bottom: 78px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #c8c8d0;
}
.tiny-code {
  color: var(--green);
  font-size: 18px;
  letter-spacing: -1px;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(48px, 5.25vw, 76px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -3.7px;
  margin: 21px 0 24px;
}
.accent {
  color: var(--green);
}
.hero-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  max-width: 465px;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 31px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.hero-note {
  font-size: 12px;
  color: #8e8e9b;
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-note > span:first-child {
  color: var(--green);
}
.note-divider {
  margin: 0 7px;
  color: #4d4d58;
}
.hero-visual {
  position: relative;
  height: 505px;
  isolation: isolate;
}
.visual-grid {
  position: absolute;
  inset: 0 -20px;
  background-image:
    linear-gradient(#ffffff06 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse, #000 25%, transparent 73%);
  z-index: -1;
}
.code-window {
  background: #202027;
  border: 1px solid #42424e;
  border-radius: 14px;
  overflow: hidden;
  position: absolute;
  top: 26px;
  left: 14px;
  width: calc(100% - 28px);
  box-shadow: 0 26px 70px #0005;
  transform: rotate(-3deg);
}
.window-bar {
  height: 46px;
  border-bottom: 1px solid #ffffff0d;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 16px;
  color: #b8b8c4;
  font:
    12px ui-monospace,
    monospace;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #555562;
}
.window-dots i:first-child {
  background: #b47878;
}
.window-dots i:nth-child(2) {
  background: #b0a273;
}
.window-dots i:nth-child(3) {
  background: #82a382;
}
.file-type {
  margin-left: auto;
  font-size: 10px;
  color: #92929f;
}
.code-content {
  font:
    12px/2.15 ui-monospace,
    SFMono-Regular,
    monospace;
  padding: 20px 14px 22px;
  color: #e3e0ee;
  white-space: nowrap;
}
.line {
  display: inline-block;
  width: 26px;
  color: #6b6b7b;
  user-select: none;
}
.syntax-muted {
  color: #83838e;
}
.syntax-purple {
  color: var(--purple);
}
.code-cursor {
  display: inline-block;
  height: 15px;
  width: 2px;
  background: var(--green);
  vertical-align: middle;
}
.mini-result {
  margin: 0 19px 20px;
  padding: 14px 20px;
  background: #eef3e9;
  border-radius: 8px;
  color: #202b1d;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mini-result-label {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #63735a;
}
.mini-result strong {
  font-size: 25px;
  font-family: var(--heading);
  letter-spacing: -1px;
}
.mini-result strong span {
  color: #66933a;
}
.mini-result > span:last-child {
  font-size: 12px;
}
.hero-mascot {
  position: absolute;
  width: 282px;
  height: 282px;
  object-fit: contain;
  bottom: -4px;
  right: -16px;
  filter: drop-shadow(0 16px 24px #0004);
  transform: rotate(7deg);
}
.hello-bubble {
  position: absolute;
  right: -12px;
  top: 3px;
  z-index: 2;
  border-radius: 10px 10px 10px 0;
  background: var(--purple);
  color: #221736;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  transform: rotate(5deg);
  box-shadow: 0 5px 20px #0004;
}
.hello-bubble span {
  margin-left: 10px;
}
.success-pill {
  position: absolute;
  left: 4px;
  bottom: 31px;
  background: #292932;
  border: 1px solid #464651;
  border-radius: 12px;
  padding: 13px 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: rotate(-4deg);
  box-shadow: 0 12px 25px #0004;
  z-index: 3;
}
.checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #b6f36b22;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.success-pill strong,
.success-pill div > span {
  display: block;
  font-size: 12px;
}
.success-pill div > span {
  color: #b0b0bc;
  font-size: 11px;
}
.floating-tag {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid #565166;
  border-radius: 10px;
  background: #322c44;
  color: #d3c2ff;
  font:
    700 14px ui-monospace,
    monospace;
  height: 44px;
  padding: 0 14px;
  box-shadow: 0 7px 20px #0003;
}
.tag-css {
  top: 257px;
  left: -10px;
  transform: rotate(-9deg);
}
.tag-js {
  bottom: 12px;
  right: 2px;
  transform: rotate(10deg);
  background: #eada81;
  color: #292517;
  border: 0;
}
.learning-strip {
  border-block: 1px solid var(--line);
  padding: 26px 0;
}
.learning-strip > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.learning-strip span {
  color: #b6b6c0;
  font-size: 16px;
  white-space: nowrap;
}
.learning-strip span:first-child {
  font-size: 10px;
  letter-spacing: 1.3px;
  color: #737381;
}
.learning-strip b {
  font-family: ui-monospace, monospace;
  color: #6e6e7e;
  font-size: 14px;
  margin-left: 9px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  padding: 12px;
  background: var(--green);
  color: var(--bg);
  z-index: 10;
}
.skip-link:focus {
  top: 15px;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 760px;
  }
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  nav {
    gap: 22px;
  }
  .hero {
    gap: 24px;
    min-height: 640px;
  }
  .hero h1 {
    font-size: 58px;
    letter-spacing: -2.8px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-visual {
    height: 450px;
  }
  .code-content {
    font-size: 10px;
  }
  .hero-mascot {
    width: 235px;
    height: 235px;
    right: -16px;
    bottom: 0;
  }
  .success-pill {
    left: -4px;
    bottom: 20px;
    padding: 10px;
  }
  .learning-strip span {
    font-size: 13px;
  }
  .learning-strip span:first-child {
    display: none;
  }
  .learning-strip b {
    margin-left: 4px;
  }
}
@media (max-width: 720px) {
  .container {
    width: calc(100% - 40px);
  }
  .header {
    height: 78px;
  }
  .brand {
    font-size: 29px;
  }
  .brand-symbol {
    width: 33px;
    height: 33px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }
  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    z-index: 10;
    align-items: stretch;
  }
  nav.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  nav > a {
    padding: 10px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 41px;
    padding-bottom: 35px;
    gap: 27px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.9vw, 68px);
    letter-spacing: -2.5px;
    margin-top: 18px;
  }
  .hero-copy > p {
    font-size: 16px;
    max-width: 480px;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-note {
    font-size: 11px;
  }
  .hero-visual {
    height: 445px;
    width: 100%;
    max-width: 500px;
    align-self: center;
  }
  .code-window {
    top: 28px;
    left: 8px;
    width: calc(100% - 16px);
  }
  .code-content {
    font-size: clamp(10px, 2.6vw, 12px);
    padding-inline: 10px;
  }
  .hero-mascot {
    width: 240px;
    height: 240px;
    right: -5px;
  }
  .hello-bubble {
    right: 0;
  }
  .tag-css {
    left: -5px;
    top: 244px;
  }
  .tag-js {
    right: 5px;
  }
  .success-pill {
    left: 0;
    bottom: 15px;
  }
  .learning-strip {
    padding: 20px 0;
  }
  .learning-strip > .container {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 13px;
  }
  .learning-strip span {
    font-size: 13px;
  }
  .learning-strip b {
    font-size: 12px;
  }
  .visual-grid {
    inset: 0 -10px;
  }
  .hero-visual .mini-result strong {
    font-size: 23px;
  }
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
h2 {
  font-family: var(--heading);
  font-size: 43px;
  letter-spacing: -1.9px;
  line-height: 1.2;
  margin: 16px 0 0;
  font-weight: 800;
}
h3 {
  font-family: var(--heading);
  font-weight: 750;
  line-height: 1.35;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 40px;
}
.section-heading > p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 2px;
  line-height: 1.8;
}
.eyebrow.accent {
  color: var(--green);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.course-card {
  padding: 27px 26px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  --course-color: var(--green);
}
.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 28px;
}
.course-icon {
  height: 49px;
  width: 49px;
  background: #b6f36b17;
  border: 1px solid #b6f36b22;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font:
    600 23px ui-monospace,
    monospace;
  letter-spacing: -3px;
  color: var(--course-color);
}
.course-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--course-color);
  font-weight: 600;
}
.course-card h3 {
  font-size: 22px;
  letter-spacing: -0.7px;
  margin: 0 0 13px;
}
.course-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 23px;
  flex: 1;
}
.course-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 27px;
}
.course-tags span {
  font-size: 11px;
  background: #ffffff06;
  border: 1px solid #ffffff0a;
  border-radius: 5px;
  padding: 4px 9px;
  color: #c1c1ca;
}
.course-bottom {
  margin: 0 -26px;
  border-top: 1px solid var(--line);
  padding: 17px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #c8c8d3;
}
.course-bottom > span:last-child {
  color: var(--course-color);
}
.course-vibe {
  --course-color: #bda8f8;
}
.course-vibe .course-icon {
  background: #bda8f814;
  border-color: #bda8f822;
  letter-spacing: 0;
}
.course-ml {
  --course-color: #8cceef;
}
.course-ml .course-icon {
  background: #8cceef14;
  border-color: #8cceef22;
  letter-spacing: 0;
}
.how-section {
  background: #19191e;
  border-block: 1px solid #ffffff06;
  padding: 85px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.how-art {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #daf4e8;
  aspect-ratio: 1;
}
.how-art img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.art-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #103d2fe8;
  color: #e4fbee;
  padding: 9px 16px;
  border: 1px solid #e3fff02b;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
}
.how-copy h2 {
  font-size: 37px;
}
.how-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 22px 0 26px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.steps li > span {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  border: 1px solid #4a5542;
  border-radius: 50%;
  font:
    12px ui-monospace,
    monospace;
  color: var(--green);
  margin-top: 1px;
}
.steps h3 {
  font-size: 16px;
  margin: 0 0 4px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}
.demo-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: center;
}
.demo-intro > p {
  color: var(--muted);
  line-height: 1.85;
  margin: 24px 0 0;
  font-size: 16px;
}
.demo-intro > p + p {
  margin-top: 12px;
}
.demo-intro code {
  color: var(--purple);
  font-size: 14px;
}
.demo-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.demo-note > span:first-child {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--green);
  font-family: monospace;
}
.demo-note > span:last-child {
  font-size: 13px;
  font-weight: 600;
}
.demo-note span > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
.lesson {
  background: var(--surface);
  border: 1px solid #3a3a45;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px #0002;
}
.lesson-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 27px 16px;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #aeafbb;
}
.lesson-top > span:last-child {
  letter-spacing: 0;
  font-family: monospace;
}
.lesson-progress {
  height: 3px;
  background: #ffffff0a;
}
#lesson-progress-fill {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--green);
  transition: width 0.25s;
}
.lesson-body {
  padding: 27px;
}
.lesson h3 {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.lesson-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
}
.exercise-code {
  margin: 25px 0 22px;
  background: #111114;
  border: 1px solid #ffffff08;
  border-radius: 8px;
  padding: 23px 14px;
  font:
    14px/1.8 ui-monospace,
    monospace;
  white-space: nowrap;
  text-align: center;
}
.blank {
  display: inline-block;
  min-width: 24px;
  border-bottom: 1px dashed var(--purple);
  text-align: center;
  background: #b6a0f912;
}
.answer-options {
  display: flex;
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 0;
}
.answer-options label {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.answer-options input {
  position: absolute;
  opacity: 0;
}
.answer-options label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid #434350;
  border-radius: 7px;
  color: #d7d5e2;
  font:
    13px ui-monospace,
    monospace;
  transition: background 0.2s;
}
.answer-options input:checked + span {
  border-color: var(--purple);
  background: #b6a0f922;
  color: #d9caff;
}
.answer-options input:focus-visible + span {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.answer-options input:disabled + span {
  cursor: default;
}
.lesson-body .lesson-feedback {
  font-size: 13px;
  min-height: 65px;
  margin: 22px 0 10px;
  padding: 0;
  line-height: 1.7;
}
.lesson-feedback.success {
  color: var(--green);
}
.lesson-feedback.error {
  color: #ffbea4;
}
.lesson-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.reset-button {
  background: none;
  border: 0;
  color: #aaaab8;
  font-size: 12px;
  min-height: 44px;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.reset-button:hover {
  color: var(--ink);
}
.button:disabled {
  background: #303b24;
  border-color: #303b24;
  color: #a4ac98;
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.editor-label {
  display: block;
  font-size: 12px;
  color: #b4b4c0;
  margin: 18px 0 7px;
}
textarea {
  width: 100%;
  resize: vertical;
  min-height: 100px;
  max-height: 250px;
  display: block;
  background: #111114;
  border: 1px solid #474751;
  border-radius: 8px;
  color: #d4c4ff;
  padding: 14px;
  font:
    14px/1.8 ui-monospace,
    monospace;
}
textarea::placeholder {
  color: #8c8c9a;
}
.preview-output {
  background: #eff6e9;
  color: #183515;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 18px;
  overflow-wrap: anywhere;
}
.preview-output > span {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #54674c;
}
.preview-output h1 {
  margin: 4px 0;
  font-family: var(--heading);
  font-size: 26px;
  line-height: 1.4;
}
.no-script {
  padding: 20px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-top: 35px;
  padding-bottom: 105px;
}
.faq-intro > p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 20px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  min-height: 74px;
  padding: 21px 0;
  font-size: 16px;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 23px;
  font-weight: 400;
  color: #a5a5b2;
  transition: transform 0.2s;
}
details[open] summary > span {
  transform: rotate(45deg);
  color: var(--green);
}
details > p {
  margin: 0;
  padding: 0 30px 23px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.closing-section {
  background: var(--green);
  border-radius: 22px;
  color: #15240d;
  padding: 51px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.closing-section .eyebrow {
  color: #3e5e24;
}
.closing-section h2 {
  font-size: 43px;
  line-height: 1.24;
  margin: 12px 0 26px;
}
.closing-section h2 > span {
  color: #436d26;
}
.closing-section > div {
  position: relative;
  z-index: 1;
}
.closing-section > img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin: -8px 20px -26px 0;
  transform: rotate(-9deg);
}
.button-dark {
  background: #16230f;
  border-color: #16230f;
  color: #eff6e9;
  font-size: 14px;
  min-height: 49px;
}
.button-dark:hover {
  background: #2b4120;
  color: #eff6e9;
}
.footer {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.footer .brand {
  font-size: 28px;
}
.footer .brand-symbol {
  width: 32px;
  height: 32px;
  font-size: 18px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0;
}
.footer-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  font-size: 13px;
  color: #b9b9c3;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px 0 24px;
  margin-top: 30px;
  font-size: 11px;
  color: #8e8e9e;
}
[hidden] {
  display: none !important;
}
@media (max-width: 1000px) {
  .section {
    padding-block: 75px;
  }
  .how-grid {
    gap: 45px;
  }
  .how-copy h2 {
    font-size: 32px;
  }
  .course-card {
    padding: 22px 20px 0;
  }
  .course-card h3 {
    font-size: 19px;
  }
  .course-card p {
    font-size: 14px;
  }
  .course-bottom {
    margin-inline: -20px;
    padding-inline: 20px;
    font-size: 11px;
  }
  .course-label {
    font-size: 9px;
  }
  .demo-section {
    gap: 45px;
  }
  .lesson-body {
    padding: 22px;
  }
  .lesson h3 {
    font-size: 18px;
  }
  .exercise-code {
    font-size: 12px;
    padding-inline: 10px;
  }
  .faq-section {
    gap: 45px;
  }
  .closing-section {
    padding: 45px;
  }
  .closing-section > img {
    margin-right: 0;
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 720px) {
  .section {
    padding-block: 60px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    margin-top: 18px;
    font-size: 15px;
  }
  .course-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .course-card {
    padding: 24px 25px 0;
  }
  .course-top {
    margin-bottom: 22px;
  }
  .course-label {
    font-size: 11px;
  }
  .course-card h3 {
    font-size: 24px;
  }
  .course-card p {
    font-size: 15px;
  }
  .course-tags span {
    font-size: 12px;
  }
  .course-bottom {
    margin-inline: -25px;
    padding-inline: 25px;
    font-size: 12px;
  }
  .how-section {
    padding: 55px 0;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .how-art {
    max-width: 460px;
    width: 100%;
    justify-self: center;
    order: 2;
  }
  .how-copy h2 {
    font-size: 34px;
  }
  .how-copy > p {
    font-size: 16px;
  }
  .steps h3 {
    font-size: 17px;
  }
  .steps p {
    font-size: 15px;
  }
  .demo-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .demo-intro > p {
    margin-top: 18px;
  }
  .demo-intro h2 br {
    display: none;
  }
  .lesson-body {
    padding: 23px 20px;
  }
  .lesson h3 {
    font-size: 19px;
  }
  .lesson-body p {
    font-size: 14px;
  }
  .exercise-code {
    font-size: clamp(11px, 3.2vw, 15px);
    padding: 22px 8px;
  }
  .answer-options {
    gap: 8px;
  }
  .answer-options label > span {
    padding-inline: 8px;
    font-size: 13px;
  }
  .lesson-top {
    padding-inline: 20px;
  }
  .lesson-actions {
    gap: 8px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .faq-intro > p {
    margin-top: 15px;
  }
  summary {
    font-size: 15px;
  }
  details > p {
    font-size: 14px;
  }
  .closing-section {
    padding: 34px 27px;
    min-height: 365px;
  }
  .closing-section h2 {
    font-size: 33px;
  }
  .closing-section > img {
    width: 170px;
    height: 170px;
    position: absolute;
    right: -19px;
    bottom: 6px;
    opacity: 0.9;
  }
  .closing-section .button {
    position: relative;
    z-index: 2;
  }
  .closing-section h2 {
    position: relative;
    z-index: 2;
  }
  .footer {
    padding-top: 50px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 24px;
  }
  .footer-bottom {
    margin-top: 10px;
    gap: 20px;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
