@font-face {
  font-family: "Space Mono";
  src: url("/fonts/SpaceMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/fonts/SpaceMono-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/fonts/SpaceMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/fonts/SpaceMono-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --c-red-700: #8e1313;
  --c-red-600: #bc1d1d;
  --c-red-400: #f52727;
  --c-black: #000000;
  --c-graphite: #222222;
  --c-carbon: #111111;
  --c-ash: #a8a8a8;
  --c-smoke: #e0e0e0;
  --c-bone: #f6f4ef;
  --c-white: #ffffff;
  --c-photo: #0a0907;

  --bg: var(--c-bone);
  --ink: var(--c-black);
  --rule: var(--c-graphite);
  --muted: #5a5a55;

  --font: "Space Mono", ui-monospace, "Courier New", monospace;

  --pad-x: clamp(20px, 6vw, 80px);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
}
::selection {
  background: var(--c-red-600);
  color: var(--c-white);
}

/* Editorial primitives */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.label--muted {
  color: var(--muted);
}
.label--on-dark {
  color: rgba(255, 255, 255, 0.7);
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}
.rule--on-dark {
  background: rgba(255, 255, 255, 0.22);
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(36px, 6vw, 72px);
}
.sec-head h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.sec-head .label {
  white-space: nowrap;
  padding-bottom: 6px;
}
.sec-head--on-dark {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
.sec-head--on-dark h2 {
  color: var(--c-white);
}

section {
  padding: clamp(72px, 11vw, 160px) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 18px 28px;
  border-radius: 7px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out,
    border-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-red-600);
  color: var(--c-white);
}
.btn--primary:hover {
  background: var(--c-red-700);
  box-shadow: 0 6px 20px rgba(188, 29, 29, 0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  border-color: var(--c-red-600);
  color: var(--c-red-600);
}
.btn--ghost-on-dark {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--ghost-on-dark:hover {
  border-color: var(--c-red-400);
  color: var(--c-red-400);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* Nav */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad-x);
  color: var(--c-white);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.nav__logo img {
  height: 22px;
  display: block;
}
.nav__logo .stamp {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 14px;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.nav__links a:hover {
  color: var(--c-white);
}
.nav__cta {
  font-size: 13px;
  padding: 12px 20px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language dropdown */
.lang {
  position: relative;
}
.lang__btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 12px 9px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}
.lang__btn:hover,
.lang--open .lang__btn {
  border-color: var(--c-red-400);
  color: var(--c-white);
}

.lang__btn .globe {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  flex: none;
}
.lang__btn .globe::before,
.lang__btn .globe::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.lang__btn .globe::before {
  top: 50%;
  left: -1.5px;
  right: -1.5px;
  height: 1px;
  transform: translateY(-50%);
}
.lang__btn .globe::after {
  left: 50%;
  top: -1.5px;
  bottom: -1.5px;
  width: 1px;
  transform: translateX(-50%);
}
.lang__btn .caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease-in-out;
}
.lang--open .lang__btn .caret {
  transform: translateY(1px) rotate(-135deg);
}

.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: var(--c-carbon);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out,
    visibility 0.18s;
  z-index: 60;
}
.lang--open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang__menu li {
  margin: 0;
}
.lang__menu a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1;
  border-radius: 4px;
  transition:
    background-color 0.15s ease-out,
    color 0.15s ease-out;
}
.lang__menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-white);
}
.lang__menu a[aria-current="true"] {
  background: rgba(188, 29, 29, 0.14);
}
.lang__menu a[aria-current="true"] .name {
  color: var(--c-white);
}
.lang__menu .code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-red-400);
}
.lang__menu .name {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.lang__menu .native {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 800px) {
  .nav__links {
    display: none;
  }
  .nav__logo .stamp {
    display: none;
  }
  .nav {
    padding: 18px var(--pad-x);
  }
  .lang__btn {
    padding: 8px 10px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .nav__cta {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--c-black);
  color: var(--c-white);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("/assets/magma-cover-texture.png");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  mix-blend-mode: screen;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 120%,
      rgba(188, 29, 29, 0.32),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      rgba(0, 0, 0, 0.85) 100%
    );
}
.hero__inner {
  position: relative;
  padding: clamp(120px, 18vw, 180px) var(--pad-x) clamp(60px, 8vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red-400);
  box-shadow: 0 0 16px rgba(245, 39, 39, 0.6);
}
.hero h1 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(40px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 18ch;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-red-400);
  font-weight: 700;
}
.hero__sub {
  margin: clamp(28px, 4vw, 44px) 0 0;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
}
.hero__verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: clamp(36px, 5vw, 56px) 0 clamp(40px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.hero__verticals .v {
  padding: 18px 28px 18px 0;
  margin-right: 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__verticals .v:last-child {
  border-right: 0;
  margin-right: 0;
}
.hero__verticals .v .num {
  font-size: 11px;
  color: var(--c-red-400);
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__cta-row .btn--primary {
  padding: 22px 36px;
  font-size: 15px;
}
.hero__meta {
  position: relative;
  padding: 0 var(--pad-x) 36px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero__meta .meta-r {
  text-align: right;
}

@media (max-width: 700px) {
  .hero__verticals {
    flex-direction: column;
  }
  .hero__verticals .v {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    margin-right: 0;
    padding: 14px 0;
  }
  .hero__verticals .v:last-child {
    border-bottom: 0;
  }
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__meta .meta-r {
    text-align: left;
  }
}

/* Pitch */
.pitch {
  background: var(--bg);
}
.pitch__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.pitch__lede {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: pretty;
}
.pitch__lede em {
  font-style: italic;
}
.pitch__lede .red {
  color: var(--c-red-600);
}
.pitch__byline {
  font-size: 12px;
  color: var(--muted);
  margin-top: 28px;
  line-height: 1.7;
}
.pitch__byline .sig {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 800px) {
  .pitch__grid {
    grid-template-columns: 1fr;
  }
}

/* Bar */
.bar {
  background: var(--c-white);
}
.bar__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: stretch;
}
.bar__grid > * {
  min-width: 0;
}
.bar__photo {
  margin: 0;
  background: var(--c-photo);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.bar__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bar__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
}
.bar__photo-label {
  position: relative;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.bar__photo-label::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--c-red-600);
}
.bar__text {
  display: flex;
  flex-direction: column;
}
.bar__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.bar__title em {
  font-style: italic;
  color: var(--c-red-600);
}
.bar__body p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 50ch;
}
.bar__meta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bar__meta dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.bar__meta dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .bar__grid {
    grid-template-columns: 1fr;
  }
  .bar__photo {
    aspect-ratio: 4 / 3;
  }
}

