/* León Motor — all source comments are intentionally in English. */
:root {
  --ink: #101817;
  --ink-soft: #1b2827;
  --paper: #f3efe6;
  --paper-deep: #e6e0d3;
  --white: #fffdf8;
  --red: #ed4a38;
  --red-dark: #c9322b;
  --sage: #aebdb6;
  --muted: #66716e;
  --line: rgba(16, 24, 23, 0.16);
  --line-light: rgba(255, 253, 248, 0.16);
  --shadow: 0 24px 80px rgba(6, 12, 11, 0.14);
  --radius: 1.3rem;
  --container: min(1200px, calc(100% - 3rem));
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

::selection {
  background: var(--red);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #ffb39f;
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  padding-inline: max(1.5rem, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line-light);
  background: rgba(14, 23, 23, 0.76);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-legal {
  height: 72px;
  background: rgba(14, 23, 23, 0.95);
  box-shadow: 0 12px 40px rgba(7, 12, 12, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 3.3rem;
  height: 3.3rem;
  color: currentColor;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand__copy small {
  margin-top: 0.38rem;
  color: var(--sage);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.6rem);
}

.main-nav > a {
  position: relative;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.main-nav > a:hover,
.main-nav > a[aria-current="location"] {
  color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0.75rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

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

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(237, 74, 56, 0.2);
}

.button--primary:hover {
  background: #ff5b46;
  box-shadow: 0 16px 36px rgba(237, 74, 56, 0.3);
}

.button--small {
  min-height: 2.85rem;
  padding: 0.82rem 1.2rem;
}

.button--ghost {
  border-color: rgba(255, 253, 248, 0.34);
  background: transparent;
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--full {
  width: 100%;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.text-link:hover::after {
  opacity: 1;
}

.text-link--dark {
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2.2rem;
  height: 2px;
  background: var(--red);
}

.eyebrow--dark {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  padding-top: var(--header-height);
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    var(--ink);
  background-size: 62px 62px;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 23, 0.97) 0%, rgba(14, 23, 23, 0.64) 48%, rgba(14, 23, 23, 0.12) 100%);
  content: "";
}

.hero__glow {
  position: absolute;
  right: -10%;
  bottom: -45%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 74, 56, 0.22), rgba(237, 74, 56, 0) 65%);
  animation: glow-pulse 7s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: calc(min(920px, 100svh) - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: 1.5rem;
  padding-block: 5rem 7rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: clamp(4.4rem, 6.8vw, 7.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 em {
  display: inline-block;
  font-size: 0.7em;
  line-height: 1.1;
  text-transform: none;
  transform: rotate(-2deg);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 2.25rem;
  color: rgba(255, 253, 248, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.hero__facts {
  max-width: 590px;
  margin: 4.5rem 0 0;
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero__facts > div {
  display: grid;
  gap: 0.15rem;
}

.hero__facts dt {
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.hero__facts dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-width: 680px;
  margin-left: -7rem;
  transform: translateX(4%);
}

.hero__visual > img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.25));
  animation: machine-float 6s ease-in-out infinite;
}

.hero__orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 50%;
}

.hero__orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 20px var(--red);
  content: "";
}

.hero__orbit--one {
  inset: 7% 9% 0 11%;
  animation: spin 19s linear infinite;
}

.hero__orbit--two {
  inset: 19% 19% 12% 21%;
  animation: spin-reverse 14s linear infinite;
}

.issue-stamp {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: 8%;
  width: 118px;
  height: 118px;
  padding: 1.15rem;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: 50%;
  background: rgba(14, 23, 23, 0.72);
  text-align: center;
  transform: rotate(8deg);
  backdrop-filter: blur(10px);
  animation: stamp-float 5s ease-in-out infinite;
}

.issue-stamp::before {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(255, 253, 248, 0.32);
  border-radius: 50%;
  content: "";
}

.issue-stamp span,
.issue-stamp small {
  color: var(--sage);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.issue-stamp strong {
  margin-block: 0.2rem;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.visual-tag {
  position: absolute;
  z-index: 3;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line-light);
  background: rgba(14, 23, 23, 0.7);
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}

.visual-tag--top {
  top: 24%;
  left: 12%;
}

.visual-tag--bottom {
  right: 14%;
  bottom: 9%;
}

.visual-tag i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #7ee2a6;
  box-shadow: 0 0 8px #7ee2a6;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: max(1.5rem, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 253, 248, 0.42);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll span {
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero__scroll span::after {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--red);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

.ticker {
  padding-block: 1rem;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  transform: rotate(-1deg) scale(1.02);
  transform-origin: center;
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 2.3rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.08em;
  animation: ticker 24s linear infinite;
}

.ticker__track i {
  font-family: serif;
  font-style: normal;
  opacity: 0.55;
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 4rem;
}

.section-heading h2,
.pricing h2,
.faq h2,
.contact h2,
.manifesto h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6vw, 6.3rem);
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  max-width: 620px;
}

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

.editorial-card {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.48);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.editorial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.editorial-card__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.editorial-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(7, 15, 14, 0.24));
  content: "";
}

