:root {
  --bg: #050914;
  --bg-soft: #07111f;
  --panel: rgba(11, 24, 42, 0.78);
  --panel-solid: #0b182a;
  --panel-2: rgba(13, 35, 58, 0.72);
  --text: #eef6ff;
  --muted: #93a8bd;
  --muted-2: #6f8398;
  --line: rgba(126, 221, 255, 0.16);
  --line-strong: rgba(126, 221, 255, 0.34);
  --cyan: #4de3ff;
  --blue: #397cff;
  --green: #50ffb1;
  --violet: #9d6cff;
  --warning: #ffd56a;
  --danger: #ff6b8a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(57, 124, 255, 0.22), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(77, 227, 255, 0.16), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(80, 255, 177, 0.08), transparent 35%),
    var(--bg);
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 221, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 221, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 80%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(circle at 22% 18%, rgba(77, 227, 255, 0.14), transparent 20%),
    radial-gradient(circle at 76% 28%, rgba(80, 255, 177, 0.11), transparent 18%),
    linear-gradient(120deg, transparent 0%, rgba(77, 227, 255, 0.06) 48%, transparent 56%);
  animation: atmosphereDrift 16s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes atmosphereDrift {
  from { transform: translate3d(-3%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.05); }
}

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

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.top-notice {
  position: relative;
  z-index: 60;
  padding: 10px 0;
  border-bottom: 1px solid rgba(126, 221, 255, 0.14);
  color: #cce1f4;
  background:
    linear-gradient(90deg, rgba(77, 227, 255, 0.1), rgba(80, 255, 177, 0.08), rgba(157, 108, 255, 0.08)),
    rgba(4, 10, 20, 0.94);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.top-notice .container {
  width: min(100% - 28px, var(--container));
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 150;
  border-bottom: 1px solid rgba(126, 221, 255, 0.12);
  background: rgba(5, 9, 20, 0.72);
  backdrop-filter: blur(20px);
}

body.admin-bar .site-header {
  top: 32px;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 8px 26px rgba(77, 227, 255, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  display: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

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

.btn:disabled {
  cursor: wait;
  transform: none;
  opacity: 0.82;
}

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 16px 42px rgba(77, 227, 255, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(77, 227, 255, 0.08);
}

.hero {
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
  isolation: isolate;
  --hero-x: 50%;
  --hero-y: 34%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-shift-rx: 0px;
  --hero-shift-ry: 0px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(77, 227, 255, 0.22), transparent 15%),
    radial-gradient(circle at 18% 24%, rgba(80, 255, 177, 0.16), transparent 22%),
    radial-gradient(circle at 72% 14%, rgba(57, 124, 255, 0.18), transparent 24%),
    conic-gradient(from 165deg at 48% 44%, transparent 0deg, rgba(77, 227, 255, 0.12) 42deg, transparent 86deg, rgba(157, 108, 255, 0.08) 148deg, transparent 220deg);
  background-size: 100% 100%, 78% 78%, 86% 86%, 115% 115%;
  background-position: center, 8% 16%, 92% 8%, center;
  filter: blur(12px);
  opacity: 0.88;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  animation: heroAurora 13s ease-in-out infinite alternate;
  transition: transform 0.24s ease, background 0.2s ease;
}

.hero::after {
  opacity: 0.34;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(77, 227, 255, 0.2) 49%, transparent 52%),
    radial-gradient(circle, rgba(126, 221, 255, 0.18) 1px, transparent 1.6px);
  background-size: 260px 260px, 38px 38px;
  animation: heroField 18s linear infinite;
  mask-image: radial-gradient(circle at var(--hero-x) var(--hero-y), #000 0%, transparent 62%);
}

@keyframes heroAurora {
  0% {
    background-position: center, 0% 12%, 100% 4%, 50% 50%;
    filter: blur(12px) hue-rotate(0deg);
  }
  50% {
    background-position: center, 18% 30%, 78% 24%, 46% 56%;
    filter: blur(16px) hue-rotate(8deg);
  }
  100% {
    background-position: center, 28% 10%, 88% 38%, 54% 44%;
    filter: blur(12px) hue-rotate(-6deg);
  }
}

@keyframes heroField {
  from { transform: translate3d(calc(-3% + var(--hero-shift-rx)), calc(-2% + var(--hero-shift-ry)), 0) rotate(0deg); }
  to { transform: translate3d(calc(3% + var(--hero-shift-rx)), calc(2% + var(--hero-shift-ry)), 0) rotate(1deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(77, 227, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.eyebrow-warning {
  border-color: rgba(255,213,106,.28);
  color: var(--warning);
  background: rgba(255,213,106,.08);
}

.eyebrow-warning::before {
  background: var(--warning);
  box-shadow: 0 0 20px var(--warning);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(40px, 4.7vw, 64px);
  line-height: 0.99;
  max-width: 650px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #bceeff 42%, #5efed0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin: 24px 0 0;
  color: #bdd0e2;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.66;
  max-width: 640px;
}

.hero-copy strong {
  color: #fff;
}

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

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.micro-trust b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.72;
  z-index: -1;
}

.hero-visual::before {
  width: 260px;
  height: 260px;
  background: rgba(57, 124, 255, 0.26);
  top: -46px;
  right: 38px;
}

.hero-visual::after {
  width: 210px;
  height: 210px;
  background: rgba(80, 255, 177, 0.17);
  bottom: -34px;
  left: -18px;
}

.hero-image-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 10%, rgba(77, 227, 255, 0.12), transparent 28%),
    rgba(7, 17, 31, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 -80px 90px rgba(5, 9, 20, 0.18);
}

.strip {
  padding: 20px 0 64px;
}

.strip-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 14px;
}

.strip-card {
  position: relative;
  --glow-x: 50%;
  --glow-y: 0%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.strip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(77, 227, 255, 0.22), transparent 38%),
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(80, 255, 177, 0.1), transparent 52%);
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.strip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 227, 255, 0.42);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
}

.strip-card:hover::before {
  opacity: 1;
}

.strip-card strong {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.strip-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

section {
  padding: 76px 0;
}

#scanner {
  scroll-margin-top: 118px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2,
.section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  max-width: 760px;
}

.legal-page {
  padding: 88px 0;
}

.legal-shell {
  width: 100%;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(77, 227, 255, 0.1), transparent 28%),
    rgba(7, 17, 31, 0.84);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin-bottom: 18px;
}