/* What we sell */
.sell {
  background: var(--bg);
}
.sell__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sell__track {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 52px) clamp(40px, 5vw, 64px)
    0;
}
.sell__track + .sell__track {
  padding-left: clamp(28px, 4vw, 52px);
  padding-right: 0;
  border-left: 1px solid var(--rule);
}
.track__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
}
.track__head .num {
  font-size: 12px;
  color: var(--c-red-600);
  letter-spacing: 0.12em;
}
.track__head h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.track__lede {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 42ch;
}

.product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.product:last-child {
  border-bottom: 1px solid var(--rule);
}
.product__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.product__name .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-red-600);
  margin-right: 10px;
  transform: translateY(-2px);
}
.product__outcome {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 50ch;
}
.product__status {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.product__status--live {
  color: var(--c-red-600);
  border-color: var(--c-red-600);
}

.engagement {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: start;
}
.engagement:last-child {
  border-bottom: 1px solid var(--rule);
}
.engagement__tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.engagement h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.engagement p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  max-width: 56ch;
}

@media (max-width: 900px) {
  .sell__tracks {
    grid-template-columns: 1fr;
  }
  .sell__track {
    padding: clamp(36px, 6vw, 52px) 0;
  }
  .sell__track + .sell__track {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
}
@media (max-width: 600px) {
  .engagement {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Founders */
.founders {
  background: var(--c-white);
}
.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
}
.founder {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
}
.founder__photo {
  width: 140px;
  aspect-ratio: 4 / 5;
  background: var(--c-photo);
  position: relative;
  overflow: hidden;
}
.founder__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.founder__role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red-600);
  margin: 0 0 20px;
}
.founder__bio {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 42ch;
}

@media (max-width: 900px) {
  .founders__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .founder {
    grid-template-columns: 1fr;
  }
  .founder__photo {
    width: 100%;
    aspect-ratio: 3/2;
    max-height: 240px;
  }
}

/* How it starts */
.start {
  background: var(--c-black);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.start::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/magma-cover-texture.png");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}
.start .wrap {
  position: relative;
}
.start .sec-head {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
.start .sec-head h2 {
  color: var(--c-white);
}
.start__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 2.5vw, 36px)
    clamp(36px, 4vw, 56px) 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.step:last-child {
  border-right: 0;
  padding-right: 0;
}
.step + .step {
  padding-left: clamp(20px, 2.5vw, 36px);
}
.step__num {
  font-size: 13px;
  color: var(--c-red-400);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.step__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.15;
  text-wrap: balance;
}
.step__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px;
  max-width: 38ch;
}
.step__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 14px;
}

@media (max-width: 800px) {
  .start__steps {
    grid-template-columns: 1fr;
  }
  .step {
    padding: 36px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .step + .step {
    padding-left: 0;
  }
}

/* Contact */
.contact {
  background: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.contact__lede {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.contact__lede em {
  font-style: italic;
  color: var(--c-red-600);
}
.contact__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.foot {
  background: var(--c-black);
  color: var(--c-white);
  padding: 60px var(--pad-x) 36px;
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.foot__brand img {
  height: 28px;
  filter: invert(1);
}
.foot__tag {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 38ch;
}
.foot h5 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
  font-weight: 700;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot ul li {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.foot ul a {
  text-decoration: none;
}
.foot ul a:hover {
  color: var(--c-red-400);
}
.foot__bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.foot__bottom .socials {
  display: flex;
  gap: 14px;
}
.foot__bottom .socials a {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
}
.foot__bottom .socials a:hover {
  color: var(--c-white);
}
.foot__bottom .socials svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 700px) {
  .foot__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot__bottom {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* Q&A passages (citable answers) */
.qa {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.qa__q {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.qa__a {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 68ch;
  margin: 0;
}
.qa--on-dark {
  border-top-color: rgba(255, 255, 255, 0.22);
}
.qa--on-dark .qa__q {
  color: var(--c-white);
}
.qa--on-dark .qa__a {
  color: rgba(255, 255, 255, 0.72);
}

/* Product comparison table */
.compare {
  margin-top: clamp(32px, 5vw, 56px);
  overflow-x: auto;
}
.compare__caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare th,
.compare td {
  text-align: left;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.compare th {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.compare td:first-child,
.compare th:first-child {
  padding-right: 24px;
  white-space: nowrap;
  font-weight: 700;
}
.compare .status--live {
  color: var(--c-red-600);
  font-weight: 700;
}

@media (max-width: 700px) {
  .compare table {
    font-size: 12px;
  }
  .compare th,
  .compare td {
    padding: 10px 10px 10px 0;
  }
}

/* FAQ */
.faq__list {
  margin-top: clamp(32px, 5vw, 56px);
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faq__item {
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.faq__q {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.faq__a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 68ch;
}