.editorial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.editorial-card:hover .editorial-card__media img {
  transform: scale(1.045);
}

.card-index {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.85);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.editorial-card__body {
  padding: 2rem 2.2rem 2.3rem;
}

.card-kicker {
  margin-bottom: 0.65rem;
  color: var(--red-dark);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.editorial-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

.editorial-card__body > p:last-child {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.manifesto::after {
  position: absolute;
  right: -12%;
  bottom: -40%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255, 253, 248, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255, 253, 248, 0.022), 0 0 0 14vw rgba(255, 253, 248, 0.016);
  content: "";
}

.manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.manifesto__mark {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.11);
  border-radius: 50%;
}

.manifesto__mark::before,
.manifesto__mark::after {
  position: absolute;
  inset: 9%;
  border: 1px dashed rgba(255, 253, 248, 0.13);
  border-radius: 50%;
  content: "";
  animation: spin 22s linear infinite;
}

.manifesto__mark::after {
  inset: 17%;
  border-style: solid;
  animation: spin-reverse 16s linear infinite;
}

.manifesto__mark img {
  position: relative;
  z-index: 1;
  width: 68%;
  color: var(--white);
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.manifesto__mark > span {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 18%;
  padding: 0.7rem 1rem;
  background: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.5;
  transform: rotate(-5deg);
}

.manifesto__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-block: 2rem 2.3rem;
  color: rgba(255, 253, 248, 0.64);
  font-size: 1.05rem;
}

.check-list {
  margin: 0 0 2.7rem;
  padding: 0;
  display: grid;
  list-style: none;
}

.check-list li {
  padding-block: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.88rem;
}

.check-list li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.7rem;
}

.process {
  background: var(--white);
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 4.8rem;
  right: 10%;
  left: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  content: "";
}

.process-list li {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
}

.process-list__number {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.process-list__icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.process-list li:hover .process-list__icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(8deg) scale(1.08);
}

.process-list h3 {
  margin-bottom: 0.7rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.pricing__top {
  margin-bottom: 4rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.carousel-controls {
  display: flex;
  gap: 0.7rem;
}

.carousel-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carousel-controls button:hover:not(:disabled) {
  background: var(--white);
  color: var(--ink);
}

.carousel-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.pricing-carousel {
  width: calc(100vw - max(1.5rem, calc((100vw - 1200px) / 2)));
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.pricing-carousel.is-dragging,
.pricing-carousel.is-dragging * {
  cursor: grabbing !important;
  user-select: none;
}

.pricing-carousel.is-dragging .price-card {
  transform: none;
}

.pricing-track {
  display: flex;
  gap: 1rem;
  user-select: none;
  will-change: transform;
  transition: transform 0.55s var(--ease);
}

.price-card {
  position: relative;
  min-width: clamp(280px, 31vw, 370px);
  min-height: 520px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--ink-soft);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--ease), background 0.3s ease;
}

.price-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 253, 248, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255, 253, 248, 0.02), 0 0 0 40px rgba(255, 253, 248, 0.015);
  content: "";
}

.price-card:hover,
.price-card:focus-within {
  border-color: rgba(255, 253, 248, 0.4);
  background: #22302f;
  transform: translateY(-7px);
}

.price-card--featured {
  border-color: var(--red);
  background: #202b2a;
}

