:root {
  --ink: #191923;
  --muted: #59545f;
  --coral: #ff706b;
  --coral-2: #ff8b76;
  --peach: #fff4ee;
  --cream: #fff9f4;
  --line: #f0e2dc;
  --green: #42c979;
  --blue: #5ba8ff;
  --yellow: #ffc84a;
  --purple: #aa75ef;
  --header-control-height: 42px;
  --shadow: 0 22px 55px rgba(41, 30, 28, 0.1);
  --soft-shadow: 0 12px 28px rgba(41, 30, 28, 0.08);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #fff;
}

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

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

button {
  font: inherit;
}

.topbar {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 80px));
  margin: 18px auto 0;
  transform: translateX(-10px);
}

.brand {
  display: block;
  width: 66px;
  height: 60px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  padding-left: 20px;
  font-size: 14px;
  font-weight: 760;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--coral);
  outline: none;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
}

.language-button {
  display: inline-flex;
  min-width: 58px;
  height: var(--header-control-height);
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.language-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.language-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 178px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  min-height: 38px;
  border: 0;
  border-radius: 11px;
  padding: 0 12px;
  background: transparent;
  color: #322d35;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background: #fff3ec;
  color: var(--coral);
}

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

.header-actions .btn {
  height: var(--header-control-height);
  min-height: var(--header-control-height);
  padding: 0;
  border-radius: 13px;
  font-size: 14px;
}

.header-actions .btn-start {
  width: 126px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 24px;
  border: 0;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
button:hover,
button:focus-visible,
summary:focus-visible {
  outline: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-start,
.hero-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff6c68, #ff836f);
  box-shadow: 0 14px 30px rgba(255, 112, 107, 0.24);
}

.section-shell {
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto;
}

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

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

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  color: #ff5f67;
  background: #fff3ec;
  font-weight: 800;
}

.eyebrow {
  padding: 9px 16px;
  font-size: 14px;
}

.mini-label {
  padding: 6px 11px;
  font-size: 12px;
}

.hero {
  position: relative;
  display: grid;
  width: min(1160px, calc(100% - 80px));
  grid-template-columns: 42% 58%;
  align-items: center;
  margin: 28px auto 0;
  min-height: 690px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 12px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  padding: 11px 20px 11px 13px;
  border-radius: 999px;
  background: #fff3ec;
  color: #ff5f67;
  box-shadow: inset 0 0 0 1px rgba(255, 112, 107, 0.07);
}

.tag-pill span {
  color: #ffc246;
  font-size: 23px;
  line-height: 1;
}

.tag-pill p {
  margin: 0;
  font-size: 17px;
  font-weight: 750;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span {
  color: var(--coral);
}

.hero-text {
  max-width: 320px;
  margin: 26px 0 0;
  color: #4c4852;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 29px;
}

.hero-primary {
  min-width: 220px;
  justify-content: space-between;
  border-radius: 16px;
}

.hero-primary span {
  font-size: 25px;
  line-height: 1;
}

.hero-secondary {
  min-width: 206px;
  gap: 12px;
  border: 1px solid #efe0db;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.play-dot {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7d8d1;
  border-radius: 50%;
  color: #a19aa0;
  font-size: 10px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 33px;
  height: 33px;
  margin-left: -7px;
  border: 3px solid #fff;
  border-radius: 50%;
  background-color: #fff4ef;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: 170%;
}

.avatars span:first-child {
  margin-left: 0;
}

.proof-star {
  color: #ffc646;
  font-size: 23px;
}

.social-proof p {
  margin: 0;
  color: #6b5550;
  font-size: 15px;
  font-weight: 650;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 690px;
}

.hero-art img {
  position: absolute;
  right: -40px;
  top: -10px;
  width: min(710px, 61vw);
  max-width: none;
  pointer-events: none;
}

.scene-browser {
  margin-top: 58px;
  padding: 72px 0 76px;
  background: linear-gradient(180deg, #fff9f5 0%, #fff9f5 82%, #fff 100%);
}

.scene-heading {
  max-width: 680px;
}

.scene-heading h2 {
  max-width: none;
}

.scene-picker {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid rgba(240, 226, 220, 0.78);
  border-radius: 28px;
  padding: 18px 16px;
  background: linear-gradient(90deg, #fff4ed 0%, #fffaf6 54%, #fff4ed 100%);
  box-shadow: 0 18px 48px rgba(91, 50, 33, 0.07);
}

.scene-card-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(92px, 1fr));
  gap: 12px;
}

.scene-arrow {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffd8d1;
  border-radius: 50%;
  color: var(--coral);
  background: #fff;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.scene-arrow span {
  transform: translateY(-1px);
  font-size: 28px;
  line-height: 1;
}

.scene-card {
  display: grid;
  min-height: 128px;
  place-items: center;
  gap: 10px;
  border: 1px solid #f0e2dc;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(91, 50, 33, 0.045);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.scene-card:hover,
.scene-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(91, 50, 33, 0.09);
}

.scene-card.is-active {
  border-color: var(--coral);
  box-shadow: 0 18px 34px rgba(255, 112, 107, 0.16);
}

.scene-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.scene-card span {
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
}

.scene-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.scene-copy {
  align-self: center;
  padding: 10px 0;
}

.scene-copy h3,
.quiz-scene h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 900;
}

