:root {
  color-scheme: light;
  --bg: #f0f3f8;
  --bg-grid: rgba(47, 43, 107, 0.055);
  --surface: #ffffff;
  --surface-soft: #eef2fb;
  --surface-tint: #f3fbfa;
  --ink: #2f2b6b;
  --ink-2: #37336f;
  --muted: #6b7280;
  --line: #dfe5f2;
  --line-strong: #c8d1e5;
  --violet: #a98bea;
  --violet-deep: #2f2b6b;
  --teal: #2dd4bf;
  --teal-deep: #128779;
  --gold: #d9a928;
  --clay: #b85a55;
  --charcoal: #0b0a1a;
  --shadow: 0 22px 70px rgba(47, 43, 107, 0.12);
  --shadow-soft: 0 14px 36px rgba(47, 43, 107, 0.08);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-grid) 1px, transparent 1px),
    radial-gradient(circle at 18% 8%, rgba(45, 212, 191, 0.12), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(217, 169, 40, 0.09), transparent 28%),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  border-radius: var(--radius);
}

::selection {
  background: rgba(31, 154, 148, 0.22);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  padding: 10px 12px;
  background: var(--charcoal);
  color: #ffffff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(47, 43, 107, 0.08);
  background: rgba(240, 243, 248, 0.9);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

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

.brand-link strong {
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.05;
}

.brand-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(111, 101, 216, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 242, 251, 0.62)),
    var(--surface);
  box-shadow: inset 0 0 0 7px rgba(111, 101, 216, 0.11);
}

.brand-mark,
.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 8px;
  border: 2px solid var(--gold);
}

.brand-mark::after {
  left: 9px;
  top: 16px;
  width: 16px;
  height: 7px;
  border-top: 3px solid var(--teal);
  transform: rotate(-13deg);
}

.brand-mark i {
  right: 7px;
  bottom: 7px;
  width: 7px;
  height: 7px;
  background: var(--clay);
}

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

.site-nav a {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: none;
  box-shadow: 0 8px 22px rgba(18, 22, 61, 0.06);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-band,
.proof-band,
.section-grid,
.dark-band,
.cards-grid,
.platform-layout,
.schema-band,
.form-layout,
.cta-band,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) 0 44px;
}

.hero-copy,
.page-hero {
  position: relative;
}

.hero-copy::before,
.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--clay));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  line-height: 1.18;
}

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

.hero-lede {
  max-width: 660px;
  font-size: clamp(1.1rem, 2vw, 1.44rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button.primary {
  background: var(--charcoal);
  color: #ffffff;
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 22, 61, 0.14);
  outline: none;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #171b46;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(31, 154, 148, 0.48);
}

.signal-console {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(18, 22, 61, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 253, 0.98)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(111, 101, 216, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 154, 148, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.console-top,
.console-body,
.signal-path,
.console-metrics {
  position: relative;
  z-index: 1;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
}

.console-top span:nth-child(2) {
  background: var(--gold);
}

.console-top span:nth-child(3) {
  background: var(--teal);
}

.console-top strong {
  margin-left: 8px;
  color: var(--ink);
}

.console-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 22px;
  padding: 24px;
  align-items: center;
}

.token-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.panel-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.token-panel strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(1.8rem, 4.8vw, 3.08rem);
  line-height: 1;
}

.token-panel p {
  margin: 12px 0 0;
}

.qr-frame {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  aspect-ratio: 1;
  width: 164px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 154, 148, 0.1), rgba(111, 101, 216, 0.08)),
    #ffffff;
}

.qr-frame i {
  border-radius: 2px;
  background: rgba(18, 22, 61, 0.08);
}

.qr-frame i.on {
  background: var(--charcoal);
}

.signal-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.signal-path div {
  min-height: 112px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.signal-path div:last-child {
  border-right: 0;
}

.signal-path span,
.steps-grid span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-path strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  line-height: 1.2;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.console-metrics div {
  padding: 18px;
}

.console-metrics b,
.console-metrics span {
  display: block;
}

.console-metrics b {
  color: var(--ink);
  font-size: 1.62rem;
  line-height: 1;
}

.console-metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.proof-band div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  color: var(--ink);
}

.proof-band span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.section-grid,
.platform-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 9vw, 120px) 0;
  align-items: start;
}

.section-grid.compact {
  padding-top: 36px;
}

.section-grid > div > p:not(.eyebrow),
.form-layout > div > p {
  font-size: 1.02rem;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(18, 22, 61, 0.05);
}

