:root {
  --black: #080a0f;
  --black-soft: #10131b;
  --black-card: #141824;
  --paper: #f0efe9;
  --paper-deep: #e5e4de;
  --white: #faf9f5;
  --text: #101217;
  --muted: #696d76;
  --muted-light: #aeb4c0;
  --line: rgba(16, 18, 23, 0.14);
  --line-dark: rgba(255, 255, 255, 0.12);
  --blue: #315eff;
  --blue-bright: #5f82ff;
  --blue-pale: #dce4ff;
  --mint: #9ff1cb;
  --green: #5fe4ac;
  --danger: #ff8b75;
  --radius: 18px;
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--paper);
}

button,
input {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(22px, 4vw, 64px);
  color: white;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 10, 15, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.brand svg {
  width: 29px;
  height: 29px;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: #c0c5d0;
  font-size: 13px;
}

.site-nav a,
.site-footer nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #aeb4c0;
  font-size: 11px;
  font-weight: 750;
}

.language-switcher a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

#language-suggestion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px clamp(20px, 4vw, 64px);
  color: #eef1ff;
  border-bottom: 1px solid rgba(95, 130, 255, 0.35);
  background: #17234c;
}

#language-suggestion[hidden] {
  display: none;
}

#language-suggestion p {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.45;
}

#language-suggestion a,
#language-suggestion button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

#language-suggestion a {
  color: var(--black);
  background: var(--mint);
}

#language-suggestion button {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

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

.button-light {
  min-height: 44px;
  color: var(--black);
  background: var(--white);
}

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

.button-primary:hover {
  background: #244fe8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(
      circle at 76% 38%,
      rgba(49, 94, 255, 0.35),
      transparent 0 13%,
      rgba(49, 94, 255, 0.12) 31%,
      transparent 54%
    ),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(28px, 5vw, 76px) 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c1c7d3;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(159, 241, 203, 0.7);
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 26px;
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.072em;
}

.hero h1 em {
  display: block;
  color: #6f8cff;
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 0 0 30px;
  color: #b9bfca;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.56;
}

.brand-scan {
  width: min(100%, 670px);
}

.brand-scan > label {
  display: block;
  margin: 0 0 9px;
  color: #e2e5eb;
  font-size: 13px;
  font-weight: 600;
}

.domain-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.domain-row:focus-within {
  border-color: rgba(95, 130, 255, 0.85);
  box-shadow:
    0 0 0 3px rgba(95, 130, 255, 0.15),
    0 20px 55px rgba(0, 0, 0, 0.2);
}

.domain-row input {
  min-width: 0;
  padding: 0 15px;
  color: white;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
}

.domain-row input::placeholder {
  color: #858c98;
}

.domain-row input:-webkit-autofill,
.domain-row input:-webkit-autofill:hover,
.domain-row input:-webkit-autofill:focus,
.domain-row input:autofill {
  -webkit-text-fill-color: white;
  caret-color: white;
  -webkit-box-shadow: 0 0 0 1000px #202127 inset;
  box-shadow: 0 0 0 1000px #202127 inset;
  border-radius: 9px;
  transition: background-color 9999s ease-out;
}

.support-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 12px 3px 0;
  color: #8f96a4;
  font-size: 12px;
}

.support-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.support-line span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(111, 140, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.halo-one {
  width: min(36vw, 520px);
  height: min(36vw, 520px);
}

.halo-two {
  width: min(48vw, 700px);
  height: min(48vw, 700px);
  border-color: rgba(111, 140, 255, 0.08);
}

.brand-orb {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.6), transparent 11%),
    linear-gradient(145deg, #7694ff, #315bea 54%, #172865);
  box-shadow:
    0 0 80px rgba(49, 94, 255, 0.5),
    inset 0 0 24px rgba(255, 255, 255, 0.12);
  animation: orb-breathe 4s ease-in-out infinite;
}

.brand-orb svg {
  width: 69px;
  height: 69px;
}

.orbit {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -3px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(159, 241, 203, 0.9);
  transform-origin: 0 0;
}

.orbit-one {
  animation: orbit-one 8s linear infinite;
}

.orbit-two {
  background: #8fa7ff;
  animation: orbit-two 11s linear infinite reverse;
}

.orbit-three {
  animation: orbit-three 14s linear infinite;
}

.signal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 170px;
  gap: 4px;
  padding: 13px 14px;
  color: #d8dce5;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  background: rgba(13, 16, 24, 0.92);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.signal-card::before {
  position: absolute;
  top: 17px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 13px rgba(159, 241, 203, 0.9);
  content: "";
}

.signal-card b {
  font-size: 12px;
}

.signal-card span {
  color: #7f8796;
  font-size: 10px;
}

.signal-one {
  top: 24%;
  left: 8%;
}

