:root {
  color-scheme: dark;
  --bg: #0a0706;
  --bg-strong: #050403;
  --surface: #15100e;
  --surface-2: #1d1713;
  --surface-3: #241a16;
  --text: #f4eadc;
  --muted: #bdaea0;
  --muted-2: #8f8176;
  --gold: #c9a45c;
  --gold-soft: #ead19a;
  --red: #8c1f1d;
  --red-soft: #c65349;
  --teal: #5f9a94;
  --line: rgba(244, 234, 220, 0.14);
  --line-strong: rgba(201, 164, 92, 0.36);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --content: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(10, 7, 6, 0.94), rgba(10, 7, 6, 0.98)),
    image-set(url("../assets/noise.svg") type("image/svg+xml")),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(140, 31, 29, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(95, 154, 148, 0.13), transparent 30rem),
    linear-gradient(145deg, rgba(201, 164, 92, 0.05), transparent 40%);
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

input {
  width: 100%;
}

::selection {
  background: rgba(201, 164, 92, 0.32);
  color: var(--text);
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--bg-strong);
  color: var(--text);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.section-shell {
  width: var(--content);
  margin-inline: auto;
}

section[id],
.section-shell[id] {
  scroll-margin-top: 7.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 0.9rem max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(244, 234, 220, 0.08);
  background: rgba(10, 7, 6, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(201, 164, 92, 0.24);
  background: rgba(10, 7, 6, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.7rem;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 2.75rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 46% 38%, rgba(201, 164, 92, 0.12), transparent 56%),
    #050403;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.16) brightness(1.08);
  transform: scale(1.18);
}

.brand__text {
  overflow: hidden;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.18rem);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 2vw, 1.1rem);
  font-size: 0.9rem;
}

.site-nav a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.55rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-cta {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-soft);
  padding-inline: 0.9rem;
}

.site-nav .nav-cta:hover {
  background: rgba(201, 164, 92, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  min-height: calc(100svh - 6.5rem);
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 7vw, 5rem);
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 9vw, 8.4rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.55rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.hero__subtitle {
  max-width: 730px;
  margin: 1.1rem 0 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.2vw, 2.55rem);
  line-height: 1.16;
}

.hero__author {
  margin: 1.35rem 0 0;
  color: var(--text);
  font-size: 1rem;
}

.hero__author span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.84rem;
}

.hero__support {
  max-width: 700px;
  margin: clamp(1.5rem, 3.6vw, 2.25rem) 0 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.6vw, 2.02rem);
  line-height: 1.24;
}

.hero__statement {
  max-width: 660px;
  margin: clamp(1.7rem, 4vw, 2.5rem) 0 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  line-height: 1.2;
}

.hero__offer {
  display: grid;
  max-width: 620px;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.2rem);
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.08), rgba(95, 154, 148, 0.055)),
    rgba(5, 4, 3, 0.36);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.hero__offer .eyebrow {
  margin: 0;
}

.hero__offer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero__offer .hero__status {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__offer strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.78rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button--primary {
  border-color: rgba(234, 209, 154, 0.62);
  background: linear-gradient(135deg, #d5b36b, #9b7334 48%, #6f241f);
  color: #160e0b;
  box-shadow: 0 16px 38px rgba(140, 31, 29, 0.3);
}

.button--primary:hover {
  background: linear-gradient(135deg, #efd18c, #b68842 48%, #832b25);
}

.button--secondary {
  border-color: rgba(244, 234, 220, 0.22);
  background: rgba(244, 234, 220, 0.04);
  color: var(--text);
}

.button--secondary:hover {
  border-color: rgba(201, 164, 92, 0.52);
  background: rgba(201, 164, 92, 0.08);
}

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

.hero__cover {
  position: relative;
  margin: 0;
  justify-self: center;
}

.hero__cover::before,
.hero__cover::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero__cover::before {
  inset: 9% -8% -7% 12%;
  z-index: -2;
  border: 1px solid rgba(201, 164, 92, 0.2);
  background: rgba(140, 31, 29, 0.08);
  transform: rotate(3deg);
}

.hero__cover::after {
  inset: 12% 8% -9% -7%;
  z-index: -3;
  border: 1px solid rgba(95, 154, 148, 0.2);
  background: rgba(95, 154, 148, 0.06);
  transform: rotate(-2deg);
}

.hero__cover img {
  width: min(360px, 72vw);
  height: auto;
  border-radius: 7px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  box-shadow: var(--shadow);
}

.hero__cover figcaption {
  max-width: 23rem;
  margin: 1rem auto 0;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-align: center;
}

.pre-sale-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 7vw, 5rem);
}

.pre-sale-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.pre-sale-hero__content {
  max-width: 760px;
}

.pre-sale-status {
  display: grid;
  max-width: 650px;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.25rem);
  border: 1px solid rgba(198, 83, 73, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(140, 31, 29, 0.12), rgba(201, 164, 92, 0.06)),
    rgba(5, 4, 3, 0.42);
}

