:root {
  --bg: #f3f1ed;
  --bg-soft: #faf9f6;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: #ffffff;
  --surface-muted: #f4f5f8;
  --text: #1d2844;
  --text-soft: #55627b;
  --accent-deep: #1f2f5c;
  --accent: #e8bf54;
  --accent-soft: #fdf0c8;
  --excel: #2f7155;
  --word: #3f67b4;
  --line: rgba(31, 47, 92, 0.12);
  --line-strong: rgba(31, 47, 92, 0.18);
  --shadow: 0 18px 42px rgba(31, 47, 92, 0.07);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 191, 84, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfbf8 0%, var(--bg) 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.section {
  padding: 66px 0;
}

.section-compact {
  padding: 44px 0;
}

.section-tinted {
  position: relative;
}

.section-tinted::before {
  content: "";
  position: absolute;
  inset: 20px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
  border-block: 1px solid rgba(31, 47, 92, 0.06);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding var(--transition), background-color var(--transition),
    backdrop-filter var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(243, 241, 237, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 47, 92, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(31, 47, 92, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 47, 92, 0.08);
}

.brand-text {
  display: grid;
  gap: 2px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.brand-text strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.footer-nav a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), background-color var(--transition),
    color var(--transition), border-color var(--transition),
    box-shadow var(--transition);
}

.header-cta,
.button-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 14px 26px rgba(31, 47, 92, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: #182548;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 47, 92, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 47, 92, 0.2);
}

.button-large {
  min-height: 56px;
  padding-inline: 26px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(31, 47, 92, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(31, 47, 92, 0.28);
}

.hero h1,
.section-heading h2,
.summary-head h2,
.teacher-copy h2,
.cta-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Literata", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.16rem, 3.8vw, 3.6rem);
}

.hero-lead,
.hero-sublead,
.section-heading p,
.audience-card p,
.teacher-copy p,
.teacher-point span,
.scenario-card p,
.preview-note,
.process-step p,
.faq-answer p,
.contact-copy p,
.contact-point span,
.form-note,
.footer-text,
.price-note,
.summary-list li {
  color: var(--text-soft);
  line-height: 1.68;
}

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

.section-heading h2,
.teacher-copy h2,
.cta-card h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.section-heading p {
  margin: 14px 0 0;
  max-width: 60ch;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.hero {
  padding-top: 8px;
  padding-bottom: 24px;
}

.hero-grid,
.teacher-grid,
.results-layout,
.format-grid,
.contact-grid {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-grid > *,
.teacher-grid > *,
.results-layout > *,
.format-grid > *,
.contact-grid > *,
.footer-inner > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 20px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero .eyebrow {
  margin-bottom: 12px;
}

.hero-lead {
  margin: 16px 0 0;
  max-width: 60ch;
  font-size: 1rem;
}

.hero-sublead {
  margin: 10px 0 0;
  max-width: 40ch;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-terms {
  margin: 12px 0 0;
  max-width: 52ch;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.hero-microcopy {
  margin: 10px 0 0;
  max-width: 42ch;
  color: var(--text-soft);
  line-height: 1.45;
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-side {
  width: 100%;
  max-width: 654px;
  justify-self: end;
}

.hero-visual-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 14px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(232, 191, 84, 0.15), transparent 28%),
    radial-gradient(circle at bottom right, rgba(31, 47, 92, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(249, 250, 253, 1), rgba(242, 244, 248, 0.98));
  border: 1px solid rgba(31, 47, 92, 0.08);
  box-shadow: 0 24px 48px rgba(31, 47, 92, 0.12);
}

.hero-visual-shell::before,
.hero-visual-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-visual-shell::before {
  top: -52px;
  right: -26px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(232, 191, 84, 0.22), transparent 72%);
}

.hero-visual-shell::after {
  bottom: -58px;
  left: -42px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(31, 47, 92, 0.14), transparent 74%);
}

.hero-visual-canvas {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 12px;
  align-items: stretch;
}

.hero-doc-panel,
.hero-sheet-panel,
.hero-chart-panel {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 47, 92, 0.08);
  box-shadow: 0 16px 30px rgba(31, 47, 92, 0.08);
}

.hero-doc-panel::before,
.hero-sheet-panel::before,
.hero-chart-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  opacity: 0.95;
}

.hero-doc-panel::before {
  background: linear-gradient(90deg, rgba(63, 103, 180, 0.95), rgba(232, 191, 84, 0.72));
}

.hero-sheet-panel::before {
  background: linear-gradient(90deg, rgba(47, 113, 85, 0.92), rgba(232, 191, 84, 0.72));
}

.hero-chart-panel::before {
  background: linear-gradient(90deg, rgba(31, 47, 92, 0.9), rgba(232, 191, 84, 0.76));
}

.hero-doc-panel {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 253, 0.98));
}

.hero-visual-side {
  display: grid;
  gap: 12px;
}

.hero-sheet-panel {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 248, 0.98));
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-app-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-app-badge-word {
  background: rgba(31, 47, 92, 0.12);
  color: var(--accent-deep);
}

.hero-app-badge-excel {
  background: rgba(67, 122, 100, 0.14);
  color: #2d6a5a;
}

.hero-panel-dots {
  display: inline-flex;
  gap: 6px;
}

.hero-panel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 47, 92, 0.18);
}

.hero-doc-content,
.hero-sheet-content {
  display: grid;
  gap: 14px;
}

.hero-panel-title {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-doc-heading,
.hero-sheet-heading,
.hero-chart-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-doc-content h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.24;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(47, 113, 85, 0.14);
  border: 1px solid rgba(47, 113, 85, 0.12);
  color: #285b47;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-status-pill-soft {
  background: rgba(253, 240, 200, 0.78);
  border-color: rgba(232, 191, 84, 0.22);
  color: var(--accent-deep);
}

