:root {
  --ink: #071512;
  --ink-soft: #12241f;
  --paper: #f3f2ea;
  --paper-bright: #fbfaf5;
  --mint: #84f0ba;
  --mint-deep: #3dce8a;
  --line: rgba(7, 21, 18, 0.14);
  --light-line: rgba(255, 255, 255, 0.14);
  --muted: #57645f;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 22px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  flex: 0 0 34px;
  background: var(--mint);
  border-radius: 10px 4px 10px 4px;
  box-shadow: 0 0 0 1px rgba(132, 240, 186, 0.14);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 4px;
  height: 19px;
  background: var(--ink);
  border-radius: 999px;
  transform-origin: 50% 100%;
}

.brand-mark::before {
  left: 9px;
  transform: rotate(-31deg);
}

.brand-mark::after {
  right: 9px;
  transform: rotate(31deg);
}

.brand-name {
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button-light {
  margin-left: 6px;
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-primary {
  color: var(--ink);
  background: var(--mint);
}

.button-primary:hover {
  background: #a1f5cb;
}

.button-white {
  color: var(--ink);
  background: white;
}

.text-link {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.text-link:hover {
  border-color: var(--mint);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 30%, rgba(67, 221, 148, 0.12), transparent 30%),
    linear-gradient(145deg, #071512 0%, #0c211b 62%, #0a1916 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero-grid {
  position: relative;
  min-height: 790px;
  padding: 166px 0 105px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.eyebrow.dark {
  color: #16714d;
}

.eyebrow.light {
  color: var(--mint);
}

.hero h1,
.section-heading h2,
.system h2,
.safety h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.25rem, 6.4vw, 6.15rem);
  font-weight: 500;
}

.hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.company-line {
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.company-line a {
  color: rgba(255, 255, 255, 0.76);
}

.motion-console {
  min-height: 505px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(8, 28, 22, 0.64);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(132, 240, 186, 0.1);
}

.route-map {
  position: relative;
  height: 345px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 30px 30px;
}

.route-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), rgba(132, 240, 186, 0.15));
  transform-origin: left;
}

.route-one {
  width: 46%;
  top: 67%;
  left: 19%;
  transform: rotate(-32deg);
}

.route-two {
  width: 35%;
  top: 42%;
  left: 56%;
  transform: rotate(26deg);
}

.route-node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.route-node i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 6px solid rgba(132, 240, 186, 0.18);
  background-clip: padding-box;
  border-radius: 50%;
  font-style: normal;
  font-size: 0.64rem;
  font-weight: 800;
}

.route-node small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.62rem;
}

.node-a {
  left: 13%;
  bottom: 15%;
}

.node-b {
  left: 53%;
  top: 28%;
}

.node-c {
  right: 8%;
  bottom: 19%;
}

.cart-signal {
  position: absolute;
  top: 50%;
  left: 38%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: white;
  border-radius: 19px 8px 19px 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  transform: rotate(-8deg);
}

.cart-signal strong {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.cart-signal i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(132, 240, 186, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cart-signal i:nth-child(2) {
  width: 135px;
  height: 135px;
}

.cart-signal i:nth-child(3) {
  width: 175px;
  height: 175px;
}

.console-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.console-metrics span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.console-metrics small,
.console-metrics strong {
  display: block;
}

.console-metrics small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.console-metrics strong {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
}

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

.trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid span {
  color: #66736e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: 126px 0;
}

.section-heading h2,
.system h2,
.safety h2,
.contact h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  font-weight: 500;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  gap: 90px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.principle-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principle-grid article {
  min-height: 270px;
  padding: 30px 38px 32px 0;
}

.principle-grid article + article {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.principle-grid span {
  color: #26875e;
  font-size: 0.78rem;
  font-weight: 700;
}

.principle-grid h3 {
  margin: 75px 0 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
}

.models {
  color: white;
  background: var(--ink);
}

.models-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 70px;
}

.models-heading > div:last-child {
  padding-bottom: 7px;
}

.models-heading > div:last-child p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.55);
}

