/* Trovaro landing page — design handoff "1a, freundlich & verspielt".
   Values are taken 1:1 from the high-fidelity prototype
   (design_handoff_trovaro_landingpage_1a/trovaro-landingpage-1a.html). */

/* ============================== Fonts ============================== */
/* Self-hosted woff2 (fontsource, latin subset — covers German). */

@font-face {
  font-family: "Baloo 2";
  src: url("/assets/sites/trovaro/baloo-2-latin-wght-normal-2ef09f45.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/sites/trovaro/nunito-sans-latin-wght-normal-9af67378.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/sites/trovaro/poppins-latin-700-normal-331fbf55.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================== Tokens ============================== */

body.public-site--trovaro {
  --cream: #f7efe0;
  --panel: #ffffff;
  --rose: #ebd6d2;
  --wine: #7a1e38;
  --wine2: #5c1428;
  --gold: #e1be72;
  --gold2: #c9a24e;
  --ink: #3a1220;
  --body: #5a4a44;
  --muted: #9a8379;
  --hfont: "Baloo 2", sans-serif;
  --bfont: "Nunito Sans", sans-serif;
  --kfont: "Poppins", sans-serif;

  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--bfont);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.public-site--trovaro a {
  color: var(--wine);
  text-decoration: none;
}

.public-site--trovaro a:hover {
  color: var(--wine2);
}

.tv-site {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--cream);
}

/* Shared type + building blocks */

.tv-kicker {
  font-family: var(--kfont);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--wine);
}

.tv-h2 {
  font-family: var(--hfont);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  margin: 8px 0 0;
}

.tv-h3 {
  font-family: var(--hfont);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 8px;
}

.tv-section-head {
  text-align: center;
  margin-bottom: 38px;
}

.tv-section-head__sub {
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  margin-top: 8px;
}

.tv-card {
  background: var(--panel);
  border: 1px solid rgba(122, 30, 56, 0.1);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(90, 20, 40, 0.06);
}

.tv-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}

.tv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--wine2);
  font-weight: 800;
  border-radius: 12px;
  cursor: pointer;
}

.tv-btn:hover {
  background: var(--gold2);
  color: var(--wine2);
}

.tv-btn--nav {
  gap: 8px;
  font-size: 15px;
  padding: 11px 20px;
  box-shadow: 0 6px 16px rgba(90, 20, 40, 0.18);
}

.tv-btn--hero {
  font-size: 17px;
  padding: 16px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(90, 20, 40, 0.22);
}

.tv-btn--pricing {
  font-size: 18px;
  padding: 17px 34px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(90, 20, 40, 0.22);
}

.tv-wordmark {
  font-family: var(--kfont);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 22px;
  color: #f7efe0;
}

/* ============================== Header ============================== */

.tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 40px;
  background: var(--wine2);
}

.tv-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-header__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px var(--gold);
}

.tv-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  font-weight: 700;
  font-size: 15px;
}

.tv-header__nav a {
  color: #ead6d2;
}

.tv-header__nav a:hover {
  color: #ffffff;
}

.tv-header__nav a.tv-btn {
  color: var(--wine2);
}

/* ============================== Hero ============================== */