.hero-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-doc-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-doc-table,
.hero-sheet-table {
  display: grid;
  gap: 6px;
}

.hero-doc-row,
.hero-sheet-row {
  display: grid;
  gap: 6px;
}

.hero-doc-row {
  grid-template-columns: 1.18fr 0.58fr 0.76fr;
}

.hero-sheet-row {
  grid-template-columns: 1.18fr 0.82fr;
}

.hero-doc-row span,
.hero-sheet-row span {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 12px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-doc-row.head span,
.hero-sheet-row.head span {
  background: rgba(31, 47, 92, 0.06);
  color: var(--text);
  font-weight: 700;
}

.hero-sheet-row.total span {
  background: rgba(253, 240, 200, 0.82);
  color: var(--text);
  font-weight: 800;
}

.hero-doc-row:not(.head) span:nth-child(2) {
  color: var(--text);
  font-weight: 700;
}

.hero-doc-row:not(.head) span:last-child {
  justify-content: center;
  font-weight: 700;
}

.hero-doc-row:nth-child(2) span:last-child {
  background: rgba(67, 122, 100, 0.14);
  color: #2a5f4a;
}

.hero-doc-row:nth-child(3) span:last-child {
  background: rgba(253, 240, 200, 0.88);
  color: #745913;
}

.hero-doc-footer,
.hero-chart-footer {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(248, 249, 252, 0.98), rgba(244, 247, 252, 0.98));
  border: 1px solid rgba(31, 47, 92, 0.08);
}

.hero-doc-footer strong,
.hero-chart-footer strong {
  color: var(--text);
  font-size: 0.88rem;
}

.hero-doc-footer span,
.hero-chart-footer span {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hero-chart-panel {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 251, 0.98));
}

.hero-chart-svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-chart-grid {
  stroke: rgba(31, 47, 92, 0.14);
  stroke-width: 1;
}

.hero-chart-axis {
  stroke: rgba(31, 47, 92, 0.24);
  stroke-width: 1.4;
}

.hero-chart-bar-a {
  fill: rgba(31, 47, 92, 0.9);
}

.hero-chart-bar-b {
  fill: rgba(232, 191, 84, 0.96);
}

.hero-chart-bar-c {
  fill: rgba(67, 122, 100, 0.86);
}

.hero-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-dot-a {
  background: rgba(31, 47, 92, 0.9);
}

.hero-dot-b {
  background: rgba(232, 191, 84, 0.96);
}

.hero-dot-c {
  background: rgba(67, 122, 100, 0.86);
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  line-height: 0.96;
}

.hero-copy {
  max-width: 552px;
}

.hero-headline-sub {
  margin: 10px 0 0;
  max-width: 24ch;
  color: var(--accent-deep);
  font-size: clamp(1.04rem, 1.55vw, 1.32rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.hero-sublead {
  margin-top: 18px;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.64;
}

.hero-copy > .hero-sublead:not(.hero-sublead-active) {
  display: none;
}

.hero-microcopy {
  display: none;
}

.hero-facts-strip {
  padding: 2px 0 18px;
}

.hero-facts-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: 980px;
  margin: 0 auto;
  gap: 8px 16px;
  padding: 10px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(31, 47, 92, 0.05);
  box-shadow: 0 6px 16px rgba(31, 47, 92, 0.03);
}

.hero-facts-strip-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.89rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-facts-strip-item + .hero-facts-strip-item {
  padding-left: 16px;
}

.hero-facts-strip-item + .hero-facts-strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(31, 47, 92, 0.2);
  transform: translateY(-50%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: 18px;
}

.hero-side {
  max-width: 620px;
}

.hero-visual-shell {
  padding: 13px;
  border-radius: 28px;
  border-color: rgba(31, 47, 92, 0.06);
  background:
    radial-gradient(circle at top left, rgba(232, 191, 84, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(31, 47, 92, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(252, 252, 253, 1), rgba(244, 246, 250, 0.98));
  box-shadow: 0 26px 52px rgba(31, 47, 92, 0.11);
}

.hero-visual-canvas {
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.9fr);
  gap: 10px;
}

.hero-doc-panel,
.hero-sheet-panel,
.hero-chart-panel {
  border-color: rgba(31, 47, 92, 0.06);
  box-shadow: 0 14px 28px rgba(31, 47, 92, 0.07);
}

.hero-doc-panel,
.hero-sheet-panel {
  padding: 16px;
}

.hero-doc-panel {
  background:
    radial-gradient(circle at top right, rgba(63, 103, 180, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 248, 253, 0.99));
  box-shadow: 0 24px 46px rgba(31, 47, 92, 0.12);
}

.hero-chart-panel {
  padding: 14px;
}

.hero-doc-head,
.hero-sheet-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-doc-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.18;
}

.hero-app-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 10px 20px rgba(31, 47, 92, 0.08);
}

.hero-app-mark-word {
  background: linear-gradient(180deg, rgba(63, 103, 180, 0.18), rgba(63, 103, 180, 0.08));
  color: #2e57a4;
}

.hero-app-mark-excel {
  background: linear-gradient(180deg, rgba(47, 113, 85, 0.18), rgba(47, 113, 85, 0.08));
  color: #2a644d;
}

.hero-doc-content {
  gap: 12px;
}

.hero-lines {
  gap: 9px;
}

.hero-line {
  height: 9px;
  background: linear-gradient(90deg, rgba(31, 47, 92, 0.18), rgba(31, 47, 92, 0.06));
}

.hero-doc-row,
.hero-sheet-grid {
  gap: 5px;
}