.signal-two {
  top: 19%;
  right: 5%;
}

.signal-three {
  right: 7%;
  bottom: 19%;
}

.signal-four {
  bottom: 18%;
  left: 7%;
}

.scan-panel {
  width: min(100%, 670px);
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(15, 18, 27, 0.96);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

.scan-panel[hidden] {
  display: none;
}

.scan-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.panel-kicker {
  color: #7e91d9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-panel h2 {
  margin: 5px 0 0;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--mint);
  border: 1px solid rgba(159, 241, 203, 0.26);
  border-radius: 999px;
  background: rgba(159, 241, 203, 0.07);
  font-size: 10px;
  white-space: nowrap;
}

.status-block {
  display: grid;
  max-width: 250px;
  justify-items: end;
  gap: 9px;
  text-align: right;
}

.finding-status {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.finding-status[hidden] {
  display: none;
}

.finding-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.copy-count,
.urgency-pill {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.copy-count {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.urgency-pill {
  color: #ffd2a6;
  border: 1px solid rgba(255, 172, 92, 0.34);
  background: rgba(255, 139, 61, 0.1);
}

.finding-status p {
  margin: 0;
  color: #9da4b1;
  font-size: 10px;
  line-height: 1.4;
}

.scan-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 22px 0;
}

.scan-steps span {
  color: #717887;
  font-size: 10px;
}

.scan-steps span.active {
  color: white;
}

.scan-steps i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.scan-steps i::after {
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  content: "";
  animation: progress-flow 1.6s linear infinite;
}

.search-activity {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  padding: 26px 20px 20px;
  border: 1px solid rgba(113, 139, 236, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 44%, rgba(49, 94, 255, 0.17), transparent 30%),
    linear-gradient(135deg, rgba(24, 30, 47, 0.96), rgba(12, 15, 23, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.search-activity[hidden] {
  display: none;
}

.search-progress {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.search-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #7593ff 65%, var(--mint));
  box-shadow: 0 0 14px rgba(95, 130, 255, 0.75);
  transition: width 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.search-activity-main {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.search-signal {
  position: relative;
  display: grid;
  grid-template-columns: 13px minmax(22px, 1fr) 20px minmax(22px, 1fr) 13px;
  align-items: center;
  width: 138px;
  min-height: 76px;
  padding: 0 8px;
  border: 1px solid rgba(124, 149, 239, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(5, 8, 15, 0.55);
  background-size: 13px 13px;
}

.search-signal-node {
  position: relative;
  z-index: 2;
  display: block;
  width: 9px;
  height: 9px;
  justify-self: center;
  border: 1px solid rgba(159, 241, 203, 0.65);
  border-radius: 50%;
  background: #132837;
  box-shadow: 0 0 12px rgba(159, 241, 203, 0.42);
  animation: search-node-pulse 1.8s ease-in-out infinite;
}

.signal-node-centre {
  width: 19px;
  height: 19px;
  border-color: rgba(119, 148, 255, 0.92);
  background: radial-gradient(circle, white 0 14%, #5f82ff 18% 42%, #18244f 46%);
  box-shadow:
    0 0 0 5px rgba(95, 130, 255, 0.09),
    0 0 22px rgba(95, 130, 255, 0.64);
  animation-delay: -0.6s;
}

.signal-node-end {
  animation-delay: -1.1s;
}

.search-signal-line {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(111, 140, 255, 0.28);
}

.search-signal-line::after {
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, #a8b8ff, var(--mint), transparent);
  content: "";
  animation: search-signal-travel 1.35s linear infinite;
}

.search-signal-line:nth-of-type(4)::after {
  animation-delay: -0.68s;
}

.search-activity-copy {
  min-width: 0;
}

.search-now {
  display: block;
  margin-bottom: 7px;
  color: #8da3ff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-activity h3 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.search-activity p {
  max-width: 430px;
  min-height: 38px;
  margin: 9px 0 0;
  color: #9ba3b2;
  font-size: 11px;
  line-height: 1.55;
}

.search-activity.stage-enter .search-activity-copy {
  animation: search-stage-enter 360ms ease both;
}

.search-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 25px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #87909f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  white-space: nowrap;
  animation: search-check-enter 280ms ease both;
}

.search-check-mark {
  display: grid;
  width: 12px;
  height: 12px;
  place-items: center;
  color: #95aaff;
  font-size: 9px;
  line-height: 1;
}

.search-check.is-active {
  color: #d9dfea;
  border-color: rgba(112, 140, 255, 0.32);
  background: rgba(68, 98, 207, 0.12);
}

.search-check.is-active .search-check-mark {
  animation: search-node-pulse 1.3s ease-in-out infinite;
}

.search-check.is-complete {
  color: #c4d8cf;
  border-color: rgba(159, 241, 203, 0.19);
  background: rgba(159, 241, 203, 0.055);
}

.search-check.is-complete .search-check-mark {
  color: var(--mint);
}

.result-summary {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.result-level {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-summary h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.result-summary p {
  max-width: 540px;
  margin: 12px 0 0;
  color: #9da4b1;
  font-size: 13px;
  line-height: 1.55;
}

.clear-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--black);
  border-radius: 50%;
  background: var(--mint);
  font-size: 24px;
  font-weight: 700;
}

.country-card {
  display: grid;
  min-width: 120px;
  justify-items: center;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.country-card .location-label {
  color: #7e8592;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-card .country-flag {
  font-size: 26px;
  line-height: 1;
}

.country-card strong {
  font-size: 15px;
}

.copy-group {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(126, 145, 217, 0.24);
  border-radius: 13px;
  background: rgba(126, 145, 217, 0.04);
}

.copy-group-heading {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.copy-identity {
  display: grid;
  align-content: center;
  gap: 7px;
}

.copy-index {
  color: #899fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.copy-domain {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.preview-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 11px;
  background: #0b0d12;
}

.preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: #c7ccd6;
  font-size: 10px;
}

.capture-label {
  color: var(--mint);
}

.result-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.result-actions button {
  flex: 1;
  padding: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.result-actions button:last-child {
  border-color: var(--blue);
  background: var(--blue);
}

.result-actions button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.payment-error {
  margin: 12px 2px 0;
  color: #ffaaa1;
  font-size: 12px;
  line-height: 1.5;
}

.payment-error[hidden] {
  display: none;
}

.scan-again {
  margin-top: 15px;
  padding: 8px 0;
  color: #aeb6c5;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.scan-running .brand-orb {
  animation-duration: 1.8s;
}

.scan-running .signal-card::before {
  animation: signal-pulse 1s ease-in-out infinite;
}

.scan-running .orbit-one {
  animation-duration: 4.8s;
}

.scan-running .orbit-two {
  animation-duration: 6.5s;
}

.scan-running .orbit-three {
  animation-duration: 8.5s;
}

.scan-running .signal-card {
  opacity: 0.58;
  transition:
    opacity 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

body[data-search-stage="0"] .signal-four,
body[data-search-stage="1"] .signal-one,
body[data-search-stage="2"] .signal-two,
body[data-search-stage="3"] .signal-two,
body[data-search-stage="4"] .signal-three,
body[data-search-stage="5"] .signal-one,
body[data-search-stage="6"] .signal-card {
  opacity: 1;
  border-color: rgba(111, 140, 255, 0.62);
  box-shadow:
    0 0 0 1px rgba(111, 140, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(49, 94, 255, 0.14);
  transform: translateY(-3px) scale(1.025);
}

body[data-search-stage="4"] .signal-three {
  border-color: rgba(255, 172, 92, 0.56);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(255, 139, 61, 0.13);
}

body[data-search-stage="4"] .signal-three::before {
  background: #ffb169;
  box-shadow: 0 0 16px rgba(255, 177, 105, 0.9);
}

.error-message {
  margin: 18px 0 0;
  padding-top: 18px;
  color: #ffb1a3;
  border-top: 1px solid var(--line-dark);
}

.threat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #c6cbd4;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black-soft);
}

.threat-strip span {
  padding: 19px clamp(16px, 3vw, 42px);
  border-right: 1px solid var(--line-dark);
  font-size: 12px;
}

.threat-strip span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue-bright);
  content: "";
}

.section {
  padding: clamp(82px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.explainer-copy h2,
.trust-section h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(45px, 6.2vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.section-heading > p,
.explainer-copy > p,
.trust-section > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.steps-grid article {
  min-height: 350px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid span,
.trust-list span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.steps-grid h3 {
  max-width: 340px;
  margin: 112px 0 18px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.steps-grid p,
.price-card p,
.trust-list p {
  color: var(--muted);
  line-height: 1.58;
}

.scan-explainer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 760px;
  color: white;
  background: var(--black);
}

.explainer-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(70px, 8vw, 125px) clamp(28px, 5vw, 82px);
  border-right: 1px solid var(--line-dark);
}

.explainer-copy .section-kicker {
  color: #88a0ff;
}

.explainer-copy h2 {
  max-width: 620px;
  margin-bottom: 25px;
}

.explainer-copy > p {
  color: #aeb4c0;
}

.explainer-note {
  max-width: 440px;
  margin-top: 80px;
  padding: 18px 0 0;
  color: #d2d6de;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.flow-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 0.45fr 1.3fr 0.45fr 1fr;
  align-items: center;
  min-height: 760px;
  padding: 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 48%, rgba(49, 94, 255, 0.18), transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}

.flow-column {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
}

.flow-node {
  display: block;
  padding: 14px 16px;
  color: #c9ced8;
  border: 1px solid rgba(124, 143, 210, 0.35);
  border-radius: 8px;
  background: rgba(10, 13, 20, 0.94);
  font-size: 11px;
}

.flow-node::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: #8198ee;
  content: "";
}

.flow-node.highlighted {
  border-color: rgba(95, 228, 172, 0.48);
  box-shadow: 0 0 25px rgba(95, 228, 172, 0.09);
}

.flow-node.highlighted::before {
  background: var(--green);
  box-shadow: 0 0 10px rgba(95, 228, 172, 0.6);
}

.flow-node.blue-node {
  border-color: rgba(95, 130, 255, 0.55);
}

.flow-lines {
  display: grid;
  gap: 28px;
}

.flow-lines i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(95, 130, 255, 0.27);
}

.flow-lines i::after {
  position: absolute;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8ca3ff, transparent);
  content: "";
  animation: progress-flow 2.2s linear infinite;
}

.second-lines i:nth-child(3),
.second-lines i:nth-child(4) {
  display: none;
}

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

.pricing-heading {
  align-items: start;
}

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

.price-card {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.featured-card {
  color: white;
  border-color: #1d3fc8;
  background:
    radial-gradient(circle at 86% 13%, rgba(95, 130, 255, 0.3), transparent 25%),
    #122055;
}

.price-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.featured-card .price-label,
.featured-card p {
  color: #b9c4ea;
}

.popular {
  color: var(--mint);
}

.price {
  margin: 50px 0 24px;
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.price sup {
  position: relative;
  top: -0.55em;
  margin-right: 5px;
  font-size: 0.27em;
}

.price-card h3 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.052em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 40px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured-card ul {
  border-color: rgba(255, 255, 255, 0.15);
}

.price-card li {
  display: flex;
  gap: 11px;
  font-size: 13px;
}

.price-card li::before {
  color: var(--blue);
  content: "↗";
}

.featured-card li::before {
  color: var(--mint);
}

.price-button {
  align-self: flex-start;
  margin-top: auto;
  color: white;
  background: var(--black);
}

.featured-card .price-button {
  color: var(--black);
  background: white;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 9vw;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 96px);
  background: var(--white);
}

.trust-section h2 {
  margin-bottom: 30px;
}

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

.trust-list article {
  display: grid;
  grid-template-columns: 45px 0.65fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

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

.trust-list h3 {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.closing-section {
  display: grid;
  min-height: 650px;
  place-content: center;
  justify-items: center;
  padding: 100px 24px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(49, 94, 255, 0.35), transparent 0 13%, rgba(49, 94, 255, 0.08) 35%, transparent 58%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.closing-section .section-kicker {
  color: #8ca3ff;
}

.closing-section h2 {
  max-width: 950px;
}

.closing-section > p:not(.section-kicker) {
  margin: 24px 0 30px;
  color: #aeb4c0;
  font-size: 17px;
}

.closing-button {
  min-height: 55px;
  padding-inline: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 30px clamp(22px, 4vw, 64px);
  color: white;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.site-footer nav {
  display: flex;
  gap: 22px;
  color: #9ba2af;
  font-size: 11px;
}

.site-footer nav.language-links {
  gap: 2px;
}

.site-footer .language-links a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
}

.site-footer > span {
  justify-self: end;
  color: #777f8c;
  font-size: 11px;
}

.payment-return-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  overflow-x: clip;
  color: white;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(49, 94, 255, 0.27),
      transparent 0 16%,
      rgba(49, 94, 255, 0.08) 36%,
      transparent 60%
    ),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #080a0f;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.payment-return-card {
  width: min(100%, 680px);
  min-width: 0;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(16, 20, 29, 0.97);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  color: white;
}

.payment-return-card[data-payment-state="paid"] {
  width: min(100%, 1120px);
  padding: clamp(28px, 4.4vw, 58px);
}

.payment-return-card .brand {
  margin-bottom: clamp(50px, 8vw, 78px);
}

.payment-return-status {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(159, 241, 203, 0.3);
  border-radius: 50%;
  background: rgba(159, 241, 203, 0.06);
}

.payment-return-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(159, 241, 203, 0.78);
}

.payment-return-card[aria-busy="true"] .payment-return-status span {
  animation: signal-pulse 1.25s ease-in-out infinite;
}

.payment-return-card .panel-kicker {
  margin: 0 0 12px;
  color: #8da3ff;
}

.payment-return-card h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.payment-return-card > p:not(.panel-kicker) {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted-light);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.55;
}

#payment-summary[hidden],
#payment-email-row[hidden],
#payment-brand[hidden],
#payment-removal-notice[hidden] {
  display: none;
}

#payment-summary {
  margin-top: 38px;
}

#payment-plan-heading {
  margin: 0 0 24px;
  color: #f7f8fc;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.payment-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
}

.payment-facts,
.payment-next-steps {
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.032);
}

.payment-facts {
  display: grid;
  align-content: start;
}

.payment-facts > div {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-facts > div:first-child {
  padding-top: 0;
}

.payment-facts > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.payment-facts dt {
  color: #858e9e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-facts dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #eef1f7;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  text-align: right;
}

#payment-reference {
  color: var(--mint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.025em;
}

.payment-next-steps {
  display: grid;
  align-content: start;
}

#payment-promise {
  margin: 0 0 24px;
  padding: 16px 18px;
  color: #dffbef;
  border: 1px solid rgba(159, 241, 203, 0.23);
  border-radius: 13px;
  background: rgba(159, 241, 203, 0.055);
  font-size: 14px;
  line-height: 1.55;
}

#payment-deliverables-heading {
  margin: 0 0 14px;
  color: white;
  font-size: 16px;
  letter-spacing: -0.015em;
}

#payment-deliverables {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: payment-step;
}

#payment-deliverables li {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #c6ccd8;
  font-size: 13px;
  line-height: 1.45;
  counter-increment: payment-step;
}

#payment-deliverables li::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #aebdff;
  border: 1px solid rgba(95, 130, 255, 0.25);
  border-radius: 50%;
  background: rgba(95, 130, 255, 0.09);
  font-size: 10px;
  font-weight: 800;
  content: counter(payment-step, decimal-leading-zero);
}

#payment-email-state,
#payment-removal-notice {
  margin: 16px 0 0;
  padding: 15px 17px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.5;
}

