@font-face {
  font-family: "PP Right Grotesk Narrow";
  src: url("/alexandra-meta-assets/fonts/pp-right-grotesk-narrow-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "SCTO-Grotesk-A";
  src: url("/alexandra-meta-assets/fonts/scto-grotesk-a-light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal Mono";
  src: url("/alexandra-meta-assets/fonts/pp-neue-montreal-mono-book.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal Mono";
  src: url("/alexandra-meta-assets/fonts/pp-neue-montreal-mono-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #eeeeee;
  --grey-dark: #d8d8d8;
  --blue: #dae4f1;
  --burgundy: #702b35;
  --green: #274640;
  --mauve: #af8790;
  --accent: var(--burgundy);
  --accent-ink: #ffffff;
  --text-soft: #515151;
  --line: rgba(0, 0, 0, 0.14);
  --display: "PP Right Grotesk Narrow", "Arial Narrow", sans-serif;
  --body: "SCTO-Grotesk-A", "Helvetica Neue", Arial, sans-serif;
  --mono: "PP Neue Montreal Mono", "Courier New", monospace;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(72px, 9vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.theme-green {
  --accent: var(--green);
}

body.theme-mauve {
  --accent: var(--mauve);
  --accent-ink: var(--black);
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-160%);
}

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

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px var(--gutter);
  color: var(--white);
  background: var(--black);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.announcement strong {
  color: #d8aab4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100%, var(--max));
  min-height: 66px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: auto;
  height: 17px;
  object-fit: contain;
}

.header-note {
  margin-left: auto;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border: 1px solid var(--black);
  border-radius: 2px;
  color: var(--white);
  background: var(--black);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button::after {
  content: "→";
  font-size: 16px;
  line-height: 0;
}

.button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--black);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-small {
  min-height: 42px;
  padding: 12px 17px;
  font-size: 9px;
}

.hero {
  min-height: min(760px, calc(100svh - 102px));
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(540px, 1.13fr);
  background: var(--grey);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(56px, 7vw, 104px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-copy-inner {
  width: min(100%, 590px);
  margin-left: auto;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9.5ch;
  margin: 17px 0 22px;
  font-family: var(--display);
  font-size: clamp(54px, 6.5vw, 92px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--accent);
}

@media (min-width: 901px) {
  .hero-compact .hero-copy {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-compact h1 {
    max-width: 11.5ch;
    font-size: clamp(48px, 4.8vw, 66px);
  }

  .hero-compact .hero-buyline {
    margin-top: 22px;
  }

  .hero-compact .hero-actions {
    margin-top: 18px;
  }

  .hero-compact .hero-facts {
    margin-top: 22px;
  }
}

.hero-lede {
  max-width: 47ch;
  margin: 0;
  color: #292929;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.hero-buyline {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-price {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-price-note {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-facts li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(200px, 0.8fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px 8px 8px 0;
  background: var(--grey);
}

.hero-media figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}

.hero-media figure:first-child {
  grid-row: 1 / 3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 92px;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item b {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item span {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 13px;
}

.section {
  padding: var(--section) var(--gutter);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-grey {
  background: var(--grey);
}

.section-blue {
  background: var(--blue);
}

.section-dark {
  color: var(--white);
  background: var(--green);
}

.section-accent {
  color: var(--accent-ink);
  background: var(--accent);
}

.section-dark .eyebrow,
.section-accent .eyebrow {
  color: inherit;
  opacity: 0.72;
}

.section-dark .section-lede,
.section-accent .section-lede {
  color: inherit;
  opacity: 0.78;
}

.section-head {
  max-width: 880px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  max-width: 13ch;
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 6.2vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.center .section-title {
  margin-inline: auto;
}

.section-title.wide {
  max-width: 18ch;
}

.section-lede {
  max-width: 61ch;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
}

.center .section-lede {
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 9vw, 148px);
  align-items: start;
}

.intro-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 650px;
}

.intro-copy p {
  margin: 0 0 22px;
  color: #262626;
  font-size: clamp(18px, 1.55vw, 22px);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.feature-grid {
  margin-top: clamp(42px, 6vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 270px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section-grey .feature-card {
  background: rgba(255, 255, 255, 0.68);
}

.section-blue .feature-card {
  background: rgba(255, 255, 255, 0.74);
}

.feature-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 34px 0 12px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.comparison-grid {
  margin-top: clamp(44px, 6vw, 78px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.choice-card {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.choice-card.featured {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.choice-card .choice-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-card h3 {
  max-width: 11ch;
  margin: 54px 0 18px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.choice-card p {
  max-width: 47ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.choice-card.featured p {
  color: inherit;
  opacity: 0.82;
}

.choice-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.choice-list li {
  padding-top: 10px;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-grid {
  margin-top: clamp(44px, 6vw, 78px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.product-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid.five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-grid.five > .product-card {
  grid-column: span 2;
}

.product-grid.five > .product-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-card-media {
  position: relative;
  width: 100%;
  max-height: min(65svh, 620px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--grey);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.025);
}

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--black);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card-info {
  display: block;
  padding: 20px 0 8px;
}

.product-card-type {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card-title {
  display: block;
  margin: 8px 0 3px;
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.product-card-desc {
  display: block;
  min-height: 46px;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.product-card-bottom {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-price {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-cta {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: var(--black);
}

.image-band figure {
  position: relative;
  min-height: 420px;
  max-height: min(65svh, 680px);
  margin: 0;
  overflow: hidden;
  background: #222;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: center;
}

.editorial-media {
  position: relative;
  max-height: min(65svh, 720px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d5d5d5;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy h2 {
  max-width: 10ch;
  margin: 17px 0 24px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.editorial-copy p {
  max-width: 49ch;
  margin: 0 0 18px;
  font-size: 18px;
}

.spec-list {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid currentColor;
}

.spec-list li {
  padding: 16px 0;
  border-bottom: 1px solid currentColor;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}

.spec-list b {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.spec-list span {
  font-size: 15px;
}

.manifesto {
  text-align: center;
}

.manifesto blockquote {
  max-width: 18ch;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(50px, 7.5vw, 106px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.manifesto p {
  max-width: 56ch;
  margin: 28px auto 0;
  font-size: 18px;
  opacity: 0.8;
}

.reviews-section {
  overflow: hidden;
}

.reviews-head .section-lede {
  max-width: 62ch;
  margin-right: auto;
  margin-left: auto;
}

.review-grid {
  margin: clamp(42px, 5vw, 66px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.review-grid > li {
  min-width: 0;
  display: flex;
}

.review-card {
  width: 100%;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-stars {
  color: var(--accent);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.13em;
}

.review-score {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-card h3 {
  margin: 30px 0 16px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 0;
  flex: 1;
}

.review-card blockquote p {
  margin: 0;
  font-size: 18px;
  line-height: 1.48;
}

.review-footer {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-footer > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.review-footer cite,
.review-footer span,
.review-product {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-footer cite {
  font-style: normal;
  font-weight: 700;
}

.review-footer span {
  color: var(--text-soft);
}

.review-product {
  margin: 8px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.offer {
  padding: clamp(64px, 8vw, 112px) var(--gutter);
  color: var(--white);
  background: var(--black);
}

.offer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
}

.offer-media {
  max-height: min(65svh, 650px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1a1a;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer .eyebrow {
  color: #d8aab4;
}

.offer h2 {
  max-width: 10ch;
  margin: 16px 0 22px;
  font-family: var(--display);
  font-size: clamp(50px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.offer p {
  max-width: 49ch;
  margin: 0;
  color: #d0d0d0;
  font-size: 18px;
}

.offer-meta {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.offer-price {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.offer-note {
  color: #b6b6b6;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer .button {
  margin-top: 26px;
  border-color: var(--white);
  color: var(--black);
  background: var(--white);
}

.offer .button:hover {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}

.policy-line {
  max-width: 56ch;
  margin-top: 19px;
  color: #9f9f9f;
  font-size: 12px;
}

.policy-line a {
  text-underline-offset: 3px;
}

.faq-wrap {
  width: min(100%, 920px);
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 24px;
  transform: translateY(-50%);
}

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

.faq-answer {
  max-width: 66ch;
  padding: 0 54px 25px 0;
  color: var(--text-soft);
  font-size: 16px;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 60px var(--gutter) 110px;
  border-top: 1px solid #262626;
  color: #b8b8b8;
  background: var(--black);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
}

.footer-logo {
  width: auto;
  height: 17px;
  filter: invert(1);
}

.footer-copy {
  max-width: 64ch;
  margin: 20px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  text-underline-offset: 3px;
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-sticky.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

.mobile-sticky-meta {
  min-width: 0;
}

.mobile-sticky-meta b {
  display: block;
  overflow: hidden;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-sticky-meta span {
  display: block;
  margin-top: 4px;
  color: #bdbdbd;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-sticky .button {
  min-height: 44px;
  margin-left: auto;
  padding: 11px 15px;
  border-color: var(--white);
  color: var(--black);
  background: var(--white);
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
  }

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

  .review-grid > li:nth-child(3):last-child {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }

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

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

  .product-grid.five > .product-card {
    grid-column: auto;
  }

  .product-grid.five > .product-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .product-grid.five > .product-card:last-child {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .header-note {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 590px;
    padding-top: 70px;
    padding-bottom: 64px;
  }

  .hero-copy-inner {
    width: 100%;
    margin: 0;
  }

  .hero h1 {
    max-width: 10.5ch;
  }

  .hero-media {
    min-height: 620px;
    padding: 8px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .editorial-grid,
  .offer-inner {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 720px;
  }

  .editorial-media,
  .offer-media {
    width: min(100%, 650px);
  }

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

  .image-band figure {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }

  .header-inner {
    min-height: 60px;
  }

  .brand-mark img {
    height: 14px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero-copy {
    min-height: 0;
    padding: 52px var(--gutter) 45px;
  }

  .hero h1 {
    margin-top: 13px;
    font-size: clamp(48px, 16vw, 70px);
  }

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

  .hero-actions {
    width: 100%;
  }

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

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-media {
    min-height: 500px;
    grid-template-columns: minmax(0, 1.45fr) minmax(105px, 0.72fr);
    gap: 5px;
    padding: 5px;
  }

  .hero-media figcaption {
    display: none;
  }

  .trust-item {
    min-height: 86px;
    padding: 18px 14px;
  }

  .section-title {
    font-size: clamp(43px, 13vw, 62px);
  }

  .intro-grid {
    gap: 34px;
  }

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

  .feature-card {
    min-height: 235px;
  }

  .comparison-grid,
  .product-grid,
  .product-grid.two,
  .product-grid.four,
  .product-grid.five {
    grid-template-columns: 1fr;
  }

  .product-grid.five > .product-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .choice-card {
    min-height: 350px;
  }

  .product-card-media {
    max-height: 62svh;
  }

  .product-card-desc {
    min-height: 0;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 62svh;
  }

  .editorial-media,
  .offer-media {
    max-height: 62svh;
  }

  .spec-list li {
    grid-template-columns: 96px 1fr;
  }

  .manifesto blockquote {
    font-size: clamp(46px, 14vw, 74px);
  }

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

  .review-grid > li:nth-child(3):last-child {
    width: 100%;
    grid-column: auto;
  }

  .review-card h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .announcement {
    font-size: 9px;
  }

  .hero-media {
    min-height: 440px;
  }

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

  .trust-item {
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .trust-item:first-child {
    border-top: 0;
  }
}

@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;
  }
}
