:root {
  color-scheme: light;
  --paper: #f3f1ec;
  --surface: #faf9f6;
  --ink: #242929;
  --muted: #626867;
  --petrol: #0f5b5d;
  --petrol-dark: #0a4749;
  --sage: #91a19d;
  --line: #d9d7d0;
  --header-bg: rgb(243 241 236 / 92%);
  --header-line: rgb(36 41 41 / 10%);
  --nav-ink: #444b4a;
  --intro-copy: #c8cccb;
  --intro-accent: #d7e4e2;
  --contact-copy: #cee0de;
  --contact-accent: #bad2cf;
  --contact-bg: #0f5b5d;
  --trial: #bd5439;
  --trial-soft: rgb(189 84 57 / 20%);
  --accent-contrast: #ffffff;
  --dark-section: #242929;
  --accent-soft: rgb(145 161 157 / 9%);
  --focus: #8fb8b4;
  --shadow: rgb(36 41 41 / 7%);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #151a1a;
  --surface: #1c2323;
  --ink: #edf1ef;
  --muted: #aab5b2;
  --petrol: #70c3bc;
  --petrol-dark: #8bd7d0;
  --sage: #6f9691;
  --line: #35403e;
  --header-bg: rgb(21 26 26 / 92%);
  --header-line: rgb(237 241 239 / 10%);
  --nav-ink: #cbd3d0;
  --intro-copy: #b9c6c3;
  --intro-accent: #d4e5e1;
  --contact-copy: #d5e9e6;
  --contact-accent: #bce0dc;
  --contact-bg: #0c4f51;
  --trial: #ff9873;
  --trial-soft: rgb(255 152 115 / 22%);
  --accent-contrast: #102827;
  --dark-section: #0f3435;
  --accent-soft: rgb(112 195 188 / 9%);
  --focus: #70c3bc;
  --shadow: rgb(0 0 0 / 24%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #151a1a;
    --surface: #1c2323;
    --ink: #edf1ef;
    --muted: #aab5b2;
    --petrol: #70c3bc;
    --petrol-dark: #8bd7d0;
    --sage: #6f9691;
    --line: #35403e;
    --header-bg: rgb(21 26 26 / 92%);
    --header-line: rgb(237 241 239 / 10%);
    --nav-ink: #cbd3d0;
    --intro-copy: #b9c6c3;
    --intro-accent: #d4e5e1;
    --contact-copy: #d5e9e6;
    --contact-accent: #bce0dc;
    --contact-bg: #0c4f51;
    --trial: #ff9873;
    --trial-soft: rgb(255 152 115 / 22%);
    --accent-contrast: #102827;
    --dark-section: #0f3435;
    --accent-soft: rgb(112 195 188 / 9%);
    --focus: #70c3bc;
    --shadow: rgb(0 0 0 / 24%);
  }
}

* {
  box-sizing: border-box;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  border-radius: 3px;
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

.page-shell {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 14px max(40px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--header-line);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  line-height: 1.15;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--petrol);
  border-radius: 50%;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 36px;
  color: var(--nav-ink);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--petrol);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.mobile-imprint {
  display: none;
  color: var(--petrol-dark);
  font-size: 12px;
  font-weight: 700;
}

.theme-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--petrol-dark);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--petrol);
  background: var(--accent-soft);
}

.theme-icon,
.summary-icon,
.text-link span,
.check-list span,
.offer-icon,
.brand-mark {
  color: var(--petrol);
}

.theme-icon {
  font-size: 16px;
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  min-height: 690px;
  padding-block: 96px 76px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--petrol);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.teaching-copy h2,
.contact-card h2 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(58px, 7vw, 102px);
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--petrol);
}

