:root {
  --ink: #101425;
  --ink-soft: #202940;
  --muted: #616b7f;
  --line: #e3e7ef;
  --paper: #ffffff;
  --paper-soft: #f4f6fa;
  --night: #090d1a;
  --night-soft: #11182c;
  --violet: #7564ff;
  --violet-dark: #5a49e8;
  --violet-soft: #ece9ff;
  --mint: #73e0b6;
  --mint-soft: #dcfaee;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --shadow: 0 28px 80px rgba(12, 18, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--night);
  background: var(--mint);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #ffffff;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(145deg, #9185ff, #6551ef);
  box-shadow: 0 10px 25px rgba(117, 100, 255, 0.34);
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 830px;
  display: flex;
  align-items: center;
  padding: 150px 0 104px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(8, 12, 24, 0.97), rgba(14, 22, 42, 0.97)),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.hero-glow-one {
  width: 540px;
  height: 540px;
  top: -190px;
  right: -120px;
  background: radial-gradient(circle, rgba(117, 100, 255, 0.34), rgba(117, 100, 255, 0));
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(115, 224, 182, 0.12), rgba(115, 224, 182, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 76px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

.eyebrow-hero {
  color: #a99fff;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.68);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 710px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.048em;
}

h3 {
  letter-spacing: -0.026em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 16px 38px rgba(117, 100, 255, 0.28);
}

.button-primary:hover {
  background: var(--violet-dark);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: #ffffff;
  background: var(--night);
}

.button-dark:hover {
  background: var(--ink-soft);
}

.button-light {
  color: #4435b9;
  background: #ffffff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.4;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.practice-demo {
  position: relative;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 44px 95px rgba(0, 0, 0, 0.29);
  backdrop-filter: blur(18px);
}

.practice-demo::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 4px 15px;
}

.demo-header > div {
  display: grid;
  gap: 3px;
}

.demo-header strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.demo-kicker {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.level-chip {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 800;
}

.lesson-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.lesson-targets span {
  padding: 6px 8px;
  border-radius: 8px;
  color: #c4bcff;
  background: rgba(117, 100, 255, 0.13);
  font-size: 10px;
  font-weight: 750;
}

.chat {
  min-height: 390px;
  padding: 20px;
  border-radius: 22px;
  background: #f5f6fa;
}

.message {
  width: fit-content;
  max-width: 86%;
  margin-bottom: 13px;
  padding: 12px 14px;
  border-radius: 15px;
  color: #2b3449;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(26, 35, 58, 0.06);
  font-size: 13px;
  line-height: 1.48;
}

.message-label {
  display: block;
  margin-bottom: 4px;
  color: #8a93a5;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.message.assistant {
  border-bottom-left-radius: 5px;
}

.message.assistant.compact {
  margin-bottom: 0;
}

.message.student {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: #ffffff;
  background: #2b344b;
  border-bottom-right-radius: 5px;
}

.message.student.text-message {
  display: block;
  background: var(--violet);
}

.voice-play {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #2b344b;
  background: #ffffff;
  font-size: 8px;
}

.voice-bars {
  color: #bfb7ff;
  letter-spacing: 1px;
}

.development-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 13px;
  padding: 14px 15px;
  border-radius: 17px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
}

.development-card > div:last-child {
  display: grid;
  gap: 4px;
}

.development-card strong {
  font-size: 12px;
}

.development-card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.45;
}

.development-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #1b4938;
  background: var(--mint);
  font-weight: 900;
}

.principle-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle-grid > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 88px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.principle-grid > div:first-child {
  padding-left: 0;
}

.principle-grid > div:last-child {
  border-right: 0;
}

.principle-grid span {
  color: var(--violet-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.principle-grid strong {
  font-size: 13px;
}

.speaking-section {
  padding: 118px 0;
}

.section-intro {
  margin-bottom: 52px;
}

.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.split-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-intro > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.speaking-card {
  min-height: 318px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(18, 28, 50, 0.035);
}

.featured-card {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at 85% 10%, rgba(117, 100, 255, 0.3), transparent 40%),
    var(--night-soft);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 74px;
  border-radius: 13px;
  color: var(--violet-dark);
  background: var(--violet-soft);
  font-size: 12px;
  font-weight: 900;
}

.featured-card .card-icon {
  color: #194332;
  background: var(--mint);
}

.speaking-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.speaking-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.65);
}

.evidence-section {
  padding: 118px 0;
  color: #ffffff;
  background: var(--night);
}

.evidence-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 88px;
  align-items: start;
}

.evidence-intro {
  position: sticky;
  top: 40px;
}