.hero-doc-row span,
.hero-sheet-cell {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 11px;
  border: 0;
  background: rgba(245, 247, 251, 0.98);
  color: var(--text-soft);
  font-size: 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-doc-row.head span,
.hero-sheet-cell.head {
  background: rgba(31, 47, 92, 0.07);
  color: var(--text);
  font-weight: 700;
}

.hero-state {
  justify-content: center;
  font-weight: 700;
  white-space: nowrap;
}

.hero-state-done {
  background: rgba(67, 122, 100, 0.16) !important;
  color: #2a5f4a !important;
}

.hero-state-progress {
  background: rgba(253, 240, 200, 0.94) !important;
  color: #745913 !important;
}

.hero-doc-summary {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(251, 252, 254, 0.98), rgba(245, 247, 252, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-doc-summary strong {
  color: var(--text);
  font-size: 0.86rem;
}

.hero-summary-bar {
  display: block;
  width: 82%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 47, 92, 0.92), rgba(232, 191, 84, 0.92));
  box-shadow: 0 8px 16px rgba(31, 47, 92, 0.14);
}

.hero-sheet-panel {
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 248, 0.99));
}

.hero-sheet-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}

.hero-sheet-cell {
  display: flex;
  align-items: center;
}

.hero-sheet-cell.total {
  background: rgba(253, 240, 200, 0.9);
  color: var(--text);
  font-weight: 800;
}

.hero-chart-panel {
  display: flex;
  align-items: flex-end;
  min-height: 168px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 248, 252, 0.99));
  box-shadow: 0 18px 34px rgba(31, 47, 92, 0.08);
}

.hero-chart-svg {
  width: 100%;
}

.hero-chart-bar-d {
  fill: rgba(86, 128, 208, 0.82);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.fact-card,
.summary-card,
.audience-card,
.teacher-fact,
.teacher-point,
.results-task-card,
.results-example-card,
.scenario-card,
.results-preview,
.result-preview-card,
.format-main,
.price-card,
.cta-card,
.form-card {
  background: var(--surface);
  border: 1px solid rgba(31, 47, 92, 0.08);
  box-shadow: var(--shadow);
}

.fact-card {
  padding: 15px 14px;
  border-radius: var(--radius-md);
}

.fact-card strong,
.fact-card span {
  display: block;
}

.fact-card strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.fact-card span {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.92rem;
}

.fact-card-price {
  background: linear-gradient(180deg, rgba(253, 240, 200, 0.92), rgba(255, 255, 255, 0.94));
}

.summary-card {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.summary-kicker,
.preview-kicker {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.summary-head h2 {
  font-size: 1.52rem;
}

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

.summary-list li,
.value-list li {
  position: relative;
  padding-left: 22px;
}

.summary-list li::before,
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.summary-points {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.summary-point {
  display: grid;
  gap: 6px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(246, 247, 251, 0.94);
  border: 1px solid rgba(31, 47, 92, 0.08);
}

.summary-point strong {
  color: var(--text);
  font-size: 0.93rem;
}

.summary-point span,
.summary-note {
  color: var(--text-soft);
  line-height: 1.62;
}

.summary-note {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.hero-visual-card {
  display: grid;
  gap: 14px;
}

.hero-visual-card-strong {
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 251, 0.9));
}

.hero-visual-card-strong .summary-kicker {
  margin: 0 4px;
}

.hero-visual-stage {
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(232, 191, 84, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(31, 47, 92, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(249, 250, 253, 1), rgba(242, 244, 248, 0.98));
}

.hero-visual-board {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(220px, 0.86fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.hero-file-card,
.hero-chart-card {
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(31, 47, 92, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(31, 47, 92, 0.1);
}

.hero-file-card {
  padding: 14px;
}

.hero-file-card-word {
  min-height: 100%;
}

.hero-side-stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-file-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-file-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-file-badge-word {
  background: rgba(31, 47, 92, 0.12);
  color: var(--accent-deep);
}

.hero-file-badge-excel {
  background: rgba(67, 122, 100, 0.14);
  color: #2d6a5a;
}

.hero-file-dots {
  display: inline-flex;
  gap: 6px;
}

.hero-file-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 47, 92, 0.18);
}

.hero-file-body {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.hero-file-label,
.hero-chart-card-head p {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-file-body h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-lines,
.resume-lines,
.report-lines {
  display: grid;
  gap: 8px;
}

.hero-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 47, 92, 0.16), rgba(31, 47, 92, 0.06));
}

.hero-word-table,
.hero-excel-table {
  display: grid;
  gap: 6px;
}

.hero-word-row,
.hero-excel-row {
  display: grid;
  gap: 6px;
}

.hero-word-row {
  grid-template-columns: 1.18fr 0.56fr 0.76fr;
}

.hero-excel-row {
  grid-template-columns: 1.18fr 0.82fr;
}

.hero-word-row span,
.hero-excel-row span {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 12px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-word-row.head span,
.hero-excel-row.head span {
  background: rgba(31, 47, 92, 0.06);
  color: var(--text);
  font-weight: 700;
}

.hero-excel-row.total span {
  background: rgba(253, 240, 200, 0.82);
  color: var(--text);
  font-weight: 800;
}

.hero-chart-card {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.hero-chart-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-chart-card-head span,
.hero-chart-legend span,
.hero-visual-foot span,
.resume-chip,
.resume-meta span,
.report-header span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text);
  font-size: 0.8rem;
}

.hero-chart-svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-chart-grid {
  stroke: rgba(31, 47, 92, 0.14);
  stroke-width: 1;
}

.hero-chart-axis {
  stroke: rgba(31, 47, 92, 0.24);
  stroke-width: 1.4;
}

.hero-chart-bar-a {
  fill: rgba(31, 47, 92, 0.9);
}

.hero-chart-bar-b {
  fill: rgba(232, 191, 84, 0.96);
}

.hero-chart-bar-c {
  fill: rgba(67, 122, 100, 0.86);
}

.hero-chart-legend,
.hero-visual-foot,
.resume-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-chart {
  display: grid;
  align-items: end;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 47, 92, 0.08);
}

.report-chart span {
  display: block;
  height: var(--bar);
  min-height: 16px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(232, 191, 84, 0.96), rgba(31, 47, 92, 0.9));
}

.hero-preview {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-window,
.preview-window {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(31, 47, 92, 0.08);
  background: #fff;
}

.mini-window-bar,
.preview-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  background: rgba(246, 247, 251, 0.92);
  border-bottom: 1px solid rgba(31, 47, 92, 0.08);
}

.mini-window-bar span,
.preview-window-bar span {
  font-size: 0.88rem;
}

.mini-window-bar span:first-child,
.preview-window-bar span:first-child {
  color: var(--text);
  font-weight: 700;
}

.mini-document {
  padding: 18px;
}

.mini-document strong {
  display: block;
  margin-bottom: 12px;
}

.mini-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 47, 92, 0.14), rgba(31, 47, 92, 0.06));
}

