:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: #030404;
  --panel: #0a0b0b;
  --panel-2: #111313;
  --panel-3: #1b1c1c;
  --ink: #f8f6f1;
  --muted: #b9b5ad;
  --soft: #7f7971;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --red: #ff3a35;
  --red-dark: #c92622;
  --amber: #f6b844;
  --green: #32d17f;
  --steel: #9bc7d6;
  --glass: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  --glass-strong: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
.hero-transform-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

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

.interest-app {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 58, 53, 0.09), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(155, 199, 214, 0.08), transparent 30%),
    linear-gradient(180deg, #050606 0%, var(--page) 34%, #020303 100%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 13px max(18px, calc((100vw - 1460px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.82);
  color: white;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.store-nav,
.topbar-actions,
.hero-masthead,
.hero-actions,
.hero-bottom-row,
.feature-pair,
.panel-heading,
.interest-form,
.hero-count-pill,
.catalog-status {
  display: flex;
  align-items: center;
}

.brand-lockup {
  justify-content: center;
  padding: 0 18px;
  font-size: 1.45rem;
  font-weight: 880;
}

.store-nav {
  justify-self: start;
  gap: 27px;
}

.topbar-actions {
  justify-self: end;
  gap: 10px;
}

.store-nav a,
.support-link,
.catalog-status,
.eyebrow {
  font-size: 0.78rem;
}

.store-nav a,
.support-link {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.store-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 58, 53, 0.72);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.store-nav a:hover,
.support-link:hover {
  color: white;
  transform: translateY(-1px);
}

.store-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.catalog-status {
  min-height: 40px;
  gap: 6px;
  padding: 0 13px;
  border: 1px solid rgba(50, 209, 127, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #b8ffd5;
  font-weight: 850;
}

.catalog-status strong {
  color: white;
}

.interest-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) max(22px, calc((100vw - 1460px) / 2)) 32px;
  isolation: isolate;
}

.interest-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.38) 50%, rgba(5, 5, 5, 0.82)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0) 38%),
    url("assets/pic4.png");
  background-position: center;
  background-size: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, rgba(5, 5, 5, 0.88));
  pointer-events: none;
}

.hero-copy {
  max-width: 680px;
  animation: hero-copy-in 900ms cubic-bezier(0.18, 0.88, 0.32, 1.08) both 120ms;
}

.hero-masthead {
  justify-content: space-between;
  gap: 14px;
  max-width: 540px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.brand-mark {
  color: white;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 920;
  letter-spacing: 0.02em;
}

.hero-count-pill {
  min-height: 38px;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(50, 209, 127, 0.5);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.46);
  color: #b8ffd5;
  font-size: 0.76rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.hero-count-pill strong {
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  font-size: clamp(4.2rem, 6.1vw, 6rem);
  font-weight: 780;
  text-wrap: balance;
}

h1 span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: line-reveal 520ms cubic-bezier(0.18, 0.88, 0.32, 1.08) forwards;
}

h1 span:nth-child(2) {
  animation-delay: 80ms;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 760;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow),