#payment-email-state {
  overflow-wrap: anywhere;
  color: #dfe5f3;
  border: 1px solid rgba(95, 130, 255, 0.22);
  background: rgba(95, 130, 255, 0.07);
}

#payment-removal-notice {
  color: #d4d8e1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
}

.payment-home-button {
  width: max-content;
  min-height: 44px;
  margin-top: 34px;
}

.payment-return-card[data-payment-state="paid"] .payment-home-button {
  min-width: min(100%, 240px);
  justify-content: center;
}

.payment-home-button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.payment-home-button[hidden] {
  display: none;
}

@media (max-width: 720px) {
  .payment-return-page {
    padding: 14px;
  }

  .payment-return-card,
  .payment-return-card[data-payment-state="paid"] {
    width: 100%;
    padding: 30px clamp(18px, 6vw, 26px) 34px;
    border-radius: 18px;
  }

  .payment-return-card .brand {
    margin-bottom: 46px;
  }

  .payment-return-card h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  #payment-summary {
    margin-top: 30px;
  }

  .payment-summary-grid {
    grid-template-columns: 1fr;
  }

  .payment-facts,
  .payment-next-steps {
    padding: 20px;
  }

  .payment-home-button,
  .payment-return-card[data-payment-state="paid"] .payment-home-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .payment-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .payment-facts dd {
    text-align: left;
  }
}