.price-card__badge {
  position: absolute;
  top: 0;
  right: 2rem;
  padding: 0.55rem 0.8rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card__top small {
  font: inherit;
  color: rgba(255, 253, 248, 0.3);
}

.price-card h3 {
  margin-block: 2.3rem 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: rgba(255, 253, 248, 0.55);
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card h3 strong {
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 0.8;
}

.price {
  margin-bottom: 1.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price span {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
}

.price-card ul {
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  list-style: none;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.82rem;
}

.price-card li::before {
  margin-right: 0.65rem;
  color: var(--red);
  content: "—";
}

.button--card {
  width: 100%;
  margin-top: auto;
  justify-content: space-between;
  border-color: rgba(255, 253, 248, 0.28);
  background: transparent;
  color: var(--white);
}

.button--card:hover {
  border-color: var(--red);
  background: var(--red);
}

.carousel-feedback {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, 1200px);
}

.carousel-dots {
  display: flex;
  gap: 0.55rem;
}

.carousel-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 253, 248, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dots button.is-active {
  width: 50px;
  background: var(--red);
}

.carousel-drag-hint {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.carousel-drag-hint span {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.85rem;
}

.pricing__note {
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 248, 0.4);
  font-size: 0.72rem;
}

.quote-section {
  background: var(--red);
  color: var(--white);
}

.quote-section__inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.quote-mark {
  height: 4rem;
  color: rgba(255, 253, 248, 0.3);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.9;
}

.quote-section blockquote {
  max-width: 980px;
  margin: 1.5rem auto 2.5rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.quote-section blockquote em {
  display: block;
  color: #2a1e1b;
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.quote-section__signature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quote-section__signature img {
  width: 54px;
  height: 54px;
  color: var(--white);
  filter: brightness(0) invert(1);
}

.quote-section__signature p {
  margin: 0;
  display: grid;
  text-align: left;
  line-height: 1.2;
}

.quote-section__signature strong {
  letter-spacing: 0.06em;
}

.quote-section__signature span {
  margin-top: 0.3rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.65;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 340px;
  margin-block: 1.5rem 2rem;
  color: var(--muted);
}

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

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

.accordion summary {
  padding-block: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.accordion details[open] summary span {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 680px;
  margin: -0.5rem 3rem 1.7rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44%;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-block: 1.7rem 2rem;
  color: rgba(255, 253, 248, 0.62);
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 420px;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  text-decoration: none;
}

.contact-email span {
  color: var(--red);
}

.contact__meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  color: rgba(255, 253, 248, 0.35);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact__meta span + span::before {
  margin-right: 1.2rem;
  color: var(--red);
  content: "•";
}

.contact-form {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.035);
}

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

.field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.field > span {
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.23);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 3.2rem;
}

.field textarea {
  min-height: 7rem;
  padding-block: 0.8rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 253, 248, 0.33);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
}

.field select option {
  background: var(--ink);
}

.legal-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.7rem;
  line-height: 1.5;
}

.legal-check input {
  width: 18px;
  height: 18px;
  margin: 0.12rem 0 0;
  accent-color: var(--red);
}

.legal-check a {
  color: currentColor;
  text-underline-offset: 3px;
}

.form-footer {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 253, 248, 0.33);
  font-size: 0.67rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: #97e8b7;
  font-size: 0.76rem;
  font-weight: 700;
}

.legal-view {
  min-height: 100vh;
  background: var(--paper);
}

.legal-hero {
  padding-block: calc(var(--header-height) + 6rem) 5rem;
  background: var(--ink);
  color: var(--white);
}

.legal-hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  text-transform: uppercase;
}

.legal-hero > .container > p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  padding-block: 5rem 8rem;
  display: grid;
  grid-template-columns: 220px minmax(0, 800px);
  justify-content: space-between;
  gap: clamp(3rem, 8vw, 8rem);
}

.legal-index {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
  display: grid;
  gap: 0.7rem;
}

