:root {
  --bg: #05060a;
  --panel: #0d1017;
  --panel-soft: #131722;
  --ink: #f6f1e8;
  --soft-ink: #ded8cb;
  --muted: #9d9aa4;
  --line: rgba(246, 241, 232, 0.14);
  --line-strong: rgba(246, 241, 232, 0.3);
  --white: #ffffff;
  --blue: #8f7cff;
  --red: #ff6f61;
  --yellow: #d7b46a;
  --aqua: #69e6d8;
  --cta-start: #8f7cff;
  --cta-end: #4f46e5;
  --cta-glow: rgba(143, 124, 255, 0.28);
  --dark: #05060a;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12%, rgba(143, 124, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #05060a, #090b11 38%, #05060a),
    var(--bg);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  min-height: 64px;
  padding: 8px;
  border: 1px solid rgba(246, 241, 232, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05)),
    rgba(8, 10, 15, 0.74);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(26px) saturate(1.28);
  transform: translateX(-50%);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 124, 255, 0.18), transparent 34%),
    linear-gradient(90deg, transparent, rgba(246, 241, 232, 0.09), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--white);
  background: transparent;
  outline: 0;
  transform: translateY(-1px);
}

.brand span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.72), transparent 14%),
    linear-gradient(135deg, #151925 0%, #6d5cff 52%, #9fd3ff 100%),
    var(--dark);
  box-shadow:
    0 12px 32px rgba(109, 92, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand strong {
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(246, 241, 232, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.88rem;
  font-weight: 820;
  overflow: hidden;
  transition: color 170ms ease, background 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(246, 241, 232, 0.82), transparent);
  opacity: 0;
  transform: scaleX(0.36);
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(246, 241, 232, 0.075);
  outline: 0;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(246, 241, 232, 0.07);
  border-radius: 10px;
  color: rgba(246, 241, 232, 0.78);
  background: rgba(255, 255, 255, 0.028);
  font-size: 0.88rem;
  font-weight: 800;
  overflow: hidden;
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.nav-back::before {
  content: "";
  position: absolute;
  inset: auto 14px 6px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(246, 241, 232, 0.82), transparent);
  opacity: 0;
  transform: scaleX(0.36);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-back:hover,
.nav-back:focus-visible {
  color: var(--ink);
  border-color: rgba(246, 241, 232, 0.12);
  background: rgba(246, 241, 232, 0.075);
  outline: 0;
  transform: translateY(-1px);
}

.nav-back:hover::before,
.nav-back:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-back {
  isolation: isolate;
}

.nav-cta {
  min-width: 188px;
  border: 1px solid rgba(174, 161, 255, 0.48);
  color: var(--white) !important;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.38), transparent 18%),
    linear-gradient(135deg, #8d7cff, #5145e8);
  box-shadow:
    0 10px 30px rgba(79, 70, 229, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(135deg, #a094ff, #5d50f1) !important;
  box-shadow:
    0 18px 52px rgba(79, 70, 229, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(246, 241, 232, 0.06);
  cursor: pointer;
}

.nav-toggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 200ms ease, opacity 160ms ease;
}

.nav-toggle i:first-of-type {
  transform: translate(-50%, -5px);
}

.nav-toggle i:last-of-type {
  transform: translate(-50%, 4px);
}

body.nav-open .nav-toggle i:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.nav-open .nav-toggle i:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 112px 0 56px;
  isolation: isolate;
}

.hero-bg,
.hero-noise,
.check-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg {
  background:
    radial-gradient(circle at 50% 34%, rgba(246, 241, 232, 0.08), transparent 18rem),
    radial-gradient(circle at 48% 120%, rgba(105, 230, 216, 0.14), transparent 30rem),
    linear-gradient(180deg, #05060a, #0b0d14 45%, #05060a);
  animation: ambientShift 18s ease-in-out infinite alternate;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-bg::before {
  background:
    linear-gradient(105deg, transparent 15%, rgba(143, 124, 255, 0.22) 36%, transparent 58%),
    linear-gradient(72deg, transparent 30%, rgba(246, 241, 232, 0.09) 48%, transparent 66%);
  opacity: 0.5;
  transform: translate3d(-8%, 0, 0) rotate(-5deg);
  animation: heroSweep 11s ease-in-out infinite;
}

.hero-bg::after {
  background:
    radial-gradient(circle at 22% 28%, rgba(143, 124, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 78% 34%, rgba(79, 70, 229, 0.16), transparent 24rem),
    radial-gradient(circle at 58% 84%, rgba(215, 180, 106, 0.12), transparent 20rem);
  opacity: 0.68;
  transform: translate3d(0, 0, 0) scale(1);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-bg span,
.check-bg span {
  position: absolute;
  width: min(62vw, 860px);
  height: 44vh;
  border: 0;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.42;
  transform: rotate(-18deg);
  animation: lightSweep 10s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-bg span:nth-child(1) {
  left: -18%;
  top: 9%;
  background: linear-gradient(90deg, transparent, rgba(143, 124, 255, 0.42), transparent);
  animation-name: lightSweepWide;
}

.hero-bg span:nth-child(2) {
  right: -22%;
  top: 21%;
  background: linear-gradient(90deg, transparent, rgba(105, 230, 216, 0.34), transparent);
  animation-delay: -3s;
  animation-name: lightSweepReverse;
}

.hero-bg span:nth-child(3) {
  left: 18%;
  bottom: 4%;
  width: min(56vw, 760px);
  background: linear-gradient(90deg, transparent, rgba(215, 180, 106, 0.22), transparent);
  animation-delay: -6s;
  animation-name: lightSweepLow;
}

.hero-bg span:nth-child(4) {
  left: 52%;
  top: 54%;
  width: min(30vw, 420px);
  height: 22vh;
  opacity: 0.3;
  background: linear-gradient(90deg, transparent, rgba(255, 111, 97, 0.22), transparent);
  animation-duration: 12s;
}

.hero-noise {
  opacity: 0.72;
  background:
    radial-gradient(circle at center, transparent 0 28%, rgba(5, 6, 10, 0.58) 72%),
    linear-gradient(120deg, transparent 0 46%, rgba(246, 241, 232, 0.055) 47%, transparent 50% 100%);
  background-size: 100% 100%, 180% 180%;
  mask-image: radial-gradient(circle at center, #000 18%, transparent 86%);
  animation: noiseSweep 9s ease-in-out infinite alternate;
}

@keyframes lightSweep {
  50% {
    opacity: 0.68;
    transform: translate3d(10vw, -4vw, 0) rotate(-8deg) scale(1.1);
  }
}

@keyframes lightSweepWide {
  0%,
  100% {
    opacity: 0.32;
    transform: translate3d(-2vw, 0, 0) rotate(-18deg) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate3d(14vw, -4vw, 0) rotate(-9deg) scale(1.12);
  }
}

@keyframes lightSweepReverse {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(4vw, 0, 0) rotate(-18deg) scale(1);
  }

  50% {
    opacity: 0.58;
    transform: translate3d(-12vw, 3vw, 0) rotate(-25deg) scale(1.08);
  }
}

@keyframes lightSweepLow {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-3vw, 1vw, 0) rotate(-18deg) scale(1);
  }

  50% {
    opacity: 0.52;
    transform: translate3d(11vw, -2vw, 0) rotate(-12deg) scale(1.1);
  }
}

@keyframes ambientShift {
  from {
    filter: hue-rotate(0deg) brightness(1);
  }

  to {
    filter: hue-rotate(-7deg) brightness(1.08);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-20%, -2%, 0) rotate(-8deg);
  }

  45%,
  55% {
    opacity: 0.64;
    transform: translate3d(18%, 4%, 0) rotate(-2deg);
  }
}

@keyframes heroDrift {
  from {
    opacity: 0.48;
    transform: translate3d(-5vw, -2vw, 0) scale(1);
  }

  to {
    opacity: 0.76;
    transform: translate3d(6vw, 3vw, 0) scale(1.07);
  }
}

@keyframes noiseSweep {
  from {
    background-position: center, 0% 50%;
    opacity: 0.56;
  }

  to {
    background-position: center, 100% 50%;
    opacity: 0.76;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 980px;
  margin: 0 auto 26px;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-size: clamp(3.5rem, 9.2vw, 8rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.68;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(270px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions .button {
  min-height: 56px;
  padding-left: 22px;
  padding-right: 22px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button::before,
.choice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible,
.choice-panel:hover,
.choice-panel:focus-visible,
.choice-grid button:hover,
.choice-grid button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  border-color: rgba(143, 124, 255, 0.58);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(143, 124, 255, 0.08);
}

.button:hover::before,
.button:focus-visible::before,
.choice-panel:hover::before,
.choice-panel:focus-visible::before {
  opacity: 1;
  transform: translateX(110%);
}

.button.primary {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  box-shadow: 0 16px 48px var(--cta-glow);
}

.button.secondary {
  color: var(--ink);
  background: rgba(244, 240, 231, 0.05);
}

.button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.system {
  padding: 76px 0;
  background: linear-gradient(180deg, #0c0e15, var(--panel));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 38px;
}

.section-head h2,
.contact-inner h2,
.scanner-intro h1 {
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.nowrap {
  white-space: nowrap;
}

.process {
  --process-pad: 62px;
  --rail-x: 16px;
  --dot-size: 22px;
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: var(--process-pad);
}

.process-line {
  position: absolute;
  left: calc(var(--rail-x) - 1px);
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(246, 241, 232, 0.12);
  overflow: hidden;
}

.process-line i {
  display: block;
  width: 100%;
  height: var(--line-progress, 0%);
  background: linear-gradient(180deg, var(--blue), var(--red), var(--yellow));
  transition: height 120ms linear;
}

.process article {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "number text";
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  min-height: 118px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 124, 255, 0.055), transparent 16rem),
    rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process article::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: calc(var(--rail-x) - var(--process-pad));
  top: 32px;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--ink);
  transform: translateX(-50%);
  z-index: 2;
}

.process article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(143, 124, 255, 0.12), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(143, 124, 255, 0.11), transparent 18rem);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.process article:hover,
.process article:focus-within {
  border-color: rgba(143, 124, 255, 0.34);
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 124, 255, 0.06), transparent 16rem),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(143, 124, 255, 0.05);
}

.process article:hover::after,
.process article:focus-within::after {
  opacity: 1;
}

.process article > * {
  position: relative;
  z-index: 1;
}

.process span {
  grid-area: number;
  color: var(--blue);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.9;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
}

.process h3 {
  grid-area: title;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.process p {
  grid-area: text;
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof {
  padding: 46px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, #05060a 0%, #080a10 48%, #05060a 100%);
}

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

.proof-strip div {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(246, 241, 232, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.proof-strip div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(105, 230, 216, 0.95), transparent 8rem),
    linear-gradient(135deg, rgba(143, 124, 255, 0.68), transparent 38%, rgba(215, 180, 106, 0.62));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.proof-strip div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(105, 230, 216, 0.08), transparent 13rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.proof-strip div:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 241, 232, 0.24);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.proof-strip div:hover::before,
.proof-strip div:hover::after {
  opacity: 1;
}

.proof-strip strong {
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.85;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.split-cta {
  padding: 86px 0;
  background: var(--bg);
}

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

.choice-panel {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(143, 124, 255, 0.14), transparent 16rem),
    var(--panel-soft);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.choice-panel.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(79, 70, 229, 0.16), transparent 18rem),
    #0a0c12;
}

.choice-panel::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.45;
  transform: rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.choice-panel::before {
  background:
    linear-gradient(105deg, transparent 8%, rgba(255, 255, 255, 0.08) 34%, transparent 58%),
    radial-gradient(circle at 82% 14%, rgba(143, 124, 255, 0.18), transparent 18rem);
  opacity: 0;
  transform: translateX(-10%);
  transition: opacity 220ms ease, transform 420ms ease;
}

.choice-panel:hover,
.choice-panel:focus-visible {
  border-color: rgba(143, 124, 255, 0.34);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.choice-panel:hover::before,
.choice-panel:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.choice-panel:hover::after,
.choice-panel:focus-visible::after {
  opacity: 1;
  transform: translateX(7px) rotate(45deg);
}

.choice-panel span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 220ms ease;
}

.choice-panel.dark span {
  color: rgba(255, 255, 255, 0.6);
}

.choice-panel strong {
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  max-width: 560px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  transition: transform 220ms ease;
}

.choice-panel p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
  transition: color 180ms ease, transform 220ms ease;
}

.choice-panel.dark p {
  color: rgba(255, 255, 255, 0.64);
}

.choice-panel:hover span,
.choice-panel:focus-visible span,
.choice-panel:hover strong,
.choice-panel:focus-visible strong,
.choice-panel:hover p,
.choice-panel:focus-visible p {
  transform: translateY(-2px);
}

.choice-panel:hover p,
.choice-panel:focus-visible p {
  color: rgba(246, 241, 232, 0.74);
}

.contact-screen {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 96px 0 78px;
  background:
    radial-gradient(circle at 12% 20%, rgba(143, 124, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 80% 68%, rgba(79, 70, 229, 0.12), transparent 24rem),
    var(--panel);
}

.contact-inner {
  min-width: 0;
  max-width: 1160px;
}

.contact-inner h2 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(2.15rem, 4.4vw, 4.35rem);
}

.contact-form,
.scanner {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 21, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-wizard {
  min-height: 0;
  padding: 12px;
}

.contact-wizard .scanner-head {
  min-height: 58px;
  padding: 13px 14px;
  background:
    linear-gradient(90deg, rgba(143, 124, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.045);
}

.contact-wizard .scanner-line {
  margin: 10px 0 0;
}

.contact-step {
  display: none;
  min-height: 238px;
  padding: 24px 10px 8px;
}

.contact-step.active {
  display: block;
  animation: stepIn 220ms ease both;
}

.contact-step h3 {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1;
}

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

.contact-wizard .choice-grid button {
  min-height: 86px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
}

.contact-wizard textarea {
  min-height: 220px;
}

.contact-wizard .choice-grid button:hover {
  border-color: rgba(143, 124, 255, 0.58);
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 124, 255, 0.12), transparent 75%),
    rgba(255, 255, 255, 0.07);
}

.contact-summary {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.choice-grid button {
  position: relative;
  min-height: 78px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  line-height: 1.12;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice-grid button::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(14, 15, 19, 0.34);
  border-radius: 50%;
}

.choice-grid button.selected {
  border-color: rgba(143, 124, 255, 0.75);
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 124, 255, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(143, 124, 255, 0.1);
}

.choice-grid button.selected::before {
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--white);
}

.choice-grid button:hover,
.choice-grid button:focus-visible {
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 124, 255, 0.12), transparent 75%),
    rgba(255, 255, 255, 0.07);
}

.field-grid {
  display: grid;
  gap: 10px;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  min-height: 58px;
  padding: 0 15px;
}

.field-wide {
  grid-column: 1 / -1;
}

textarea {
  min-height: 170px;
  padding: 16px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
textarea:focus {
  border-color: rgba(143, 124, 255, 0.68);
  box-shadow: 0 0 0 4px rgba(143, 124, 255, 0.1);
}

.form-bottom,
.scanner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-wizard .form-bottom {
  padding: 8px 10px 4px;
}

.contact-wizard .button {
  min-width: 148px;
}

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 850;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.privacy-note {
  max-width: 720px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--soft-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status {
  min-height: 22px;
  margin: 0;
  color: #9f3248;
  font-weight: 850;
}

.status.success {
  color: #245f8e;
}

.footer {
  padding: 28px 0;
  color: var(--white);
  background: #090a0d;
}

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

.footer p {
  margin: 0;
  font-weight: 900;
}

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

.footer-socials {
  justify-self: center;
}

.footer-socials a {
  display: grid;
  gap: 2px;
}

.footer-socials a span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.68rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.footer a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 70;
  width: min(720px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(14, 15, 19, 0.9);
  box-shadow: 0 22px 70px rgba(14, 15, 19, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-banner strong {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner .button {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner .button.secondary {
  color: var(--white);
  background: transparent;
}

.cookie-banner .button.primary {
  color: var(--dark);
  background: var(--white);
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 65;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 999px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.28), transparent 22%),
    rgba(12, 14, 21, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(143, 124, 255, 0.46);
  outline: 0;
  transform: translateY(-2px);
}

.scroll-top span {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.legal-page {
  min-height: 100svh;
  display: grid;
  place-items: start center;
  padding: 96px 16px 48px;
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 124, 255, 0.16), transparent 24rem),
    var(--bg);
}

.legal-back {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.legal-card {
  width: min(820px, 100%);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 18, 26, 0.82);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
}

.legal-card > p {
  color: var(--muted);
  line-height: 1.6;
}

.legal-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

.legal-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-page {
  min-height: 100svh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(143, 124, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 76%, rgba(79, 70, 229, 0.14), transparent 28rem),
    var(--bg);
}

.admin-shell {
  min-height: 100svh;
  display: grid;
  place-items: start center;
  padding: 104px 16px 48px;
}

.admin-brand {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 2;
  color: var(--white);
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  transform: translateX(-50%);
}

.admin-login {
  width: min(480px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(246, 241, 232, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(12, 14, 21, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px);
}

.admin-login h1 {
  margin: 0 0 32px;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: 0.96;
}

.admin-hint {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-note {
  margin: 0 0 24px;
  color: var(--white);
  font-weight: 700;
}

.admin-secondary-form {
  margin-top: 14px;
}

.admin-secondary-form button {
  width: 100%;
  padding: 12px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.admin-secondary-form button:hover,
.admin-secondary-form button:focus-visible {
  color: var(--white);
  outline: 0;
}

.admin-login form {
  display: grid;
  gap: 18px;
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field > span:first-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  outline: 0;
}

.admin-field input:focus {
  border-color: rgba(143, 124, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(143, 124, 255, 0.1);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 96px;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-field button:hover,
.password-field button:focus-visible {
  color: var(--white);
  outline: 0;
}

.admin-submit {
  width: 100%;
  margin-top: 6px;
}

.scan-step input[type="url"] {
  width: 100%;
  min-height: 58px;
  margin-bottom: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  outline: 0;
}

.scan-step input[type="url"]:focus {
  border-color: rgba(143, 124, 255, 0.5);
}

.instant-result {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 14, 21, 0.92);
  box-shadow: var(--shadow);
}

.instant-result [hidden] {
  display: none !important;
}

.scan-loader {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
}

.scan-loader i {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(143, 124, 255, 0.2);
  border-top-color: var(--cta-start);
  border-radius: 50%;
  animation: scanSpin 750ms linear infinite;
}

.scan-loader span,
.step-copy,
.field-label,
.result-mode {
  color: var(--muted);
}

.scan-loader strong,
.scan-loader span {
  text-align: center;
}

.scan-loader strong {
  min-height: 1.4em;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
}

.scan-loader span {
  min-height: 1.5em;
  max-width: 580px;
  line-height: 1.5;
}

.step-copy {
  max-width: 720px;
  margin: -8px 0 22px;
  line-height: 1.6;
}

.step-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.field-label {
  margin: 20px 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-mode {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(143, 124, 255, 0.3);
  background: rgba(143, 124, 255, 0.08);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes scanSpin {
  to { transform: rotate(360deg); }
}

.why-videntur {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(105, 230, 216, 0.07), transparent 25rem),
    radial-gradient(circle at 14% 85%, rgba(143, 124, 255, 0.1), transparent 30rem),
    #080a10;
}

.why-videntur::before {
  content: "V";
  position: absolute;
  top: -0.2em;
  right: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 241, 232, 0.025);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18rem, 42vw, 38rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.why-videntur .section-inner {
  position: relative;
  z-index: 1;
}

.why-heading {
  max-width: 1180px;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.why-heading .kicker {
  margin-bottom: 22px;
}

.why-heading h2,
.about-story h2,
.expertise-head h2,
.tool-intro h2,
.about-cta h2 {
  margin: 0;
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 0.94;
  text-wrap: balance;
  white-space: nowrap;
}

.why-heading h2 {
  width: fit-content;
  color: var(--ink);
  white-space: normal;
}

.why-heading h2 span {
  color: #b9b0ff;
}

.why-heading > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

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

.why-pillars article {
  position: relative;
  min-height: 270px;
  padding: clamp(24px, 3vw, 38px);
  border-left: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.why-pillars article:first-child {
  border-left: 0;
}

.why-pillars article:hover {
  background: rgba(143, 124, 255, 0.055);
  transform: translateY(-3px);
}

.why-pillars span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.why-pillars h3 {
  max-width: 300px;
  margin: 70px 0 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.why-pillars p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.why-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
}

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

.why-footer p strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.why-footer p span {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 850;
}

.text-link span {
  color: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-page {
  background: var(--bg);
}

.about-hero {
  position: relative;
  min-height: min(860px, 100svh);
  display: grid;
  align-items: center;
  padding: 144px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 38%, rgba(143, 124, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 72%, rgba(105, 230, 216, 0.08), transparent 24rem),
    var(--bg);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.55fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.about-copy h1 {
  max-width: 820px;
  margin: 0 0 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 6.7vw, 6.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.about-copy > p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.about-profile {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.profile-visual {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(143, 124, 255, 0.2), transparent 48%),
    radial-gradient(circle at 70% 20%, rgba(105, 230, 216, 0.08), transparent 12rem);
  color: rgba(246, 241, 232, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6rem, 12vw, 9rem);
  font-weight: 700;
}

.profile-name {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.profile-name strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.profile-name span {
  color: var(--muted);
  font-size: 0.84rem;
}

.about-profile dl {
  margin: 0;
  padding: 8px 22px 15px;
}

.about-profile dl div {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.about-profile dl div:first-child {
  border-top: 0;
}

.about-profile dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-profile dd {
  margin: 0;
  font-weight: 650;
}

.about-story,
.expertise,
.tool-section,
.about-cta {
  padding: clamp(76px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.name-translation {
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) auto minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(30px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.name-translation > strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.6rem, 6vw, 5.8rem);
  line-height: 0.9;
}

.name-translation > span {
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.name-translation h2 {
  margin: 0;
  color: #b9b0ff;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.92;
  white-space: normal;
}

.name-copy {
  max-width: 760px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.expertise {
  background: var(--panel);
}

.expertise-layout,
.tool-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.expertise-head h2,
.tool-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  white-space: normal;
}

.expertise-head > p:last-child,
.tool-intro > p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.expertise-list > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.expertise-list > div:first-child { border-top: 0; }
.expertise-list > div > span { color: var(--blue); font-size: 0.75rem; font-weight: 800; }
.expertise-list p { display: grid; gap: 7px; margin: 0; }
.expertise-list strong { font-family: "Space Grotesk", sans-serif; font-size: 1.22rem; }
.expertise-list small { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

.tool-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tool-list > div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.tool-list > div:hover {
  background: rgba(255, 255, 255, 0.035);
}

.tool-list img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.88;
}

.tool-list p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.tool-list strong { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; }
.tool-list small { color: var(--muted); }

.about-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 70%, rgba(143, 124, 255, 0.15), transparent 28rem),
    var(--bg);
}

.about-cta .hero-actions {
  margin-right: auto;
  margin-left: auto;
}

.result-score {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
}

.result-score strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.85;
  color: var(--cta-start);
}

.result-score span,
#resultSummary,
.result-columns li {
  color: var(--muted);
}

.instant-result h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

#resultSummary {
  max-width: 780px;
  line-height: 1.6;
}

.result-dashboard {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin: 26px 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 50%, rgba(143, 124, 255, 0.12), transparent 15rem),
    rgba(255, 255, 255, 0.02);
}

.result-gauge {
  --good-end: 0%;
  --neutral-end: 0%;
  position: relative;
  width: min(210px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--aqua) 0 var(--good-end),
      var(--blue) var(--good-end) var(--neutral-end),
      #ef9b75 var(--neutral-end) 100%
    );
  box-shadow: 0 0 55px rgba(143, 124, 255, 0.14);
}

.result-gauge::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #0d0f16;
  box-shadow: inset 0 0 0 1px var(--line);
}

.result-gauge div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.result-gauge strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.82;
}

.result-gauge span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.result-signals {
  position: relative;
  display: grid;
  gap: 0;
}

.result-signals::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 15px;
  width: 1px;
  background: linear-gradient(180deg, var(--aqua), var(--blue), #ef9b75);
}

.result-signal {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 0;
}

.result-signal span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.result-signal strong {
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  line-height: 1.2;
}

.result-signal i {
  z-index: 1;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--blue);
  background: #0d0f16;
  box-shadow: 0 0 18px rgba(143, 124, 255, 0.16);
  font-style: normal;
}

.result-signal i b {
  font-size: 0.82rem;
}

.result-signal.good i {
  color: var(--aqua);
}

.result-signal.warning i {
  color: #ef9b75;
}

.result-signal.neutral i {
  color: var(--blue);
}

.result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.result-columns > div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.result-columns h3 { margin: 0 0 10px; }
.result-columns ul { margin: 0; padding-left: 18px; }
.result-columns li { margin: 6px 0; line-height: 1.4; }

.review-action {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(143, 124, 255, 0.26);
  background:
    radial-gradient(circle at 16% 50%, rgba(143, 124, 255, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.review-action::after {
  content: "";
  position: absolute;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(105, 230, 216, 0.08);
  filter: blur(36px);
  pointer-events: none;
}

.review-action .button {
  position: relative;
  z-index: 1;
  min-width: min(100%, 340px);
  justify-content: space-between;
  box-shadow: 0 16px 42px rgba(79, 70, 229, 0.22);
}

.review-action small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 520px) {
  .result-dashboard,
  .result-columns {
    grid-template-columns: 1fr;
  }

  .result-gauge {
    width: 160px;
  }

  .review-action {
    grid-template-columns: 1fr;
  }

  .review-action .button {
    width: 100%;
    min-width: 0;
  }

  .result-signal {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .result-signal strong {
    grid-column: 2;
    margin-top: -8px;
  }
}

.check-page {
  min-height: 100svh;
  background: var(--bg);
}

.check-main {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 106px 16px 44px;
  overflow: hidden;
}

.check-bg {
  background:
    radial-gradient(circle at 50% 28%, rgba(246, 241, 232, 0.08), transparent 18rem),
    radial-gradient(circle at 18% 20%, rgba(143, 124, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(79, 70, 229, 0.16), transparent 24rem),
    radial-gradient(circle at 50% 92%, rgba(143, 124, 255, 0.12), transparent 22rem),
    var(--bg);
}

.check-bg span {
  border: 0;
  filter: blur(34px);
  opacity: 0.38;
}

.check-bg span:nth-child(1) {
  left: -18%;
  top: 5%;
  background: linear-gradient(90deg, transparent, rgba(143, 124, 255, 0.36), transparent);
}

.check-bg span:nth-child(2) {
  right: -20%;
  top: 16%;
  background: linear-gradient(90deg, transparent, rgba(105, 230, 216, 0.28), transparent);
  animation-delay: -6s;
}

.check-bg span:nth-child(3) {
  left: 25%;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(215, 180, 106, 0.18), transparent);
  animation-delay: -10s;
}

.check-shell {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: var(--white);
}

.scanner-intro {
  display: block;
  max-width: 920px;
  margin: 0 auto 26px;
  text-align: center;
}

.scanner-intro p:last-child {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
}

.scanner.large {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 21, 0.9);
}

.scanner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.scanner-head span,
.scanner-head em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scanner-head strong {
  display: block;
  margin-top: 5px;
  font-size: 1.06rem;
}

.scanner-line {
  height: 7px;
  margin: 12px 0 4px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.08);
  overflow: hidden;
}

.scanner-line i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cta-start), var(--cta-end));
  transition: width 240ms ease;
}

.scan-step {
  display: none;
  min-height: 260px;
  padding: 30px 8px 18px;
}

.scan-step.active {
  display: block;
  animation: stepIn 220ms ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.scan-step h2 {
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1;
}

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

.scanner textarea {
  min-height: 160px;
}

.scanner-actions {
  padding-top: 14px;
}

@media (max-width: 880px) {
  header,
  main,
  section,
  footer {
    max-width: 100%;
  }

  .nav {
    grid-template-columns: 1fr auto 1fr;
    top: 12px;
    width: calc(100% - 24px);
    min-height: 58px;
    padding: 6px;
    border-radius: 16px;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    min-height: 44px;
    padding: 0;
  }

  .brand span {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .check-nav .brand {
    grid-column: 2;
  }

  .check-nav .nav-back {
    grid-column: 1;
    justify-self: start;
  }

  .check-nav .nav-back.right {
    grid-column: 3;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    width: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    padding: 8px;
    border: 1px solid rgba(246, 241, 232, 0.11);
    border-radius: 0;
    background: rgba(9, 11, 16, 0.94);
    box-shadow: none;
    backdrop-filter: blur(22px);
  }

  .nav-left {
    top: 78px;
    justify-self: stretch;
    padding-bottom: 3px;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .nav-right {
    top: 305px;
    justify-self: stretch;
    padding-top: 3px;
    border-top: 0;
    border-radius: 0 0 16px 16px;
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 16px;
  }

  .nav-right a {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 5.4rem);
  }

  .hero-actions,
  .form-bottom,
  .scanner-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    max-height: calc(100svh - 24px);
    max-height: calc(100dvh - 24px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: none;
  }

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

  .hero-actions .button,
  .form-bottom .button,
  .scanner-actions .button {
    width: 100%;
  }

  .contact-wizard {
    min-height: 0;
  }

  .contact-step,
  .scan-step {
    min-height: 0;
  }

  .process article {
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-areas:
      "number title"
      "text text";
    gap: 12px 16px;
  }

  .proof-strip,
  .split-layout,
  .choice-grid,
  .field-grid.two,
  .check-shell {
    grid-template-columns: 1fr;
  }

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

  .contact-wizard .choice-grid button {
    min-height: 76px;
    padding: 14px;
  }

  .check-shell {
    align-items: start;
  }

  .check-main {
    place-items: start center;
    overflow-x: clip;
    overflow-y: visible;
  }

  .scanner-intro {
    text-align: center;
  }

  .scanner-intro p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }

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

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

  .footer-socials {
    justify-self: start;
  }

  .why-heading,
  .about-hero-grid,
  .story-grid,
  .about-story-clean,
  .expertise-layout,
  .tool-layout {
    grid-template-columns: 1fr;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }

  .why-pillars article {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .why-pillars article:first-child {
    border-top: 0;
  }

  .why-pillars h3 {
    margin-top: 38px;
  }

  .why-heading {
    gap: 24px;
  }

  .why-heading h2 {
    white-space: normal;
  }

  .story-index {
    display: none;
  }

  .about-profile {
    width: min(460px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

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

  .name-translation {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .name-translation > span {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  body {
    background-color: var(--bg);
  }

  .section-inner,
  .hero-inner {
    width: calc(100% - 24px);
  }

  .nav {
    width: calc(100% - 16px);
  }

  .nav-links {
    left: 8px;
    right: 8px;
  }

  .hero-inner {
    min-width: 0;
  }

  .hero {
    place-items: end center;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.4vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 100%;
  }

  .contact-inner .nowrap {
    white-space: normal;
  }

  .process {
    --process-pad: 34px;
    --rail-x: 12px;
    padding-left: var(--process-pad);
  }

  .process article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "title"
      "text";
    min-height: 0;
    padding: 20px;
  }

  .process article::before {
    top: 26px;
  }

  .process span {
    font-size: 2.65rem;
  }

  .choice-panel {
    min-height: 260px;
  }

  .proof-strip,
  .contact-form,
  .scanner,
  .instant-result {
    min-width: 0;
  }

  .choice-panel strong {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .scanner .choice-grid {
    grid-template-columns: 1fr;
  }

  .check-main {
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
    padding-top: 112px;
  }

  .check-shell {
    width: 100%;
    min-width: 0;
  }

  .scanner,
  .instant-result {
    width: 100%;
    padding: 10px;
  }

  .scanner-head {
    padding: 12px;
  }

  .scan-step {
    padding: 22px 2px 8px;
  }

  .scan-step h2,
  .scanner-intro h1 {
    overflow-wrap: anywhere;
  }

  .choice-grid button {
    min-width: 0;
  }

  .scanner-actions {
    gap: 8px;
  }

  .cookie-banner {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    width: auto;
    max-height: calc(100svh - 16px);
    max-height: calc(100dvh - 16px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    transform: none;
  }

  .cookie-banner p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .cookie-actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .button {
    width: 100%;
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.82rem;
  }

  .why-heading {
    margin-bottom: 42px;
  }

  .why-heading h2,
  .about-story h2,
  .expertise-head h2,
  .tool-intro h2,
  .about-cta h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .why-pillars article {
    padding: 24px 6px;
  }

  .why-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero {
    min-height: 0;
    padding-top: 116px;
    padding-bottom: 64px;
  }

  .about-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .profile-visual {
    min-height: 260px;
  }

  .about-story,
  .expertise,
  .tool-section,
  .about-cta {
    padding: 68px 0;
  }

  .about-story h2,
  .expertise-head h2,
  .tool-intro h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .about-story-clean,
  .expertise-layout,
  .tool-layout {
    gap: 42px;
  }

  .name-translation > strong {
    font-size: clamp(3.5rem, 18vw, 5.3rem);
  }

  .name-translation h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .name-copy {
    margin-left: 0;
  }

  .tool-list {
    grid-template-columns: 1fr;
  }

  .tool-list > div {
    gap: 16px;
    min-height: 150px;
    padding: 20px;
  }

  .tool-list small {
    text-align: left;
  }
}

@media (hover: none), (pointer: coarse) {
  .magnetic,
  .choice-panel,
  .button,
  .nav-links a {
    transform: none !important;
  }
}

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