:root {
  --ink: #17131f;
  --ink-soft: #655d70;
  --paper: #fbfafc;
  --paper-warm: #f5f1ec;
  --lavender: #eee9f8;
  --lavender-strong: #ded4f4;
  --line: #ded9e6;
  --line-dark: #393249;
  --dark: #0f0c1d;
  --dark-soft: #19152a;
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-light: #c4b5fd;
  --magenta: #d78aff;
  --white: #fff;
  --max-width: 1160px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(38, 20, 65, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--lavender-strong);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--purple-light);
  outline-offset: 3px;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.brand-accent {
  color: var(--purple-light);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.35);
  border-radius: 11px;
  background: #19132c;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  overflow: visible;
}

.brand-mark svg path:first-child {
  fill: var(--magenta);
}

.brand-mark .mark-cut {
  fill: var(--dark);
}

.brand-mark .mark-speed {
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-width: 2.4;
}

.brand-mark .mark-tag {
  fill: var(--purple);
}

.brand-mark .mark-hole {
  fill: var(--dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 650;
  color: #cbc4d7;
}

.site-nav a:not(.nav-cta) {
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(196, 181, 253, 0.35);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.16);
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--purple-light);
  background: rgba(139, 92, 246, 0.3);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 0;
}

.hero::before {
  position: absolute;
  top: 50px;
  right: -160px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0.8;
}

.hero::after {
  position: absolute;
  top: 190px;
  right: -30px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(215, 138, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  gap: 32px;
  align-items: center;
  min-height: 590px;
}

.hero-copy {
  padding: 44px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #bcaef7;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-purple {
  color: var(--purple-dark);
}

.eyebrow-dot,
.status-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 0 5px rgba(196, 181, 253, 0.12);
}

.status-pulse {
  width: 6px;
  height: 6px;
  background: #34d399;
  box-shadow: none;
}

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

h1,
h2 {
  letter-spacing: -0.065em;
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 6vw, 5.85rem);
  font-weight: 760;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--purple-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 540px;
  margin-bottom: 31px;
  color: #cbc4d7;
  font-size: 18px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.source-row:focus-visible {
  outline: 3px solid var(--purple-light);
  outline-offset: 4px;
}

.button-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9d73fa;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.17);
  color: #d7d1e0;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-dark {
  width: 100%;
  margin-top: 22px;
  background: var(--dark);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #28213b;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: #8d86a1;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 34px 0 30px;
}

.visual-annotation {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8d86a1;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.annotation-top {
  justify-content: flex-end;
  padding-right: 42px;
}

.annotation-top span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--purple);
}

.annotation-bottom {
  justify-content: flex-end;
  padding: 10px 28px 0 0;
}

.annotation-bottom .line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--line-dark);
}

.radar-shell {
  position: relative;
  width: min(100%, 570px);
  height: 460px;
  margin: 24px 0 0 auto;
}

.radar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  filter: blur(45px);
  transform: translate(-50%, -50%);
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 330px;
  height: 330px;
}

.ring-two {
  width: 190px;
  height: 190px;
  border-color: rgba(196, 181, 253, 0.28);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 100% 0 0;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-right-color: transparent;
  border-bottom-color: transparent;
  background: rgba(196, 181, 253, 0.035);
  transform-origin: 0 0;
  animation: sweep 8s linear infinite;
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(215, 138, 255, 0.55);
  border-radius: 24px;
  background: rgba(20, 14, 40, 0.8);
  box-shadow:
    0 0 0 12px rgba(139, 92, 246, 0.06),
    0 16px 45px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%) rotate(45deg);
}

.radar-pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--purple);
  box-shadow: 0 0 20px rgba(215, 138, 255, 0.5);
  transform: rotate(-45deg);
}

.radar-signal {
  position: absolute;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.6);
  border-radius: 50%;
  background: var(--dark);
}

.radar-signal span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--magenta);
}

.signal-one {
  top: 28%;
  left: 26%;
}

.signal-two {
  top: 27%;
  right: 18%;
}

.signal-three {
  bottom: 25%;
  right: 29%;
}