.legal-content {
  color: #d6e4f1;
  line-height: 1.8;
  font-size: 16px;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin: 28px 0 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.03em;
}

.legal-content p,
.legal-content ul {
  margin: 0 0 16px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content strong {
  color: #fff;
}

.section-head p,
.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

.section-copy-wide {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

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

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

.card {
  position: relative;
  --glow-x: 50%;
  --glow-y: 0%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(13, 35, 58, 0.72), rgba(8, 18, 33, 0.68));
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(77, 227, 255, 0.24), transparent 34%),
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(80, 255, 177, 0.12), transparent 48%);
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 227, 255, 0.42);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(77, 227, 255, 0.08);
  color: var(--cyan);
  font-size: 20px;
  font-weight: 900;
}

.card h3 {
  position: relative;
  font-size: 22px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.scanner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
  scroll-margin-top: 118px;
}

.scanner-panel {
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(77, 227, 255, 0.12), transparent 30%),
    rgba(7, 17, 31, 0.84);
  box-shadow: var(--shadow);
}

.scanner-panel h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.scanner-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: #c2d2e1;
  font-size: 14px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #03111f;
  background: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.form-card {
  position: relative;
  z-index: 1;
  height: fit-content;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(11, 24, 42, 0.9);
  box-shadow: var(--shadow);
}

.form-card:focus-within {
  z-index: 120;
}

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

.form-top strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.form-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.progress {
  width: 116px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.progress i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 0.25s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 107, 138, 0.35);
  border-radius: 14px;
  color: #ffdce5;
  background: rgba(255, 107, 138, 0.08);
  font-size: 14px;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  border-color: rgba(80, 255, 177, 0.28);
  color: #ddfff0;
  background: rgba(80, 255, 177, 0.09);
}

.form-status[data-state="loading"] {
  display: flex;
  align-items: center;
  gap: 10px;
  border-color: rgba(77, 227, 255, 0.3);
  color: #def7ff;
  background: rgba(77, 227, 255, 0.08);
}

.form-status[data-state="loading"]::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid rgba(77, 227, 255, 0.26);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: ontario-spin 0.8s linear infinite;
}

.form-card.is-loading {
  overflow: hidden;
  pointer-events: none;
}

.form-card.is-loading .form-top,
.form-card.is-loading .form-step,
.form-card.is-loading .form-actions,
.form-card.is-loading .checkbox-field,
.form-card.is-loading .short-submit,
.form-card.is-loading .field,
.form-card.is-loading .form-note {
  opacity: 0.22;
}