.partner-note,
.editorial-copy > p:not(.eyebrow),
.privacy-note,
.form-status,
.partner-band p,
.site-footer p,
.site-footer span {
  color: var(--muted);
  line-height: 1.62;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.partner-note {
  max-width: 540px;
  margin-top: 22px;
  font-size: 0.92rem;
}

.partner-note a {
  color: white;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 58, 53, 0.7);
  text-underline-offset: 4px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link,
.primary-action {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.primary-link,
.primary-action {
  background: linear-gradient(135deg, #ff4a44, #f3282d);
  color: white;
  box-shadow:
    0 14px 34px rgba(255, 58, 53, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.primary-link::after,
.primary-action::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
}

.primary-link:hover::after,
.primary-action:hover::after {
  animation: sheen 700ms ease;
}

.primary-link:hover,
.primary-action:hover {
  background: linear-gradient(135deg, #ff5a54, var(--red-dark));
  box-shadow:
    0 18px 44px rgba(255, 58, 53, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: scale(1.03);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    var(--glass),
    rgba(255, 255, 255, 0.035);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.secondary-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    var(--glass-strong),
    rgba(255, 255, 255, 0.08);
}

.signup-stack {
  display: grid;
  gap: 14px;
  align-self: center;
  width: min(820px, 100%);
  justify-self: end;
}

.hero-transform-card {
  position: relative;
  display: block;
  min-height: clamp(360px, 36vw, 540px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.42);
  cursor: ew-resize;
  touch-action: none;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 58, 53, 0.1);
  opacity: 0.96;
  --compare-position: 50%;
  animation: hero-compare-in 900ms cubic-bezier(0.18, 0.88, 0.32, 1.08) both 420ms;
}

.hero-transform-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.22)),
    radial-gradient(circle at 78% 28%, rgba(255, 58, 53, 0.16), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero-compare-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  transform: translateZ(0);
}

.hero-compare-after {
  clip-path: inset(0 0 0 var(--compare-position));
  will-change: clip-path;
}

.hero-compare-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 36vw, 540px);
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-compare-before img {
  filter: contrast(1.02) saturate(0.9) brightness(0.88);
}

.hero-compare-after img {
  filter: contrast(1.18) saturate(1.2) brightness(1.04);
}

.hero-compare-label {
  position: absolute;
  z-index: 6;
  bottom: 16px;
  display: grid;
  min-width: 142px;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.74);
  color: white;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.hero-compare-label.is-before {
  left: 16px;
}

.hero-compare-label.is-after {
  right: 16px;
  text-align: right;
}

.hero-compare-label span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-compare-label strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.hero-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 5;
  width: 2px;
  background: white;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.hero-compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.hero-compare-divider span::before {
  color: white;
  font-size: 1.15rem;
  font-weight: 950;
  content: "<>";
  animation: compare-arrow 1.45s ease-in-out infinite;
}

.hero-preview-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  padding: 9px 12px;
  border: 1px solid rgba(255, 58, 53, 0.42);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: white;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-compare-range {
  position: absolute;
  inset: 0;
  z-index: 8;
  cursor: ew-resize;
}

.hero-compare-range input {
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  pointer-events: none;
}

.interest-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    var(--glass),
    rgba(10, 11, 11, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-heading {
  justify-content: space-between;
  gap: 18px;
}

.panel-heading h2 {
  font-size: clamp(1.85rem, 2.6vw, 2.65rem);
}

.counter-card {
  display: grid;
  flex: 0 0 auto;
  min-width: 142px;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(50, 209, 127, 0.42);
  border-radius: var(--radius);
  background: rgba(50, 209, 127, 0.08);
}

.counter-card strong {
  color: white;
  font-size: 2rem;
  line-height: 0.95;
}

.counter-card span {
  color: #b8ffd5;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.interest-form {
  align-items: end;
  gap: 10px;
}

.interest-form label {
  display: grid;
  flex: 1;
  min-width: 0;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.interest-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  outline: 0;
}

.interest-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.interest-form input.is-invalid {
  border-color: rgba(246, 184, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(246, 184, 68, 0.1);
}

.interest-form .primary-action {
  min-width: 176px;
  white-space: nowrap;
}

.interest-form .primary-action:disabled {
  cursor: wait;
  filter: grayscale(0.25);
  opacity: 0.74;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #b8ffd5;
}

.form-status.is-warning {
  color: #ffd992;
}

.form-status.is-error {
  color: #ffd4d2;
}

.privacy-note {
  font-size: 0.82rem;
}

.hero-bottom-row {
  grid-column: 1 / -1;
  align-self: end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  animation: fade-slide-up 900ms ease both 520ms;
}

.hero-bottom-row p {
  display: grid;
  max-width: 520px;
  gap: 5px;
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-bottom-row p span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 650;
}

.editorial-panel,
.partner-band,
.site-footer {
  width: min(1460px, calc(100vw - 32px));
  margin-inline: auto;
}

.editorial-panel {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 5vw, 76px);
  min-height: 78vh;
  padding: clamp(70px, 9vw, 138px) 0;
}

.story-card {
  position: relative;
  align-self: center;
  min-height: min(720px, 72vh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--panel-2);
  box-shadow:
    var(--shadow),
    0 0 80px rgba(155, 199, 214, 0.1);
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: min(720px, 72vh);
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.story-card figcaption {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(14px);
}

.story-card figcaption strong {
  display: block;
  color: var(--red);
  font-size: 2.5rem;
  line-height: 0.75;
}

.story-card figcaption span,
.story-card figcaption small {
  display: block;
  color: white;
  line-height: 1.5;
}

.story-card figcaption small {
  margin-top: 4px;
  color: var(--muted);
}

.editorial-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.02rem;
}

.feature-pair {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.feature-pair div {
  display: grid;
  min-width: min(100%, 190px);
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    var(--glass),
    rgba(255, 255, 255, 0.035);
}

.feature-pair strong {
  color: white;
  font-size: 0.95rem;
}

.feature-pair span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.partner-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 58, 53, 0.16), rgba(155, 199, 214, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.partner-band h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.partner-band .primary-action {
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 0.6fr);
  gap: 28px;
  align-items: start;
  padding: 46px 0 56px;
  border-top: 1px solid var(--line);
  margin-top: 76px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer nav,
.footer-support {
  display: grid;
  gap: 9px;
}

.site-footer nav a,
.footer-support a {
  color: var(--ink);
  font-weight: 850;
}

.footer-support strong {
  color: white;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-compare-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 0.96;
    transform: translateY(0) scale(1);
  }
}

@keyframes compare-arrow {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(-6px);
  }
  50% {
    opacity: 1;
    transform: translateX(6px);
  }
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sheen {
  to {
    transform: translateX(120%);
  }
}

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

@media (max-width: 1180px) {
  .interest-hero,
  .editorial-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signup-stack {
    justify-self: start;
  }

  .hero-transform-card {
    max-width: 820px;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .store-nav {
    display: none;
  }

  .brand-lockup {
    justify-self: start;
    padding-left: 0;
  }

  .support-link {
    display: none;
  }

  h1 {
    font-size: 3.85rem;
  }

  .hero-bottom-row {
    display: grid;
    justify-items: start;
  }

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

  .partner-band .primary-action {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 54px;
    padding: 10px;
  }

  .brand-lockup {
    font-size: 1.12rem;
  }

  .catalog-status {
    min-height: 36px;
    padding: 0 10px;
  }

  .interest-hero {
    min-height: auto;
    gap: 18px;
    overflow: visible;
    padding: 18px 14px 28px;
  }

  .hero-masthead {
    margin-bottom: 26px;
  }

  h1 {
    font-size: 2.54rem;
  }

  h2,
  .panel-heading h2 {
    font-size: 2rem;
  }

  .hero-copy p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .partner-note {
    margin-top: 16px;
    font-size: 0.88rem;
  }

  .hero-actions,
  .interest-form,
  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-link,
  .secondary-link,
  .primary-action,
  .interest-form .primary-action {
    width: 100%;
  }

  .counter-card {
    width: 100%;
  }

  .signup-stack {
    width: 100%;
    justify-self: stretch;
  }

  .hero-transform-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-compare-image,
  .hero-compare-image img {
    min-height: 0;
  }

  .interest-panel {
    gap: 14px;
    padding: 16px;
  }

  .interest-form input {
    min-height: 48px;
  }

  .hero-bottom-row {
    display: none;
  }

  .editorial-panel,
  .partner-band,
  .site-footer {
    width: min(100vw - 20px, 720px);
  }

  .editorial-panel {
    padding-block: 56px;
  }

  .story-card,
  .story-card img {
    min-height: 360px;
  }

  .partner-band {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .brand-lockup {
    font-size: 0.98rem;
  }

  .interest-hero {
    padding-top: 20px;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2,
  .panel-heading h2 {
    font-size: 1.62rem;
  }

  .hero-count-pill {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .hero-transform-card {
    aspect-ratio: 4 / 3;
  }

  .hero-compare-label {
    bottom: 9px;
    min-width: 116px;
    padding: 8px 9px;
  }

  .hero-compare-label strong {
    font-size: 0.76rem;
  }

  .hero-preview-badge {
    top: 10px;
    left: 10px;
    font-size: 0.66rem;
  }

  .hero-compare-divider span {
    width: 40px;
    height: 40px;
  }

  .interest-panel {
    padding: 14px;
  }
}