.radar-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 176px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 13px;
  background: rgba(25, 21, 42, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.radar-label strong {
  color: var(--white);
  font-size: 12px;
}

.radar-label small {
  color: #9e96b3;
  font-size: 10px;
}

.signal-number {
  color: var(--purple-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.label-watchlist {
  top: 6%;
  left: 7%;
}

.label-match {
  top: 36%;
  right: 1%;
}

.label-alert {
  bottom: 4%;
  left: 19%;
}

.hero-bottom-line {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 19px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8d86a1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  padding: 124px 0;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 90px;
  align-items: end;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  font-weight: 750;
  line-height: 1.03;
}

.intro-grid h2 {
  max-width: 660px;
}

.intro-copy {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.muted {
  color: #8b8296 !important;
  font-size: 14px !important;
}

.problem-rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.2fr;
  gap: 15px;
  align-items: center;
  margin-top: 76px;
}

.rail-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.rail-index {
  color: #a29aa9;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.rail-arrow {
  color: #b5acbd;
  font-size: 22px;
}

.rail-item-highlight {
  border-color: var(--purple);
  color: var(--ink);
}

.rail-item-highlight .rail-index {
  color: var(--purple-dark);
}

.section-lavender {
  background: var(--lavender);
}

.section-heading {
  max-width: 620px;
}

.section-heading > p:last-child {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.step-list {
  margin-top: 76px;
  border-top: 1px solid rgba(101, 93, 112, 0.2);
}

.step-row {
  display: grid;
  grid-template-columns: 50px 40px minmax(220px, 1fr) minmax(230px, 0.72fr);
  gap: 22px;
  min-height: 155px;
  align-items: center;
  border-bottom: 1px solid rgba(101, 93, 112, 0.2);
}

.step-number {
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.step-marker {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 25px;
}

.marker-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--purple-dark);
  border-radius: 50%;
  background: var(--lavender);
}

.marker-line {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(109, 40, 217, 0.25);
  transform: translateX(-50%);
}

.marker-last {
  align-self: start;
  height: 70px;
}

.step-content h3 {
  margin-bottom: 7px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.step-content p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.step-art {
  justify-self: end;
  display: flex;
  min-width: 230px;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 40, 217, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.38);
}

.art-search {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 15px 48px 15px 17px;
}

.art-search-label {
  color: var(--ink-soft);
  font-size: 9px;
  text-transform: uppercase;
}

.art-search strong {
  font-size: 15px;
}

.art-chip {
  position: absolute;
  right: 16px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
}

.art-filters {
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px;
}

.mini-chip {
  padding: 5px 8px;
  border: 1px solid rgba(109, 40, 217, 0.19);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 9px;
}

.mini-chip.active {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.art-monitor {
  position: relative;
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(109, 40, 217, 0.3);
  border-radius: 50%;
  transform: rotate(-23deg);
}

.orbit-a {
  width: 110px;
  height: 46px;
}

.orbit-b {
  width: 78px;
  height: 78px;
}

.orbit-core {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 7px rgba(139, 92, 246, 0.12);
}

.orbit-label {
  position: absolute;
  right: 13px;
  bottom: 11px;
  color: var(--purple-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-notification {
  justify-content: flex-start;
  gap: 11px;
  padding: 12px 15px;
}

.notification-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--purple);
  color: var(--white);
  font-size: 22px;
}

.art-notification span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.art-notification strong {
  font-size: 11px;
}

.art-notification small {
  color: var(--ink-soft);
  font-size: 9px;
}

.proof-section {
  overflow: hidden;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: 94px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 500px;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: #bdb5cc;
  font-size: 17px;
}

.proof-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  color: #d7d1e0;
  font-size: 13px;
}

.proof-list i {
  display: inline-block;
  width: 24px;
  color: var(--purple-light);
  font-style: normal;
}

.proof-flow {
  position: relative;
  padding-top: 23px;
}

.proof-window-label {
  position: absolute;
  top: 0;
  left: 25px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8d86a1;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.window-meta {
  margin-left: 8px;
  color: #635a76;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.proof-window {
  display: flex;
  min-height: 420px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #151124;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.proof-sidebar {
  display: flex;
  width: 60px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 25px;
  border-right: 1px solid #2e2741;
}

.sidebar-logo {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: var(--purple);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.sidebar-line {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 10px;
  background: #4c4360;
}

.sidebar-line.active {
  background: var(--purple-light);
  box-shadow: 0 0 9px rgba(196, 181, 253, 0.65);
}

.sidebar-line.short {
  width: 10px;
}

.proof-main {
  flex: 1;
  padding: 31px 25px;
}

.proof-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #2e2741;
  color: #9e96b3;
  font-size: 11px;
}

.proof-top strong {
  color: var(--white);
  font-weight: 650;
}

.small-status {
  color: #62dca8;
  font-size: 9px;
  white-space: nowrap;
}

.proof-match-card {
  position: relative;
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(196, 181, 253, 0.31);
  border-radius: 14px;
  background: #201a34;
}

.muted-card {
  border-color: #2e2741;
  opacity: 0.68;
}

.match-image {
  position: relative;
  display: grid;
  width: 106px;
  min-width: 106px;
  height: 112px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #4d3a7a;
}

.match-image::after {
  position: absolute;
  top: 10px;
  left: 13px;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.camera-shape {
  position: relative;
  display: block;
  width: 65px;
  height: 40px;
  border: 5px solid #d6c9ff;
  border-radius: 10px;
  transform: rotate(-7deg);
}

.camera-shape::before {
  position: absolute;
  top: -10px;
  left: 14px;
  width: 25px;
  height: 10px;
  border-radius: 4px 4px 0 0;
  background: #d6c9ff;
  content: "";
}

.camera-shape::after {
  position: absolute;
  top: 7px;
  left: 17px;
  width: 18px;
  height: 18px;
  border: 4px solid #8d6ee4;
  border-radius: 50%;
  content: "";
}

.image-spark {
  position: absolute;
  right: 9px;
  bottom: 10px;
  color: var(--magenta);
  font-size: 18px;
}

.image-two {
  background: #67515f;
}

.camera-two {
  transform: scale(0.78) rotate(4deg);
  filter: grayscale(0.3);
}

.match-info {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.match-source {
  overflow: hidden;
  color: var(--purple-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.match-info h3 {
  margin: 0;
  overflow: hidden;
  color: var(--white);
  font-size: 15px;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-info p {
  margin: 0;
  color: #9e96b3;
  font-size: 10px;
}

.match-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.match-foot strong {
  color: var(--white);
  font-size: 16px;
}

.drop-pill {
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(52, 211, 153, 0.13);
  color: #62dca8;
  font-size: 8px;
  font-weight: 750;
}

.save-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #beb4cc;
  font-size: 19px;
}

.save-mark.saved {
  color: var(--magenta);
}

.concept-note {
  margin: 13px 0 0;
  color: #706781;
  font-size: 10px;
  text-align: right;
}

.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
  gap: 100px;
  align-items: center;
}

.transparency-grid .section-heading h2 {
  max-width: 560px;
}

.source-board {
  border-top: 1px solid var(--line);
}

.source-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 21px 4px;
  border-bottom: 1px solid var(--line);
}

.source-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 750;
}

.source-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.dot-ebay {
  background: #5b61ff;
}

.dot-etsy {
  background: #f1641e;
}

.dot-rakuten {
  background: #bf1b2c;
}

.source-note {
  color: var(--ink-soft);
  font-size: 11px;
}

.source-arrow {
  color: var(--purple-dark);
  font-size: 18px;
}

.board-footnote {
  margin: 18px 0 0;
  color: #8b8296;
  font-size: 11px;
  line-height: 1.55;
}

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

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 120px;
  align-items: start;
}

.control-grid h2 {
  max-width: 500px;
}

.section-lede {
  max-width: 350px;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.control-item {
  display: flex;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.control-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid var(--lavender-strong);
  border-radius: 11px;
  background: var(--white);
  color: var(--purple-dark);
  font-size: 18px;
}

.control-item h3 {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.control-item p {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.trial-section {
  padding-bottom: 132px;
}

.trial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.trial-copy h2 {
  max-width: 570px;
}

.trial-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 17px;
}

.trial-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(109, 40, 217, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.trial-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trial-card h3 {
  max-width: 300px;
  margin: 17px 0 23px;
  font-size: 25px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.trial-rule {
  height: 1px;
  margin-bottom: 6px;
  background: var(--line);
}

.trial-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(222, 217, 230, 0.65);
  color: var(--ink-soft);
  font-size: 11px;
}

.trial-row strong {
  color: var(--ink);
  font-size: 11px;
  text-align: right;
}

.trial-unavailable {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.trial-unavailable[data-highlight="true"] {
  color: var(--purple-dark);
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 23px;
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 auto 30px;
  color: #bdb5cc;
}

.final-cta .hero-actions {
  justify-content: center;
}

.coming-soon-label {
  color: #8d86a1;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: #0a0811;
  color: #bdb5cc;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 64px 0 58px;
}

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

.footer-brand > p {
  margin: 14px 0 0;
  color: #706781;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.footer-links a {
  color: #a59bb8;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-label {
  margin-bottom: 6px;
  color: #706781;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0 23px;
  border-top: 1px solid #292337;
  color: #706781;
  font-size: 10px;
}

/* Legal and support pages */
.legal-page,
.support-page {
  background: var(--paper);
}

.legal-hero,
.support-hero {
  padding: 160px 0 92px;
}

.legal-hero-inner {
  max-width: 820px;
}

.legal-hero h1,
.support-hero h1 {
  max-width: 800px;
  margin-bottom: 21px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.legal-hero h1,
.support-hero h1 {
  color: var(--white);
}

.legal-hero-inner > p:last-child,
.support-hero-grid > div:first-child > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #bdb5cc;
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 80px;
  padding-top: 74px;
  padding-bottom: 120px;
}

.review-banner {
  align-self: start;
  position: sticky;
  top: 24px;
  padding: 19px;
  border: 1px solid #e9c982;
  border-radius: 14px;
  background: #fff8e5;
  color: #624d1c;
}

.review-banner {
  display: flex;
  gap: 11px;
}

.review-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: #e9c982;
  color: #5d4616;
  font-size: 12px;
  font-weight: 800;
}

.review-banner strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.review-banner p {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.55;
}

.legal-content {
  max-width: 780px;
}

.legal-meta {
  margin-bottom: 50px;
  color: #8b8296;
  font-size: 12px;
}

mark {
  padding: 2px 5px;
  border-radius: 4px;
  background: #fff0c8;
  color: #755a1b;
}

.legal-content h2 {
  margin-top: 47px;
  margin-bottom: 13px;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-content p + p {
  margin-top: 14px;
}

.data-table {
  margin: 24px 0 40px;
  border-top: 1px solid var(--line);
}

.data-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1.2fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.data-row strong {
  color: var(--ink);
  font-size: 12px;
}

.data-row.data-head {
  padding-top: 12px;
  padding-bottom: 10px;
  color: #8b8296;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-box {
  margin-top: 28px;
  padding: 17px 19px;
  border-left: 3px solid var(--purple);
  background: var(--lavender);
  color: var(--ink-soft);
  font-size: 13px;
}

.placeholder-box strong {
  color: var(--purple-dark);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: center;
}

.support-signal {
  position: relative;
  display: grid;
  width: 280px;
  height: 280px;
  justify-self: center;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.23);
  border-radius: 50%;
}

.support-signal::before {
  position: absolute;
  width: 178px;
  height: 178px;
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 50%;
  content: "";
}

.support-signal-ring {
  position: absolute;
  border: 1px solid rgba(215, 138, 255, 0.45);
  border-radius: 50%;
  transform: rotate(35deg);
}

.ring-a {
  width: 225px;
  height: 90px;
}

.ring-b {
  width: 95px;
  height: 255px;
}

.support-signal-core {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--purple);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  box-shadow: 0 0 0 15px rgba(139, 92, 246, 0.1);
}

.signal-caption {
  position: absolute;
  bottom: 18px;
  color: #8d86a1;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  padding-top: 75px;
  padding-bottom: 120px;
}

.contact-panel {
  align-self: start;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-warm);
}

.contact-panel h2 {
  margin-bottom: 13px;
  font-size: 29px;
}

.contact-panel > p:not(.eyebrow):not(.small-note) {
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-route {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.route-number {
  color: var(--purple-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.contact-route div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-route strong {
  font-size: 13px;
}

.contact-route span:last-child {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.small-note {
  margin: 18px 0 0;
  color: #8b8296;
  font-size: 11px;
  line-height: 1.55;
}

.support-content {
  min-width: 0;
}

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

.support-block + .support-block {
  padding-top: 64px;
}

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

.support-block h2 {
  margin-bottom: 15px;
  font-size: 37px;
}

.support-block > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 15px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.report-grid > div {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-warm);
}

.report-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 9px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 15px;
}

.report-grid strong {
  font-size: 12px;
}

.report-grid > div > span:last-child {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.safe-block {
  padding-bottom: 58px;
}

.safe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.safe-grid > div {
  padding: 20px;
  border-radius: 14px;
  background: var(--lavender);
}

.safe-grid > div:last-child {
  background: #fff0ed;
}

.safe-grid h3 {
  margin-bottom: 10px;
  font-size: 13px;
}

.safe-grid ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 12px;
}

.safe-grid li::before {
  margin-right: 8px;
  color: var(--purple-dark);
  content: "✓";
}

.safe-grid .do-not li::before {
  color: #c45749;
  content: "×";
}

.faq-list {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.faq-row {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.faq-number {
  color: var(--purple-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.faq-row h3 {
  margin-bottom: 5px;
  font-size: 14px;
}

.faq-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.deletion-block {
  padding-bottom: 0;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-bottom: 20px;
  }
  .hero-visual {
    min-height: 500px;
    padding-top: 0;
  }
  .hero-bottom-line {
    gap: 12px;
    font-size: 9px;
  }
  .proof-grid,
  .control-grid,
  .trial-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .transparency-grid {
    gap: 50px;
  }
  .control-grid {
    gap: 42px;
  }
  .trial-grid {
    gap: 42px;
  }
  .legal-layout,
  .support-layout {
    gap: 44px;
  }
  .support-layout {
    grid-template-columns: 0.65fr 1.35fr;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 36px), var(--max-width));
  }
  .nav-wrap {
    min-height: 68px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 9px;
    border: 1px solid var(--line-dark);
    border-radius: 15px;
    background: #171329;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 12px 10px;
  }
  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }
  .hero {
    padding-top: 132px;
  }
  .hero-grid {
    min-height: 0;
  }
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-note {
    align-items: flex-start;
    line-height: 1.4;
  }
  .hero-visual {
    min-height: 440px;
    margin-top: 8px;
  }
  .radar-shell {
    height: 380px;
    margin-top: 20px;
    transform: scale(0.82);
    transform-origin: top right;
  }
  .annotation-top {
    padding-right: 0;
  }
  .annotation-bottom {
    padding-right: 0;
  }
  .hero-bottom-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 15px;
    line-height: 1.4;
  }
  .section {
    padding: 82px 0;
  }
  .intro-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .intro-copy {
    font-size: 16px;
  }
  .problem-rail {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    margin-top: 48px;
  }
  .rail-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  .rail-arrow {
    display: none;
  }
  .step-list {
    margin-top: 50px;
  }
  .step-row {
    grid-template-columns: 37px 24px 1fr;
    gap: 10px;
    min-height: 0;
    padding: 23px 0;
  }
  .step-content h3 {
    font-size: 18px;
  }
  .step-content p {
    font-size: 13px;
  }
  .step-art {
    grid-column: 3;
    justify-self: stretch;
    min-width: 0;
    min-height: 68px;
    margin-top: 11px;
  }
  .proof-grid {
    gap: 42px;
  }
  .proof-window {
    min-height: 370px;
  }
  .proof-main {
    padding: 25px 13px;
  }
  .proof-sidebar {
    width: 45px;
  }
  .proof-match-card {
    gap: 9px;
    padding: 9px;
  }
  .match-image {
    width: 78px;
    min-width: 78px;
    height: 90px;
  }
  .camera-shape {
    transform: scale(0.8) rotate(-7deg);
  }
  .proof-top {
    flex-direction: column;
    gap: 6px;
  }
  .transparency-grid {
    gap: 42px;
  }
  .source-row {
    grid-template-columns: 1fr auto;
  }
  .source-note {
    grid-column: 1;
    grid-row: 2;
    padding-left: 20px;
  }
  .source-arrow {
    grid-column: 2;
    grid-row: 1;
  }
  .control-item {
    gap: 12px;
  }
  .trial-card {
    padding: 25px;
  }
  .trial-row {
    flex-direction: column;
    gap: 3px;
  }
  .trial-row strong {
    text-align: left;
  }
  .final-cta {
    padding-bottom: 90px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding: 48px 0;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
  .legal-hero,
  .support-hero {
    padding: 130px 0 72px;
  }
  .legal-hero h1,
  .support-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .legal-hero-inner > p:last-child,
  .support-hero-grid > div:first-child > p:last-child {
    font-size: 16px;
  }
  .legal-layout,
  .support-layout {
    display: flex;
    flex-direction: column;
    padding-top: 44px;
    padding-bottom: 80px;
  }
  .review-banner {
    position: static;
  }
  .legal-meta {
    margin-bottom: 38px;
  }
  .legal-content h2 {
    margin-top: 37px;
    font-size: 24px;
  }
  .legal-content p {
    font-size: 14px;
  }
  .data-table {
    overflow: hidden;
  }
  .data-row {
    grid-template-columns: 1fr 1fr;
    gap: 9px 17px;
    padding: 13px 0;
  }
  .data-row strong {
    grid-column: span 2;
  }
  .data-row.data-head {
    display: none;
  }
  .support-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .support-signal {
    width: 190px;
    height: 190px;
    justify-self: start;
  }
  .support-signal::before {
    width: 120px;
    height: 120px;
  }
  .ring-a {
    width: 152px;
    height: 62px;
  }
  .ring-b {
    width: 65px;
    height: 172px;
  }
  .support-signal-core {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    font-size: 24px;
  }
  .signal-caption {
    bottom: 11px;
    font-size: 7px;
  }
  .support-block h2 {
    font-size: 31px;
  }
  .report-grid {
    grid-template-columns: 1fr 1fr;
  }
  .safe-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