.form-card.is-loading input,
.form-card.is-loading select,
.form-card.is-loading textarea,
.form-card.is-loading button {
  cursor: wait;
}

.form-loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 16, 28, 0.78), rgba(5, 16, 28, 0.9)),
    radial-gradient(circle at 50% 20%, rgba(77, 227, 255, 0.12), transparent 30%);
  backdrop-filter: blur(8px);
}

.form-loading-overlay[hidden] {
  display: none;
}

.form-loading-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(77, 227, 255, 0.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: ontario-spin 0.8s linear infinite;
  box-shadow: 0 0 28px rgba(77, 227, 255, 0.12);
}

.form-loading-title {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.form-loading-copy {
  max-width: 320px;
  color: #c5d7e9;
  font-size: 15px;
  line-height: 1.55;
}

@keyframes ontario-spin {
  to {
    transform: rotate(360deg);
  }
}

label {
  color: #d8e8f7;
  font-size: 13px;
  font-weight: 800;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(126, 221, 255, 0.22);
  border-radius: 14px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

select option {
  color: #06111f;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: rgba(77, 227, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(77, 227, 255, 0.08);
}

input:not([type="checkbox"]):not([type="radio"]).is-invalid,
select.is-invalid,
textarea.is-invalid,
.field.has-error .choices__inner {
  border-color: rgba(255, 107, 138, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.12) !important;
}

.choices {
  overflow: visible !important;
}

.field-error {
  color: #ff9fb5;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 0;
}

.choices {
  margin-bottom: 0;
}

.choices.is-open {
  z-index: 125;
  overflow: visible;
}

.choices[data-type*=select-one]::after {
  top: 50%;
  right: 18px;
  margin-top: -3px;
  border-width: 6px 5px 0;
  border-style: solid;
  border-color: var(--cyan) transparent transparent;
}

.choices[data-type*=select-one].is-open::after {
  border-width: 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent var(--cyan);
  margin-top: -7px;
}

.choices__inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 11px 44px 11px 14px;
  border: 1px solid rgba(126, 221, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(17, 38, 63, 0.88), rgba(8, 20, 36, 0.9));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-radius: 14px;
  border-color: rgba(77, 227, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(77, 227, 255, 0.08), 0 18px 55px rgba(0, 0, 0, 0.22);
}

.is-open .choices__inner {
  border-color: rgba(77, 227, 255, 0.42);
  box-shadow: none;
}

.ontario-display-simple .is-open .choices__inner {
  border-color: rgba(82, 185, 231, 0.42);
}

.choices[data-type*=select-one].is-open .choices__inner {
  border-radius: 14px !important;
}

.choices__list--single {
  display: flex;
  align-items: center;
  min-height: 26px;
  padding: 0;
}

.choices__list--single .choices__item {
  line-height: 1.3;
  color: var(--text);
}

.choices__placeholder,
.choices__item--choice.is-placeholder {
  color: var(--muted-2);
  opacity: 1;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  z-index: 70;
  margin-top: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(10, 19, 32, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(77, 227, 255, 0.05);
  overflow: hidden;
}

.choices__list--dropdown.is-active,
.choices__list[aria-expanded].is-active {
  border-radius: 18px;
}

.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
  background: rgba(10, 19, 32, 0.98);
}

.choices__list--dropdown .choices__placeholder,
.choices__list[aria-expanded] .choices__placeholder,
.choices__list--dropdown .choices__item--choice.is-placeholder,
.choices__list[aria-expanded] .choices__item--choice.is-placeholder {
  color: #d9e9f7;
  background: rgba(10, 19, 32, 0.98);
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  padding: 13px 16px;
  color: #d9e9f7;
  background: rgba(10, 19, 32, 0.98);
  font-size: 15px;
  border-bottom: 1px solid rgba(126, 221, 255, 0.07);
}

.choices__list--dropdown .choices__item:last-child,
.choices__list[aria-expanded] .choices__item:last-child {
  border-bottom: 0;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.choices__list--dropdown .choices__item.is-selected,
.choices__list[aria-expanded] .choices__item.is-selected,
.choices__list--dropdown .choices__item[aria-selected="true"],
.choices__list[aria-expanded] .choices__item[aria-selected="true"] {
  color: #eef6ff !important;
  background:
    linear-gradient(90deg, rgba(77, 227, 255, 0.18), rgba(80, 255, 177, 0.1)),
    rgba(12, 31, 50, 0.98) !important;
  box-shadow: inset 3px 0 0 rgba(77, 227, 255, 0.85);
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__list--dropdown .choices__item--disabled,
.choices__list[aria-expanded] .choices__item--disabled {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.from-left {
  transform: translate3d(-36px, 18px, 0) scale(0.985);
}

.reveal.from-right {
  transform: translate3d(36px, 18px, 0) scale(0.985);
}

.reveal.from-left.is-visible,
.reveal.from-right.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.phone-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(126, 221, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.phone-input:focus-within {
  border-color: rgba(77, 227, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(77, 227, 255, 0.08);
}

.phone-input.has-error {
  border-color: rgba(255, 107, 138, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.12) !important;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0;
  color: #e6f3ff;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
}

.phone-flag {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(77, 227, 255, 0.22));
}

.phone-input input {
  background: none !important;
  all: unset;
  box-sizing: border-box;
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.phone-input input:focus,
.phone-input input.is-invalid {
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.short-form {
  background:
    radial-gradient(circle at 100% 0%, rgba(80, 255, 177, 0.11), transparent 28%),
    rgba(11, 24, 42, 0.9);
}

.short-form textarea {
  min-height: 126px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #f2f8ff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
}

.checkbox-field input {
  appearance: none;
  flex: 0 0 auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(126, 221, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  cursor: pointer;
}

.checkbox-field input:checked {
  border-color: rgba(77, 227, 255, 0.8);
  background:
    center / 12px 12px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2306111f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.2' d='M3 8.2 6.3 11.5 13 4.8'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #4de3ff, #50ffb1);
}

.checkbox-field input:focus-visible {
  outline: none;
  border-color: rgba(77, 227, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(77, 227, 255, 0.1);
}

.checkbox-field input.is-invalid {
  border-color: rgba(255, 107, 138, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.12) !important;
}

.checkbox-field .field-error {
  grid-column: 2;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
}

.short-submit {
  width: 100%;
  margin-top: 18px;
}

.form-card.is-submitted {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.form-success-state {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.form-success-state h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.form-success-state p {
  margin: 0;
  color: #c5d7e9;
  font-size: 18px;
  line-height: 1.58;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(77, 227, 255, 0.16), transparent 28%),
    rgba(3, 7, 15, 0.72);
  backdrop-filter: blur(14px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  transform: translate3d(0, 18px, 0) scale(0.97);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.modal .short-form {
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.58);
}

.modal-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  position: relative;
}

.modal-close::before {
  content: "×";
  display: block;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 227, 255, 0.56);
  background: rgba(77, 227, 255, 0.1);
}

.success-dialog {
  width: min(100%, 640px);
}

.success-card {
  position: relative;
  overflow: hidden;
  padding: 42px 40px 36px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 16%, rgba(77, 227, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(80, 255, 177, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(12, 28, 46, 0.98), rgba(6, 15, 28, 0.98));
  text-align: center;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.56);
}

.success-eyebrow {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 227, 255, 0.8), rgba(80, 255, 177, 0.72), transparent);
}

.success-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.success-icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(77, 227, 255, 0.2), rgba(80, 255, 177, 0.16));
  box-shadow: 0 0 36px rgba(77, 227, 255, 0.18);
}

.success-icon span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 3px solid rgba(80, 255, 177, 0.82);
  border-radius: 50%;
  color: var(--green);
  background: rgba(5, 15, 24, 0.44);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}

.success-card h2 {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 auto 18px;
  max-width: 420px;
}

.success-copy {
  max-width: 420px;
  margin: 0 auto;
}

.success-card p {
  margin: 0;
  color: #c5d7e9;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.success-copy p + p {
  margin-top: 10px;
}

.success-close {
  min-width: 190px;
  min-height: 58px;
  margin-top: 24px;
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 42px rgba(77, 227, 255, 0.24);
  font-size: 18px;
}

.display-mode-switch {
  border: 0;
  padding: 0;
  color: #b8d6eb;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.display-mode-switch:hover,
.display-mode-switch:focus-visible {
  color: var(--cyan);
}

.display-choice-dialog {
  width: min(100%, 640px);
}

.display-choice-card {
  position: relative;
  overflow: hidden;
  padding: 40px 36px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 16%, rgba(77, 227, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(12, 28, 46, 0.98), rgba(6, 15, 28, 0.98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.56);
  text-align: center;
}

.display-choice-card h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.display-choice-card p {
  max-width: 460px;
  margin: 0 auto;
  color: #c5d7e9;
  font-size: 18px;
  line-height: 1.58;
}

.display-choice-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.success-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 220px);
}

.success-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(77, 227, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 16%, rgba(80, 255, 177, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(5, 16, 28, 0.08), rgba(5, 16, 28, 0));
  pointer-events: none;
}

.success-page-section {
  position: relative;
  padding: 96px 0 104px;
}

.success-page-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 48px 48px;
}

.success-page-card h1 {
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 auto 18px;
  max-width: 520px;
}

.success-page-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.welcome-dialog {
  width: min(100%, 880px);
}

.welcome-card {
  position: relative;
  overflow: hidden;
  padding: 56px 48px 44px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 14%, rgba(77, 227, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(80, 255, 177, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(12, 28, 46, 0.985), rgba(6, 15, 28, 0.985));
  text-align: center;
  box-shadow: 0 36px 130px rgba(0, 0, 0, 0.58);
}

.welcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 227, 255, 0.76), rgba(80, 255, 177, 0.7), transparent);
}

.welcome-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.welcome-card h2 {
  margin: 0 auto 18px;
  max-width: 820px;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.welcome-copy {
  max-width: 620px;
  margin: 0 auto;
}

.welcome-card p {
  margin: 0;
  color: #c9daea;
  font-size: clamp(19px, 2.2vw, 30px);
  line-height: 1.45;
}

.welcome-close {
  min-width: 260px;
  min-height: 62px;
  margin-top: 38px;
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 20px 48px rgba(77, 227, 255, 0.24);
  font-size: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 24px;
  align-items: center;
}

.report {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(7, 17, 31, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.report-header strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 20px;
}

.report-header span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-body {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.report-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(126, 221, 255, 0.08);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row small {
  color: var(--muted-2);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hash {
  color: #cfe9ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  word-break: break-all;
}

.process-section {
  position: relative;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.process-copy-card {
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 227, 255, 0.13), transparent 30%),
    rgba(7, 17, 31, 0.82);
  box-shadow: var(--shadow);
}

.process-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.process-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.process-point span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #03111f;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 900;
}

.process-point strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.process-point p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-image-frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(7, 17, 31, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.process-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 -60px 80px rgba(5, 9, 20, 0.1);
}

.warning-panel {
  padding: 30px;
  border: 1px solid rgba(255, 213, 106, 0.25);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 213, 106, 0.12), transparent 32%),
    rgba(26, 21, 8, 0.42);
}

.warning-panel h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.02;
  margin-bottom: 16px;
}

.warning-panel p {
  color: #d8cda7;
  line-height: 1.72;
  margin: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 19px 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
}

.faq-question span {
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  opacity: 0;
  transition:
    max-height 0.32s ease,
    padding 0.32s ease,
    opacity 0.24s ease;
}

.faq-item.open .faq-answer {
  padding: 0 20px 20px;
  opacity: 1;
}

.cta-band {
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 12%, rgba(80, 255, 177, 0.18), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(77, 227, 255, 0.18), transparent 30%),
    rgba(8, 18, 33, 0.84);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  max-width: 720px;
}

