:root {
  color-scheme: dark;
  --bg: #101414;
  --bg-2: #151616;
  --paper: #f4f0e8;
  --paper-muted: #d7cfc2;
  --ink: #f8f5ee;
  --muted: #b7b0a3;
  --line: rgba(244, 240, 232, 0.16);
  --line-strong: rgba(244, 240, 232, 0.28);
  --teal: #31c6ad;
  --teal-deep: #146d67;
  --amber: #d9aa55;
  --amber-soft: #ffe2a4;
  --red: #e66a5c;
  --green: #58c878;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(16, 20, 20, 0.86), #101414 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
    var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

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

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

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

p {
  color: var(--muted);
  line-height: 1.65;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.22;
}

ul {
  padding-left: 20px;
}

li {
  margin: 10px 0;
  color: var(--paper-muted);
  line-height: 1.5;
}

.page-pad {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: #101414;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 10;
  width: min(calc(100% - 28px), 1240px);
  min-height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(16, 20, 20, 0.78);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header[data-scrolled] {
  background: rgba(16, 20, 20, 0.9);
  border-color: rgba(244, 240, 232, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: transparent;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18), transparent 54%),
    url("assets/logo-mark-3d.webp") center / cover no-repeat;
  border: 1px solid rgba(255, 226, 168, 0.36);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(49, 198, 173, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0;
  overflow: hidden;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--paper);
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--paper-muted);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a {
  padding: 0 14px;
}

.desktop-nav a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(49, 198, 173, 0.55);
  outline-offset: 3px;
}

.header-cta {
  padding: 0 16px;
  color: #101414;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: min(790px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 20, 20, 0.96), rgba(16, 20, 20, 0.74) 36%, rgba(16, 20, 20, 0.24) 68%, rgba(16, 20, 20, 0.62)),
    linear-gradient(180deg, rgba(16, 20, 20, 0.5), rgba(16, 20, 20, 0.12) 38%, rgba(16, 20, 20, 0.98));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 170px;
  padding-bottom: clamp(52px, 8vh, 88px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 24px;
  color: #eee6dc;
  font-size: clamp(18px, 2vw, 22px);
}

.launch-offer {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  align-items: end;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 226, 164, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 226, 164, 0.16), rgba(49, 198, 173, 0.1)),
    rgba(16, 20, 20, 0.72);
  box-shadow:
    0 20px 70px rgba(217, 170, 85, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.offer-kicker {
  grid-column: 1 / -1;
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-offer strong {
  color: var(--paper);
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.9;
}

.offer-copy {
  max-width: 260px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.launch-offer small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero-actions,
.hero-facts,
.footer-links,
.assurance-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  color: #101414;
  background: linear-gradient(135deg, var(--paper), var(--amber-soft));
  box-shadow: 0 18px 50px rgba(217, 170, 85, 0.24);
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.hero-facts {
  margin-top: 28px;
  max-width: 800px;
}

.hero-facts span,
.assurance-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--paper-muted);
  background: rgba(16, 20, 20, 0.54);
  font-size: 13px;
  font-weight: 750;
}

.ticker-strip {
  display: flex;
  gap: 1px;
  background: #0c1010;
  border-block: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker-strip span {
  flex: 1 0 auto;
  min-width: 180px;
  padding: 16px 20px;
  color: var(--paper-muted);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(72px, 10vw, 128px);
}

.section-intro {
  max-width: 830px;
  margin-bottom: 36px;
}

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

.section-intro p,
.split-section > div > p,
.compliance-copy p,
.request-copy p {
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.rule-card,
.process-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.feature-card {
  min-height: 245px;
  padding: 22px;
}

.card-index {
  display: block;
  margin-bottom: 46px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.scope-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.scope-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.scope-list strong {
  color: var(--paper);
}

.scope-list span {
  color: var(--muted);
  line-height: 1.6;
}

.process-band,
.request-band {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.05), rgba(244, 240, 232, 0.015)),
    #0d1111;
  border-block: 1px solid var(--line);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  min-height: 250px;
  padding: 22px;
}

.process-steps span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: var(--radius);
  color: #101414;
  background: var(--teal);
  font-weight: 900;
}

.process-steps p {
  margin-bottom: 0;
}

.compliance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

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

.rule-card {
  padding: 24px;
}

.rule-card.allowed {
  border-color: rgba(88, 200, 120, 0.3);
}

.rule-card.denied {
  border-color: rgba(230, 106, 92, 0.34);
}

.rule-card.allowed h3 {
  color: #a9f0bb;
}

.rule-card.denied h3 {
  color: #ffb7ad;
}

.comparison-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 1fr;
}