.hero-text {
  max-width: 660px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.trial-highlight {
  position: relative;
  display: inline-block;
  color: var(--trial);
  background: linear-gradient(
    90deg,
    #d94f59 0%,
    #ef8c35 20%,
    #d8a925 36%,
    #239f91 54%,
    #5f73d8 72%,
    #c454a6 88%,
    #d94f59 100%
  );
  background-size: 300% 100%;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.015em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  isolation: isolate;
  transform-origin: center bottom;
  animation:
    trial-color-shift 6s linear infinite,
    trial-float 3.2s ease-in-out infinite;
}

@keyframes trial-color-shift {
  to {
    background-position: 300% 50%;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  transition: 180ms ease;
}

.button-primary {
  background: var(--petrol);
  box-shadow: 0 10px 30px rgb(15 91 93 / 16%);
  color: var(--accent-contrast);
}

.button-primary:hover {
  background: var(--petrol-dark);
  box-shadow: 0 14px 34px rgb(15 91 93 / 22%);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--petrol-dark);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.hero-actions .text-link:hover span {
  transform: translateY(3px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgb(15 91 93 / 15%);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  position: absolute;
  border: 1px solid rgb(15 91 93 / 12%);
  border-radius: 50%;
  content: "";
}

.hero-panel::before {
  top: -100px;
  right: -90px;
  width: 220px;
  height: 220px;
}

.hero-panel::after {
  top: -65px;
  right: -55px;
  width: 150px;
  height: 150px;
}

.panel-kicker {
  margin: 0 0 70px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-statement {
  margin: 0;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 55px;
}

.panel-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
}

.intro-strip {
  padding-block: 34px;
  background: var(--dark-section);
  color: #f8fbfa;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
}

.intro-grid p:first-child {
  color: var(--intro-accent);
  font-size: 14px;
  font-weight: 700;
}

.intro-grid p:last-child {
  color: var(--intro-copy);
}

.section {
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 80px;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.teaching-copy h2,
.contact-card h2 {
  font-size: clamp(43px, 5.1vw, 70px);
}

.section-heading > p:last-child {
  align-self: end;
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.offer-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 34px 36px 34px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.offer-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.offer-list li:nth-child(even) {
  padding-left: 36px;
}

.offer-list li:hover {
  background: var(--accent-soft);
}

.offer-icon {
  width: 31px;
  height: 31px;
  margin-top: -5px;
  color: var(--petrol);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  vector-effect: non-scaling-stroke;
}

.offer-icon--bass {
  transform: rotate(-5deg) scaleY(1.08);
}

.offer-icon--ukulele {
  transform: rotate(7deg) scale(0.84);
  transform-origin: center;
}

.offer-list h3 {
  margin: -6px 0 9px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.offer-list p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.teaching-section {
  padding-block: 130px;
  background: var(--surface);
}

.teaching-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 120px;
  align-items: center;
}

.online-section {
  background: var(--paper);
}

.online-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.online-copy h2 {
  margin: 0;
  font-size: clamp(43px, 5.1vw, 70px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.online-copy > p:last-child {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.online-benefits {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.online-benefits li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 35px var(--shadow);
}

.online-benefits > li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--petrol);
  border-radius: 50%;
  color: var(--petrol);
  font-size: 12px;
}

.online-benefits strong,
.online-benefits small {
  display: block;
}

.online-benefits strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.online-benefits small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.teaching-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  color: var(--nav-ink);
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--petrol);
  font-size: 12px;
}

.contact-section {
  padding-bottom: 70px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  padding: 76px;
  border-radius: 8px;
  background: var(--contact-bg);
  color: #f8fbfa;
}

.contact-card .eyebrow {
  color: var(--contact-accent);
}

.contact-card > div:first-child > p:last-child {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--contact-copy);
  font-size: 17px;
}

.contact-details {
  border-top: 1px solid rgb(255 255 255 / 22%);
}

.contact-details > * {
  display: block;
  padding: 19px 2px;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  margin-bottom: 4px;
  color: #b9d2cf;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 17px;
  font-weight: 600;
}

.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-block: 58px 80px;
}

.legal-heading {
  grid-column: 1 / -1;
  padding-bottom: 18px;
}

.legal-heading .eyebrow {
  margin-bottom: 12px;
}

.legal-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.legal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-card-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.summary-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.legal-content {
  padding: 2px 22px 24px 61px;
  color: var(--muted);
  font-size: 14px;
}

.legal-content p {
  margin: 0 0 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.privacy-main {
  min-height: 70vh;
}

.privacy-hero {
  padding-block: clamp(90px, 12vw, 150px) 70px;
  border-bottom: 1px solid var(--line);
}

.privacy-hero .eyebrow {
  margin-bottom: 20px;
}

.privacy-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(58px, 8vw, 108px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.privacy-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding-block: 70px 130px;
}

.privacy-block {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: 0 16px 48px var(--shadow);
}

.privacy-block h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.privacy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-block p + p,
.privacy-block p + ul {
  margin-top: 18px;
}

.privacy-block ul {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
  padding-left: 22px;
  color: var(--muted);
}

.privacy-block li {
  padding-left: 6px;
  line-height: 1.75;
}

.privacy-block li::marker {
  color: var(--petrol);
}

.privacy-block a {
  color: var(--petrol-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.privacy-block a:hover {
  color: var(--petrol);
}

.mobile-quicklinks {
  display: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 28px;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > div {
  display: flex;
  gap: 24px;
}

.footer-inner a:hover {
  color: var(--petrol);
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-imprint {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 90px 70px;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .panel-kicker {
    grid-column: 1 / -1;
    margin-bottom: 45px;
  }

  .panel-meta {
    justify-content: flex-end;
  }

  .teaching-grid,
  .online-grid,
  .contact-card {
    gap: 60px;
  }

  .contact-card {
    padding: 56px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 36px, 620px);
  }

  .site-header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .theme-label {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    gap: 42px;
    padding-block: 70px 50px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-panel {
    display: block;
    padding: 30px;
  }

  .panel-kicker {
    margin-bottom: 45px;
  }

  .panel-meta {
    justify-content: flex-start;
    margin-top: 40px;
  }

  .intro-grid,
  .section-heading,
  .teaching-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 8px;
  }

  .section {
    padding-block: 90px;
  }

  .privacy-hero {
    padding-block: 74px 46px;
  }

  .privacy-content {
    gap: 12px;
    padding-block: 44px 90px;
  }

  .privacy-block {
    padding: 26px 22px;
  }

  .privacy-block p {
    font-size: 15px;
    line-height: 1.72;
  }

  .section-heading {
    gap: 26px;
    margin-bottom: 50px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-list li,
  .offer-list li:nth-child(even) {
    padding: 28px 0;
    border-right: 0;
  }

  .teaching-section {
    padding-block: 90px;
  }

  .teaching-grid {
    gap: 50px;
  }

  .online-grid {
    gap: 48px;
  }

  .mobile-quicklinks {
    position: fixed;
    z-index: 40;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--header-bg);
    box-shadow: 0 16px 45px rgb(0 0 0 / 20%);
    backdrop-filter: blur(16px);
  }

  .mobile-quicklinks a {
    display: grid;
    min-height: 62px;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-quicklinks a + a {
    border-left: 1px solid var(--line);
  }

  .mobile-quicklinks a:hover,
  .mobile-quicklinks a:focus-visible {
    background: var(--accent-soft);
    color: var(--petrol-dark);
  }

  .quicklink-icon {
    width: 20px;
    height: 20px;
    color: var(--petrol);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .contact-card {
    gap: 48px;
    padding: 42px 28px;
  }

  .legal {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-heading {
    margin-bottom: 20px;
  }

  .legal-card + .legal-card {
    margin-top: 14px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 460px) {
  .brand-copy {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle {
    min-width: 40px;
    justify-content: center;
    padding-inline: 9px;
  }

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

  .section-heading h2,
  .teaching-copy h2,
  .online-copy h2,
  .contact-card h2 {
    font-size: 40px;
  }

  .offer-list li {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }
}

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

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

@media (forced-colors: active) {
  .trial-highlight {
    color: LinkText;
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  .trial-highlight::after {
    background: currentColor;
  }
}


.data {
  color: #70c3bc;
}

.data {
  color: #0f5b5d;
}

.data:hover {
  text-decoration: underline;
}