.site-footer {
  padding: 46px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 15, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: #cbdbea;
  font-size: 14px;
  text-align: right;
}

.footer-contact strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(126, 221, 255, 0.12);
  color: var(--muted-2);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #cbdbea;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .phone {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .scanner,
  .split,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .scanner-panel {
    grid-row: auto;
  }

  .hero-grid {
    gap: 34px;
  }

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

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav.open .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(126, 221, 255, 0.08);
  }

  .nav.open .nav-links a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-notice {
    padding: 8px 0;
    font-size: 11px;
    line-height: 1.45;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .reveal.from-left,
  .reveal.from-right {
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  h1 {
    font-size: 40px;
  }

  .form-card,
  .scanner-panel,
  .card,
  .warning-panel,
  .cta-band,
  .process-copy-card {
    padding: 20px;
  }

  .grid-4,
  .grid-3,
  .strip-inner {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-contact {
    text-align: left;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-actions {
    flex-direction: column;
  }

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

  .welcome-dialog {
    width: min(100%, 560px);
  }

  .welcome-card {
    padding: 30px 22px 24px;
    border-radius: 24px;
  }

  .welcome-card h2 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.04;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .welcome-copy {
    max-width: 100%;
  }

  .welcome-card p {
    font-size: clamp(16px, 5.4vw, 24px);
  }

  .welcome-close {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    margin-top: 28px;
    font-size: 18px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