@keyframes orb-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 70px rgba(49, 94, 255, 0.42),
      inset 0 0 24px rgba(255, 255, 255, 0.12);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow:
      0 0 105px rgba(49, 94, 255, 0.62),
      inset 0 0 24px rgba(255, 255, 255, 0.12);
  }
}

@keyframes orbit-one {
  from {
    transform: rotate(0deg) translateX(180px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(180px) rotate(-360deg);
  }
}

@keyframes orbit-two {
  from {
    transform: rotate(0deg) translateX(245px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(245px) rotate(-360deg);
  }
}

@keyframes orbit-three {
  from {
    transform: rotate(0deg) translateX(305px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(305px) rotate(-360deg);
  }
}

@keyframes progress-flow {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(350%);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes search-stage-enter {
  from {
    opacity: 0.25;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes search-signal-travel {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(290%);
  }
}

@keyframes search-node-pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes search-check-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(56px, 7.8vw, 86px);
  }

  .hero-visual {
    min-height: 580px;
  }

  .signal-card {
    width: 150px;
  }

  .section-heading {
    gap: 5vw;
  }

  .flow-panel {
    padding: 40px 28px;
  }

  .flow-node {
    padding: 12px 10px;
    font-size: 10px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand {
    font-size: 19px;
  }

  .brand svg {
    width: 26px;
    height: 26px;
  }

  .button-light {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
  }

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

  .hero-copy {
    min-height: calc(100vh - 70px);
    padding: 55px 22px 48px;
  }

  .hero h1 {
    font-size: clamp(54px, 15.5vw, 84px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 540px;
    border-top: 1px solid var(--line-dark);
  }

  .halo-one {
    width: 430px;
    height: 430px;
  }

  .halo-two {
    width: 610px;
    height: 610px;
  }

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

  .threat-strip span:nth-child(2) {
    border-right: 0;
  }

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

  .section-heading,
  .scan-explainer,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 45px;
  }

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

  .steps-grid article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

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

  .scan-explainer {
    min-height: 0;
  }

  .explainer-copy {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .flow-panel {
    min-height: 650px;
  }

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

  .trust-section {
    gap: 60px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

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

@media (max-width: 560px) {
  .site-header {
    position: relative;
  }

  .nav-actions .button-light {
    display: none;
  }

  #language-suggestion {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  #language-suggestion p {
    grid-column: 1 / -1;
  }

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

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .domain-row {
    grid-template-columns: 1fr;
  }

  .domain-row input {
    min-height: 48px;
  }

  .domain-row .button {
    width: 100%;
  }

  .support-line {
    gap: 8px 13px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .brand-orb {
    width: 130px;
    height: 130px;
  }

  .brand-orb svg {
    width: 58px;
    height: 58px;
  }

  .signal-card {
    width: 138px;
    padding: 10px;
  }

  .signal-one {
    top: 14%;
    left: 4%;
  }

  .signal-two {
    top: 20%;
    right: 3%;
  }

  .signal-three {
    right: 4%;
    bottom: 13%;
  }

  .signal-four {
    bottom: 19%;
    left: 3%;
  }

  .orbit-one {
    animation-name: orbit-mobile-one;
  }

  .orbit-two {
    animation-name: orbit-mobile-two;
  }

  .orbit-three {
    display: none;
  }

  .scan-panel {
    padding: 18px;
  }

  .scan-panel-heading {
    display: grid;
  }

  .status-block,
  .finding-status {
    max-width: none;
    justify-items: start;
    text-align: left;
  }

  .finding-badges {
    justify-content: flex-start;
  }

  .status-pill {
    width: max-content;
  }

  .scan-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .scan-steps i {
    display: none;
  }

  .scan-steps span {
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .search-activity {
    min-height: 0;
    padding: 23px 16px 16px;
  }

  .search-activity-main {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .search-signal {
    width: 100%;
    min-height: 52px;
  }

  .search-activity p {
    min-height: 0;
  }

  .search-checks {
    gap: 5px;
    margin-top: 14px;
    padding-top: 13px;
  }

  .search-check {
    max-width: 100%;
    white-space: normal;
  }

  .result-summary,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .copy-group-heading {
    display: grid;
  }

  .country-card {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .country-card .country-flag {
    grid-row: 1 / 3;
    align-self: center;
  }

  .clear-mark {
    grid-row: 1;
  }

  .result-actions {
    display: grid;
  }

  .payment-return-page {
    padding: 14px;
  }

  .payment-return-card {
    padding: 30px 24px 34px;
    border-radius: 18px;
  }

  .payment-return-card .brand {
    margin-bottom: 54px;
  }

  .payment-return-card h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .threat-strip {
    grid-template-columns: 1fr;
  }

  .threat-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding-inline: 20px;
  }

  .section-heading h2,
  .explainer-copy h2,
  .trust-section h2,
  .closing-section h2 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .steps-grid article {
    padding: 28px 22px;
  }

  .explainer-copy {
    min-height: 520px;
    padding: 70px 22px;
  }

  .flow-panel {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    min-height: 720px;
    padding: 45px 22px;
  }

  .flow-lines {
    display: none;
  }

  .price-card {
    min-height: 610px;
    padding: 28px 22px;
  }

  .trust-section {
    padding: 90px 22px;
  }

  .trust-list article {
    grid-template-columns: 35px 1fr;
  }

  .trust-list p {
    grid-column: 2;
  }

  .closing-section {
    min-height: 580px;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav-actions {
    gap: 4px;
  }

  .language-switcher a {
    padding-inline: 4px;
  }

  #language-suggestion {
    grid-template-columns: 1fr;
    padding-inline: 14px;
  }

  #language-suggestion p {
    grid-column: 1;
  }

  #language-suggestion a,
  #language-suggestion button {
    width: 100%;
  }
}

@keyframes orbit-mobile-one {
  from {
    transform: rotate(0deg) translateX(145px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(145px) rotate(-360deg);
  }
}

@keyframes orbit-mobile-two {
  from {
    transform: rotate(0deg) translateX(195px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(195px) rotate(-360deg);
  }
}

.order-checkout-page {
  min-height: 100vh;
  color: #f7f8fc;
  background:
    radial-gradient(
      circle at 82% 0,
      rgba(49, 94, 255, 0.24),
      transparent 34%
    ),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.order-checkout-page select,
.order-checkout-page textarea {
  font: inherit;
}

.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 10, 15, 0.98);
}

.order-back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 650;
}

.order-back-link:hover {
  color: white;
}

.order-checkout-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 90px;
}

.order-progress {
  max-width: 720px;
  margin-bottom: 58px;
}

.order-progress ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-progress li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777e8e;
  font-size: 13px;
  font-weight: 700;
}

.order-progress li:not(:last-child)::after {
  position: absolute;
  right: 14px;
  left: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.order-progress li > span:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: #10141e;
}

.order-progress li.active {
  color: white;
}

.order-progress li.active > span:first-child {
  color: var(--black);
  border-color: var(--mint);
  background: var(--mint);
}

.order-page-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.order-page-heading .section-kicker {
  margin-bottom: 14px;
  color: #8da5ff;
}

.order-page-heading h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.order-page-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.6;
}

.order-page-notice {
  padding: 22px 24px;
  color: #dce1eb;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(16, 19, 27, 0.92);
}

.order-page-notice[hidden] {
  display: none;
}

.order-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: 28px;
}

.order-form-card,
.order-summary-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(16, 19, 27, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.order-form-card {
  padding: clamp(24px, 4vw, 46px);
}

.order-card-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.order-card-number {
  margin: 6px 0 0;
  color: #8da5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-card-heading h2,
.order-summary-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.order-card-heading p:last-child {
  margin: 8px 0 0;
  color: #989fad;
  line-height: 1.5;
}

#order-details-form,
#invoice-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

#invoice-fields {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--line-dark);
}

#invoice-fields[hidden] {
  display: none;
}

#invoice-fields legend {
  width: 100%;
  margin-bottom: 22px;
  padding: 0;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.order-field {
  min-width: 0;
}

.order-field-wide,
.invoice-choice,
.order-privacy-note,
.order-submit-error,
.order-mobile-action {
  grid-column: 1 / -1;
}

.order-field label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #e7e9ef;
  font-size: 13px;
  font-weight: 700;
}

.order-field label span {
  color: #838a98;
  font-weight: 500;
}

.order-field input,
.order-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.order-field input:hover,
.order-field select:hover {
  background: rgba(255, 255, 255, 0.075);
}

.order-field input:focus,
.order-field select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(95, 130, 255, 0.15);
}

.order-field input[aria-invalid="true"],
.order-field select[aria-invalid="true"] {
  border-color: var(--danger);
}

.country-combobox {
  position: relative;
}

.country-combobox.is-open {
  z-index: 10;
}

.country-combobox #country-search {
  padding-right: 54px;
}