.evidence-intro h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.evidence-intro p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.evidence-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.evidence-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.evidence-number {
  padding-top: 5px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.evidence-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.evidence-item p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.evidence-item a {
  color: #bdb6ff;
  font-size: 12px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.workflow-section {
  padding: 118px 0;
  background: #ffffff;
}

.workflow-intro {
  max-width: 820px;
}

.workflow-intro p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.workflow-steps li {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.workflow-steps li:first-child {
  padding-left: 0;
}

.workflow-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #8a93a5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-content h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.step-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.school-section {
  padding: 118px 0;
  background: var(--violet-soft);
}

.school-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.school-copy > p:not(.pilot-note) {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pilot-note {
  margin: 13px 0 0;
  color: #7e789b;
  font-size: 11px;
}

.school-benefits {
  border-top: 1px solid rgba(90, 73, 232, 0.18);
}

.school-benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(90, 73, 232, 0.18);
}

.school-benefits article > span {
  padding-top: 4px;
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.school-benefits h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.school-benefits p {
  margin-bottom: 0;
  color: #625d79;
  line-height: 1.68;
}

.faq-section {
  padding: 118px 0;
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--violet-dark);
  font-size: 24px;
  font-weight: 500;
  transform: translateY(-50%);
}

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

.faq-list p {
  max-width: 700px;
  margin-bottom: 24px;
  padding-right: 40px;
  color: var(--muted);
  line-height: 1.72;
}

.final-cta {
  padding: 0 0 118px;
  background: #ffffff;
}

.final-cta-card {
  padding: 72px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.17), transparent 28%),
    linear-gradient(135deg, #5b4ae8, #7968ff 62%, #907fff);
  box-shadow: var(--shadow);
}

.final-cta-card h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta-card p {
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.68;
}

.site-footer {
  padding: 64px 0 28px;
  color: #d5d9e4;
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 54px;
  padding-bottom: 44px;
}

.footer-brand {
  color: #ffffff;
}

.footer-note {
  margin: 14px 0 0;
  color: #7a8498;
  font-size: 13px;
}

.legal {
  display: grid;
  gap: 5px;
  color: #858fa3;
  font-size: 12px;
  line-height: 1.45;
}

.legal strong {
  margin-bottom: 4px;
  color: #d8dce5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}

.footer-links a {
  color: #9ca5b7;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #5f687b;
  font-size: 11px;
}

.privacy-page {
  min-height: 100vh;
  background: var(--paper-soft);
}

.privacy-header {
  color: #ffffff;
  background: var(--night);
}

.privacy-header .nav {
  min-height: 88px;
}

.privacy-content {
  max-width: 820px;
  padding: 86px 0 110px;
}

.privacy-content h1 {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 64px);
}

.privacy-content h2 {
  margin-top: 46px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.privacy-content p,
.privacy-content li {
  color: #525d70;
  font-size: 16px;
  line-height: 1.78;
}

.privacy-content .updated {
  color: #7c8596;
  font-size: 14px;
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    gap: 48px;
  }

  .evidence-shell,
  .faq-layout {
    gap: 54px;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps li:nth-child(2) {
    border-right: 0;
  }

  .workflow-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-steps li:first-child,
  .workflow-steps li:nth-child(3) {
    padding-left: 0;
  }

  .workflow-steps li:nth-child(2),
  .workflow-steps li:last-child {
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .split-intro,
  .evidence-shell,
  .school-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-grid > div:nth-child(2) {
    border-right: 0;
  }

  .principle-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .principle-grid > div:nth-child(3) {
    padding-left: 0;
  }

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

  .speaking-card {
    min-height: 0;
  }

  .card-icon {
    margin-bottom: 42px;
  }

  .evidence-intro {
    position: static;
  }

  .school-copy {
    max-width: 680px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 590px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 76px;
    gap: 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    padding: 116px 0 76px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
  }

  .practice-demo {
    padding: 10px;
    border-radius: 23px;
  }

  .demo-header {
    padding: 6px 4px 13px;
  }

  .chat {
    min-height: 0;
    padding: 13px;
  }

  .message {
    max-width: 92%;
    font-size: 12px;
  }

  .development-card {
    margin-top: 9px;
  }

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

  .principle-grid > div {
    min-height: 64px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid > div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .principle-grid > div:last-child {
    border-bottom: 0;
  }

  .speaking-section,
  .evidence-section,
  .workflow-section,
  .school-section,
  .faq-section {
    padding: 82px 0;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .split-intro {
    gap: 26px;
  }

  .speaking-card {
    padding: 25px;
  }

  .evidence-item {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li,
  .workflow-steps li:first-child,
  .workflow-steps li:nth-child(2),
  .workflow-steps li:nth-child(3),
  .workflow-steps li:last-child {
    min-height: 250px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-steps li:last-child {
    border-bottom: 0;
  }

  .school-layout,
  .faq-layout {
    gap: 46px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-cta {
    padding-bottom: 82px;
  }

  .final-cta-card {
    width: min(100% - 20px, 1180px);
    padding: 48px 22px;
    border-radius: 25px;
  }

  .final-cta-card h2 {
    font-size: 37px;
  }

  .privacy-content {
    padding: 66px 0 84px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