.coming-badge {
  display: inline-flex;
  padding: 7px 12px;
  color: var(--mint);
  border: 1px solid rgba(132, 240, 186, 0.26);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-list {
  margin-top: 72px;
  border-top: 1px solid var(--light-line);
}

.model-card {
  min-height: 220px;
  padding: 35px 0;
  display: grid;
  grid-template-columns: 0.32fr 1fr 80px;
  gap: 50px;
  align-items: center;
  border-bottom: 1px solid var(--light-line);
}

.model-index span,
.model-index small {
  display: block;
}

.model-index span {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 2rem;
}

.model-index small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-type {
  margin: 0;
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-card h3 {
  margin: 7px 0 9px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.model-card div:nth-child(2) > p:last-child {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.model-action {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: var(--mint);
  border: 1px solid rgba(132, 240, 186, 0.25);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.operating-note {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.operating-note strong {
  color: rgba(255, 255, 255, 0.78);
}

.models-page-action {
  margin-top: 34px;
}

.system {
  color: white;
  background: #10251f;
}

.system-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 100px;
  align-items: center;
}

.system-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.platform-tags {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.platform-tags span {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.system-flow {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.11);
}

.system-flow article {
  min-height: 84px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.system-flow article > span {
  color: var(--mint);
  font-size: 0.68rem;
}

.system-flow strong,
.system-flow small {
  display: block;
}

.system-flow strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.system-flow small {
  color: rgba(255, 255, 255, 0.42);
}

.system-flow > i {
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--mint);
  font-style: normal;
}

.safety {
  background: var(--paper-bright);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.85fr 0.75fr;
  gap: 110px;
}

.safety-copy > p {
  margin: 8px 0 38px;
  color: var(--muted);
  font-size: 1.06rem;
}

.safety-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.safety-copy li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.safety-copy li span {
  color: var(--ink);
  font-weight: 700;
}

.contact {
  color: white;
  background: linear-gradient(120deg, #164d38, #0c2b22);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 80px;
  align-items: end;
}

.contact h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding-bottom: 10px;
}

.light-link {
  font-size: 0.86rem;
}

.site-footer {
  padding: 55px 0 42px;
  color: rgba(255, 255, 255, 0.55);
  background: #06110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px 50px;
  align-items: center;
}

.footer-grid > p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-grid .legal-line {
  max-width: 740px;
  grid-column: 1 / 3;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
}

.footer-grid > span {
  justify-self: end;
  font-size: 0.72rem;
}

/* Legal pages */

.legal-page {
  background: var(--paper-bright);
}

.legal-hero {
  color: white;
  background:
    radial-gradient(circle at 78% 28%, rgba(132, 240, 186, 0.12), transparent 30%),
    linear-gradient(145deg, #071512, #0d241d 70%, #091814);
}

.legal-hero-inner {
  padding: 166px 0 78px;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.legal-hero-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.legal-meta {
  margin: 40px 0 0;
  display: flex;
  gap: 48px;
}

.legal-meta div {
  display: grid;
  gap: 4px;
}

.legal-meta dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0;
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-layout {
  padding: 86px 0 120px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 28px;
  padding-top: 7px;
}

.legal-toc > strong {
  color: #21815a;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc nav {
  margin-top: 17px;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-toc a {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #16714d;
}

.legal-content section {
  padding: 0 0 48px;
  scroll-margin-top: 30px;
}

.legal-content section + section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: #46554f;
  font-size: 0.96rem;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 18px 0 22px;
  padding-left: 21px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: #126a48;
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 2px 6px;
  color: var(--ink);
  background: rgba(7, 21, 18, 0.06);
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
}

.legal-callout,
.legal-notice {
  margin: 28px 0 8px;
  padding: 22px 24px;
  border: 1px solid rgba(33, 129, 90, 0.22);
  border-radius: 14px;
  background: rgba(132, 240, 186, 0.09);
}

.legal-callout > strong,
.legal-notice > strong {
  color: var(--ink);
}

.legal-callout p {
  margin: 8px 0 0;
}

/* Vahnex Trolley product page */

.product-page {
  background: var(--paper-bright);
}

.product-header {
  background: rgba(7, 21, 18, 0.88);
  backdrop-filter: blur(18px);
}

.product-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 75% 32%, rgba(132, 240, 186, 0.12), transparent 32%),
    linear-gradient(145deg, #071512, #0d241d 66%, #091814);
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.product-hero-grid {
  position: relative;
  min-height: 790px;
  padding: 160px 0 94px;
  display: grid;
  grid-template-columns: 0.95fr 0.82fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.product-hero h1,
.product-heading h2,
.product-visibility h2,
.product-safety h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.product-hero h1 {
  font-size: clamp(3.6rem, 6.5vw, 6.3rem);
}

.product-hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.product-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.progression-console {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: rgba(4, 19, 15, 0.62);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.progression-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.progression-list li {
  min-height: 78px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progression-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progression-list li::after {
  content: "";
  width: 25%;
  height: 2px;
  grid-column: 2;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.progression-list li:nth-child(2)::after { width: 35%; }
.progression-list li:nth-child(3)::after { width: 45%; }
.progression-list li:nth-child(4)::after { width: 55%; }
.progression-list li:nth-child(5)::after { width: 65%; }

.progression-list small {
  color: var(--mint);
  font-size: 0.67rem;
  font-weight: 700;
}

.progression-list span,
.progression-list strong,
.progression-list em {
  display: block;
}

.progression-list strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.progression-list em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-style: normal;
}

.product-principles {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.product-principle-grid {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.product-principle-grid > span {
  padding: 24px 28px;
  display: grid;
  align-content: center;
  gap: 4px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-principle-grid > span + span {
  border-left: 1px solid var(--line);
}

.product-principle-grid small {
  color: #26875e;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-models {
  background: var(--paper-bright);
}

.product-heading {
  max-width: 950px;
}

.product-heading h2,
.product-visibility h2,
.product-safety h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.product-heading > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-model-grid {
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.product-model {
  min-height: 320px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 280px;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.product-model-meta span,
.product-model-meta small {
  display: block;
}

.product-model-meta span {
  color: #21815a;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.product-model-meta small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-model-main .model-type {
  color: #21815a;
}

.product-model-main h3 {
  max-width: 680px;
  margin: 9px 0 15px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.product-model-main > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.product-model dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.product-model dl div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.product-model dt {
  color: #21815a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-model dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 700;
}

.product-visibility {
  color: white;
  background: var(--ink);
}

.visibility-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.product-visibility p:not(.eyebrow) {
  max-width: 600px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.57);
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.metric-board span {
  min-height: 95px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  font-family: var(--font-display);
  font-weight: 600;
}

.metric-board small {
  color: var(--mint);
  font-size: 0.62rem;
}

.connection-section {
  background: var(--paper);
}

.connection-heading {
  max-width: 920px;
}

.connection-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.connection-grid article {
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
}

.connection-grid article > span {
  color: #21815a;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connection-grid h3 {
  margin: 12px 0 38px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.connection-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.connection-path strong {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
}

.connection-path i {
  color: #21815a;
  font-style: normal;
}

.connection-grid ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.connection-grid li {
  padding: 13px 0;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.connection-grid li small {
  color: #21815a;
}

.connection-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.product-safety {
  color: white;
  background: #10251f;
}

.product-safety-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.product-safety p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.56);
}

.fallback-board {
  border-top: 1px solid var(--light-line);
}

.fallback-board article {
  padding: 25px 0;
  border-bottom: 1px solid var(--light-line);
}

.fallback-board article > span {
  display: block;
  margin-bottom: 13px;
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fallback-board article div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.fallback-board article div strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.fallback-board article div i {
  color: var(--mint);
  font-style: normal;
}

.fallback-board article > p {
  margin: 0;
  font-size: 0.9rem;
}

/* Support and register-interest pages */

.support-hero-vx,
.interest-hero {
  color: white;
  background:
    radial-gradient(circle at 76% 28%, rgba(132, 240, 186, 0.12), transparent 34%),
    linear-gradient(145deg, #071512, #0c211b 68%, #091814);
}

.support-hero-vx-grid {
  min-height: 680px;
  padding: 160px 0 95px;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 100px;
  align-items: center;
}

.support-hero-vx h1,
.support-safety-vx h2,
.support-closing-vx h2,
.interest-hero h1,
.interest-next h2,
.interest-alternatives h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.support-hero-vx h1,
.interest-hero h1 {
  font-size: clamp(3.5rem, 6.4vw, 6.2rem);
}

.support-hero-vx h1 em,
.interest-hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.support-hero-vx-grid > div > p:not(.eyebrow),
.interest-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.response-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: rgba(3, 20, 15, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

.response-card > span,
.response-card small {
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.response-card > strong {
  margin-top: 14px;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.response-card > p {
  margin: 17px 0 32px;
  color: rgba(255, 255, 255, 0.52);
}

.response-card > div {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.response-card b {
  font-size: 0.82rem;
}

.support-channels,
.support-faq-vx,
.interest-next {
  background: var(--paper-bright);
}

.support-channel-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.support-channel-grid article {
  min-height: 390px;
  padding: 34px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-channel-grid article > span {
  color: #21815a;
  font-size: 0.72rem;
  font-weight: 700;
}

.support-channel-grid h3 {
  margin: 60px 0 12px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.035em;
}

.support-channel-grid p {
  margin: 0 0 28px;
  color: var(--muted);
}

.support-channel-grid a {
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.support-channel-grid a:hover {
  color: #16714d;
}

.support-channel-grid article > small {
  margin-top: auto;
  padding-top: 28px;
  color: #21815a;
  font-weight: 700;
}

.support-safety-vx {
  color: white;
  background: #10251f;
}

.support-safety-vx-grid,
.support-closing-vx-grid,
.interest-alternatives-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.support-safety-vx h2,
.support-closing-vx h2,
.interest-alternatives h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.support-safety-vx-grid > div:last-child > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.02rem;
}

.support-faq-vx-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 90px;
  align-items: start;
}

.support-faq-vx-grid .product-heading {
  position: sticky;
  top: 110px;
}

.faq-list-vx {
  border-top: 1px solid var(--line);
}

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

.faq-list-vx summary {
  min-height: 82px;
  padding: 22px 54px 22px 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list-vx summary::after {
  content: "+";
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #16714d;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list-vx details[open] summary::after {
  content: "−";
}

.faq-list-vx details > p {
  max-width: 760px;
  margin: -2px 52px 26px 0;
  color: var(--muted);
}

.support-closing-vx {
  color: white;
  background: #071512;
}

.support-closing-vx-grid > div:last-child {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.interest-hero-grid {
  min-height: 900px;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 7vw, 100px);
  align-items: center;
}

.interest-points {
  margin-top: 42px;
  max-width: 560px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.interest-points span {
  padding: 15px 0;
  display: flex;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.interest-points small {
  color: var(--mint);
}

.interest-form-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  border-radius: 28px;
  background: var(--paper-bright);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
}

.interest-form-intro > span {
  color: #16714d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interest-form-intro h2 {
  margin: 9px 0 5px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.interest-form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.interest-form {
  margin-top: 32px;
}

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

.interest-form label > span {
  margin-bottom: 7px;
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: white;
  font: inherit;
  font-size: 0.84rem;
}

.interest-form textarea {
  resize: vertical;
}

.interest-form input:focus-visible,
.interest-form select:focus-visible,
.interest-form textarea:focus-visible {
  border-color: #21815a;
  box-shadow: 0 0 0 3px rgba(33, 129, 90, 0.13);
}

.interest-form-wide {
  grid-column: 1 / -1;
}

.interest-confirm {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.72rem;
}

.interest-confirm input {
  width: 17px;
  min-height: 17px;
  margin: 2px 0 0;
}

.interest-confirm span {
  margin: 0 !important;
  font-weight: 400 !important;
}

.interest-form-footer {
  margin-top: 24px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.interest-form-footer p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.interest-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #16714d;
  font-size: 0.76rem;
  font-weight: 700;
}

.interest-next-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.interest-next-grid article {
  min-height: 250px;
  padding: 30px 34px 30px 0;
}

.interest-next-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.interest-next-grid span {
  color: #21815a;
  font-size: 0.7rem;
  font-weight: 700;
}

.interest-next-grid h3 {
  margin: 65px 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.interest-next-grid p {
  margin: 0;
  color: var(--muted);
}

.interest-alternatives {
  color: white;
  background: #10251f;
}

.interest-contact-list {
  border-top: 1px solid var(--light-line);
}

.interest-contact-list a {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 120px 1fr 20px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--light-line);
  color: white;
  text-decoration: none;
}

.interest-contact-list small {
  color: var(--mint);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.interest-contact-list strong {
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.interest-contact-list a > span {
  color: var(--mint);
}

@media (max-width: 980px) {
  .nav-links,
  .site-nav > .button {
    display: none;
  }

  .mobile-menu {
    position: relative;
    margin-left: auto;
    display: block;
  }

  .mobile-menu summary {
    color: white;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 38px;
    right: 0;
    width: min(280px, calc(100vw - 40px));
    padding: 12px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: #10251f;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
  }

  .mobile-menu-panel a {
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
  }

  .hero-grid,
  .split-heading,
  .models-heading,
  .system-grid,
  .safety-grid,
  .contact-grid,
  .product-hero-grid,
  .visibility-grid,
  .product-safety-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 150px;
    gap: 70px;
  }

  .motion-console {
    width: min(680px, 100%);
  }

  .split-heading,
  .system-grid,
  .safety-grid {
    gap: 45px;
  }

  .models-heading {
    gap: 30px;
  }

  .model-card {
    grid-template-columns: 120px 1fr 60px;
    gap: 28px;
  }

  .contact-grid {
    gap: 45px;
  }

  .product-hero-grid {
    padding-top: 150px;
    gap: 70px;
  }

  .progression-console {
    width: min(700px, 100%);
  }

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

  .product-principle-grid > span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-principle-grid > span:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .product-model {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .product-model dl {
    grid-column: 2;
  }

  .visibility-grid,
  .product-safety-grid {
    gap: 50px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .site-nav {
    min-height: 72px;
  }

  .hero-grid {
    min-height: auto;
    padding: 130px 0 75px;
  }

  .product-hero-grid {
    min-height: auto;
    padding: 130px 0 75px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .product-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .legal-hero-inner {
    padding: 130px 0 66px;
  }

  .legal-meta {
    gap: 28px;
  }

  .legal-layout {
    padding: 62px 0 85px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    padding-bottom: 38px;
  }

  .legal-content section + section {
    padding-top: 38px;
  }

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

  .motion-console {
    min-height: 440px;
    padding: 15px;
  }

  .route-map {
    height: 300px;
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .console-metrics span:nth-child(n + 2) {
    display: none;
  }

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

  .trust-grid span {
    min-height: 62px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid span:nth-child(3) {
    border-left: 0;
  }

  .section {
    padding: 85px 0;
  }

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

  .principle-grid article,
  .principle-grid article + article {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid h3 {
    margin-top: 30px;
  }

  .model-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .model-action {
    display: none;
  }

  .system-flow {
    padding: 15px;
  }

  .safety-copy li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-grid .legal-line {
    grid-column: auto;
  }

  .footer-grid > span {
    justify-self: start;
  }

  .product-principle-grid {
    grid-template-columns: 1fr;
  }

  .product-principle-grid > span,
  .product-principle-grid > span + span,
  .product-principle-grid > span:nth-child(3),
  .product-principle-grid > span:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-model {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-model dl {
    grid-column: auto;
  }

  .metric-board,
  .connection-grid {
    grid-template-columns: 1fr;
  }

  .connection-grid article {
    min-height: auto;
    padding: 26px;
  }
}

@media (max-width: 980px) {
  .support-hero-vx-grid,
  .support-safety-vx-grid,
  .support-closing-vx-grid,
  .interest-hero-grid,
  .interest-alternatives-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .support-channel-grid {
    grid-template-columns: 1fr;
  }

  .support-channel-grid article {
    min-height: auto;
  }

  .support-faq-vx-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .support-faq-vx-grid .product-heading {
    position: static;
  }

  .support-closing-vx-grid > div:last-child {
    justify-content: flex-start;
  }

  .interest-hero-grid {
    padding-top: 145px;
  }
}

@media (max-width: 700px) {
  .support-hero-vx-grid,
  .interest-hero-grid {
    min-height: auto;
    padding: 130px 0 78px;
  }

  .support-hero-vx h1,
  .interest-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.5rem);
  }

  .response-card,
  .interest-form-card {
    padding: 25px;
  }

  .response-card > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-channel-grid article {
    padding: 28px 24px;
  }

  .support-channel-grid h3 {
    margin-top: 35px;
  }

  .support-safety-vx-grid,
  .support-closing-vx-grid,
  .interest-alternatives-grid {
    gap: 35px;
  }

  .support-closing-vx-grid > div:last-child,
  .interest-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .support-closing-vx-grid .button,
  .interest-form-footer .button {
    width: 100%;
  }

  .interest-form-grid,
  .interest-next-grid {
    grid-template-columns: 1fr;
  }

  .interest-form-wide {
    grid-column: auto;
  }

  .interest-next-grid article,
  .interest-next-grid article + article {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .interest-next-grid h3 {
    margin-top: 28px;
  }

  .interest-contact-list a {
    grid-template-columns: 1fr 20px;
    gap: 5px 15px;
  }

  .interest-contact-list small {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