.country-combobox.is-open #country-search {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(95, 130, 255, 0.15);
}

.country-toggle {
  position: absolute;
  top: 1px;
  right: 1px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  color: #aab0bd;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 11px 11px 0;
  background: #20242d;
  cursor: pointer;
}

.country-toggle:hover {
  color: white;
  background: #292e39;
}

.country-toggle:focus-visible {
  z-index: 1;
  color: white;
  outline: 2px solid var(--blue-bright);
  outline-offset: -3px;
}

.country-toggle:disabled {
  cursor: default;
  opacity: 0.45;
}

.country-toggle span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.country-combobox.is-open .country-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.country-options {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 292px;
  padding: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #171b24;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  scrollbar-color: #4c5568 transparent;
  scrollbar-width: thin;
}

.country-options[hidden] {
  display: none;
}

.country-option {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 12px;
  color: #f2f4f8;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.country-option:hover,
.country-option[data-active="true"] {
  background: rgba(95, 130, 255, 0.15);
}

.country-option[aria-selected="true"] {
  color: white;
  background: rgba(95, 130, 255, 0.22);
}

.country-option[aria-selected="true"] .country-option-name::after {
  margin-left: 8px;
  color: var(--mint);
  content: "✓";
}

.country-option-name {
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-option-code {
  min-width: 34px;
  padding: 4px 6px;
  color: #9ca6ba;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.country-no-results {
  margin: 0;
  padding: 22px 12px;
  color: #9299a8;
  font-size: 13px;
  text-align: center;
}

.order-field-hint,
.order-field-error {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.order-field-hint {
  color: #808795;
}

.order-field-error {
  min-height: 17px;
  color: #ffab9c;
}

.invoice-choice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 4px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.invoice-choice input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.invoice-choice label {
  display: grid;
  min-height: 44px;
  align-content: center;
  gap: 4px;
  cursor: pointer;
}

.invoice-choice label span {
  color: #8f96a4;
  font-size: 13px;
  line-height: 1.45;
}

.order-privacy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 6px;
  padding: 17px 18px;
  color: #b9c1ce;
  border: 1px solid rgba(159, 241, 203, 0.2);
  border-radius: 14px;
  background: rgba(159, 241, 203, 0.055);
}

.order-privacy-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--black);
  border-radius: 50%;
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.order-privacy-note p {
  margin: 1px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.order-privacy-note strong {
  display: block;
  margin-bottom: 3px;
  color: #effff8;
}

.order-submit-error {
  margin: 0;
  padding: 14px 16px;
  color: #ffd5cd;
  border: 1px solid rgba(255, 139, 117, 0.36);
  border-radius: 12px;
  background: rgba(255, 139, 117, 0.08);
}

.order-submit-error[hidden] {
  display: none;
}

.order-mobile-action {
  position: sticky;
  z-index: 4;
  bottom: 0;
  display: grid;
  gap: 10px;
  padding-top: 8px;
  background: linear-gradient(
    transparent,
    rgba(16, 19, 27, 0.98) 18%
  );
  transition: opacity 140ms ease;
}

#order-details-form.country-picker-open #invoice-fields {
  position: relative;
  z-index: 5;
}

#order-details-form.country-picker-open .order-mobile-action {
  opacity: 0;
  pointer-events: none;
}