.tv-hero {
  position: relative;
  padding: 64px 40px 56px;
  background: radial-gradient(120% 90% at 82% 20%, #f4e2dc 0%, var(--cream) 55%);
  overflow: hidden;
}

.tv-hero__dot {
  position: absolute;
  border-radius: 50%;
}

.tv-hero__dot--1 {
  width: 14px;
  height: 14px;
  background: var(--gold);
  top: 70px;
  left: 44%;
}

.tv-hero__dot--2 {
  width: 10px;
  height: 10px;
  background: var(--wine);
  opacity: 0.25;
  top: 150px;
  left: 38%;
}

.tv-hero__dot--3 {
  width: 18px;
  height: 18px;
  background: var(--gold2);
  opacity: 0.5;
  bottom: 60px;
  left: 52%;
}

.tv-hero__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.tv-hero__content {
  flex: 1;
}

.tv-hero__content .tv-kicker {
  margin-bottom: 18px;
}

.tv-hero__title {
  font-family: var(--hfont);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 20px;
}

.tv-hero__title > span {
  display: block;
}

.tv-hero__text {
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 30px;
  max-width: 480px;
}

.tv-hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tv-hero__microcopy {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.tv-hero__visual {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.tv-hero__circle {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--wine);
  opacity: 0.1;
  top: 30px;
}

.tv-hero__mascot {
  width: 360px;
  height: auto;
  position: relative;
  filter: drop-shadow(0 24px 30px rgba(58, 18, 32, 0.22));
}

@keyframes tv-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .tv-hero__mascot {
    animation: tv-float 6s ease-in-out infinite;
  }
}

/* ============================== Features ============================== */

.tv-features {
  padding: 60px 40px;
}

.tv-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tv-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ============================== Kategorien & Archive ============================== */

.tv-categories {
  padding: 56px 40px;
  background: var(--rose);
}

.tv-categories__inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.tv-categories__content {
  flex: 1;
}

.tv-categories__content .tv-kicker {
  margin-bottom: 14px;
}

.tv-categories__content .tv-h2 {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.tv-categories__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 22px;
  max-width: 460px;
}

.tv-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 480px;
}

.tv-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--panel);
  border: 1px solid rgba(122, 30, 56, 0.16);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 14px;
  color: var(--wine);
}

.tv-browser {
  width: 520px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(58, 18, 32, 0.28);
  border: 1px solid rgba(122, 30, 56, 0.12);
  background: #fff;
}

.tv-browser__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #e7c7c2;
}

.tv-browser__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.tv-browser__dot--red {
  background: #e5645b;
}

.tv-browser__dot--yellow {
  background: #e8b84b;
}

.tv-browser__dot--green {
  background: #5fb56a;
}

.tv-browser__shot {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================== Trovaro wächst mit dir ============================== */

.tv-growth {
  padding: 64px 44px;
  background: var(--cream);
}

.tv-growth__intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tv-growth__intro .tv-h2 {
  line-height: 1.12;
  margin: 10px 0 18px;
}

.tv-growth__quote {
  font-family: var(--hfont);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.38;
  color: var(--wine);
  margin: 0 0 18px;
  font-style: italic;
}

.tv-growth__text {
  font-size: 17px;
  line-height: 1.62;
  color: var(--body);
}

/* Diagram card */

.tv-diagram {
  position: relative;
  background: #eedcd2;
  border: 1px solid rgba(122, 30, 56, 0.12);
  border-radius: 20px;
  padding: 46px 34px;
  box-shadow: 0 20px 50px rgba(90, 20, 40, 0.1);
  margin-top: 38px;
  overflow-x: auto;
}

.tv-diagram__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}

.tv-diagram__columns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 110px;
}

.tv-diagram__column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-diagram__badge {
  font-family: var(--kfont);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 18px;
  color: var(--wine);
  margin-bottom: 20px;
  background: var(--gold);
  border: 2px solid var(--gold2);
  border-radius: 50%;
  padding: 12px 30px;
}

.tv-diagram__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2.5px solid transparent;
  border-radius: 18px;
  padding: 12px;
}

.tv-diagram__frame--stack {
  gap: 44px;
}

.tv-diagram__caption {
  text-align: center;
  margin-top: 36px;
  font-family: var(--hfont);
  font-style: italic;
  font-size: 20px;
  color: var(--wine);
}

/* Archive card (pill header + category list) */

.tv-arch {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 250px;
}

.tv-arch__head {
  background: var(--wine);
  border-radius: 14px 14px 0 0;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(78, 17, 34, 0.22);
}

.tv-arch__head--ring {
  box-shadow: 0 0 0 2.5px var(--gold2), 0 8px 20px rgba(78, 17, 34, 0.25);
}

.tv-arch__eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #e8c9c5;
}

.tv-arch__name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.tv-arch__body {
  background: #fff;
  border: 1.5px solid rgba(122, 30, 56, 0.2);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 0 0 4px;
  overflow: hidden;
}