.feature-item > span {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border: 1px solid rgba(31, 154, 148, 0.3);
  border-radius: 50%;
  background: rgba(31, 154, 148, 0.11);
}

.feature-item > span::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-item > span::after {
  content: "";
  position: absolute;
  left: 14px;
  top: -4px;
  width: 1px;
  height: 38px;
  background: rgba(111, 101, 216, 0.38);
}

.feature-item h3,
.feature-item p {
  margin-bottom: 0;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 5vw, 62px);
  margin-top: 8px;
  margin-bottom: clamp(72px, 9vw, 116px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(56, 48, 134, 0.88), rgba(13, 16, 43, 0.98) 58%),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.dark-band .eyebrow {
  color: #83ded8;
}

.dark-band h2,
.dark-band h3 {
  color: #ffffff;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.7);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.steps-grid article {
  min-height: 190px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.steps-grid h3 {
  margin-top: 46px;
}

.steps-grid p {
  margin-bottom: 0;
  line-height: 1.55;
}

.page-hero {
  padding: clamp(82px, 10vw, 132px) 0 clamp(36px, 6vw, 72px);
}

.page-hero h1 {
  font-size: clamp(3.1rem, 8vw, 7rem);
}

.page-hero p {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 24px 0 clamp(72px, 9vw, 120px);
}

.cards-grid.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.dense {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.lead-form,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.info-card {
  position: relative;
  min-height: 268px;
  padding: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(18, 22, 61, 0.055);
}

.info-card > span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  border: 1px solid rgba(111, 101, 216, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(111, 101, 216, 0.28) 49%, rgba(111, 101, 216, 0.28) 51%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(31, 154, 148, 0.28) 49%, rgba(31, 154, 148, 0.28) 51%, transparent 52%),
    rgba(31, 154, 148, 0.08);
}

.info-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 16px 14px 0 rgba(184, 90, 85, 0.7);
}

.info-card h2 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.16;
}

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

.service-card {
  min-height: 360px;
}

.service-card .price {
  display: inline-flex;
  width: fit-content;
  margin: -4px 0 14px;
  padding: 6px 8px;
  border: 1px solid rgba(45, 212, 191, 0.34);
  border-radius: var(--radius);
  background: rgba(45, 212, 191, 0.11);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.platform-layout {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
}

.schema-band {
  margin-bottom: clamp(72px, 9vw, 118px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(31, 154, 148, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 251, 250, 0.96), rgba(255, 255, 255, 0.94)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.schema-band h2 {
  max-width: 1080px;
  margin-bottom: 12px;
  color: var(--teal-deep);
  font-size: clamp(1.5rem, 3vw, 2.9rem);
}

.schema-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.form-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.82fr);
}

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

.timeline-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(47, 43, 107, 0.05);
}

.timeline-list article > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-list h3,
.timeline-list p {
  margin-bottom: 0;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 12px 13px;
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
  min-height: 128px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(31, 154, 148, 0.18);
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--teal-deep);
  font-weight: 760;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--charcoal);
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
}

.contact-note strong {
  color: var(--ink);
}

.contact-note span {
  color: var(--muted);
  line-height: 1.5;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(72px, 9vw, 110px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(18, 22, 61, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--charcoal), #211b59 58%, #173f49),
    var(--charcoal);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 720px;
  color: #ffffff;
}

.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .eyebrow {
  color: #83ded8;
}

.cta-band .button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--charcoal);
}

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

.footer-brand {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 760;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--ink);
  outline: none;
}

@media (max-width: 1020px) {
  .hero,
  .section-grid,
  .dark-band,
  .platform-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .platform-layout,
  .form-layout {
    padding-top: 36px;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.25rem);
  }

  h2 {
    font-size: clamp(1.86rem, 10vw, 3rem);
  }

  .proof-band,
  .signal-path,
  .console-metrics {
    grid-template-columns: 1fr;
  }

  .signal-path div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-path div:last-child {
    border-bottom: 0;
  }

  .signal-path strong {
    margin-top: 8px;
  }

  .console-metrics div {
    border-bottom: 1px solid var(--line);
  }

  .console-metrics div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .section-band,
  .proof-band,
  .section-grid,
  .dark-band,
  .cards-grid,
  .platform-layout,
  .schema-band,
  .form-layout,
  .cta-band,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
  }

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

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

  .qr-frame {
    width: min(100%, 190px);
    justify-self: start;
  }

  .cards-grid,
  .cards-grid.service-grid,
  .cards-grid.dense,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 230px;
  }

  .form-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