.pre-sale-status p {
  margin: 0;
  color: var(--muted);
}

.pre-sale-status .hero__status {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  border-top: 1px solid rgba(244, 234, 220, 0.08);
}

.section--opening {
  background: linear-gradient(180deg, rgba(21, 16, 14, 0.72), rgba(10, 7, 6, 0.28));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 7vw, 5rem);
}

.split-layout--centered {
  align-items: center;
}

.prose {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
}

.prose p {
  margin: 0;
}

.prose p + p {
  margin-top: 1.1rem;
}

.prose h2 + p {
  margin-top: 1.35rem;
}

.prose strong {
  color: var(--text);
  font-weight: 700;
}

.prose--large {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p:last-child {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--narrow {
  max-width: 720px;
}

.pre-sale-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.6rem);
}

.pre-sale-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pre-sale-card {
  min-height: 12rem;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.04), rgba(5, 4, 3, 0.34)),
    rgba(21, 16, 14, 0.72);
}

.pre-sale-card h3 {
  color: var(--gold-soft);
}

.pre-sale-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(244, 234, 220, 0.1);
  background: rgba(244, 234, 220, 0.1);
}

.theme-card {
  min-height: 14.5rem;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(29, 23, 19, 0.94), rgba(17, 13, 11, 0.98)),
    var(--surface);
}

.theme-card h3 {
  color: var(--gold-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
}

.theme-card p {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.section--editorial {
  background:
    linear-gradient(90deg, rgba(140, 31, 29, 0.13), transparent 45%),
    rgba(5, 4, 3, 0.4);
}

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

.editorial-note {
  min-height: 19rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 234, 220, 0.035);
}

.editorial-note span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.editorial-note p {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.24;
}

.quote-band {
  padding-block: clamp(3.8rem, 8vw, 6.2rem);
  border-block: 1px solid rgba(201, 164, 92, 0.18);
  background:
    linear-gradient(180deg, rgba(36, 26, 22, 0.42), rgba(10, 7, 6, 0.92)),
    rgba(10, 7, 6, 0.96);
}

.quote-band__header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(1.6rem, 3.5vw, 2.6rem);
}

.quote-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.quote-band__intro {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.quote-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.85rem;
  margin-top: 0;
}

.quote-rail blockquote {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 9.4rem;
  margin: 0;
  padding: clamp(1.05rem, 2vw, 1.35rem);
  border: 1px solid rgba(244, 234, 220, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.035), rgba(5, 4, 3, 0.4)),
    rgba(5, 4, 3, 0.34);
  color: rgba(244, 234, 220, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 400;
  line-height: 1.36;
}

.quote-rail blockquote p {
  margin: 0;
}

