:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5a6678;
  --soft: #eef5fb;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --line: #d8e2ee;
  --blue: #1f6feb;
  --blue-dark: #154ea8;
  --cyan: #10b7c9;
  --green: #16856d;
  --amber: #c2790b;
  --red: #c4464f;
  --night: #07111f;
  --night-2: #101a2b;
  --shadow: 0 18px 55px rgba(27, 43, 66, 0.12);
  --shadow-strong: 0 26px 80px rgba(7, 17, 31, 0.28);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f6f8fb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-80px);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.page-header {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 32, 51, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

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

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: inherit;
  font-weight: 700;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.page-header .site-nav a:hover,
.site-header.page-header .site-nav a[aria-current="page"] {
  background: #edf3ff;
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  min-height: 94dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px clamp(22px, 7vw, 82px) 96px;
  color: #ffffff;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.34;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.04);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 26, 0.94) 0%, rgba(8, 18, 34, 0.78) 46%, rgba(8, 18, 34, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 13, 26, 0.42) 0%, rgba(5, 13, 26, 0.18) 46%, rgba(5, 13, 26, 0.82) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #cfe0ff;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(60px, 10vw, 118px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-line {
  margin-bottom: 18px;
  font-size: clamp(25px, 4.2vw, 48px);
  line-height: 1.18;
  font-weight: 850;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 21px);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-proof {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-proof div {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-proof dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof dd {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.hero-device {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.device-shell {
  position: relative;
  width: min(330px, 72vw);
  aspect-ratio: 720 / 1520;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(218, 229, 241, 0.84));
  box-shadow: var(--shadow-strong);
}

.device-shell::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 82px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.82);
  z-index: 2;
}

.device-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.device-note {
  position: absolute;
  min-width: 164px;
  padding: 13px 14px 14px 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.device-note span {
  position: absolute;
  left: 14px;
  top: 17px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.45);
}

.device-note strong,
.device-note small {
  display: block;
}

.device-note strong {
  font-size: 15px;
  line-height: 1.2;
}

.device-note small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.device-note-top {
  top: 92px;
  left: 4px;
}

.device-note-bottom {
  right: 0;
  bottom: 98px;
}

.device-note-bottom span {
  background: var(--amber);
}

.hero-status {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 7vw, 82px);
  right: clamp(22px, 7vw, 82px);
  bottom: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-status span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.info-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 226, 238, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-strip div {
  padding: 19px 20px;
  border-right: 1px solid var(--line);
}

.info-strip div:last-child {
  border-right: 0;
}

.info-strip span,
.info-strip strong {
  display: block;
}

.info-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.info-strip strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 40px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.evidence-band h2,
.cta-band h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  font-weight: 900;
}

.section-copy p,
.section-heading p,
.evidence-band p,
.cta-band p {
  color: var(--muted);
}

.product-panel,
.support-info,
.feedback-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-panel {
  padding: 24px;
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.product-panel::before {
  content: "";
  display: block;
  height: 6px;
  margin: -24px -24px 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), #f2b84b);
}

.panel-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-panel strong,
.info-block strong {
  display: block;
  font-size: 19px;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(27, 43, 66, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: #bfd0e2;
  box-shadow: 0 18px 46px rgba(27, 43, 66, 0.1);
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 11px rgba(255, 255, 255, 0.42);
}

.feature-icon-blue {
  background: var(--blue);
}

.feature-icon-green {
  background: var(--green);
}

.feature-icon-amber {
  background: var(--amber);
}

.tech-section {
  background: #0d1726;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-tech {
  padding-top: 82px;
  padding-bottom: 82px;
}

.tech-section .eyebrow {
  color: #bdd4ff;
}

.tech-section .section-heading h2 {
  color: #ffffff;
}

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

.tech-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.tech-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(16, 183, 201, 0.18);
  color: #8ff2ff;
  font-size: 13px;
  font-weight: 900;
}

.tech-grid h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.25;
}

