:root {
  --bg: #101113;
  --bg-soft: #15171c;
  --surface: #1b1d23;
  --surface-2: #232833;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f2e8;
  --muted: #b9b2a6;
  --muted-2: #858895;
  --studio: #f3b94f;
  --studio-2: #e9604d;
  --bolt: #4f8cff;
  --bolt-2: #7d63ff;
  --bard: #b8e64b;
  --bard-2: #ffb23e;
  --map: #f6c25f;
  --map-2: #d4772d;
  --char: #ff6b7c;
  --char-2: #f0b35a;
  --note: #78d77c;
  --note-2: #d9c56b;
  --ok: #42d47a;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--studio);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(16, 17, 19, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a {
  color: rgba(247, 242, 232, 0.78);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.bolt.active,
.nav-links a.bolt:hover {
  color: #dfeaff;
  background: rgba(79, 140, 255, 0.18);
}

.nav-links a.bard.active,
.nav-links a.bard:hover {
  color: #f3ffd0;
  background: rgba(184, 230, 75, 0.16);
}

.nav-links a.map.active,
.nav-links a.map:hover {
  color: #fff0c9;
  background: rgba(246, 194, 95, 0.16);
}

.nav-links a.char.active,
.nav-links a.char:hover {
  color: #ffe0e4;
  background: rgba(255, 107, 124, 0.16);
}

.nav-links a.note.active,
.nav-links a.note:hover {
  color: #dcffdc;
  background: rgba(120, 215, 124, 0.16);
}

.nav-cta {
  border: 1px solid rgba(243, 185, 79, 0.45);
  color: var(--studio) !important;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  min-height: min(780px, calc(100svh - 56px));
  padding: 112px 0 64px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-color: #111113;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  opacity: 0.68;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,17,19,0.95) 0%, rgba(16,17,19,0.76) 42%, rgba(16,17,19,0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(16,17,19,0) 38%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  color: var(--studio);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow.bolt {
  color: #9ec2ff;
}

.eyebrow.bard {
  color: var(--bard);
}

.eyebrow.map {
  color: var(--map);
}

.eyebrow.char {
  color: var(--char);
}

.eyebrow.note {
  color: var(--note);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 6.4vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-title img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.hero-lede {
  max-width: 690px;
  color: rgba(247, 242, 232, 0.82);
  font-size: 23px;
  line-height: 1.45;
  margin-bottom: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.button.primary {
  border-color: rgba(243, 185, 79, 0.28);
  background: linear-gradient(135deg, var(--studio-2), var(--studio));
  color: #16110c;
}

.button.bolt {
  border-color: rgba(79, 140, 255, 0.45);
  background: linear-gradient(135deg, var(--bolt), var(--bolt-2));
  color: #ffffff;
}

.button.bard {
  border-color: rgba(184, 230, 75, 0.45);
  background: linear-gradient(135deg, var(--bard), var(--bard-2));
  color: #14140c;
}

.button.map {
  border-color: rgba(246, 194, 95, 0.45);
  background: linear-gradient(135deg, var(--map), var(--map-2));
  color: #171007;
}

.button.char {
  border-color: rgba(255, 107, 124, 0.45);
  background: linear-gradient(135deg, var(--char), var(--char-2));
  color: #18080b;
}

.button.note {
  border-color: rgba(120, 215, 124, 0.45);
  background: linear-gradient(135deg, var(--note), var(--note-2));
  color: #0b150c;
}

.button.ghost {
  color: rgba(247, 242, 232, 0.88);
}

.section {
  padding: 82px 0;
  scroll-margin-top: 92px;
}

.section.tight {
  padding: 54px 0;
}

.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head.full {
  display: block;
  max-width: 820px;
}

.kicker {
  color: var(--studio);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.kicker.bolt {
  color: #9ec2ff;
}

.kicker.bard {
  color: var(--bard);
}

.kicker.map {
  color: var(--map);
}

.kicker.char {
  color: var(--char);
}

.kicker.note {
  color: var(--note);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

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

.section-lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 620px;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

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

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

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

#produkte .grid.cols-3 {
  grid-auto-rows: 1fr;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  padding: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  min-width: 0;
}

.card.link-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card.link-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.tool-directory {
  align-items: stretch;
}

.tool-directory .card {
  min-height: 188px;
}

.tool-meta {
  display: block;
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.product-card .media {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
  background: #06070a;
  overflow: hidden;
  flex: 0 0 auto;
}

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

.product-card .body {
  display: grid;
  flex: 1;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  padding: 24px;
}

.product-card .tag-row {
  align-self: end;
  margin-top: 0;
  padding-top: 18px;
}

.product-card .kicker {
  min-height: 1em;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card .muted {
  margin-bottom: 0;
}

.product-card.bolt {
  border-color: rgba(79, 140, 255, 0.26);
}

.product-card.bard {
  border-color: rgba(184, 230, 75, 0.22);
}

.product-card.map {
  border-color: rgba(246, 194, 95, 0.24);
}

.product-card.char {
  border-color: rgba(255, 107, 124, 0.24);
}

.product-card.note {
  border-color: rgba(120, 215, 124, 0.24);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 9px;
  color: rgba(247, 242, 232, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.tag.bolt {
  border-color: rgba(79, 140, 255, 0.34);
  color: #b9d2ff;
}

.tag.bard {
  border-color: rgba(184, 230, 75, 0.34);
  color: #e2fca4;
}

.tag.map {
  border-color: rgba(246, 194, 95, 0.34);
  color: #ffe0a1;
}

.tag.char {
  border-color: rgba(255, 107, 124, 0.34);
  color: #ffc0c8;
}

.tag.note {
  border-color: rgba(120, 215, 124, 0.34);
  color: #baf5bd;
}

.metric {
  border-left: 2px solid var(--studio);
  padding-left: 16px;
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: 44px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  color: rgba(247, 242, 232, 0.84);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--studio);
}

.feature-list.bolt li::before {
  background: var(--bolt);
}

.feature-list.bard li::before {
  background: var(--bard);
}

.feature-list.map li::before {
  background: var(--map);
}

.feature-list.char li::before {
  background: var(--char);
}

.feature-list.note li::before {
  background: var(--note);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journey-step {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    radial-gradient(circle at 18% 14%, rgba(243,185,79,0.14), transparent 34%);
}

.journey-step:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    radial-gradient(circle at 18% 14%, rgba(79,140,255,0.16), transparent 34%);
}

.journey-step:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    radial-gradient(circle at 18% 14%, rgba(184,230,75,0.14), transparent 34%);
}

.journey-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(247, 242, 232, 0.12);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.showcase.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.showcase.reverse .image-frame {
  order: -1;
}

.image-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #07080b;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #07080b;
  border-bottom: 1px solid var(--border);
  cursor: zoom-in;
}

.screenshot-card figcaption {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  padding: 16px 18px 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(3, 4, 7, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  display: block;
  max-width: min(96vw, 1800px);
  max-height: 88vh;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: #07080b;
  box-shadow: 0 28px 90px rgba(0,0,0,0.7);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(16,17,19,0.92);
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  box-shadow: var(--shadow);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: rgba(255,255,255,0.42);
  outline: none;
  background: rgba(35,37,43,0.96);
}

.split-line {
  height: 1px;
  margin: 28px 0;
  background: var(--border);
}

.tool-card {
  display: grid;
  min-height: 230px;
}

.tool-card .count {
  align-self: end;
  color: var(--studio);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.contact-form,
.contact-option {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.contact-form input[name="_gotcha"] {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: rgba(247, 242, 232, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(13, 14, 16, 0.72);
  color: var(--text);
  padding: 12px 13px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(185, 178, 166, 0.62);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(243, 185, 79, 0.56);
  background: rgba(13, 14, 16, 0.92);
  box-shadow: 0 0 0 3px rgba(243, 185, 79, 0.12);
  outline: none;
}

.form-note,
.form-privacy,
.form-status {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

.form-note span {
  color: var(--studio);
  font-weight: 900;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-status {
  min-height: 20px;
}

.form-status.success {
  color: var(--ok);
}

.form-status.error {
  color: #ffb0a6;
}

.contact-aside {
  display: grid;
  gap: 14px;
}

.contact-option {
  padding: 22px;
}

.contact-option .kicker {
  margin-bottom: 8px;
}

.contact-option p:last-child {
  margin-bottom: 0;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 46px 0 32px;
  background: #0d0e10;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(auto-fit, minmax(138px, 1fr));
  gap: 28px 34px;
  align-items: start;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer p,
.footer a {
  color: var(--muted-2);
  font-size: 14px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.fineprint {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 12px;
}

.legal-page {
  padding-top: 112px;
}

.legal-prose {
  max-width: 920px;
}

.legal-prose a,
.text-link {
  color: var(--studio);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover,
.text-link:hover {
  color: var(--text);
}

.legal-prose h2 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-prose h3 {
  margin-top: 22px;
  margin-bottom: 8px;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose ul {
  padding-left: 20px;
}

.legal-prose code,
.card code {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.1rem 0.35rem;
  font-size: 0.92em;
}

.note-box {
  border: 1px solid rgba(243, 185, 79, 0.26);
  border-radius: var(--radius);
  background: rgba(243, 185, 79, 0.08);
  padding: 18px;
}

.source-list {
  display: grid;
  gap: 16px;
}

.source-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 49;
    display: none;
    padding: 20px 16px 28px;
    border-bottom: 1px solid var(--border);
    background: rgba(16, 17, 19, 0.98);
  }

  .menu-open .mobile-panel {
    display: block;
  }

  .mobile-panel a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 800;
  }

  .section-head,
  .showcase,
  .showcase.reverse,
  .screenshot-gallery,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 14px;
  }

  .journey-grid,
  .comparison-matrix {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: 240px;
  }

  .comparison-option-main {
    grid-row: auto;
  }

  .showcase.reverse .image-frame {
    order: 0;
  }

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

  h1 {
    font-size: clamp(3.25rem, 7.6vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 5vw, 2.625rem);
  }

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

  .product-title img {
    width: 78px;
    height: 78px;
  }

}

.comparison-matrix {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) repeat(2, minmax(0, 0.72fr));
  gap: 16px;
  margin-top: 2rem;
}

.comparison-option {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,255,255,0.035);
}

.comparison-option-main {
  grid-row: span 2;
  min-height: 100%;
  border-color: rgba(79, 140, 255, 0.32);
  background: linear-gradient(180deg, rgba(79,140,255,0.13), rgba(255,255,255,0.035));
}

.comparison-option h3 {
  margin-bottom: 2px;
}

.comparison-option .button {
  align-self: flex-start;
  margin-top: auto;
}

.comparison-footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .comparison-matrix {
    grid-template-columns: 1fr;
  }

  .comparison-option-main {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: min(660px, calc(100svh - 28px));
    padding: 104px 0 54px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(16,17,19,0.94) 0%, rgba(16,17,19,0.78) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(16,17,19,0) 38%);
  }

  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.4rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
  }

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

  .metric strong {
    font-size: 30px;
  }

  .product-title img {
    width: 62px;
    height: 62px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

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

  .button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .product-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .comparison-option {
    min-height: auto;
  }
}