.tv-arch__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  border-bottom: 1.5px solid rgba(122, 30, 56, 0.16);
  background: rgba(122, 30, 56, 0.03);
}

.tv-arch__header-row span {
  font-weight: 800;
  color: var(--wine2);
  font-size: 18px;
}

.tv-arch__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(122, 30, 56, 0.09);
}

.tv-arch__row:last-child {
  border-bottom: none;
}

.tv-arch__row--hl {
  padding: 8px 10px;
  margin: 5px 8px;
  border: 2.2px solid var(--wine);
  border-radius: 9px;
  background: #fff;
}

.tv-arch__cat {
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--wine);
  font-size: 13.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tv-arch__row--hl .tv-arch__cat {
  font-weight: 800;
  color: var(--wine2);
}

.tv-arch__count {
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
}

/* Spiegel + Energie */

.tv-mirror {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  margin: 42px auto 0;
  max-width: 960px;
}

.tv-mirror__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
}

.tv-mirror__emblem {
  width: 132px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 20px rgba(58, 18, 32, 0.18));
}

.tv-mirror__title {
  font-family: var(--hfont);
  font-weight: 800;
  font-size: 25px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

.tv-mirror__text {
  font-size: 16px;
  line-height: 1.62;
  color: var(--body);
  margin: 0 0 20px;
}

.tv-mirror__text p {
  margin: 0;
}

.tv-mirror__text strong {
  color: var(--wine);
}

.tv-mirror__points {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tv-mirror__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 600;
}

.tv-mirror__bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.tv-energy {
  background: #fff;
  border: 1px solid rgba(122, 30, 56, 0.12);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 14px 34px rgba(90, 20, 40, 0.08);
}

.tv-energy__title {
  font-family: var(--kfont);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.tv-energy__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.tv-energy__row--top {
  margin-bottom: 0;
}

.tv-energy__label {
  min-width: 92px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.tv-energy__row--top .tv-energy__label {
  font-weight: 800;
  color: var(--wine2);
}

.tv-energy__track {
  flex: 1;
  height: 10px;
  border-radius: 6px;
  background: rgba(122, 30, 56, 0.1);
  overflow: hidden;
}

.tv-energy__bar {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: var(--wine);
}

.tv-energy__bar--gold {
  background: var(--gold);
}

.tv-energy__value {
  min-width: 40px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--wine);
}

.tv-energy__row--top .tv-energy__value {
  font-weight: 800;
  color: var(--wine2);
}

.tv-energy__footnote {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 16px;
}

/* ============================== So funktioniert's ============================== */

.tv-steps {
  padding: 56px 40px;
  background: var(--rose);
}

.tv-steps .tv-h2 {
  margin: 0;
}

.tv-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tv-step {
  border: none;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(90, 20, 40, 0.08);
  position: relative;
}

.tv-step .tv-feature__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.tv-step__number {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--muted);
}

/* ============================== Express-Notizen ============================== */

.tv-express {
  padding: 56px 40px;
}

.tv-express__banner {
  display: flex;
  gap: 20px;
  align-items: center;
  background: linear-gradient(120deg, var(--wine) 0%, var(--wine2) 100%);
  border-radius: 22px;
  padding: 28px 40px;
  box-shadow: 0 20px 50px rgba(90, 20, 40, 0.24);
}

.tv-express__icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-express__content {
  flex: 1;
}

.tv-express__title {
  font-family: var(--hfont);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 2px;
}

.tv-express__text {
  font-size: 16px;
  line-height: 1.55;
  color: #f3dad9;
  max-width: 640px;
}

.tv-express__card {
  background: var(--panel);
  border-radius: 16px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: 345px;
  box-sizing: border-box;
  align-self: stretch;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.tv-express__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-express__card-title {
  font-family: var(--hfont);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.tv-express__card-sub {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}

/* ============================== FAQ ============================== */

.tv-faq {
  padding: 56px 40px;
  background: var(--rose);
}

.tv-faq .tv-section-head {
  margin-bottom: 32px;
}

.tv-faq .tv-h2 {
  margin: 2px 0 0;
}

.tv-faq__kicker {
  font-family: var(--kfont);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 24px;
  line-height: 1;
  color: var(--wine);
}

.tv-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.tv-faq__item {
  background: #fff;
  border: 1px solid rgba(122, 30, 56, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.tv-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  list-style: none;
}

.tv-faq__item summary::-webkit-details-marker {
  display: none;
}

/* Arrow indicator */
.tv-faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2.2px solid var(--wine);
  border-bottom: 2.2px solid var(--wine);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-right: 4px;
}

.tv-faq__item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .tv-faq__item summary::after {
    transition: none;
  }
}

.tv-faq__answer {
  padding: 0 20px 16px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

.tv-faq__answer p {
  margin: 0;
}

/* ============================== Preise ============================== */

.tv-pricing {
  padding: 64px 40px;
}

.tv-pricing__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.tv-pricing__emblem {
  width: 190px;
  height: 190px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 24px rgba(58, 18, 32, 0.25));
}

.tv-pricing__card {
  max-width: 560px;
  background: var(--panel);
  border: 1px solid rgba(122, 30, 56, 0.1);
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(90, 20, 40, 0.1);
}

.tv-pricing__title {
  font-family: var(--hfont);
  font-weight: 800;
  font-size: 40px;
  color: var(--ink);
  margin: 10px 0 4px;
}

.tv-pricing__text {
  font-size: 17px;
  color: var(--body);
  margin: 0 0 26px;
}

.tv-pricing__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 340px;
  margin: 0 auto 28px;
}

.tv-pricing__point {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}

.tv-pricing__point svg {
  flex-shrink: 0;
}

/* ============================== Footer ============================== */

.tv-footer {
  padding: 40px;
  background: var(--wine2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tv-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-footer__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px var(--gold);
}

.tv-wordmark--footer {
  font-size: 19px;
  color: #fff;
}

.tv-footer__tagline {
  font-size: 13px;
  color: #e0b7b4;
}

.tv-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.tv-footer__nav a {
  color: #e7c9c6;
}

.tv-footer__nav a:hover {
  color: #ffffff;
}

/* ============================== Legal pages ============================== */

.tv-legal {
  padding: 56px 40px;
  max-width: 820px;
  margin: 0 auto;
}

.tv-legal__title {
  font-family: var(--hfont);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  margin: 0 0 24px;
}

.tv-legal .rich-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

/* ============================== Responsive ============================== */

@media (max-width: 1024px) {
  .tv-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tv-categories__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .tv-browser {
    width: 100%;
  }

  .tv-express__banner {
    flex-wrap: wrap;
  }

  .tv-express__card {
    width: 100%;
    align-self: auto;
  }
}

@media (max-width: 860px) {
  .tv-hero {
    padding: 48px 24px 40px;
  }

  .tv-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tv-hero__title {
    font-size: 32px;
  }

  .tv-hero__visual {
    width: 100%;
  }

  .tv-hero__circle {
    width: 250px;
    height: 250px;
    top: 20px;
  }

  .tv-hero__mascot {
    width: 270px;
  }

  .tv-features,
  .tv-categories,
  .tv-steps,
  .tv-express,
  .tv-faq,
  .tv-pricing {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tv-growth {
    padding: 48px 18px;
  }

  .tv-h2 {
    font-size: 28px;
  }

  /* The growth diagram must stay readable on phones: the columns stack,
     the cards themselves keep their size. */
  .tv-diagram {
    padding: 30px 16px;
  }

  .tv-diagram__columns {
    gap: 48px;
  }

  .tv-mirror {
    grid-template-columns: 1fr;
  }

  .tv-steps__grid {
    grid-template-columns: 1fr;
  }

  .tv-express__banner {
    padding: 24px;
  }

  .tv-pricing__inner {
    flex-direction: column;
  }

  .tv-pricing__card {
    padding: 32px 24px;
  }

  .tv-header {
    padding: 16px 24px;
  }

  .tv-footer {
    padding: 32px 24px;
  }
}

@media (max-width: 560px) {
  .tv-features__grid {
    grid-template-columns: 1fr;
  }
}