.mini-line + .mini-line {
  margin-top: 8px;
}

.w-96 {
  width: 96%;
}

.w-92 {
  width: 92%;
}

.w-88 {
  width: 88%;
}

.w-84 {
  width: 84%;
}

.w-78 {
  width: 78%;
}

.w-72 {
  width: 72%;
}

.mini-sheet,
.preview-sheet {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.mini-sheet-row,
.preview-sheet-row {
  display: grid;
  gap: 8px;
}

.mini-sheet-row {
  grid-template-columns: 1.2fr 0.8fr;
}

.preview-sheet-row {
  grid-template-columns: 1.3fr 0.9fr 0.5fr;
}

.mini-sheet-row span,
.preview-sheet-row span,
.preview-table span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.mini-sheet-row.head span,
.preview-sheet-row.head span {
  background: rgba(31, 47, 92, 0.06);
  color: var(--text);
  font-weight: 700;
}

.mini-sheet-row.total span,
.preview-sheet-row.total span {
  background: rgba(253, 240, 200, 0.78);
  color: var(--text);
  font-weight: 800;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.audience-card,
.teacher-point,
.scenario-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.audience-card h3,
.teacher-point strong,
.scenario-card h3,
.format-block h3,
.preview-head h3 {
  margin: 0;
}

.audience-card p,
.teacher-point span,
.scenario-card p {
  margin: 10px 0 0;
}

#audience .section-heading {
  max-width: 620px;
}

#audience .section-heading p {
  max-width: 46ch;
  margin-top: 8px;
}

.audience-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(31, 47, 92, 0.14);
}

.audience-card-study::before {
  background: linear-gradient(90deg, rgba(31, 47, 92, 0.9), rgba(31, 47, 92, 0.24));
}

.audience-card-start::before {
  background: linear-gradient(90deg, rgba(198, 154, 42, 0.95), rgba(198, 154, 42, 0.22));
}

.audience-card-work::before {
  background: linear-gradient(90deg, rgba(45, 106, 90, 0.9), rgba(45, 106, 90, 0.22));
}

.audience-card-confidence::before {
  background: linear-gradient(90deg, rgba(138, 90, 51, 0.92), rgba(138, 90, 51, 0.22));
}

.audience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audience-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(31, 47, 92, 0.1), rgba(31, 47, 92, 0.04));
  border: 1px solid rgba(31, 47, 92, 0.08);
}

.audience-icon::before,
.audience-icon::after {
  content: "";
  position: absolute;
}

.audience-icon::before {
  inset: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.audience-icon::after {
  top: 15px;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent-deep);
}

.audience-card-start .audience-icon::after {
  border-radius: 50%;
  background: #c69a2a;
}

.audience-card-work .audience-icon::after {
  border-radius: 3px;
  background: #2d6a5a;
  transform: rotate(45deg);
}

.audience-card-confidence .audience-icon::after {
  border-radius: 999px;
  border: 3px solid #8a5a33;
  background: transparent;
}

.audience-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.94);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.audience-card h3 {
  font-size: 1.18rem;
  line-height: 1.28;
}

.audience-card p {
  font-size: 0.97rem;
  line-height: 1.62;
}

.teacher-head {
  margin-bottom: 14px;
}

.teacher-head .section-kicker {
  margin-bottom: 0;
}

.teacher-grid {
  grid-template-columns: minmax(300px, 372px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
}

.teacher-photo-wrap {
  width: 100%;
  max-width: 372px;
  justify-self: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: #eef2f8;
}

.teacher-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.teacher-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding-block: clamp(4px, 0.8vw, 10px);
}

.teacher-copy h2 {
  max-width: 100%;
  font-size: clamp(1.68rem, 2.1vw, 2.12rem);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.teacher-copy p {
  margin: 0;
  max-width: none;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.teacher-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.teacher-fact {
  min-width: 0;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 47, 92, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(31, 47, 92, 0.06);
}

.teacher-fact strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.3;
}

.teacher-fact span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.89rem;
}

.teacher-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

#results {
  padding-bottom: 36px;
}

.section-results-examples {
  padding-top: 28px;
}

.results-heading {
  max-width: 690px;
}

.results-heading h2 {
  font-size: clamp(1.7rem, 2.35vw, 2.44rem);
  line-height: 1.08;
  letter-spacing: -0.024em;
}