.order-submit-button {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
}

.order-submit-button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.order-mobile-action p {
  margin: 0;
  color: #7f8795;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.order-summary-card {
  position: sticky;
  top: 28px;
  padding: 30px;
}

.order-summary-card > .order-card-number {
  margin: 0 0 10px;
}

.order-summary-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  margin: 28px 0 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.order-summary-service > div {
  display: grid;
  gap: 6px;
}

.order-summary-service span {
  color: #7f8795;
  font-size: 12px;
}

.order-summary-service strong {
  line-height: 1.35;
}

#order-price {
  color: var(--mint);
  font-size: 25px;
}

#order-description {
  margin: 0 0 24px;
  color: #a5acb9;
  font-size: 14px;
  line-height: 1.6;
}

.order-summary-list {
  margin: 0;
}

.order-summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.order-summary-list dt {
  color: #7f8795;
}

.order-summary-list dd {
  margin: 0;
  color: #dce0e8;
  text-align: right;
}

.order-security-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 22px;
  padding: 15px;
  color: #9ca4b3;
  border-radius: 12px;
  background: rgba(49, 94, 255, 0.09);
  font-size: 12px;
  line-height: 1.5;
}

.order-security-note > span {
  color: #8da5ff;
}

.order-security-note p {
  margin: 0;
}