.quote-rail blockquote footer {
  margin-top: 1.2rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-rail blockquote::before {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(180deg, var(--gold-soft), rgba(201, 164, 92, 0));
  content: "";
}

.quote-rail blockquote:first-child {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 19.65rem;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-color: rgba(201, 164, 92, 0.24);
  background:
    linear-gradient(145deg, rgba(201, 164, 92, 0.11), transparent 48%),
    linear-gradient(180deg, rgba(21, 16, 14, 0.78), rgba(5, 4, 3, 0.74));
  color: var(--text);
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.16;
}

.quote-rail blockquote:nth-child(2) {
  grid-column: span 2;
  min-height: 9.4rem;
  border-color: rgba(95, 154, 148, 0.2);
  background:
    linear-gradient(135deg, rgba(95, 154, 148, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(244, 234, 220, 0.035), rgba(5, 4, 3, 0.45));
}

.machine-panel {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(95, 154, 148, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(95, 154, 148, 0.1), rgba(140, 31, 29, 0.1)),
    rgba(21, 16, 14, 0.74);
  box-shadow: var(--shadow);
}

.machine-panel::before {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.78rem;
  content: "humano :: máquina";
}

.machine-panel p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
}

.machine-panel p + p {
  margin-top: 1rem;
  color: var(--muted);
}

.section--now {
  background:
    linear-gradient(90deg, rgba(201, 164, 92, 0.07), transparent 42%),
    rgba(5, 4, 3, 0.32);
}

.section--not {
  background:
    linear-gradient(90deg, rgba(140, 31, 29, 0.11), transparent 48%),
    rgba(10, 7, 6, 0.68);
}

.not-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-list li {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(140, 31, 29, 0.34);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.34);
  color: var(--muted);
  line-height: 1.45;
}

.positioning-note {
  margin: 1.15rem 0 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.25;
}

.section--audience {
  background: rgba(21, 16, 14, 0.42);
}

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

.audience-block {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.35);
}

.audience-block--inverse {
  border-color: rgba(140, 31, 29, 0.42);
}

.audience-block h3 {
  color: var(--gold-soft);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 0.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.check-list--muted li::before {
  background: var(--red-soft);
}

.author-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 5rem);
}

.author-layout .prose {
  max-width: 760px;
}

.author-photo {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(201, 164, 92, 0.12), rgba(140, 31, 29, 0.12)),
    rgba(5, 4, 3, 0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.author-photo img {
  display: block;
  width: 100%;
  height: clamp(24rem, 46vw, 34rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 31%;
  filter: saturate(0.86) contrast(1.05);
}

.author-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 4, 3, 0.72)),
    linear-gradient(90deg, rgba(10, 7, 6, 0.42), transparent 34%, rgba(10, 7, 6, 0.24));
  content: "";
}

.author-photo figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.launch-strip {
  position: relative;
  padding-block: clamp(2.6rem, 5vw, 4.2rem);
  border-block: 1px solid rgba(201, 164, 92, 0.24);
  background:
    linear-gradient(90deg, rgba(140, 31, 29, 0.22), rgba(201, 164, 92, 0.08), rgba(95, 154, 148, 0.1)),
    rgba(10, 7, 6, 0.84);
  overflow: hidden;
}

.launch-strip::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 50%, rgba(201, 164, 92, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(5, 4, 3, 0.06), rgba(5, 4, 3, 0.34));
  content: "";
}

.launch-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.launch-strip h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.launch-strip__details {
  justify-self: end;
  display: grid;
  width: min(100%, 34rem);
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgba(201, 164, 92, 0.26);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.42);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.launch-strip__details p {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.28;
}

.launch-strip__details .launch-status {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.launch-strip__details .button {
  justify-self: start;
  margin-top: 0.15rem;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.price-list div {
  padding: 0.9rem;
  border: 1px solid rgba(244, 234, 220, 0.13);
  border-radius: 8px;
  background: rgba(244, 234, 220, 0.045);
}

.price-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-list dd {
  margin: 0.35rem 0 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
}

.launch-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-channels li {
  border: 1px solid rgba(244, 234, 220, 0.16);
  border-radius: 999px;
  background: rgba(244, 234, 220, 0.055);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.58rem 0.72rem;
}

.section--print {
  background:
    linear-gradient(120deg, rgba(95, 154, 148, 0.08), transparent 45%),
    rgba(21, 16, 14, 0.36);
}

.print-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border: 1px solid rgba(95, 154, 148, 0.28);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.38);
}