.results-heading p {
  margin-top: 12px;
  max-width: 62ch;
  color: rgba(51, 63, 96, 0.82);
  font-size: 0.99rem;
  line-height: 1.62;
}

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

.results-task-card,
.results-example-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.results-task-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
}

.results-task-card h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.28;
}

.results-task-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.54;
  font-size: 0.92rem;
}

.results-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  align-items: stretch;
}

.results-example-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  grid-template-rows: auto 1fr;
  padding: 18px;
}

.example-preview {
  display: grid;
  align-content: start;
  min-height: 242px;
  padding: 13px;
  border-radius: 22px;
  border: 1px solid rgba(31, 47, 92, 0.1);
  background: linear-gradient(180deg, rgba(250, 251, 253, 0.98), rgba(242, 244, 248, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.example-preview-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.example-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 47, 92, 0.16);
}

.example-preview-bar span:first-child {
  background: rgba(31, 47, 92, 0.26);
}

.example-preview-bar span:nth-child(2) {
  background: rgba(232, 191, 84, 0.72);
}

.example-preview-bar span:nth-child(3) {
  background: rgba(67, 122, 100, 0.54);
}

.example-sheet {
  display: grid;
  align-content: start;
  min-height: 192px;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid rgba(31, 47, 92, 0.09);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 30px rgba(31, 47, 92, 0.07);
}

.example-sheet-resume,
.example-sheet-budget,
.example-sheet-report {
  display: grid;
  gap: 10px;
}

.example-profile-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.example-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(31, 47, 92, 0.16), rgba(31, 47, 92, 0.06));
}

.example-avatar::before,
.example-avatar::after {
  content: "";
  position: absolute;
}

.example-avatar::before {
  top: 8px;
  left: 13px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31, 47, 92, 0.9);
}

.example-avatar::after {
  left: 10px;
  bottom: 7px;
  width: 26px;
  height: 13px;
  border-radius: 12px 12px 8px 8px;
  background: rgba(31, 47, 92, 0.18);
}

.example-profile-copy strong,
.example-report-head strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.28;
}

.example-profile-copy span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.example-lines {
  display: grid;
  gap: 7px;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-tags span,
.example-report-head span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246, 247, 251, 0.94);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text);
  font-size: 0.79rem;
}

.example-table {
  display: grid;
  gap: 6px;
}

.example-table-row {
  display: grid;
  gap: 6px;
}

.example-table-budget .example-table-row {
  grid-template-columns: 1.14fr 0.86fr;
}

.example-table-report .example-table-row {
  grid-template-columns: 1fr 0.84fr;
}

.example-table-row span {
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(246, 247, 251, 0.92);
  border: 1px solid rgba(31, 47, 92, 0.08);
  color: var(--text-soft);
  font-size: 0.83rem;
}

.example-table-row.head span {
  background: rgba(31, 47, 92, 0.06);
  color: var(--text);
  font-weight: 700;
}

.example-table-row.total span {
  background: rgba(253, 240, 200, 0.78);
  color: var(--text);
  font-weight: 800;
}

.example-report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.example-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 94px;
  gap: 9px;
  align-items: end;
}

.example-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 98px;
  padding: 12px 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(31, 47, 92, 0.08);
  background: rgba(246, 247, 251, 0.92);
}

.example-chart::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 1px;
  background: rgba(31, 47, 92, 0.16);
}

.example-chart span {
  position: relative;
  z-index: 1;
  display: block;
  height: var(--bar);
  min-height: 18px;
  border-radius: 999px 999px 6px 6px;
}

.example-chart span:first-child {
  background: rgba(31, 47, 92, 0.9);
}

.example-chart span:nth-child(2) {
  background: rgba(232, 191, 84, 0.96);
}

.example-chart span:nth-child(3) {
  background: rgba(67, 122, 100, 0.82);
}

.example-chart span:nth-child(4) {
  background: rgba(86, 128, 208, 0.82);
}

.results-example-copy {
  display: grid;
  align-content: start;
  gap: 9px;
}

.results-example-copy h3 {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.28;
}

.results-example-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.56;
  font-size: 0.93rem;
}

.section-format-focus::before {
  inset: 8px 0;
  background:
    radial-gradient(circle at top right, rgba(232, 191, 84, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(246, 248, 252, 0.96), rgba(238, 241, 247, 0.9));
  border-block: 1px solid rgba(31, 47, 92, 0.08);
}

.format-heading {
  max-width: 700px;
}

.format-heading h2 {
  font-size: clamp(1.58rem, 2.15vw, 2.1rem);
  line-height: 1.12;
}

.format-heading p:last-child {
  max-width: 52ch;
  color: rgba(51, 63, 96, 0.84);
}

.format-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 440px);
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.format-main,
.price-card,
.cta-card,
.form-card {
  border-radius: var(--radius-xl);
}

.format-main {
  padding: 21px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 249, 252, 0.78));
  border: 1px solid rgba(31, 47, 92, 0.08);
  box-shadow: 0 16px 30px rgba(31, 47, 92, 0.05);
}

.format-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.format-block {
  padding: 0 16px 0 0;
}

.format-block + .format-block {
  margin-left: 18px;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(31, 47, 92, 0.1);
}

.format-block h3 {
  font-size: 1.02rem;
  line-height: 1.28;
}

.value-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: start;
}

.process-step span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 47, 92, 0.08);
  color: var(--accent-deep);
  font-weight: 800;
}

.process-step strong {
  display: block;
  margin-top: 2px;
  font-size: 0.96rem;
  line-height: 1.32;
}