.comparison-table span {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--paper-muted);
  line-height: 1.5;
}

.comparison-table span:last-child {
  border-right: 0;
}

.comparison-table > div:last-child span {
  border-bottom: 0;
}

.table-head span {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.offer-section {
  padding-top: 0;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.price-panel,
.signal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.24);
}

.price-panel {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 226, 164, 0.34);
  background:
    radial-gradient(circle at 86% 12%, rgba(49, 198, 173, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(217, 170, 85, 0.18), rgba(244, 240, 232, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.price-panel h2 {
  max-width: 600px;
}

.price-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 14px;
  align-items: end;
  margin: 26px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.price-line span {
  align-self: center;
  color: var(--amber-soft);
  font-size: 13px;
  font-weight: 950;
}

.price-line strong {
  color: var(--paper);
  font-size: clamp(76px, 10vw, 132px);
  line-height: 0.88;
}

.price-line em {
  grid-column: 2;
  color: var(--paper-muted);
  font-style: normal;
  font-weight: 850;
}

.signals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.signal-card {
  min-height: 0;
  padding: 22px;
}

.signal-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.signal-card p {
  margin-bottom: 0;
}

.reviews-section {
  padding-top: 0;
}

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

.review-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.24);
}

.featured-review {
  border-color: rgba(255, 226, 164, 0.34);
  background:
    radial-gradient(circle at 86% 4%, rgba(49, 198, 173, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(217, 170, 85, 0.13), rgba(244, 240, 232, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-stars {
  color: var(--amber-soft);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(49, 198, 173, 0.28);
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(49, 198, 173, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.review-card p {
  margin-bottom: 0;
}

.review-card footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 850;
}

.review-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.055);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0 13px;
  outline: 0;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.24);
}

textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(49, 198, 173, 0.14);
}

.check-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--amber-soft);
  font-size: 14px;
}

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

.form-status.success {
  color: #bff0cb;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  color: var(--paper);
  cursor: pointer;
  font-weight: 850;
}

summary::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 20px 22px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

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

.footer-links a {
  color: var(--paper-muted);
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--amber-soft);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.content-page {
  min-height: 100vh;
  padding-top: 122px;
}

.content-shell {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding-bottom: 80px;
}

.content-shell h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
}

.content-shell h2 {
  margin-top: 54px;
  font-size: clamp(26px, 3vw, 38px);
}

.content-shell h3 {
  margin-top: 28px;
}

.content-shell p,
.content-shell li {
  font-size: 17px;
}

.content-meta {
  margin-bottom: 26px;
  color: var(--amber-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-panel {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.content-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper-muted);
  font-weight: 800;
}

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

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

  .split-section,
  .compliance-section,
  .request-layout,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .do-dont-grid {
    grid-template-columns: 1fr;
  }

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

  .signal-card,
  .review-card {
    min-height: auto;
  }

  .signal-card span {
    margin-bottom: 28px;
  }
}

@media (max-width: 680px) {
  .page-pad {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 8px;
    width: min(calc(100% - 16px), 1240px);
    min-height: 58px;
    padding: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 20, 20, 0.62), rgba(16, 20, 20, 0.58) 34%, rgba(16, 20, 20, 0.96)),
      linear-gradient(90deg, rgba(16, 20, 20, 0.95), rgba(16, 20, 20, 0.38));
  }

  .hero-content {
    padding-top: 126px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

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

  .hero-actions,
  .hero-actions .btn,
  .form-row,
  .feature-grid,
  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .launch-offer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .launch-offer strong {
    font-size: clamp(64px, 21vw, 94px);
  }

  .offer-copy {
    max-width: none;
  }

  .feature-card,
  .process-steps article {
    min-height: auto;
  }

  .card-index,
  .process-steps span {
    margin-bottom: 28px;
  }

  .scope-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .comparison-table,
  .comparison-table > div,
  .comparison-table span,
  .comparison-table span:last-child,
  .comparison-table > div:last-child span {
    display: block;
    border: 0;
  }

  .table-head {
    display: none !important;
  }

  .comparison-table {
    border: 0;
    display: grid;
    gap: 12px;
  }

  .comparison-table > div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
  }

  .comparison-table span {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table span::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .request-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }

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

  .content-shell {
    width: min(calc(100% - 28px), 900px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