.print-panel .button {
  justify-self: start;
  margin-top: 0.25rem;
}

.section--fragment {
  background: rgba(5, 4, 3, 0.5);
}

.fragment-box {
  max-width: 900px;
  padding: clamp(1.45rem, 4vw, 2.25rem);
  border: 1px solid rgba(201, 164, 92, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(201, 164, 92, 0.08), rgba(140, 31, 29, 0.08)),
    rgba(21, 16, 14, 0.62);
}

.fragment-box h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.fragment-quote {
  max-width: 780px;
  margin: 1.35rem 0 0;
  padding-left: clamp(1rem, 2.5vw, 1.45rem);
  border-left: 2px solid rgba(201, 164, 92, 0.58);
}

.fragment-quote p {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.34;
}

.fragment-quote p + p {
  margin-top: 1rem;
}

.fragment-quote footer {
  margin-top: 1.1rem;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.section--form {
  background:
    linear-gradient(180deg, rgba(10, 7, 6, 0.1), rgba(5, 4, 3, 0.72)),
    rgba(10, 7, 6, 0.95);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.form-copy p:last-child {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.interest-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(21, 16, 14, 0.86);
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label,
.interest-options legend {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input {
  min-height: 3rem;
  border: 1px solid rgba(244, 234, 220, 0.2);
  border-radius: 6px;
  background: rgba(5, 4, 3, 0.52);
  color: var(--text);
  padding: 0.7rem 0.85rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.form-field input:hover,
.form-field input:focus {
  border-color: rgba(201, 164, 92, 0.65);
  background: rgba(5, 4, 3, 0.72);
}

.field-error {
  min-height: 1.2rem;
  color: #ffb6aa;
  font-size: 0.83rem;
}

.interest-options {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(244, 234, 220, 0.14);
  border-radius: 6px;
}

.interest-options label,
.consent-field label {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  color: var(--muted);
  cursor: pointer;
}

.interest-options label span {
  transition: color 180ms ease;
}

.interest-options label.is-highlighted {
  color: var(--text);
}

.interest-options label.is-highlighted span {
  color: var(--gold-soft);
}

.interest-options input,
.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.28rem 0 0;
  accent-color: var(--gold);
}

.consent-field {
  display: grid;
  gap: 0.2rem;
}

.consent-note {
  margin: 0 0 0 1.65rem;
  color: var(--muted-2);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consent-note a {
  color: var(--gold-soft);
  text-underline-offset: 0.18rem;
}

.form-status {
  min-height: 2.8rem;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(244, 234, 220, 0.12);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-success {
  border-color: rgba(95, 154, 148, 0.46);
  background: rgba(95, 154, 148, 0.1);
  color: #c7efea;
}

.form-status.is-error {
  border-color: rgba(198, 83, 73, 0.46);
  background: rgba(140, 31, 29, 0.12);
  color: #ffcdc6;
}

.site-footer {
  padding-block: 1.55rem;
  border-top: 1px solid rgba(244, 234, 220, 0.1);
  background:
    linear-gradient(180deg, rgba(10, 7, 6, 0.96), rgba(5, 4, 3, 0.98)),
    var(--bg-strong);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-footer__copy {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
}

.site-footer__copy strong {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
}

.site-footer__copy span {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-footer a,
.footer-link-button {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(244, 234, 220, 0.12);
  border-radius: 6px;
  background: rgba(244, 234, 220, 0.025);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.footer-link-button {
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.2;
}

.site-footer a:hover,
.footer-link-button:hover {
  border-color: rgba(201, 164, 92, 0.38);
  background: rgba(201, 164, 92, 0.07);
  color: var(--gold-soft);
}

.privacy-page {
  min-height: 100svh;
}

.privacy-main {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.privacy-card {
  max-width: 960px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(21, 16, 14, 0.82);
}

.privacy-card h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.privacy-card section + section {
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
  padding-top: clamp(1.3rem, 3vw, 2rem);
  border-top: 1px solid rgba(244, 234, 220, 0.1);
}

.privacy-card h2 {
  max-width: none;
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.14;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
}

.privacy-card ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1.2rem;
}

.privacy-card li + li {
  margin-top: 0.45rem;
}

.privacy-card a {
  color: var(--gold-soft);
}

.privacy-meta {
  margin-top: -0.4rem;
  color: var(--muted-2) !important;
  font-size: 0.9rem;
}

.privacy-cookie-button {
  margin-top: 0.4rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid rgba(244, 234, 220, 0.12);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.34);
}

.faq-list summary {
  min-height: 3.2rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  list-style-position: inside;
  padding: 0.85rem 1rem;
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.pre-sale-terms {
  max-width: 860px;
}

.pre-sale-terms h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.pre-sale-terms p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  left: clamp(0.75rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: end;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(1rem, 2.4vw, 1.25rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(15, 10, 8, 0.96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.cookie-banner__copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-banner .eyebrow,
.cookie-banner h2,
.cookie-banner p {
  margin: 0;
}

.cookie-banner h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.cookie-banner p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cookie-banner .button {
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.not-found-page {
  min-height: 100svh;
}

.not-found-main {
  display: grid;
  min-height: min(680px, calc(100svh - 12rem));
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.not-found-card {
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(21, 16, 14, 0.84);
  box-shadow: var(--shadow);
}

.not-found-card h1 {
  max-width: none;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.not-found-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.not-found-card a:not(.button) {
  color: var(--gold-soft);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.unsubscribe-page {
  min-height: 100svh;
}

.unsubscribe-main {
  display: grid;
  min-height: min(680px, calc(100svh - 12rem));
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.unsubscribe-card {
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(21, 16, 14, 0.84);
  box-shadow: var(--shadow);
}

.unsubscribe-card h1 {
  max-width: none;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.unsubscribe-card p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.unsubscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1rem;
}

.admin-page {
  background:
    linear-gradient(180deg, rgba(10, 7, 6, 0.95), rgba(5, 4, 3, 0.98)),
    image-set(url("../assets/noise.svg") type("image/svg+xml")),
    var(--bg);
}

.admin-main {
  min-height: 100svh;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.admin-shell {
  width: var(--content);
  margin-inline: auto;
}

.admin-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.4rem, 5vw, 4rem);
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}

.admin-heading h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.admin-heading p:last-child {
  max-width: 680px;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.admin-card,
.admin-panel {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(21, 16, 14, 0.84);
  box-shadow: var(--shadow);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.admin-login h2,
.admin-toolbar h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.admin-login p {
  max-width: 520px;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.admin-login__form {
  display: grid;
  gap: 1rem;
}

.admin-panel {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.admin-toolbar,
.admin-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.admin-toolbar {
  margin-bottom: 1rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-stats article {
  padding: 1rem;
  border: 1px solid rgba(244, 234, 220, 0.1);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.35);
}

.admin-stats span {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.admin-stats p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-filters {
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.26fr) minmax(180px, 0.3fr);
  margin-bottom: 1rem;
}

.form-field select {
  min-height: 3rem;
  width: 100%;
  border: 1px solid rgba(244, 234, 220, 0.2);
  border-radius: 6px;
  background: rgba(5, 4, 3, 0.72);
  color: var(--text);
  padding: 0.7rem 0.85rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(244, 234, 220, 0.1);
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(244, 234, 220, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-table td:nth-child(2),
.admin-table td:nth-child(3) {
  color: var(--text);
}

.admin-table tbody tr:hover {
  background: rgba(244, 234, 220, 0.035);
}

.admin-status-select {
  min-height: 2.4rem;
  width: 100%;
  min-width: 8.5rem;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 6px;
  background: rgba(5, 4, 3, 0.72);
  color: var(--text);
  padding: 0.4rem 0.55rem;
}

.admin-row-actions {
  width: 1%;
  white-space: nowrap;
}

.admin-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  border: 1px solid rgba(198, 83, 73, 0.42);
  border-radius: 6px;
  background: rgba(140, 31, 29, 0.12);
  color: #ffcdc6;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.58rem 0.75rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.admin-delete-button:hover {
  border-color: rgba(255, 182, 170, 0.72);
  background: rgba(140, 31, 29, 0.2);
  color: #ffe0dc;
}

.admin-delete-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.admin-delete-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 1080px) {
  .theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pre-sale-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-notes,
  .quote-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-rail blockquote:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 14rem;
  }

  .quote-rail blockquote:nth-child(2) {
    grid-column: span 2;
  }
}

@media (max-width: 840px) {
  :root {
    --content: min(100vw - 32px, 680px);
  }

  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 0.5rem;
    padding-block: 0.62rem 0.54rem;
    background:
      linear-gradient(180deg, rgba(10, 7, 6, 0.96), rgba(10, 7, 6, 0.88)),
      rgba(10, 7, 6, 0.9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }

  .brand {
    width: 100%;
  }

  .site-nav {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 0.18rem;
    overflow-x: auto;
    padding: 0.42rem 0 0;
    border-top: 1px solid rgba(244, 234, 220, 0.08);
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    justify-content: center;
    min-height: 1.85rem;
    padding: 0.3rem 0.58rem;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
  }

  .site-nav .nav-cta {
    border: 1px solid rgba(201, 164, 92, 0.32);
    background: rgba(201, 164, 92, 0.12);
    padding-inline: 0.42rem;
  }

  .hero,
  .pre-sale-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 3rem 4rem;
  }

  h1 {
    max-width: 9.5ch;
  }

  .hero__cover {
    justify-self: start;
  }

  .hero__cover::before,
  .hero__cover::after {
    display: none;
  }

  .split-layout,
  .author-layout,
  .launch-strip__inner,
  .form-layout,
  .quote-band__header,
  .admin-heading,
  .admin-login,
  .admin-toolbar,
  .admin-filters,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .quote-band__intro {
    max-width: 620px;
  }

  .pre-sale-cards {
    grid-template-columns: 1fr;
  }

  .launch-strip__details {
    justify-self: stretch;
    width: 100%;
  }

  .author-photo {
    max-width: 26rem;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer nav {
    justify-content: flex-start;
    width: 100%;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100vw - 28px, 640px);
  }

  .site-header {
    gap: 0.4rem;
    padding-block: 0.48rem 0.42rem;
  }

  .brand {
    gap: 0.46rem;
  }

  .brand__mark {
    width: 2.15rem;
    border-radius: 8px;
  }

  .brand__text {
    font-size: 0.92rem;
  }

  .site-nav {
    gap: 0.14rem;
    padding-top: 0.34rem;
  }

  .site-nav a {
    min-height: 1.72rem;
    padding: 0.24rem 0.52rem;
    font-size: 0.76rem;
  }

  .site-nav .nav-cta {
    padding-inline: 0.32rem;
  }

  .section {
    padding-block: 3.6rem;
  }

  .hero,
  .pre-sale-hero {
    gap: 1.65rem;
    padding-block: 2.25rem 3.2rem;
  }

  .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.7rem;
  }

  .theme-grid,
  .editorial-notes,
  .quote-rail,
  .pre-sale-cards {
    grid-template-columns: 1fr;
  }

  .theme-card,
  .editorial-note,
  .quote-rail blockquote {
    min-height: auto;
  }

  .quote-rail blockquote:first-child {
    grid-column: span 1;
    min-height: auto;
    font-size: 1.45rem;
    line-height: 1.18;
  }

  .quote-rail blockquote:nth-child(2) {
    grid-column: span 1;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .pre-sale-status {
    padding: 0.9rem;
  }

  .not-found-actions {
    flex-direction: column;
  }

  .not-found-actions .button {
    width: 100%;
  }

  .unsubscribe-actions {
    flex-direction: column;
  }

  .unsubscribe-actions .button {
    width: 100%;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner .button {
    width: 100%;
    white-space: normal;
  }

  h1 {
    font-size: 3.7rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.16rem;
  }

  .hero__subtitle {
    font-size: 1.45rem;
    line-height: 1.22;
  }

  .hero__support {
    font-size: 1.1rem;
    line-height: 1.45;
  }

  .hero__offer {
    gap: 0.5rem;
    margin-top: 1.12rem;
    padding: 0.9rem;
  }

  .hero__offer p {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .hero__statement,
  .section-heading p:last-child,
  .form-copy p:last-child {
    font-size: 1rem;
    line-height: 1.68;
  }

  .section-heading {
    margin-bottom: 1.7rem;
  }

  .prose,
  .prose--large {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .prose p + p {
    margin-top: 1rem;
  }

  .prose h2 + p {
    margin-top: 1.05rem;
  }

  .split-layout,
  .author-layout,
  .form-layout {
    gap: 1.7rem;
  }

  .not-list {
    grid-template-columns: 1fr;
    gap: 0.52rem;
  }

  .positioning-note {
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .author-layout {
    align-items: start;
  }

  .author-photo {
    max-width: min(20rem, 80vw);
  }

  .author-photo img {
    height: auto;
    max-height: 28rem;
  }

  #autor .prose h2 {
    font-size: 2.28rem;
    line-height: 1.07;
  }

  .launch-strip {
    padding-block: 2.85rem;
  }

  .launch-strip__inner {
    gap: 1.2rem;
  }

  .launch-strip h2 {
    max-width: 12ch;
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .launch-strip__details {
    gap: 0.85rem;
    padding: 1rem;
  }

  .launch-strip__details p {
    font-size: 1.12rem;
    line-height: 1.34;
  }

  .launch-channels {
    gap: 0.45rem;
  }

  .launch-channels li {
    padding: 0.52rem 0.64rem;
    font-size: 0.84rem;
  }

  .print-panel .button {
    width: 100%;
  }

  .launch-strip__details .button {
    width: 100%;
  }

  .fragment-box {
    padding: 1.1rem;
  }

  .fragment-box h2 {
    font-size: 1.95rem;
  }

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

  .site-footer {
    padding-block: 1.35rem max(2.2rem, env(safe-area-inset-bottom));
  }

  .site-footer__inner {
    gap: 0.95rem;
  }

  .site-footer__copy {
    gap: 0.16rem;
  }

  .site-footer__copy strong {
    font-size: 1.08rem;
  }

  .site-footer__copy span {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .site-footer a,
  .footer-link-button {
    width: 100%;
    min-height: 2.45rem;
    padding: 0.55rem 0.5rem;
    font-size: 0.84rem;
  }

  .footer-link-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  :root {
    --content: min(100vw - 24px, 640px);
  }

  .site-header {
    gap: 0.34rem;
    padding-block: 0.44rem 0.38rem;
  }

  .brand__mark {
    width: 2.05rem;
  }

  .brand__text {
    max-width: calc(100vw - 92px);
    font-size: 0.86rem;
  }

  .site-nav {
    gap: 0.1rem;
    padding-top: 0.32rem;
  }

  .site-nav a {
    min-height: 1.66rem;
    padding-inline: 0.08rem;
    font-size: 0.72rem;
  }

  .site-nav .nav-cta {
    padding-inline: 0.2rem;
  }

  .section {
    padding-block: 3.15rem;
  }

  .hero {
    padding-block: 2.1rem 3rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero__subtitle {
    font-size: 1.32rem;
  }

  .hero__support {
    font-size: 1.02rem;
  }

  .prose,
  .prose--large {
    font-size: 1rem;
    line-height: 1.7;
  }

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

  #autor .prose h2 {
    font-size: 2.08rem;
  }

  .site-footer nav {
    gap: 0.42rem;
  }

  .site-footer a,
  .footer-link-button {
    min-height: 2.35rem;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