.process-step p {
  margin: 4px 0 0;
  color: var(--text-soft);
  line-height: 1.46;
  font-size: 0.91rem;
}

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 30px 26px 26px;
  background: linear-gradient(180deg, rgba(31, 47, 92, 0.98), rgba(24, 37, 72, 0.98));
  border: 1px solid rgba(31, 47, 92, 0.18);
  box-shadow: 0 34px 64px rgba(24, 37, 72, 0.22);
  color: #fff;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(232, 191, 84, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%);
  pointer-events: none;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  margin: 0 0 1px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.77rem;
  font-weight: 700;
}

.price-card-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.price-value {
  margin: 12px 0 2px;
  font-family: "Literata", serif;
  font-size: clamp(3.1rem, 5.4vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #fff;
}

.price-term {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.price-offer {
  margin: 6px 0 0;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

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

.price-meta li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.price-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(232, 191, 84, 0.16);
}

.price-note {
  margin: 18px 0 22px;
}

.price-button.button-primary {
  width: 100%;
  min-height: 60px;
  margin-top: 12px;
  background: #fff;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 22px 38px rgba(10, 18, 38, 0.28);
}

.price-button.button-primary:hover,
.price-button.button-primary:focus-visible {
  background: #f7f8fc;
  color: var(--accent-deep);
  box-shadow: 0 24px 42px rgba(10, 18, 38, 0.3);
}

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

.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 47, 92, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-weight: 700;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-deep);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
}

.cta-card p {
  margin: 14px 0 0;
  max-width: 42ch;
  color: var(--text-soft);
  line-height: 1.65;
}

.section-contact {
  padding-top: 20px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: start;
}

.contact-copy {
  padding-top: 10px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-point {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 47, 92, 0.08);
}

.contact-point strong,
.footer-brand {
  display: block;
  font-weight: 800;
}

.contact-point span {
  display: block;
  margin-top: 6px;
}

.form-card {
  padding: 24px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 47, 92, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition),
    background-color var(--transition);
}

.form-field textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(31, 47, 92, 0.32);
  box-shadow: 0 0 0 4px rgba(31, 47, 92, 0.07);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: rgba(173, 86, 86, 0.48);
  box-shadow: 0 0 0 4px rgba(173, 86, 86, 0.07);
}

.form-hint {
  margin: -4px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.field-error {
  display: block;
  min-height: 1.2em;
  color: #9d5252;
  font-size: 0.92rem;
}

.field-error-group {
  margin-top: -8px;
}

.button-submit {
  width: 100%;
  min-height: 58px;
  box-shadow: 0 16px 34px rgba(23, 38, 77, 0.2);
}

.form-consent,
.form-note,
.form-status {
  margin: 0;
  font-size: 0.94rem;
}

.form-consent {
  margin-top: -2px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(65, 75, 105, 0.82);
}

.form-consent a {
  color: var(--text);
}

.form-consent a:hover,
.form-consent a:focus-visible {
  color: var(--accent-deep);
}

.form-note {
  color: var(--text-soft);
  line-height: 1.6;
}

.form-status {
  min-height: 1.6em;
  color: var(--accent-deep);
  font-weight: 700;
}

.form-status.is-error {
  color: #9d5252;
}

.site-footer {
  padding: 22px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 20px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 47, 92, 0.08);
  min-width: 0;
}

.footer-brand-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.footer-brand-wrap > div {
  min-width: 0;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(31, 47, 92, 0.08);
  background: #fff;
}

.footer-brand {
  margin: 0 0 8px;
}

.footer-course {
  margin: -2px 0 8px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-text {
  margin: 0;
  max-width: 46ch;
  overflow-wrap: break-word;
}

.footer-channel {
  margin: 10px 0 0;
  font-weight: 700;
}

.footer-channel a {
  color: var(--text);
}

.footer-channel a:hover,
.footer-channel a:focus-visible {
  color: var(--accent-deep);
}

.footer-meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-legal {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  color: rgba(65, 75, 105, 0.68);
  overflow-wrap: break-word;
}

.footer-legal p {
  margin: 0;
  min-width: 0;
}

.footer-legal a {
  color: inherit;
  overflow-wrap: anywhere;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
}

.footer-docs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding-top: 2px;
}

.footer-docs a {
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  min-width: 0;
  white-space: nowrap;
}

.footer-docs a + a {
  padding-left: 14px;
}

.footer-docs a + a::before {
  content: "·";
  margin-right: 14px;
  color: rgba(65, 75, 105, 0.52);
}

.footer-docs a:hover,
.footer-docs a:focus-visible {
  color: var(--text);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 26px 0 64px;
}

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

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-soft);
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--text);
}

.legal-card {
  margin-top: 18px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid rgba(31, 47, 92, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 12px;
}

.legal-meta {
  margin: 0;
  color: var(--text-soft);
}

.legal-section + .legal-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 47, 92, 0.08);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.legal-section p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
  display: grid;
  gap: 8px;
}

.legal-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