.legal-index strong {
  margin-bottom: 0.45rem;
  color: var(--red-dark);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.legal-index a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-index a:hover {
  color: var(--ink);
}

.legal-lead {
  margin-bottom: 4rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.legal-alert {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid #d78c28;
  border-radius: 0.6rem;
  background: #fff1d6;
  color: #573c13;
  font-size: 0.78rem;
}

.legal-content section {
  position: relative;
  padding: 0 0 3.5rem 3.5rem;
  border-left: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-content section:last-of-type {
  margin-bottom: 2rem;
}

.legal-number {
  position: absolute;
  top: 0;
  left: -1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--red-dark);
  font-size: 0.61rem;
  font-weight: 900;
}

.legal-content h2 {
  margin-bottom: 1.4rem;
  font-family: inherit;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: #4f5a57;
  font-size: 0.92rem;
}

.legal-content a:not(.button) {
  color: var(--red-dark);
  font-weight: 700;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

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

.identity-list > div {
  padding-block: 0.8rem;
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.identity-list dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-list dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-table-wrap {
  margin-block: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
}

.legal-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: rgba(255, 253, 248, 0.4);
  font-size: 0.76rem;
  line-height: 1.5;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 0.85rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table-wrap th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-table-wrap tr:last-child td {
  border-bottom: 0;
}

.legal-table-wrap th:last-child,
.legal-table-wrap td:last-child {
  border-right: 0;
}

.cookie-status {
  margin-block: 1.5rem 2rem;
  padding: 1.3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border: 1px solid #6ba57a;
  border-radius: 0.65rem;
  background: #e3f2e4;
}

.cookie-status > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #2e7544;
  color: white;
  font-weight: 900;
}

.cookie-status p {
  margin: 0.3rem 0 0;
  color: #35503c;
  font-size: 0.78rem;
}

.legal-sources {
  margin: -0.5rem 0 2.5rem 3.5rem;
  padding: 1rem 1.2rem;
  display: grid;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(255, 253, 248, 0.44);
}

.legal-sources strong {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.legal-sources a {
  font-size: 0.75rem;
  text-decoration: none;
}

.site-footer {
  background: #080e0e;
  color: var(--white);
}

.site-footer__top {
  padding-block: 4rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer .brand__lockup {
  width: 7.8rem;
  height: auto;
}

.site-footer__top > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.82rem;
}

.site-footer__bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 253, 248, 0.35);
  font-size: 0.64rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.site-footer__bottom a {
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.privacy-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #65ce8a;
  box-shadow: 0 0 8px #65ce8a;
}

.subscribe-dialog {
  width: min(980px, calc(100% - 2rem));
  max-height: min(760px, calc(100svh - 2rem));
  padding: 0;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

.subscribe-dialog[open] {
  display: grid;
  animation: dialog-in 0.42s var(--ease);
}

.subscribe-dialog::backdrop {
  background: rgba(5, 10, 10, 0.76);
  backdrop-filter: blur(8px);
}

.dialog-visual {
  position: relative;
  padding: 2rem;
  display: grid;
  place-content: center;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.dialog-visual::before,
.dialog-visual::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 50%;
  content: "";
}

.dialog-visual::after {
  width: 330px;
  height: 330px;
  border-style: dashed;
}

.dialog-visual img {
  position: relative;
  z-index: 1;
  width: 82%;
  margin: auto;
  color: var(--white);
  filter: brightness(0) invert(1);
}

.dialog-visual p {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.dialog-visual p span {
  display: block;
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.dialog-content {
  position: relative;
  padding: clamp(2rem, 4vw, 3.6rem);
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}

.dialog-close:hover {
  background: var(--ink);
  color: var(--white);
}

.dialog-content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
}

.selected-plan {
  margin-bottom: 1.5rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--red);
  background: var(--paper-deep);
}

.selected-plan > span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.selected-plan p {
  margin: 0.3rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.selected-plan b {
  color: var(--red-dark);
}

.dialog-content .field {
  margin-bottom: 1rem;
}

.dialog-content .field input {
  border-bottom-color: var(--line);
  color: var(--ink);
}

.dialog-content .field input::placeholder {
  color: rgba(16, 24, 23, 0.35);
}

.legal-check--light {
  color: var(--muted);
}

.dialog-note {
  margin-block: 1.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.dialog-content .form-status {
  color: #2e7544;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: 370px;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--red);
  border-radius: 0.35rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.noscript {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff1d6;
  color: #573c13;
  text-align: center;
}

.is-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.is-reveal-ready .reveal--delay {
  transition-delay: 0.12s;
}

.is-reveal-ready .reveal--delay-2 {
  transition-delay: 0.24s;
}

.is-reveal-ready .reveal--delay-3 {
  transition-delay: 0.36s;
}

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

@keyframes machine-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-9px) rotate(-0.4deg); }
}

@keyframes stamp-float {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1120px) {
  :root {
    --container: min(calc(100% - 2.5rem), 1000px);
  }

  .nav-cta {
    display: none;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  }

  .hero__visual {
    min-width: 570px;
    margin-left: -7rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.8vw, 6.2rem);
  }

  .process-list li {
    padding-inline: 0.75rem;
  }

  .price-card {
    min-width: clamp(290px, 41vw, 360px);
  }

  .contact::before {
    left: 40%;
  }

  .contact__grid {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
    --container: min(calc(100% - 2rem), 720px);
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand img {
    width: 2.9rem;
    height: 2.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 1.6rem 1.2rem 2rem;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--line-light);
    background: rgba(14, 23, 23, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding-block: 1rem;
    border-bottom: 1px solid var(--line-light);
    font-size: 0.82rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(14, 23, 23, 0.98) 15%, rgba(14, 23, 23, 0.82) 58%, rgba(14, 23, 23, 0.2));
  }

  .hero__content {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 5rem 3rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 14vw, 6.5rem);
  }

  .hero__visual {
    min-width: 0;
    width: min(100%, 700px);
    margin: -2rem auto 0;
    transform: none;
  }

  .hero__facts {
    margin-top: 3rem;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-heading h2,
  .pricing h2,
  .faq h2,
  .contact h2,
  .manifesto h2 {
    font-size: clamp(3.2rem, 11vw, 5rem);
  }

  .editorial-card {
    min-height: 500px;
  }

  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .manifesto__mark {
    width: min(100%, 480px);
    margin: auto;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 1rem;
  }

  .process-list::before {
    display: none;
  }

  .pricing-carousel {
    width: calc(100vw - 1rem);
  }

  .price-card {
    min-width: clamp(300px, 62vw, 370px);
  }

  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .faq__intro {
    position: static;
  }

  .contact::before {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .legal-index {
    position: static;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer__bottom,
  .site-footer__bottom nav {
    align-items: flex-start;
  }

  .site-footer__bottom {
    padding-block: 1.5rem;
    flex-direction: column;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
  }

  .subscribe-dialog {
    grid-template-columns: 1fr;
  }

  .dialog-visual {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 1.5rem);
  }

  .brand__copy strong {
    font-size: 0.86rem;
  }

  .brand__copy small {
    font-size: 0.5rem;
  }

  .hero__content {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1.4rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: center;
  }

  .hero__facts dd {
    font-size: 0.55rem;
  }

  .hero__visual {
    width: 120%;
    margin-left: -10%;
  }

  .issue-stamp {
    right: 2%;
    width: 92px;
    height: 92px;
  }

  .visual-tag--top {
    left: 5%;
  }

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

  .editorial-card {
    min-height: 460px;
  }

  .editorial-card__media {
    min-height: 250px;
  }

  .editorial-card__body {
    padding: 1.5rem;
  }

  .manifesto__mark > span {
    right: 0;
  }

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

  .process-list li {
    padding-inline: 1.4rem;
  }

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

  .price-card {
    min-width: calc(100vw - 2.5rem);
  }

  .quote-section blockquote {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .form-footer .button {
    width: 100%;
  }

  .legal-hero {
    padding-block: calc(var(--header-height) + 4rem) 3.5rem;
  }

  .legal-layout {
    padding-block: 3.5rem 5rem;
  }

  .legal-content section {
    padding-left: 2rem;
  }

  .legal-sources {
    margin-left: 2rem;
  }

  .identity-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer__top > .button {
    grid-column: auto;
    width: 100%;
  }

  .site-footer__bottom nav {
    display: grid;
  }

  .subscribe-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .dialog-content {
    padding: 1.5rem;
  }

  .dialog-close {
    top: 0.8rem;
    right: 0.8rem;
  }
}

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

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

  .is-reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