.tech-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.process-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-process {
  padding-top: 82px;
  padding-bottom: 82px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-grid article {
  min-height: 252px;
  padding: 26px 22px;
  background: #fbfdff;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #edf6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.evidence-band,
.cta-band {
  width: 100%;
  max-width: none;
  background: var(--night-2);
  color: #ffffff;
  border-radius: 0;
  padding: 66px max(20px, calc((100% - var(--max)) / 2));
}

.evidence-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 0;
  margin-bottom: 0;
}

.evidence-band .eyebrow,
.cta-band .eyebrow {
  color: #bdd4ff;
}

.evidence-band p,
.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.compliance-list {
  display: grid;
  gap: 12px;
}

.compliance-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.compliance-row:hover {
  transform: translateY(-2px);
  border-color: #bfd0e2;
  box-shadow: 0 14px 34px rgba(27, 43, 66, 0.08);
}

.compliance-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.compliance-row small {
  color: var(--muted);
  font-size: 14px;
}

.compliance-row b {
  color: var(--blue);
}

.cta-band {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(90deg, #0d1828, #102538 56%, #17230f);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
  font-size: 20px;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: start;
  justify-content: flex-end;
}

.record {
  grid-column: 1 / -1;
  font-size: 13px;
}

.legal-page,
.support-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 40px;
}

.legal-hero,
.support-hero {
  max-width: 820px;
  margin-bottom: 34px;
}

.legal-hero h1,
.support-hero h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
}

.legal-hero p,
.support-hero p {
  color: var(--muted);
  font-size: 18px;
}

.legal-document {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.legal-document section + section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.3;
}

.legal-document p {
  color: #3e4d61;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.support-info {
  padding: 24px;
  display: grid;
  gap: 22px;
}

.info-block {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.info-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.text-action {
  margin-top: 10px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}

.feedback-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.partner-section {
  padding: 54px 0 18px;
}

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

.partner-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(27, 43, 66, 0.05);
}

.partner-grid span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.partner-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    width: min(280px, calc(100vw - 36px));
    display: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: #edf3ff;
    color: var(--blue);
  }

  .section-intro,
  .evidence-band,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

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

  .hero-content {
    max-width: 860px;
  }

  .hero-device {
    min-height: 520px;
  }

  .info-strip,
  .process-grid,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-strip div:nth-child(2) {
    border-right: 0;
  }

  .info-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: auto;
    padding: 84px 18px 70px;
  }

  .hero-bg {
    object-position: center top;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 13, 26, 0.94) 0%, rgba(8, 18, 34, 0.82) 58%, rgba(5, 13, 26, 0.92) 100%);
  }

  .hero-line {
    margin-bottom: 14px;
    font-size: clamp(25px, 8.2vw, 34px);
  }

  h1 {
    font-size: clamp(52px, 15vw, 62px);
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.62;
  }

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

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

  .hero-proof {
    display: none;
  }

  .hero-device {
    min-height: 260px;
    margin-top: 24px;
  }

  .device-shell {
    width: min(188px, 56vw);
    border-radius: 24px;
    padding: 7px;
  }

  .device-shell img {
    border-radius: 18px;
  }

  .device-shell::before {
    top: 11px;
    width: 52px;
    height: 14px;
  }

  .device-note {
    display: none;
  }

  .hero-status {
    display: none;
  }

  .section {
    width: calc(100% - 32px);
    padding: 66px 0;
  }

  .info-strip {
    width: calc(100% - 32px);
    margin-top: -46px;
  }

  .info-strip div {
    padding: 16px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-strip div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .info-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .info-strip strong {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .process-section .section {
    width: calc(100% - 32px);
  }

  .feature-grid,
  .tech-grid,
  .partner-grid {
    gap: 10px;
  }

  .feature-card,
  .tech-grid article,
  .process-grid article,
  .partner-grid article {
    min-height: 180px;
    padding: 14px;
  }

  .feature-card h3,
  .tech-grid h3,
  .process-grid h3 {
    font-size: 17px;
    line-height: 1.28;
  }

  .feature-card p,
  .tech-grid p,
  .process-grid p,
  .partner-grid p {
    font-size: 13px;
    line-height: 1.55;
  }

  .feature-icon,
  .tech-grid span,
  .process-grid span {
    width: 34px;
    height: 34px;
  }

  .feature-icon {
    box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.42);
  }

  .tech-grid span,
  .process-grid span {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .partner-grid span {
    min-height: 30px;
    margin-bottom: 16px;
    padding: 0 9px;
    font-size: 12px;
  }

  .evidence-band,
  .cta-band {
    width: 100%;
    padding: 46px 16px;
  }

  .compliance-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-footer {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

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

  .legal-page,
  .support-page {
    width: calc(100% - 32px);
    padding-top: 104px;
  }
}

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