@media (max-width: 1120px) {
  .hero-grid,
  .results-layout,
  .format-grid,
  .contact-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-visual-canvas {
    grid-template-columns: minmax(0, 1.04fr) minmax(240px, 0.96fr);
  }

  .teacher-grid {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 28px;
  }

  .teacher-photo-wrap {
    max-width: 340px;
  }

  .results-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-example-card:last-child {
    grid-column: 1 / -1;
  }

  .teacher-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }

  .section-compact {
    padding: 46px 0;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 47, 92, 0.08);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 8px 4px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-headline-sub {
    max-width: 100%;
  }

  .hero-side {
    max-width: none;
    justify-self: stretch;
  }

  .hero-visual-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .hero-doc-panel,
  .hero-sheet-panel,
  .hero-chart-panel {
    padding: 12px;
    border-radius: 20px;
  }

  .hero-doc-row span,
  .hero-sheet-cell {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .hero-lines {
    gap: 7px;
  }

  .hero-line {
    height: 7px;
  }

  .hero-doc-summary {
    padding: 10px 12px;
  }

  .hero-chart-panel {
    min-height: 132px;
  }

  .hero-visual-board,
  .hero-visual-side {
    grid-template-columns: 1fr;
  }

  .teacher-photo-wrap {
    max-width: min(100%, 420px);
    margin: 0 auto;
  }

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

  .teacher-copy {
    gap: 12px;
    padding-block: 0;
  }

  .teacher-copy h2 {
    max-width: none;
    white-space: normal;
  }

  .teacher-facts {
    grid-template-columns: 1fr;
  }

  #results {
    padding-bottom: 30px;
  }

  .section-results-examples {
    padding-top: 22px;
  }

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

  .results-card-grid,
  .results-examples-grid,
  .audience-grid,
  .scenario-grid,
  .format-columns,
  .teacher-points {
    grid-template-columns: 1fr;
  }

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

  .example-preview,
  .example-sheet {
    min-height: 0;
  }

  .format-grid {
    gap: 16px;
  }

  .format-block {
    padding: 0;
  }

  .format-block + .format-block {
    margin-left: 0;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(31, 47, 92, 0.1);
  }

  .price-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 14px;
  }

  .section {
    padding: 44px 0;
  }

  .section-compact {
    padding: 34px 0;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-footer {
    padding: 18px 0 24px;
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 0.94;
  }

  .hero-headline-sub {
    margin-top: 8px;
    font-size: clamp(0.96rem, 4.6vw, 1.12rem);
    line-height: 1.18;
  }

  .hero-sublead {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .brand-text span {
    display: none;
  }

  .hero-actions .button,
  .cta-card .button {
    width: 100%;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-visual-canvas,
  .hero-visual-side,
  .preview-sheet-row,
  .mini-sheet-row,
  .preview-table,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual-shell,
  .audience-card,
  .teacher-fact,
  .teacher-point,
  .results-task-card,
  .results-example-card,
  .scenario-card,
  .results-preview,
  .format-main,
  .price-card,
  .cta-card,
  .form-card {
    padding: 18px;
  }

  .section-heading h2,
  .teacher-copy h2,
  .cta-card h2,
  .contact-copy h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
    line-height: 1.12;
  }

  .section-heading p,
  .audience-card p,
  .teacher-copy p,
  .teacher-fact span,
  .teacher-point span,
  .results-task-card p,
  .results-example-card p,
  .scenario-card p,
  .faq-answer p,
  .contact-copy p,
  .contact-point span,
  .footer-text {
    line-height: 1.55;
  }

  .teacher-grid {
    gap: 18px;
  }

  .teacher-photo-wrap {
    max-width: min(100%, 360px);
  }

  .teacher-facts {
    gap: 10px;
  }

  .legal-card {
    padding: 24px;
  }

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

  .mini-window-bar,
  .footer-brand-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-chart-card-head,
  .mini-window-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .example-report-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .example-report-layout {
    grid-template-columns: 1fr;
  }

  .hero-doc-heading,
  .hero-sheet-heading,
  .hero-chart-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-sublead,
  .hero-sublead-active,
  .hero-terms,
  .hero-microcopy {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .eyebrow,
  .section-kicker {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .hero-facts-strip-inner {
    justify-content: flex-start;
    width: 100%;
    max-width: none;
  }

  .hero-visual-shell {
    padding: 12px;
  }

  .hero-visual-canvas {
    grid-template-columns: minmax(0, 1.08fr) minmax(112px, 0.82fr);
    gap: 8px;
  }

  .hero-visual-side {
    gap: 8px;
  }

  .hero-doc-panel,
  .hero-sheet-panel,
  .hero-chart-panel {
    padding: 9px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(31, 47, 92, 0.08);
  }

  .hero-doc-panel,
  .hero-sheet-panel {
    gap: 8px;
  }

  .hero-doc-head,
  .hero-sheet-head {
    gap: 7px;
  }

  .hero-doc-head h3 {
    font-size: 0.84rem;
  }

  .hero-app-mark {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 0.74rem;
  }

  .hero-doc-content {
    gap: 8px;
  }

  .hero-visual-board {
    grid-template-columns: minmax(0, 1.08fr) minmax(116px, 0.82fr);
    gap: 8px;
  }

  .hero-side-stack {
    gap: 8px;
  }

  .hero-file-card,
  .hero-chart-card {
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(31, 47, 92, 0.09);
  }

  .hero-file-card {
    padding: 10px;
  }

  .hero-file-badge {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .hero-file-dots {
    gap: 4px;
  }

  .hero-file-dots span {
    width: 6px;
    height: 6px;
  }

  .hero-file-body {
    gap: 8px;
    margin-top: 9px;
  }

  .hero-file-body h3 {
    font-size: 0.84rem;
  }

  .hero-file-label {
    display: none;
  }

  .hero-lines {
    gap: 5px;
  }

  .hero-line {
    height: 6px;
  }

  .hero-word-table,
  .hero-excel-table {
    gap: 4px;
  }

  .hero-word-row,
  .hero-excel-row {
    gap: 4px;
  }

  .hero-word-row span,
  .hero-excel-row span {
    min-width: 0;
    min-height: 27px;
    padding: 0 5px;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.58rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-chart-card {
    display: none;
  }

  .hero-doc-row span,
  .hero-sheet-row span,
  .hero-sheet-cell {
    min-width: 0;
    min-height: 36px;
    padding: 0 8px;
    overflow: hidden;
    font-size: 0.76rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-doc-row span,
  .hero-sheet-cell {
    min-height: 25px;
    padding: 0 5px;
    border-radius: 8px;
    font-size: 0.58rem;
  }

  .hero-doc-row,
  .hero-sheet-grid {
    gap: 4px;
  }

  .hero-doc-summary {
    gap: 5px;
    padding: 8px 9px;
    border-radius: 12px;
  }

  .hero-doc-summary strong {
    font-size: 0.68rem;
  }

  .hero-summary-bar {
    height: 7px;
  }

  .hero-chart-panel {
    min-height: auto;
    align-items: center;
  }

  .hero-chart-svg {
    max-height: 88px;
  }

  .hero-facts-strip {
    padding: 0 0 12px;
  }

  .hero-facts-strip-inner {
    width: auto;
    flex-wrap: nowrap;
    gap: 7px;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .hero-facts-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .hero-facts-strip-item {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(31, 47, 92, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
  }

  .hero-facts-strip-item + .hero-facts-strip-item {
    padding-left: 10px;
  }

  .hero-facts-strip-item + .hero-facts-strip-item::before {
    display: none;
  }

  .resume-meta span,
  .hero-chart-legend span {
    width: 100%;
  }

  .hero-doc-meta span {
    width: auto;
  }

  .preview-chart {
    min-height: 84px;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-answer p {
    padding-inline: 18px;
  }

  .audience-grid,
  .teacher-facts,
  .results-card-grid,
  .results-examples-grid {
    display: flex;
    gap: 12px;
    margin-inline: -14px;
    margin-top: 14px;
    padding: 0 42px 8px 48px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 14px 42px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .audience-grid::-webkit-scrollbar,
  .teacher-facts::-webkit-scrollbar,
  .results-card-grid::-webkit-scrollbar,
  .results-examples-grid::-webkit-scrollbar {
    display: none;
  }

  .audience-card,
  .teacher-fact,
  .results-task-card,
  .results-example-card {
    flex: 0 0 min(84vw, 326px);
    scroll-snap-align: start;
  }

  .audience-card,
  .teacher-fact,
  .results-task-card {
    min-height: auto;
  }

  .results-example-card {
    gap: 10px;
    grid-template-rows: auto auto;
  }

  .example-preview {
    min-height: 192px;
    padding: 10px;
    border-radius: 18px;
  }

  .example-sheet {
    min-height: 148px;
    padding: 10px;
    border-radius: 15px;
  }

  .example-profile-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
  }

  .example-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .example-avatar::before {
    top: 7px;
    left: 11px;
    width: 16px;
    height: 16px;
  }

  .example-avatar::after {
    left: 8px;
    bottom: 6px;
    width: 22px;
    height: 10px;
  }

  .example-table-row span {
    min-width: 0;
    padding: 7px 8px;
    border-radius: 10px;
    overflow: hidden;
    font-size: 0.76rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .example-report-layout {
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 8px;
  }

  .example-chart {
    min-height: 82px;
    gap: 6px;
    padding: 10px 8px 8px;
    border-radius: 14px;
  }

  .format-main {
    padding: 16px;
  }

  .format-columns {
    gap: 0;
  }

  .format-block h3 {
    font-size: 0.98rem;
  }

  .value-list {
    gap: 6px;
    margin-top: 8px;
  }

  .process-list {
    gap: 8px;
    margin-top: 8px;
  }

  .process-step {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
  }

  .process-step span {
    width: 26px;
    height: 26px;
    font-size: 0.82rem;
  }

  .process-step strong {
    margin-top: 1px;
    font-size: 0.92rem;
  }

  .process-step p {
    margin-top: 2px;
    font-size: 0.84rem;
    line-height: 1.36;
  }

  .price-card {
    gap: 9px;
    padding: 22px 18px 20px;
  }

  .price-badge {
    min-height: 24px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .price-value {
    margin: 8px 0 2px;
    font-size: clamp(2.75rem, 14vw, 3.55rem);
  }

  .price-meta {
    gap: 8px;
    margin-top: 8px;
  }

  .price-button.button-primary {
    min-height: 56px;
    margin-top: 8px;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
    min-width: 0;
  }

  .form-consent {
    overflow-wrap: break-word;
  }

  .footer-inner {
    display: grid;
    gap: 18px;
    padding-top: 18px;
  }

  .footer-meta {
    gap: 12px;
  }

  .footer-docs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .footer-docs a {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.45;
  }
}

@media (max-width: 430px) {
  .container {
    padding-inline: 12px;
  }

  .section {
    padding: 40px 0;
  }

  .section-compact {
    padding: 30px 0;
  }

  .hero-visual-shell,
  .audience-card,
  .teacher-fact,
  .teacher-point,
  .results-task-card,
  .results-example-card,
  .scenario-card,
  .results-preview,
  .format-main,
  .price-card,
  .cta-card,
  .form-card {
    padding: 16px;
  }

  .hero-visual-shell {
    padding: 10px;
  }

  .audience-grid,
  .teacher-facts,
  .results-card-grid,
  .results-examples-grid {
    margin-inline: -12px;
    padding-inline: 46px 40px;
    scroll-padding-inline: 12px 40px;
  }

  .hero-visual-canvas {
    grid-template-columns: minmax(0, 1.08fr) minmax(104px, 0.82fr);
    gap: 7px;
  }

  .hero-visual-side {
    gap: 7px;
  }

  .hero-doc-panel,
  .hero-sheet-panel,
  .hero-chart-panel {
    padding: 8px;
  }

  .teacher-fact span,
  .results-task-card p,
  .results-example-card p,
  .scenario-card p,
  .contact-point span,
  .footer-text,
  .footer-legal {
    font-size: 0.94rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