.local-payment-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  color: white;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(49, 94, 255, 0.28),
      transparent 42%
    ),
    var(--black);
}

.local-payment-card {
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(16, 19, 27, 0.97);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.local-payment-card .brand {
  margin-bottom: 52px;
}

.local-payment-card .section-kicker {
  margin-bottom: 12px;
  color: var(--mint);
}

.local-payment-card h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 8vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.local-payment-warning {
  margin: 0;
  color: #a8afbc;
  line-height: 1.6;
}

.local-payment-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 20px;
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.local-payment-summary span {
  color: #858d9b;
  font-size: 13px;
}

.local-payment-summary strong {
  text-align: right;
}

.local-payment-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.local-payment-actions form,
.local-payment-actions button {
  width: 100%;
}

.local-payment-cancel {
  color: #d9dde6;
  border: 1px solid var(--line-dark);
  background: transparent;
}

@media (max-width: 820px) {
  .order-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .order-header .brand {
    font-size: 19px;
  }

  .order-back-link {
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
  }

  .order-checkout-main {
    width: min(100% - 28px, 620px);
    padding: 34px 0 72px;
    scroll-padding-bottom: 128px;
  }

  .order-progress {
    margin-bottom: 42px;
  }

  .order-progress li {
    display: grid;
    justify-items: start;
    gap: 7px;
    font-size: 11px;
  }

  .order-progress li:not(:last-child)::after {
    top: 15px;
    right: 9px;
    left: 38px;
  }

  .order-page-heading h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .order-page-heading > p:last-child {
    font-size: 16px;
  }

  .order-checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary-card {
    position: static;
    grid-row: 1;
    padding: 24px;
  }

  .order-form-card {
    grid-row: 2;
    padding: 24px 18px 18px;
  }

  #order-details-form,
  #invoice-fields {
    grid-template-columns: 1fr;
  }

  .order-field-wide,
  .invoice-choice,
  .order-privacy-note,
  .order-submit-error,
  .order-mobile-action {
    grid-column: 1;
  }

  .country-options {
    max-height: min(42vh, 320px);
  }

  .country-option {
    min-height: 50px;
  }

  .order-mobile-action {
    bottom: max(0px, env(safe-area-inset-bottom));
    margin: 2px -10px -10px;
    padding: 26px 10px calc(10px + env(safe-area-inset-bottom));
  }

  .local-payment-actions {
    grid-template-columns: 1fr;
  }
}

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

/* Keep the payment action above the minimum touch target after mobile button rules. */
.payment-home-button {
  min-height: 44px;
}