.scene-copy p:not(.mini-label) {
  max-width: 570px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

.word-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.word-chips span {
  border: 1px solid #f1dfd7;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: #514a54;
  font-size: 14px;
  font-weight: 800;
}

.dialogue-card,
.quiz-card {
  border: 1px solid #efe0db;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dialogue-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.dialogue-avatars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dialogue-avatars img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #fff5ee;
  object-fit: contain;
  padding: 10px;
}

.dialogue-lines {
  display: grid;
  gap: 10px;
}

.dialogue-lines p {
  margin: 0;
  border-radius: 16px;
  padding: 13px 14px;
  color: #3e3942;
  background: #fff7f1;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.how-section,
.feature-section,
.cast-section,
.proof-section,
.faq-section {
  padding: 76px 0;
}

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

.step-card,
.feedback-card,
.cast-card,
.quote-card {
  border: 1px solid #f0e2dc;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(91, 50, 33, 0.06);
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  text-align: center;
}

.step-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.step-card span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.step-card h3,
.feedback-card h3,
.cast-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.step-card p,
.feedback-card p,
.cast-card p,
.quote-card p,
.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.lesson-demo {
  padding: 86px 0;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 520px);
  gap: 56px;
  align-items: center;
}

.demo-heading {
  max-width: 520px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #3f3942;
  font-size: 16px;
  font-weight: 760;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.feature-list li::after {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  content: "";
}

.quiz-card {
  padding: 26px;
}

.quiz-topline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quiz-topline div {
  display: grid;
  gap: 3px;
  text-align: center;
}

.quiz-topline strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.quiz-topline span {
  color: #756b72;
  font-size: 12px;
  font-weight: 700;
}

.quiz-progress {
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffe5dc;
}

.quiz-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6c68, #ff9c7c);
  transition: width 220ms ease;
}

.quiz-scene {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  border-radius: 20px;
  padding: 16px;
  background: #fff8f2;
}

.quiz-scene img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.quiz-scene h3 {
  font-size: 21px;
}

#quiz-dialogue {
  margin: 10px 0 0;
  color: #4d4650;
  font-size: 16px;
  font-weight: 780;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.answer-grid button {
  min-height: 52px;
  border: 1px solid #edddd6;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease;
}

.answer-grid button:hover,
.answer-grid button:focus-visible {
  transform: translateY(-1px);
  border-color: #ffc0b7;
}

.answer-grid button.is-correct {
  border-color: #30b969;
  background: #eafff0;
  color: #138046;
}

.answer-grid button.is-wrong {
  border-color: #ff8d84;
  background: #fff0ef;
  color: #d64a45;
}

.quiz-feedback {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  border-radius: 20px;
  padding: 14px;
  background: #f7fbff;
}

.quiz-feedback img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.quiz-feedback strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.quiz-feedback p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.hint-button {
  min-height: 42px;
  border: 1px solid #dfd2ff;
  border-radius: 13px;
  padding: 0 16px;
  color: #7144b5;
  background: #f6f0ff;
  font-weight: 850;
  cursor: pointer;
}

.feature-section {
  background: #fff;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feedback-card {
  min-height: 246px;
  padding: 22px 18px;
  text-align: center;
}

.feedback-card img {
  width: 104px;
  height: 104px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.feedback-card.mint {
  background: #eefbf3;
}

.feedback-card.butter {
  background: #fff7dc;
}

.feedback-card.peach {
  background: #fff0ec;
}

.feedback-card.lavender {
  background: #f6eeff;
}

.feedback-card.cream {
  background: #fff7ef;
}

.cast-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.cast-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.35fr);
  gap: 46px;
  align-items: center;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cast-card {
  min-height: 214px;
  padding: 18px;
  text-align: center;
}

.cast-card img {
  width: 116px;
  height: 116px;
  margin: 0 auto;
  object-fit: contain;
}

.cast-card p {
  margin-top: 4px;
  font-weight: 700;
}

.proof-section {
  background: #fff;
}

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

.quote-card {
  padding: 26px;
}

.quote-card p {
  margin-top: 0;
  color: #3f3942;
  font-size: 16px;
  font-weight: 650;
}

.quote-card strong {
  display: block;
  margin-top: 18px;
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
}

.faq-section {
  background: #fff9f5;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #f0e2dc;
  border-radius: 18px;
  padding: 0 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(91, 50, 33, 0.05);
}

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  color: var(--coral);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
}

.final-cta {
  padding: 64px 0 84px;
  background: #fff;
}

.cta-band {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-radius: 30px;
  padding: 32px 38px;
  background: linear-gradient(135deg, #fff2ed 0%, #fff9de 48%, #eefbf3 100%);
  box-shadow: var(--shadow);
}

.cta-band img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.cta-band h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid #f1e3dd;
  background: #fffaf7;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 36px;
  align-items: start;
  padding: 34px 0 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.footer-logo img {
  width: 42px;
  height: 38px;
  object-fit: contain;
}

.footer-logo strong {
  font-size: 18px;
  font-weight: 900;
}

.footer-brand p,
.footer-bottom p,
.footer-bottom a {
  margin: 10px 0 0;
  color: #6a6068;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.footer-links {
  display: flex;
  max-width: 620px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  color: #39333c;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--coral);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #f1e3dd;
  padding: 18px 0 26px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--coral);
  outline: none;
}

.legal-main {
  padding: 58px 0 72px;
  background:
    linear-gradient(180deg, #fff 0%, #fff9f5 42%, #fff 100%);
}

.legal-shell {
  max-width: 880px;
}

.legal-article[hidden] {
  display: none;
}

.legal-article h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
}

.legal-date {
  margin: 18px 0 0;
  color: #766c74;
  font-size: 15px;
  font-weight: 750;
}

.legal-article section {
  margin-top: 34px;
  border: 1px solid #f0e2dc;
  border-radius: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(91, 50, 33, 0.05);
}

.legal-article h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.legal-article p,
.legal-article li {
  color: #504a54;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 550;
}

.legal-article p {
  margin: 14px 0 0;
}

.legal-article ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-article a {
  color: #e85f5d;
  font-weight: 820;
}

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

@media (max-width: 900px) {
  .step-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback-card:last-child {
    grid-column: 1 / -1;
  }
  
  .main-nav {
    gap: 18px;
    padding-left: 8px;
  }

  .hero,
  .demo-layout,
  .cast-layout,
  .faq-layout,
  .scene-heading,
  .scene-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-art {
    min-height: 610px;
    margin-top: -20px;
  }

  .hero-art img {
    left: 50%;
    right: auto;
    width: min(720px, 100%);
    transform: translateX(-50%);
  }

  .demo-layout {
    gap: 34px;
  }

  .scene-preview {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero,
  .section-shell {
    width: calc(100% - 40px);
  }

  .topbar {
    --header-control-height: 46px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    margin-top: 16px;
    transform: none;
  }

  .brand {
    width: 54px;
    height: 54px;
  }

  .main-nav {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .header-actions {
    justify-content: end;
    transform: none;
  }

  .btn-start {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 13px;
  }

  .hero {
    margin-top: 34px;
  }

  .tag-pill {
    margin-bottom: 18px;
  }

  .tag-pill p {
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 66px);
  }

  .hero-text {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-primary,
  .hero-secondary {
    width: min(100%, 330px);
  }

  .social-proof {
    flex-wrap: wrap;
  }

  .hero-art {
    min-height: 410px;
    margin-top: 10px;
    overflow: hidden;
  }

  .hero-art img {
    top: 0;
    width: 520px;
  }

  .scene-browser,
  .how-section,
  .feature-section,
  .cast-section,
  .proof-section,
  .faq-section,
  .lesson-demo {
    padding: 58px 0;
  }

  .section-heading h2,
  .scene-copy h3 {
    font-size: 34px;
  }

  .scene-picker {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .scene-card-row {
    display: flex;
    overflow-x: auto;
    padding: 4px;
    scrollbar-width: none;
  }

  .scene-card-row::-webkit-scrollbar {
    display: none;
  }

  .scene-card {
    flex: 0 0 128px;
  }

  .scene-arrow {
    width: 38px;
    height: 38px;
  }

  .dialogue-card,
  .quiz-card {
    border-radius: 22px;
  }

  .dialogue-avatars {
    grid-template-columns: 1fr 1fr;
  }

  .step-grid,
  .feedback-grid,
  .cast-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .feedback-card:last-child {
    grid-column: auto;
  }

  .quiz-card {
    padding: 18px;
  }

  .quiz-scene {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 14px;
  }

  .quiz-scene img {
    width: 86px;
    height: 86px;
  }

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

  .quiz-feedback {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .quiz-feedback img {
    width: 58px;
    height: 58px;
  }

  .hint-button {
    grid-column: 1 / -1;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    text-align: center;
  }

  .cta-band img {
    margin: 0 auto;
  }

  .cta-band .eyebrow,
  .cta-band .btn {
    margin: 0 auto;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .legal-main {
    padding: 44px 0 56px;
  }

  .legal-article section {
    padding: 22px;
  }

  .legal-article h1 {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
