:root {
  color-scheme: dark;
  --night: #06101c;
  --night-2: #091725;
  --night-3: #0d1f30;
  --panel: #102333;
  --paper: #f7f8f9;
  --paper-2: #eef3f5;
  --ink: #0d1b2a;
  --ink-soft: #435162;
  --white: #f6f9fb;
  --mist: #aab7c5;
  --line-dark: rgba(186, 215, 228, 0.17);
  --line-light: #d7e0e5;
  --surface-glass: rgba(10, 28, 45, 0.78);
  --surface-glass-strong: rgba(12, 31, 49, 0.94);
  --article-text: #c6d1df;
  --article-muted: #94a5b9;
  --article-line: rgba(129, 174, 199, 0.2);
  --teal: #57d6d4;
  --teal-deep: #1d8f99;
  --blue: #2388f2;
  --blue-deep: #0f65c9;
  --coral: #ff765e;
  --green: #54d9a0;
  --amber: #ffb654;
  --radius: 22px;
  --radius-small: 12px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44), 0 0 58px rgba(35, 136, 242, 0.12);
  --max: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(6, 16, 28, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease;
}

.brand:hover img {
  transform: translateY(-2px) rotate(-2deg) scale(1.035);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.46), 0 0 24px rgba(87, 214, 212, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: #d8e1e8;
  text-decoration: none;
  font-size: 0.96rem;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(91, 177, 255, 0.55);
  border-radius: 9px;
  color: var(--white);
  text-decoration: none;
  font-weight: 650;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  background: rgba(87, 214, 212, 0.08);
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(105deg, var(--blue-deep), var(--blue));
  box-shadow: 0 14px 34px rgba(15, 101, 201, 0.28);
}

.button--primary:hover {
  border-color: transparent;
  background: linear-gradient(105deg, #1672dc, #2d95ff);
}

.button--light {
  border-color: rgba(91, 177, 255, 0.55);
  color: var(--white);
}

.button--light:hover {
  border-color: var(--teal);
  background: rgba(87, 214, 212, 0.08);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 650;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  --spot-x: 78%;
  --spot-y: 35%;
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(35, 136, 242, 0.18), transparent 31%),
    radial-gradient(circle at 30% 18%, rgba(87, 214, 212, 0.06), transparent 28%),
    var(--night);
  background-size: 118% 118%, 125% 125%, auto;
  animation: hero-ambient 14s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -35% -25%;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 40%, rgba(87, 214, 212, 0.055) 49%, rgba(35, 136, 242, 0.08) 51%, transparent 60%);
  transform: translate3d(-35%, 0, 0);
  animation: hero-sweep 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.hero__copy {
  animation: hero-copy-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #8ee9e7;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(87, 214, 212, 0.08), 0 0 18px rgba(87, 214, 212, 0.65);
  animation: price-dot 2.8s ease-in-out infinite;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.2rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c4cfd8;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 38px;
}

.app-frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 185, 208, 0.3);
  border-radius: 24px;
  padding: 7px;
  background: rgba(18, 37, 54, 0.76);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  will-change: transform;
  animation: app-float 6.5s ease-in-out infinite;
}

.app-frame::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  background: radial-gradient(circle, rgba(35, 136, 242, 0.19), transparent 62%);
}

.app-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 7px;
  left: 7px;
  height: 24%;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(87, 214, 212, 0.035) 38%, rgba(87, 214, 212, 0.2) 100%);
  opacity: 0;
  transform: translateY(-120%);
  animation: app-scan 6.8s ease-in-out 1.1s infinite;
}

.app-frame img {
  width: 100%;
  border-radius: 18px;
}

.app-frame figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.workflow {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #07121f;
}

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

.workflow__item {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 18px;
  padding: 30px 46px 30px 0;
}

.workflow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 1px;
  height: 56px;
  background: var(--line-dark);
  transform: translateY(-50%);
}

.workflow__number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  animation: workflow-pulse 5.4s ease-in-out infinite;
}

.workflow__item:nth-child(2) .workflow__number {
  animation-delay: 1.8s;
}

.workflow__item:nth-child(3) .workflow__number {
  animation-delay: 3.6s;
}

.workflow h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.workflow p {
  margin: 0;
  color: var(--mist);
  font-size: 0.96rem;
  line-height: 1.5;
}

.home-section {
  position: relative;
  overflow: hidden;
  padding: 102px 0;
}

.home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(87, 214, 212, 0.025), transparent 68%);
  transform: translateX(-22%);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-section.is-visible::before {
  transform: translateX(0);
}

.home-section > .shell {
  position: relative;
  z-index: 1;
}

.home-section--ink {
  background: var(--night-2);
}

.home-section--deeper {
  background: var(--night);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-kicker svg {
  width: 24px;
  height: 24px;
}

.home-section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-section p {
  color: #b9c6d1;
}

.home-section__lead {
  max-width: 680px;
  font-size: 1.16rem;
}

.fact-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.fact-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #d7e0e7;
}

.fact-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(84, 217, 160, 0.1);
}

.service-note {
  margin-top: 28px;
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--coral);
  color: var(--mist);
  font-size: 0.94rem;
}

.source-ledger {
  margin-top: 10px;
  border-top: 1px solid var(--line-dark);
}

.source-ledger__row {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.source-ledger__row strong {
  color: var(--white);
}

.source-ledger__row span,
.source-ledger__row a {
  color: var(--mist);
}

.source-ledger__row a {
  text-decoration-color: rgba(87, 214, 212, 0.45);
}

.contact-band {
  border-top: 1px solid var(--line-dark);
  background: #081522;
}

.contact-band__inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-band h2 {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.contact-band p {
  margin: 0;
  color: var(--mist);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #050d16;
  color: #a9b6c2;
}

.site-footer__inner {
  min-height: 176px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-meta a {
  color: var(--teal);
}

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

.footer-links a {
  color: #c3ced7;
  text-decoration: none;
}

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

/* Homepage cinematic sweep system */
.home-page {
  background: #030a13;
}

.home-page .shell {
  width: min(calc(100% - clamp(30px, 6.25vw, 96px)), 1380px);
}

.home-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(3, 10, 19, 0.82);
  box-shadow: 0 1px 0 rgba(139, 185, 208, 0.035);
}

.home-page .button {
  --mag-x: 0px;
  --mag-y: 0px;
  --hover-lift: 0px;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - var(--hover-lift)), 0);
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.home-page .button:hover {
  --hover-lift: 2px;
}

.home-page .hero {
  min-height: 550px;
  padding: 74px 0 64px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at var(--spot-x) var(--spot-y), rgba(35, 136, 242, 0.19), transparent 34%),
    radial-gradient(ellipse at 62% 82%, rgba(13, 93, 194, 0.13), transparent 36%),
    linear-gradient(180deg, #030a13 0%, #050d18 68%, #04101d 100%);
}

.home-page .hero::before {
  z-index: -2;
  opacity: 0.44;
  background:
    repeating-linear-gradient(113deg, transparent 0 72px, rgba(87, 214, 212, 0.018) 73px, transparent 74px 148px),
    linear-gradient(90deg, transparent, rgba(35, 136, 242, 0.035), transparent);
  background-size: auto, 160% 100%;
  mask-image: linear-gradient(to bottom, black 15%, transparent 92%);
}

.home-page .hero::after {
  z-index: -1;
  inset: -30% -18%;
  background: linear-gradient(112deg, transparent 41%, rgba(87, 214, 212, 0.04) 48%, rgba(35, 136, 242, 0.11) 50%, transparent 57%);
}

.hero-signal-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-signal {
  position: absolute;
  right: -14%;
  top: 4%;
  width: min(78vw, 980px);
  height: 84%;
  border: 1px solid transparent;
  border-top-color: rgba(55, 143, 255, 0.26);
  border-right-color: rgba(87, 214, 212, 0.12);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(35, 136, 242, 0.22));
  transform: rotate(-9deg);
  animation: signal-orbit 13s linear infinite;
}

.hero-signal--two {
  right: -9%;
  top: 17%;
  width: min(70vw, 860px);
  height: 66%;
  border-top-color: rgba(87, 214, 212, 0.18);
  animation-duration: 17s;
  animation-direction: reverse;
}

.hero-signal--three {
  right: 1%;
  top: 27%;
  width: min(58vw, 720px);
  height: 49%;
  opacity: 0.6;
  animation-duration: 21s;
}

.hero-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68eff0;
  box-shadow: 0 0 9px #68eff0, 0 0 22px #2388f2;
  animation: hero-comet 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-spark--one {
  top: 20%;
  right: 7%;
}

.hero-spark--two {
  right: 39%;
  bottom: 18%;
  width: 4px;
  height: 4px;
  background: var(--coral);
  box-shadow: 0 0 9px var(--coral), 0 0 18px rgba(255, 118, 94, 0.7);
  animation-delay: -3.4s;
}

.home-page .hero__grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(520px, 0.94fr);
  gap: 44px;
}

.home-page .hero h1 {
  font-size: clamp(3.1rem, 4.4vw, 4.15rem);
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.28);
}

.home-page .hero__lead {
  max-width: 620px;
  color: #bac7d5;
}

.home-page .button--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #0d56d8, #247eff 58%, #2f9dfd);
  box-shadow: 0 15px 38px rgba(18, 103, 226, 0.35), inset 0 1px rgba(255, 255, 255, 0.22);
}

.home-page .button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-140%);
  animation: button-sheen 5.8s ease-in-out infinite;
}

.app-stage {
  position: relative;
  min-width: 0;
  padding: 26px 0;
  perspective: 1200px;
}

.app-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20% -24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(35, 136, 242, 0.17), transparent 64%);
  filter: blur(10px);
}

.app-stage__orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(56, 148, 255, 0.58);
  border-right-color: rgba(87, 214, 212, 0.28);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(35, 136, 242, 0.42));
  transform: translate(-50%, -50%) rotate(-8deg);
}

.app-stage__orbit--outer {
  width: 134%;
  height: 86%;
  animation: app-orbit 14s linear infinite;
}

.app-stage__orbit--inner {
  width: 116%;
  height: 68%;
  opacity: 0.62;
  animation: app-orbit 19s linear infinite reverse;
}

.app-stage__comet {
  position: absolute;
  z-index: 3;
  right: -2%;
  top: 19%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5ffff;
  box-shadow: 0 0 8px #fff, 0 0 23px #2388f2, 0 0 42px #2388f2;
  animation: app-comet 6.5s ease-in-out infinite;
}

.home-page .app-frame {
  z-index: 1;
  margin: 0;
  background: linear-gradient(145deg, rgba(30, 54, 75, 0.82), rgba(8, 18, 30, 0.94));
  border-color: rgba(126, 181, 211, 0.42);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(39, 144, 244, 0.06),
    0 0 78px rgba(35, 136, 242, 0.17);
}

.home-page .app-frame::after {
  height: 18%;
  background:
    linear-gradient(to bottom, transparent, rgba(69, 167, 255, 0.05) 36%, rgba(87, 214, 212, 0.25) 94%, rgba(255, 255, 255, 0.72));
  box-shadow: 0 7px 28px rgba(44, 164, 255, 0.1);
}

.workflow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #04101d, #050c17);
}

.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 48% 42%, rgba(35, 136, 242, 0.09), transparent 60%);
}

.workflow__stage {
  position: relative;
  min-height: 168px;
}

.workflow__track {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 28px;
  left: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(35, 136, 242, 0.8), rgba(87, 214, 212, 0.92) 50%, rgba(35, 136, 242, 0.68));
  box-shadow: 0 0 16px rgba(35, 136, 242, 0.24);
}

.workflow__track::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #67b8ff;
  border-right: 2px solid #67b8ff;
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 6px #2388f2);
}

.workflow__track span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 96px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #efffff 82%, #70ffff);
  box-shadow: 0 0 9px #57d6d4, 0 0 22px #2388f2;
  transform: translate(-100%, -50%);
  animation: workflow-zip 5.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.home-page .workflow__grid {
  position: relative;
  z-index: 1;
}

.home-page .workflow__item {
  min-height: 168px;
  gap: 20px;
  padding: 34px 22px;
}

.home-page .workflow__item > div {
  position: relative;
  z-index: 1;
  background: #050c17;
  box-shadow: 0 0 0 10px #050c17;
}

.home-page .workflow__item:not(:last-child)::after {
  display: none;
}

.home-page .workflow__number {
  width: 54px;
  height: 54px;
  border-color: rgba(83, 199, 255, 0.8);
  background: #061321;
  color: #b7f7ff;
  font-size: 1.2rem;
  box-shadow: 0 0 0 6px #05101d;
  animation: workflow-pulse 5.4s ease-in-out infinite;
}

.home-page .workflow h2 {
  font-size: 1.28rem;
}

.home-page .home-section {
  padding: 118px 0 126px;
}

.home-page .home-section::before {
  background:
    linear-gradient(112deg, transparent 28%, rgba(87, 214, 212, 0.035), transparent 67%),
    radial-gradient(ellipse at 28% 68%, rgba(35, 136, 242, 0.1), transparent 40%);
}

.home-page .home-section--ink {
  background: linear-gradient(145deg, #061522 0%, #07121f 55%, #040c16 100%);
}

.home-section--tour {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(87, 214, 212, 0.13);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(35, 136, 242, 0.14), transparent 34%),
    radial-gradient(ellipse at 88% 78%, rgba(255, 118, 94, 0.08), transparent 31%),
    linear-gradient(152deg, #040d18 0%, #071523 48%, #030a13 100%);
}

.tour-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.tour-field::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(129, 174, 199, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 174, 199, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 80%, transparent);
}

.tour-field__beam {
  position: absolute;
  top: 21%;
  left: -42%;
  width: 58%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(87, 214, 212, 0.2), #e9ffff, rgba(35, 136, 242, 0.74), transparent);
  box-shadow: 0 0 15px rgba(87, 214, 212, 0.46), 0 0 44px rgba(35, 136, 242, 0.32);
  transform: rotate(-8deg);
  animation: tour-beam 10.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.tour-field__orb {
  position: absolute;
  border: 1px solid rgba(84, 217, 160, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(35, 136, 242, 0.04), 0 0 80px rgba(87, 214, 212, 0.03);
  animation: pricing-orbit 28s linear infinite;
}

.tour-field__orb--one {
  top: -18%;
  right: -10%;
  width: min(48vw, 720px);
  aspect-ratio: 1;
}

.tour-field__orb--two {
  bottom: -24%;
  left: -9%;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(35, 136, 242, 0.14);
  animation-direction: reverse;
  animation-duration: 22s;
}

.tour-stage {
  position: relative;
  z-index: 1;
}

.tour-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: 58px;
}

.tour-intro h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.tour-intro .home-section__lead {
  max-width: 790px;
}

.tour-proof {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(112, 189, 218, 0.2);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(16, 42, 61, 0.75), rgba(6, 19, 32, 0.78));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.tour-proof span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: #aebdca;
  font-size: 0.9rem;
}

.tour-proof span + span {
  padding-top: 11px;
  border-top: 1px solid rgba(129, 174, 199, 0.13);
}

.tour-proof strong {
  color: var(--white);
  font-size: 1.22rem;
  font-variant-numeric: tabular-nums;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 62px;
}

.tour-card {
  --tour-accent: 35, 136, 242;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(var(--tour-accent), 0.38);
  border-radius: 24px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(145deg, rgba(16, 39, 58, 0.9), rgba(6, 17, 29, 0.96));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 54px rgba(var(--tour-accent), 0.07);
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, box-shadow 340ms ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -45%;
  bottom: -45%;
  left: -36%;
  width: 24%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(231, 255, 255, 0.16), transparent);
  transform: rotate(14deg);
  animation: tour-card-scan 8.5s ease-in-out infinite;
}

.tour-card:nth-child(2)::before { animation-delay: 1.2s; }
.tour-card:nth-child(3)::before { animation-delay: 2.4s; }
.tour-card:nth-child(4)::before { animation-delay: 3.6s; }

.tour-card--explain { --tour-accent: 255, 182, 84; }
.tour-card--transfer { --tour-accent: 158, 122, 255; }
.tour-card--summary { --tour-accent: 84, 217, 160; }

.tour-card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(var(--tour-accent), 0.72);
  box-shadow:
    0 38px 84px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(var(--tour-accent), 0.1),
    0 0 66px rgba(var(--tour-accent), 0.13);
}

.tour-card__visual {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 8 / 5;
  border-bottom: 1px solid rgba(var(--tour-accent), 0.2);
  background: #020914;
}

.tour-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 68%, rgba(3, 12, 21, 0.35)),
    radial-gradient(circle at 84% 12%, rgba(var(--tour-accent), 0.1), transparent 36%);
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 320ms ease;
}

.tour-card:hover img {
  transform: scale(1.022);
  filter: saturate(1.04) contrast(1.015);
}

.tour-card__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 9px 22px;
  padding: 26px 28px 28px;
}

.tour-card__step {
  grid-column: 1 / -1;
  color: rgb(var(--tour-accent));
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tour-card__meta strong {
  grid-column: 1 / -1;
  font-size: 1.28rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.tour-card__meta > span:not(.tour-card__step):not(.tour-card__open) {
  color: #aebdca;
  font-size: 0.93rem;
  line-height: 1.55;
}

.tour-card__open {
  align-self: end;
  color: #d8f8ff;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.tour-card__open span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.tour-card:hover .tour-card__open span {
  transform: translate(3px, -3px);
}

.home-section--pricing {
  position: relative;
  border-bottom: 1px solid rgba(87, 214, 212, 0.12);
  background:
    radial-gradient(ellipse at 72% 28%, rgba(35, 136, 242, 0.15), transparent 38%),
    radial-gradient(ellipse at 18% 78%, rgba(87, 214, 212, 0.07), transparent 34%),
    linear-gradient(145deg, #030b15, #061421 50%, #030a13);
}

.pricing-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pricing-field__ring {
  position: absolute;
  border: 1px solid rgba(70, 167, 255, 0.13);
  border-radius: 50%;
  animation: pricing-orbit 21s linear infinite;
}

.pricing-field__ring--one {
  top: -32%;
  right: -12%;
  width: 58vw;
  min-width: 650px;
  aspect-ratio: 1;
}

.pricing-field__ring--two {
  right: 2%;
  bottom: -62%;
  width: 42vw;
  min-width: 500px;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(87, 214, 212, 0.12);
  animation-direction: reverse;
  animation-duration: 16s;
}

.pricing-field__pulse {
  position: absolute;
  top: 38%;
  right: -15%;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 214, 212, 0.1), #57d6d4, #e7ffff, transparent);
  box-shadow: 0 0 14px rgba(35, 136, 242, 0.45);
  transform: rotate(-14deg) translateX(-100%);
  animation: pricing-pulse 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.pricing-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.7fr) minmax(640px, 1.3fr);
  align-items: center;
  gap: 54px;
}

.pricing-intro {
  min-width: 0;
}

.pricing-safety {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 16px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(119, 175, 205, 0.18);
}

.pricing-safety__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 217, 160, 0.52);
  border-radius: 50%;
  color: var(--green);
  background: rgba(84, 217, 160, 0.035);
  box-shadow: 0 0 24px rgba(84, 217, 160, 0.08);
  animation: safety-pulse 5.6s ease-in-out infinite;
}

.pricing-safety__icon svg {
  width: 27px;
  height: 27px;
}

.pricing-safety p {
  margin: 0;
  color: #aebdca;
  font-size: 0.93rem;
  line-height: 1.58;
}

.pricing-safety strong {
  display: block;
  margin-bottom: 4px;
  color: #dff9ee;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 29px 27px 27px;
  border: 1px solid rgba(115, 167, 196, 0.24);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(13, 31, 48, 0.92), rgba(5, 16, 28, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.pricing-card:hover {
  transform: translateY(-7px);
  border-color: rgba(87, 214, 212, 0.42);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34), 0 0 32px rgba(35, 136, 242, 0.08);
}

.pricing-card--free::before,
.pricing-card--unlock::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(87, 214, 212, 0.7), transparent);
}

.pricing-card--unlock {
  border-color: rgba(56, 147, 247, 0.48);
  background:
    radial-gradient(circle at 88% 9%, rgba(35, 136, 242, 0.17), transparent 29%),
    linear-gradient(155deg, rgba(12, 39, 64, 0.96), rgba(5, 17, 30, 0.98));
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.3), 0 0 42px rgba(35, 136, 242, 0.09), inset 0 1px rgba(255, 255, 255, 0.035);
}

.pricing-card--unlock::before {
  background: linear-gradient(90deg, transparent, #2388f2 34%, #57d6d4 70%, transparent);
  box-shadow: 0 0 15px rgba(35, 136, 242, 0.55);
}

.pricing-card__beam {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
}

.pricing-card__beam span {
  position: absolute;
  top: 0;
  left: -42%;
  width: 32%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(87, 214, 212, 0.045), transparent);
  transform: skewX(-17deg);
  animation: pricing-card-beam 7.4s ease-in-out infinite;
}

.pricing-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pricing-card__label {
  color: #8ea6b8;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card__status {
  padding: 5px 8px;
  border: 1px solid rgba(119, 168, 197, 0.22);
  border-radius: 99px;
  color: #a9bbc8;
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.pricing-card__status--accent {
  border-color: rgba(87, 214, 212, 0.36);
  color: #8fe8e7;
  background: rgba(87, 214, 212, 0.045);
}

.pricing-card h2,
.pricing-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.home-page .pricing-card h3 {
  font-size: 1.55rem;
}

.pricing-card__price {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 76px;
  align-items: end;
  flex-wrap: wrap;
  gap: 2px 10px;
  margin: 13px 0 23px;
}

.pricing-card__price strong {
  color: #f6fbff;
  font-size: clamp(2.45rem, 4vw, 3.4rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.pricing-card__price span {
  max-width: 110px;
  padding-bottom: 2px;
  color: #8fa5b5;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
}

.pricing-features {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(123, 171, 199, 0.11);
  color: #c3d0da;
  font-size: 0.89rem;
  line-height: 1.42;
}

.pricing-features li::before {
  content: "✓";
  margin-top: 1px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 760;
}

.pricing-card__foot {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(123, 171, 199, 0.13);
  color: #879cac;
  font-size: 0.78rem;
  line-height: 1.5;
}

.pricing-card__foot strong {
  color: #aaf1ee;
}

.pricing-disclosure {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 182, 84, 0.24);
  border-radius: 12px;
  background: rgba(255, 182, 84, 0.035);
}

.pricing-disclosure > span {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-disclosure p {
  margin: 0;
  color: #aab8c4;
  font-size: 0.84rem;
  line-height: 1.45;
}

.pricing-disclosure a {
  color: #aeeeed;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
}

.privacy-stage {
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 76px;
}

.privacy-copy {
  position: relative;
}

.local-boundary {
  --local-tilt-x: 0deg;
  --local-tilt-y: 0deg;
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1.34;
  margin-top: 42px;
  border: 1px solid rgba(50, 137, 255, 0.44);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(35, 136, 242, 0.18), transparent 34%),
    radial-gradient(ellipse at 50% 110%, rgba(35, 136, 242, 0.09), transparent 54%);
  box-shadow: inset 0 0 52px rgba(35, 136, 242, 0.07), 0 0 44px rgba(35, 136, 242, 0.08);
  transform: perspective(900px) rotateX(var(--local-tilt-x)) rotateY(var(--local-tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.local-boundary::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 214, 212, 0.07), transparent 65%);
  filter: blur(10px);
}

.local-boundary__ring {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(93, 179, 255, 0.28);
  border-radius: 50%;
  animation: boundary-spin 18s linear infinite;
}

.local-boundary__ring--inner {
  inset: 24%;
  border-style: solid;
  border-color: rgba(87, 214, 212, 0.17) rgba(87, 214, 212, 0.04) rgba(35, 136, 242, 0.32);
  animation-duration: 12s;
  animation-direction: reverse;
}

.local-boundary__scan {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: -24%;
  width: 148%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #57d6d4 25%, #eaffff 50%, #2388f2 76%, transparent);
  box-shadow: 0 0 8px rgba(87, 214, 212, 0.9), 0 0 22px rgba(35, 136, 242, 0.55);
  transform-origin: center;
  animation: boundary-scan 6.2s ease-in-out infinite;
}

.local-boundary__scan::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 9px var(--coral), 0 0 18px rgba(255, 118, 94, 0.5);
  transform: translateY(-50%);
}

.local-boundary__core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 108px;
  height: 108px;
  padding: 10px;
  border: 1px solid rgba(87, 214, 212, 0.38);
  border-radius: 29px;
  background: rgba(5, 17, 29, 0.86);
  box-shadow: 0 0 36px rgba(35, 136, 242, 0.3), inset 0 0 24px rgba(87, 214, 212, 0.08);
  transform: translate(-50%, -50%) translateZ(34px);
}

.local-boundary__core img {
  border-radius: 21px;
}

.orbit-glyph {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 167, 205, 0.22);
  border-radius: 12px;
  background: rgba(5, 17, 29, 0.74);
  color: #91b7ce;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.2);
  animation: glyph-float 4.8s ease-in-out infinite;
}

.orbit-glyph svg {
  width: 27px;
  height: 27px;
}

.orbit-glyph--folder { left: 7%; top: 46%; }
.orbit-glyph--image { left: 43%; top: 7%; animation-delay: -1.1s; }
.orbit-glyph--video { left: 16%; bottom: 8%; animation-delay: -2.2s; }
.orbit-glyph--file { right: 10%; bottom: 16%; animation-delay: -3.3s; }

.privacy-verification {
  position: relative;
  padding-top: 8px;
}

.home-page .fact-list {
  position: relative;
  counter-reset: privacy-fact;
  margin-top: 0;
  border-top: 0;
}

.home-page .fact-list::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 25px;
  width: 1px;
  background: linear-gradient(var(--teal), var(--blue) 70%, rgba(255, 118, 94, 0.45));
  box-shadow: 0 0 12px rgba(35, 136, 242, 0.26);
}

.home-page .fact-list::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dfffff;
  box-shadow: 0 0 8px #57d6d4, 0 0 18px #2388f2;
  animation: fact-trace 7.2s ease-in-out infinite;
}

.home-page .fact-list li {
  position: relative;
  counter-increment: privacy-fact;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  min-height: 92px;
  align-items: center;
  padding: 17px 0;
  border-bottom-color: rgba(126, 177, 203, 0.16);
}

.home-page .fact-list li::before {
  content: counter(privacy-fact);
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(87, 214, 212, 0.72);
  border-radius: 50%;
  background: #071522;
  color: #b8ffff;
  font-size: 1.08rem;
  box-shadow: 0 0 0 5px #07121f, 0 0 18px rgba(87, 214, 212, 0.12);
  animation: fact-pulse 7.2s ease-in-out infinite;
}

.home-page .fact-list li:nth-child(2)::before { animation-delay: 1.8s; }
.home-page .fact-list li:nth-child(3)::before { animation-delay: 3.6s; }
.home-page .fact-list li:nth-child(4)::before { animation-delay: 5.4s; }

.home-page .service-note {
  margin: 30px 0 12px 68px;
  padding: 18px 0 18px 22px;
  background: linear-gradient(90deg, rgba(255, 118, 94, 0.035), transparent 80%);
}

.privacy-verification > .text-link {
  margin-left: 68px;
}

.home-page .home-section--deeper {
  background:
    radial-gradient(ellipse at 77% 35%, rgba(35, 136, 242, 0.1), transparent 40%),
    linear-gradient(155deg, #030a13, #050e19 55%, #030912);
}

.source-stage {
  grid-template-columns: minmax(0, 0.78fr) minmax(580px, 1.22fr);
  align-items: center;
  gap: 60px;
}

.source-intro .button {
  margin-top: 10px;
}

.source-console {
  position: relative;
  padding: 34px 0 12px 30px;
}

.source-console::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 52px;
  right: 1px;
  left: 31px;
  height: 82px;
  border: 1px solid rgba(68, 155, 255, 0.72);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(16, 93, 184, 0.13), rgba(35, 136, 242, 0.035));
  box-shadow: inset 0 -1px 0 rgba(87, 214, 212, 0.42), 0 0 26px rgba(35, 136, 242, 0.12);
  pointer-events: none;
  animation: console-scan 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.source-console__trace {
  position: absolute;
  top: 0;
  right: 5%;
  left: 0;
  height: 34px;
  border-top: 1px solid rgba(87, 214, 212, 0.76);
  border-left: 1px solid rgba(87, 214, 212, 0.76);
  border-radius: 20px 0 0;
  filter: drop-shadow(0 0 7px rgba(87, 214, 212, 0.3));
}

.source-console__trace::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral);
}

.source-console__trace span {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e8ffff;
  box-shadow: 0 0 8px #57d6d4, 0 0 18px #2388f2;
  animation: source-trace 6.8s linear infinite;
}

.home-page .source-ledger {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(116, 166, 195, 0.3);
  border-radius: 16px;
  background: rgba(5, 17, 29, 0.66);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.025);
}

.home-page .source-ledger__row {
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1fr) 22px;
  align-items: center;
  gap: 26px;
  min-height: 82px;
  padding: 20px 24px;
  border-bottom-color: rgba(120, 171, 199, 0.14);
  animation: ledger-activate 8s ease-in-out infinite;
}

.home-page .source-ledger__row:nth-child(2) { animation-delay: 2s; }
.home-page .source-ledger__row:nth-child(3) { animation-delay: 4s; }
.home-page .source-ledger__row:nth-child(4) { animation-delay: 6s; }

.home-page .source-ledger__row:last-child {
  border-bottom: 0;
}

.source-ledger__row svg {
  width: 20px;
  color: #7997aa;
  transition: color 180ms ease, transform 180ms ease;
}

.source-ledger__row:hover svg {
  color: var(--teal);
  transform: translateX(3px);
}

.home-page .contact-band {
  position: relative;
  overflow: hidden;
  border-top-color: rgba(255, 118, 94, 0.18);
  background:
    radial-gradient(ellipse at 18% 50%, rgba(255, 118, 94, 0.07), transparent 28%),
    linear-gradient(120deg, #050d17, #071421 58%, #050b14);
}

.home-page .contact-band__inner {
  position: relative;
  min-height: 172px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  padding: 30px 0;
}

.contact-band__trail {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 136, 242, 0.55), rgba(87, 214, 212, 0.55), rgba(255, 118, 94, 0.45), transparent);
}

.contact-band__trail span {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 9px var(--coral), 0 0 18px rgba(255, 118, 94, 0.45);
  animation: contact-zip 7.5s linear infinite;
}

.contact-band__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 118, 94, 0.72);
  border-radius: 50%;
  color: #ff9a64;
  box-shadow: 0 0 0 9px rgba(255, 118, 94, 0.035), 0 0 28px rgba(255, 118, 94, 0.12);
  animation: mail-pulse 5s ease-in-out infinite;
}

.contact-band__icon svg {
  width: 34px;
  height: 34px;
}

.contact-band__copy {
  min-width: 0;
}

.home-page .contact-band h2 {
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  letter-spacing: -0.035em;
}

.home-page .button--signal {
  min-height: 66px;
  padding-inline: 25px;
  border-color: rgba(255, 118, 94, 0.72);
  color: #ff9a64;
  background: rgba(5, 12, 21, 0.58);
  box-shadow: 0 0 22px rgba(255, 118, 94, 0.06), inset 0 0 24px rgba(255, 118, 94, 0.025);
}

.home-page .button--signal:hover {
  border-color: #ff9a64;
  background: rgba(255, 118, 94, 0.07);
  box-shadow: 0 0 28px rgba(255, 118, 94, 0.12), inset 0 0 24px rgba(255, 118, 94, 0.04);
}

.button--signal svg {
  width: 20px;
  height: 20px;
  margin-left: 6px;
}

.home-page .site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #030912, #02070d);
}

.home-page .site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #57d6d4, #2388f2, transparent);
  box-shadow: 0 0 10px rgba(35, 136, 242, 0.44);
  animation: footer-shimmer 12s ease-in-out infinite;
}

/* Interior pages */
.article-page {
  color-scheme: dark;
  background:
    radial-gradient(circle at 88% -6%, rgba(35, 136, 242, 0.15), transparent 27rem),
    radial-gradient(circle at 12% 38%, rgba(87, 214, 212, 0.045), transparent 31rem),
    linear-gradient(180deg, #071321 0%, #050d17 46%, #07111c 100%);
  background-attachment: fixed;
  color: var(--white);
}

.article-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-page__intro {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(ellipse at 73% 28%, rgba(35, 136, 242, 0.17), transparent 38%),
    linear-gradient(150deg, rgba(5, 18, 31, 0.98), rgba(4, 11, 20, 0.98));
}

.pricing-page__intro .pricing-field {
  z-index: 0;
}

.pricing-page__intro .article-intro__inner {
  position: relative;
  z-index: 1;
}

.pricing-page__intro h1 {
  max-width: 900px;
}

.pricing-page__body {
  padding-top: 66px;
}

.pricing-page__content {
  width: min(calc(100% - 48px), 1080px);
}

.pricing-status {
  max-width: 900px;
  margin: 0 auto 46px;
  border-color: rgba(255, 182, 84, 0.32);
  background: linear-gradient(110deg, rgba(255, 182, 84, 0.055), rgba(15, 38, 56, 0.5));
}

.pricing-status h2 {
  color: #ffe0a9;
}

.pricing-grid--standalone {
  gap: 24px;
}

.pricing-grid--standalone .pricing-card {
  padding: 36px 34px 32px;
}

.pricing-grid--standalone .pricing-card__price strong {
  font-size: clamp(3rem, 7vw, 4.8rem);
}

.pricing-grid--standalone .pricing-card__price span {
  max-width: 150px;
  font-size: 0.82rem;
}

.pricing-grid--standalone .pricing-features li {
  font-size: 0.98rem;
}

.pricing-explainer {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  margin-top: 100px;
  padding-top: 82px;
  border-top: 1px solid var(--article-line);
}

.pricing-explainer__intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.pricing-explainer__intro p:last-child {
  color: var(--article-muted);
}

.purchase-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purchase-steps::before {
  content: "";
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 28px;
  width: 1px;
  background: linear-gradient(var(--teal), var(--blue), var(--green));
  box-shadow: 0 0 13px rgba(35, 136, 242, 0.2);
}

.purchase-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 20px;
  padding: 16px 0 25px;
}

.purchase-steps li > span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 214, 212, 0.58);
  border-radius: 50%;
  background: #071522;
  color: #b8ffff;
  box-shadow: 0 0 0 6px #06101b;
}

.purchase-steps strong {
  color: var(--white);
  font-size: 1.08rem;
}

.purchase-steps p {
  margin: 5px 0 0;
  color: var(--article-muted);
  font-size: 0.94rem;
}

.pricing-details {
  max-width: 820px;
  margin: 100px auto 0;
  padding-top: 72px;
  border-top: 1px solid var(--article-line);
}

.pricing-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 92px;
  padding: 36px;
  border: 1px solid rgba(86, 173, 223, 0.28);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(17, 48, 71, 0.75), rgba(5, 18, 31, 0.82));
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.2);
}

.pricing-contact h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.pricing-contact p {
  margin: 5px 0 0;
  color: var(--article-muted);
}

.pricing-contact__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.article-page .site-header,
.article-page .site-footer {
  color-scheme: dark;
}

.article-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(5, 13, 23, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.article-intro {
  position: relative;
  overflow: hidden;
  padding: 76px 0 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(35, 136, 242, 0.15), transparent 29%),
    radial-gradient(circle at 30% 0%, rgba(87, 214, 212, 0.055), transparent 36%),
    rgba(6, 16, 28, 0.58);
  border-bottom: 1px solid var(--article-line);
}

.article-intro::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -75%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(87, 214, 212, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(35, 136, 242, 0.045);
  pointer-events: none;
}

.article-intro__inner {
  max-width: 900px;
}

.article-intro h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.article-intro__lead {
  max-width: 840px;
  margin: 24px 0 0;
  color: #b9c6d7;
  font-size: clamp(1.15rem, 2vw, 1.34rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: var(--article-muted);
  font-size: 0.94rem;
}

.article-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 18px;
  color: rgba(148, 165, 185, 0.68);
}

.article-body {
  position: relative;
  padding: 74px 0 110px;
  background: linear-gradient(180deg, rgba(8, 20, 33, 0.3), rgba(5, 13, 23, 0.12));
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 770px);
  justify-content: center;
  gap: 86px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 104px;
  padding-right: 30px;
  border-right: 1px solid var(--article-line);
}

.toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--article-muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.toc a {
  position: relative;
  display: block;
  padding: 9px 0;
  color: #8fbfe9;
  text-decoration: none;
  line-height: 1.35;
  font-size: 0.94rem;
}

.toc a:hover {
  color: var(--teal);
}

.toc a::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: -18px;
  width: 2px;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toc a.is-active {
  color: var(--teal);
}

.toc a.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin: 2.5em 0 0.55em;
  scroll-margin-top: 30px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 2em 0 0.5em;
  scroll-margin-top: 30px;
  color: #e8eef5;
  font-size: 1.25rem;
  line-height: 1.25;
}

.prose p,
.prose li {
  color: var(--article-text);
}

.prose a {
  color: #67c8f5;
  text-decoration-color: rgba(103, 200, 245, 0.42);
  overflow-wrap: anywhere;
}

.prose a:hover {
  color: var(--teal);
  text-decoration-color: currentColor;
}

.prose ul,
.prose ol {
  padding-left: 1.35em;
}

.prose li + li {
  margin-top: 0.55em;
}

.prose code {
  padding: 0.14em 0.34em;
  border: 1px solid rgba(127, 176, 200, 0.24);
  border-radius: 5px;
  background: rgba(14, 35, 53, 0.86);
  color: #bcecf0;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.prose pre {
  overflow-x: auto;
  padding: 18px;
  border: 1px solid rgba(127, 176, 200, 0.24);
  border-radius: 10px;
  background: rgba(8, 24, 39, 0.94);
  color: #cce2ec;
  font-size: 0.84rem;
  line-height: 1.55;
}

.prose pre code {
  padding: 0;
  border: 0;
  background: transparent;
}

.callout {
  margin: 0 0 42px;
  padding: 26px 28px;
  border: 1px solid rgba(87, 214, 212, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(20, 47, 66, 0.62), rgba(8, 25, 41, 0.78)),
    var(--surface-glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 22px 58px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.callout h2,
.callout h3 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 1.22rem;
}

.callout p:last-child,
.callout ul:last-child {
  margin-bottom: 0;
}

.callout--warning {
  border-color: rgba(255, 182, 84, 0.52);
  background: linear-gradient(135deg, rgba(81, 53, 22, 0.38), rgba(33, 27, 23, 0.72));
}

.callout--warning h2,
.callout--warning h3 {
  color: #ffc273;
}

.definition-list {
  margin: 28px 0;
  border-top: 1px solid var(--article-line);
}

.definition-list > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid var(--article-line);
}

.definition-list dt {
  color: var(--white);
  font-weight: 700;
}

.definition-list dd {
  margin: 0;
  color: var(--article-text);
}

.data-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data-table th,
.data-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--article-line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--white);
  background: rgba(16, 42, 61, 0.82);
}

.data-table td {
  color: var(--article-text);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.55fr);
  gap: 72px;
}

.contact-panel {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid rgba(87, 214, 212, 0.28);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 39, 57, 0.9), rgba(8, 24, 39, 0.84));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.contact-panel p {
  color: var(--article-text);
}

.contact-panel .button {
  width: 100%;
  margin-top: 8px;
}

.download-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--article-line);
}

.download-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--article-line);
}

.download-list a {
  font-weight: 650;
}

.download-list span {
  color: var(--article-muted);
  font-size: 0.88rem;
}

.checksum {
  display: block;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #9fc0d0;
}

.has-js .reveal-target {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-ambient {
  from { background-position: 0% 0%, 0% 0%, 0 0; }
  to { background-position: 7% 4%, -4% 6%, 0 0; }
}

@keyframes price-dot {
  0%, 100% { transform: scale(0.8); opacity: 0.64; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes tour-beam {
  0%, 8% { opacity: 0; transform: translateX(0) rotate(-8deg); }
  18% { opacity: 1; }
  76% { opacity: 0.86; }
  92%, 100% { opacity: 0; transform: translateX(250vw) rotate(-8deg); }
}

@keyframes tour-card-scan {
  0%, 17% { opacity: 0; transform: translateX(0) rotate(14deg); }
  26% { opacity: 1; }
  48% { opacity: 0.55; }
  62%, 100% { opacity: 0; transform: translateX(680%) rotate(14deg); }
}

@keyframes pricing-orbit {
  to { transform: rotate(360deg); }
}

@keyframes pricing-pulse {
  0%, 18% { transform: rotate(-14deg) translateX(-110%); opacity: 0; }
  38%, 52% { opacity: 0.8; }
  74%, 100% { transform: rotate(-14deg) translateX(120%); opacity: 0; }
}

@keyframes safety-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(84, 217, 160, 0), 0 0 24px rgba(84, 217, 160, 0.08); }
  50% { box-shadow: 0 0 0 8px rgba(84, 217, 160, 0.025), 0 0 34px rgba(84, 217, 160, 0.15); }
}

@keyframes pricing-card-beam {
  0%, 17% { transform: translateX(0) skewX(-17deg); opacity: 0; }
  32% { opacity: 1; }
  62%, 100% { transform: translateX(470%) skewX(-17deg); opacity: 0; }
}

@keyframes hero-sweep {
  0%, 22% { transform: translate3d(-38%, 0, 0); opacity: 0; }
  35% { opacity: 1; }
  64% { opacity: 0.75; }
  82%, 100% { transform: translate3d(38%, 0, 0); opacity: 0; }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes app-float {
  0%, 100% { transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0); }
  50% { transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px); }
}

@keyframes app-scan {
  0%, 18% { opacity: 0; transform: translateY(-120%); }
  30% { opacity: 0.66; }
  56% { opacity: 0.28; }
  70%, 100% { opacity: 0; transform: translateY(415%); }
}

@keyframes workflow-pulse {
  0%, 18%, 100% { border-color: rgba(87, 214, 212, 0.7); box-shadow: 0 0 0 0 rgba(87, 214, 212, 0); }
  8% { border-color: var(--teal); box-shadow: 0 0 0 7px rgba(87, 214, 212, 0.07), 0 0 28px rgba(87, 214, 212, 0.12); }
}

@keyframes signal-orbit {
  from { transform: rotate(-10deg); }
  to { transform: rotate(350deg); }
}

@keyframes hero-comet {
  0%, 14% { opacity: 0; transform: translate3d(80px, -36px, 0) scale(0.7); }
  28% { opacity: 1; }
  68% { opacity: 0.82; }
  82%, 100% { opacity: 0; transform: translate3d(-520px, 320px, 0) scale(1.15); }
}

@keyframes button-sheen {
  0%, 54% { transform: translateX(-140%); }
  72%, 100% { transform: translateX(140%); }
}

@keyframes app-orbit {
  from { transform: translate(-50%, -50%) rotate(-8deg); }
  to { transform: translate(-50%, -50%) rotate(352deg); }
}

@keyframes app-comet {
  0%, 18% { opacity: 0; transform: translate3d(0, -60px, 0) scale(0.6); }
  34% { opacity: 1; }
  70% { opacity: 0.9; }
  86%, 100% { opacity: 0; transform: translate3d(-540px, 330px, 0) scale(1.1); }
}

@keyframes workflow-zip {
  0%, 8% { opacity: 0; transform: translate(-100%, -50%); }
  18% { opacity: 1; }
  78% { opacity: 1; }
  90%, 100% { opacity: 0; transform: translate(calc(1000% + 30vw), -50%); }
}

@keyframes workflow-zip-vertical {
  0%, 8% { opacity: 0; transform: translate(-50%, -100%); }
  18% { opacity: 1; }
  78% { opacity: 1; }
  90%, 100% { opacity: 0; transform: translate(-50%, calc(1000% + 28vh)); }
}

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

@keyframes boundary-scan {
  0%, 12% { opacity: 0; transform: translateY(-112px) rotate(-4deg); }
  27% { opacity: 0.95; }
  68% { opacity: 0.8; }
  84%, 100% { opacity: 0; transform: translateY(112px) rotate(4deg); }
}

@keyframes glyph-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes fact-trace {
  0%, 8% { opacity: 0; transform: translateY(0); }
  18% { opacity: 1; }
  78% { opacity: 1; }
  92%, 100% { opacity: 0; transform: translateY(340px); }
}

@keyframes fact-pulse {
  0%, 19%, 100% { border-color: rgba(87, 214, 212, 0.42); box-shadow: 0 0 0 5px #07121f, 0 0 0 rgba(87, 214, 212, 0); }
  8% { border-color: #9effff; box-shadow: 0 0 0 5px #07121f, 0 0 24px rgba(87, 214, 212, 0.42); }
}

@keyframes console-scan {
  0%, 9% { opacity: 0; transform: translateY(0); }
  16% { opacity: 1; }
  82% { opacity: 1; }
  91%, 100% { opacity: 0; transform: translateY(246px); }
}

@keyframes console-scan-mobile {
  0%, 9% { opacity: 0; transform: translateY(0); }
  16% { opacity: 1; }
  82% { opacity: 1; }
  91%, 100% { opacity: 0; transform: translateY(336px); }
}

@keyframes source-trace {
  0% { opacity: 0; transform: translateX(0); }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { opacity: 0; transform: translateX(630px); }
}

@keyframes ledger-activate {
  0%, 19%, 100% { background: transparent; }
  7% { background: linear-gradient(90deg, rgba(35, 136, 242, 0.11), rgba(87, 214, 212, 0.025)); }
}

@keyframes contact-zip {
  0% { opacity: 0; transform: translateX(0); }
  10% { opacity: 1; }
  88% { opacity: 1; }
  100% { opacity: 0; transform: translateX(min(1120px, 88vw)); }
}

@keyframes mail-pulse {
  0%, 100% { box-shadow: 0 0 0 9px rgba(255, 118, 94, 0.035), 0 0 28px rgba(255, 118, 94, 0.12); }
  50% { box-shadow: 0 0 0 14px rgba(255, 118, 94, 0), 0 0 38px rgba(255, 118, 94, 0.2); }
}

@keyframes footer-shimmer {
  0%, 12% { opacity: 0; transform: translateX(0); }
  28% { opacity: 1; }
  72% { opacity: 0.8; }
  88%, 100% { opacity: 0; transform: translateX(420%); }
}

.not-found {
  min-height: calc(100vh - 252px);
  display: grid;
  place-items: center;
  padding: 72px 0;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: -0.06em;
}

.not-found p {
  color: var(--mist);
}

@media (max-width: 1050px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__copy {
    max-width: 790px;
  }

  .app-frame {
    max-width: 900px;
  }

  .app-stage {
    width: min(100%, 900px);
    margin-inline: auto;
  }

  .home-page .hero__grid {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 56px;
  }

  .pricing-stage {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .pricing-intro {
    max-width: 780px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: #0b1928;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48);
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 6px;
  }

  .hero {
    padding: 66px 0 58px;
  }

  .home-page .hero {
    padding: 62px 0 50px;
  }

  .hero-signal {
    right: -38%;
    top: 38%;
    width: 122vw;
    height: 52%;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 10vw, 4.4rem);
  }

  .workflow__grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .workflow__stage {
    min-height: 0;
  }

  .workflow__track {
    top: 52px;
    right: auto;
    bottom: 52px;
    left: 27px;
    width: 2px;
    height: auto;
    background: linear-gradient(var(--blue), var(--teal), var(--blue));
  }

  .workflow__track::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .workflow__track span {
    top: 0;
    left: 50%;
    width: 3px;
    height: 74px;
    background: linear-gradient(transparent, #efffff 82%, #70ffff);
    transform: translate(-50%, -100%);
    animation-name: workflow-zip-vertical;
  }

  .home-page .workflow__item {
    min-height: 128px;
    padding: 27px 0;
  }

  .workflow__item {
    min-height: 112px;
    padding: 24px 0;
  }

  .workflow__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 21px;
    width: calc(100% - 21px);
    height: 1px;
    transform: none;
  }

  .section-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .tour-intro,
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-intro {
    gap: 34px;
  }

  .tour-proof {
    width: min(100%, 560px);
  }

  .tour-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .privacy-stage,
  .source-stage {
    grid-template-columns: 1fr;
  }

  .pricing-explainer {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pricing-explainer__intro {
    max-width: 720px;
  }

  .local-boundary {
    width: min(100%, 620px);
  }

  .source-console {
    width: 100%;
  }

  .home-section {
    padding: 76px 0;
  }

  .contact-panel {
    position: static;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--article-line);
  }

  .toc a::before {
    left: -9px;
  }

  .toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--max));
  }

  .brand {
    gap: 9px;
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10.8vw, 3.3rem);
    line-height: 1.01;
  }

  .hero__lead {
    margin-top: 24px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .app-frame {
    margin-inline: -6px;
    padding: 4px;
    border-radius: 16px;
  }

  .app-stage {
    padding: 18px 0;
  }

  .app-stage__orbit--outer {
    width: 145%;
    height: 82%;
  }

  .app-stage__orbit--inner {
    width: 126%;
  }

  .app-frame img {
    border-radius: 12px;
  }

  .workflow__item {
    grid-template-columns: 42px 1fr;
  }

  .workflow__number {
    width: 38px;
    height: 38px;
  }

  .home-page .workflow__number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .workflow__track {
    left: 21px;
  }

  .section-grid {
    gap: 42px;
  }

  .home-section h2 {
    font-size: 2.35rem;
  }

  .home-page .home-section {
    padding: 78px 0 86px;
  }

  .tour-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .tour-proof {
    padding: 21px;
  }

  .tour-card {
    border-radius: 18px;
  }

  .tour-card__meta {
    grid-template-columns: 1fr;
    padding: 23px 22px 25px;
  }

  .tour-card__open {
    margin-top: 5px;
  }

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

  .pricing-card {
    padding: 27px 23px 24px;
  }

  .pricing-disclosure {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-disclosure a {
    white-space: normal;
  }

  .pricing-page__intro {
    padding: 64px 0 54px;
  }

  .pricing-page__content {
    width: min(calc(100% - 30px), 1080px);
  }

  .pricing-grid--standalone .pricing-card {
    padding: 30px 25px 27px;
  }

  .pricing-explainer,
  .pricing-details {
    margin-top: 76px;
    padding-top: 60px;
  }

  .pricing-contact {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 72px;
    padding: 28px 24px;
  }

  .pricing-contact__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-contact__actions .text-link {
    justify-content: center;
  }

  .local-boundary {
    width: 116%;
    margin-left: -8%;
    margin-top: 32px;
  }

  .local-boundary__core {
    width: 82px;
    height: 82px;
    padding: 8px;
    border-radius: 23px;
  }

  .local-boundary__core img {
    border-radius: 16px;
  }

  .orbit-glyph {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .orbit-glyph svg {
    width: 22px;
    height: 22px;
  }

  .home-page .fact-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    min-height: 86px;
  }

  .home-page .fact-list li::before {
    width: 42px;
    height: 42px;
  }

  .home-page .fact-list::before {
    left: 21px;
  }

  .home-page .fact-list::after {
    left: 17px;
  }

  .home-page .service-note,
  .privacy-verification > .text-link {
    margin-left: 0;
  }

  .source-console {
    margin-top: 6px;
    padding: 28px 0 8px 14px;
  }

  .source-console::after {
    top: 44px;
    left: 15px;
    height: 112px;
    animation-name: console-scan-mobile;
  }

  .source-console__trace {
    height: 28px;
  }

  .source-ledger__row,
  .definition-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-page .source-ledger__row {
    position: relative;
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 112px;
    padding: 18px 42px 18px 18px;
  }

  .source-ledger__row svg {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }

  .source-ledger__row:hover svg {
    transform: translate(3px, -50%);
  }

  .contact-band__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
  }

  .home-page .contact-band__inner {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    padding: 38px 0;
  }

  .contact-band__icon {
    width: 54px;
    height: 54px;
  }

  .contact-band__icon svg {
    width: 27px;
    height: 27px;
  }

  .home-page .button--signal {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 58px;
    padding-inline: 16px;
    font-size: clamp(0.84rem, 4vw, 1rem);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

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

  .article-intro {
    padding: 56px 0 42px;
  }

  .article-intro h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .article-body {
    padding: 48px 0 76px;
  }

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

  .callout {
    padding: 22px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .download-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .reveal-target {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Launch-day homepage */

.launch-page {
  --launch-bg: #050c16;
  --launch-bg-2: #071321;
  --launch-bg-3: #0a1c2d;
  --launch-cyan: #5ee7e3;
  --launch-blue: #4c91ff;
  --launch-violet: #9a72ff;
  --launch-text: #f5f8fb;
  --launch-muted: #b4c0ce;
  --launch-line: rgba(151, 194, 220, 0.18);
  background:
    radial-gradient(circle at 72% 9%, rgba(32, 111, 196, 0.13), transparent 34rem),
    var(--launch-bg);
  color: var(--launch-text);
}

.launch-page .shell {
  width: min(calc(100% - 64px), 1320px);
}

.launch-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 22, 0.84);
  border-color: rgba(157, 197, 220, 0.16);
  backdrop-filter: blur(24px) saturate(130%);
}

.launch-header .site-header__inner {
  min-height: 78px;
}

.launch-header .site-nav {
  gap: clamp(18px, 2.2vw, 34px);
}

.launch-header .site-nav a:not(.button) {
  color: #d6dee7;
  font-size: 0.93rem;
}

.launch-download-button {
  min-height: 44px;
  padding-inline: 18px;
  border-color: rgba(92, 220, 223, 0.5);
  background: rgba(22, 71, 91, 0.28);
}

.launch-hero {
  --spot-x: 78%;
  --spot-y: 35%;
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--launch-line);
  isolation: isolate;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(47, 138, 243, 0.17), transparent 30rem),
    linear-gradient(110deg, #050c16 0%, #06111e 52%, #071827 100%);
}

.launch-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: -1;
  background: linear-gradient(transparent, rgba(3, 9, 16, 0.84));
  pointer-events: none;
}

.launch-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(48px, 5vw, 80px);
  padding-block: 80px 86px;
}

.launch-hero__copy {
  max-width: 660px;
  animation: launch-copy-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--launch-text);
  font-size: clamp(3.5rem, 5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.launch-hero__lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #c4ced9;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.7;
}

.launch-hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 6px 0;
  text-decoration: none;
}

.app-store-badge img {
  width: 195px;
  height: 50px;
  max-width: none;
}

.launch-hero__secondary {
  font-size: 1.02rem;
}

.launch-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #9eacbb;
  font-size: 0.88rem;
  list-style: none;
}

.launch-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.launch-trust li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin-left: 13px;
  border-radius: 50%;
  background: #77899b;
}

.launch-trust svg {
  width: 20px;
  height: 20px;
  color: #a9b9c8;
}

.launch-hero__visual {
  position: relative;
  min-width: 0;
  perspective: 1300px;
}

.launch-hero__halo {
  position: absolute;
  z-index: -1;
  inset: -15% -14% -16% -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 137, 246, 0.27), rgba(26, 88, 162, 0.1) 42%, transparent 72%);
  filter: blur(22px);
  animation: launch-halo 6s ease-in-out infinite;
}

.launch-device {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(133, 210, 234, 0.46);
  border-radius: 22px;
  background: #080d14;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.55),
    0 0 62px rgba(65, 142, 244, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease;
  animation: launch-device-in 900ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-device:hover {
  border-color: rgba(94, 231, 227, 0.7);
}

.launch-device__bar {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(16, 22, 30, 0.96);
}

.launch-device__bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.launch-device__bar span:nth-child(1) { background: #ff5f57; }
.launch-device__bar span:nth-child(2) { background: #febc2e; }
.launch-device__bar span:nth-child(3) { background: #28c840; }

.launch-device__bar strong {
  position: absolute;
  left: 50%;
  color: #aab4c0;
  font-size: 0.75rem;
  font-weight: 600;
  transform: translateX(-50%);
}

.launch-device__viewport {
  position: relative;
  aspect-ratio: 1.46;
  overflow: hidden;
  background: #070d13;
}

.launch-device__viewport img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 154%;
  max-width: none;
  height: auto;
  transform: translate(-34%, -50%);
}

.launch-device__scan {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -10%;
  width: 9%;
  background: linear-gradient(90deg, transparent, rgba(104, 235, 239, 0.16), rgba(151, 250, 249, 0.36), transparent);
  filter: blur(2px);
  animation: launch-screen-scan 7.5s 1.2s ease-in-out infinite;
  pointer-events: none;
}

.launch-hero__field,
.launch-pricing__field,
.launch-final__rings {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.launch-orbit {
  position: absolute;
  left: 48%;
  width: 70%;
  height: 76%;
  border: 1px solid rgba(79, 151, 255, 0.25);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.launch-orbit--one { top: 5%; }
.launch-orbit--two { top: 13%; left: 52%; width: 60%; height: 62%; border-color: rgba(94, 231, 227, 0.15); }
.launch-orbit--three { top: 29%; left: 58%; width: 48%; height: 46%; border-color: rgba(154, 114, 255, 0.16); }

.launch-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #76e9ff;
  box-shadow: 0 0 6px #76e9ff, 0 0 22px rgba(76, 145, 255, 0.9);
}

.launch-node--one { top: 18%; left: 86%; animation: launch-node-one 8s ease-in-out infinite; }
.launch-node--two { top: 69%; left: 68%; animation: launch-node-two 10s ease-in-out infinite; }
.launch-node--three { top: 45%; left: 97%; width: 5px; height: 5px; animation: launch-node-three 7s ease-in-out infinite; }

.launch-principles {
  padding: 74px 0 82px;
  border-bottom: 1px solid var(--launch-line);
  background: linear-gradient(180deg, #050c16, #06111d);
}

.launch-principles h2 {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.045em;
}

.launch-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--launch-line, rgba(151, 194, 220, 0.18));
  border-bottom: 1px solid var(--launch-line);
}

.launch-principles article {
  min-width: 0;
  padding: 38px clamp(24px, 3vw, 48px) 40px;
}

.launch-principles article + article {
  border-left: 1px solid var(--launch-line);
}

.launch-principles__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #75bcff;
}

.launch-principles__icon svg {
  width: 42px;
  height: 42px;
}

.launch-principles h3,
.launch-feature-strip h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.launch-principles p,
.launch-feature-strip p {
  margin: 10px 0 0;
  color: var(--launch-muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.launch-workflow,
.launch-proof,
.launch-pricing,
.launch-privacy,
.launch-open-source,
.launch-final {
  position: relative;
  overflow: hidden;
}

.launch-workflow {
  padding: 122px 0 118px;
  border-bottom: 1px solid var(--launch-line);
  background:
    radial-gradient(ellipse at 70% 4%, rgba(91, 117, 214, 0.1), transparent 35rem),
    #06101b;
}

.launch-section-intro {
  max-width: 790px;
}

.launch-section-intro h2,
.launch-proof__intro h2,
.launch-privacy h2,
.launch-open-source h2,
.launch-final h2 {
  margin: 0;
  color: var(--launch-text);
  font-size: clamp(3rem, 5.3vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.launch-section-intro > p,
.launch-proof__intro > div > p,
.launch-privacy__copy > p,
.launch-open-source p,
.launch-final p {
  margin: 26px 0 0;
  color: var(--launch-muted);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.68;
}

.launch-workflow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 74px);
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.launch-workflow__steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 23px;
  right: 23px;
  height: 1px;
  background: linear-gradient(90deg, var(--launch-cyan), var(--launch-blue), var(--launch-violet));
  opacity: 0.68;
}

.launch-workflow__steps::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 22px;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #e8ffff, transparent);
  filter: blur(1px);
  animation: launch-workflow-pulse 6s linear infinite;
}

.launch-workflow__steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.launch-workflow__steps li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: #06101b;
  color: var(--launch-cyan);
  font-size: 0.92rem;
  font-weight: 700;
}

.launch-workflow__steps li:nth-child(2) > span { color: var(--launch-blue); }
.launch-workflow__steps li:nth-child(3) > span { color: var(--launch-violet); }

.launch-workflow__steps h3 {
  margin: 22px 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.launch-workflow__steps p {
  max-width: 340px;
  margin: 11px 0 0;
  color: var(--launch-muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.launch-workflow__screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.launch-workflow__screens a,
.launch-proof__gallery a,
.launch-privacy__media {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(121, 195, 225, 0.3);
  border-radius: 18px;
  background: #07111c;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.launch-workflow__screens a:nth-child(2) { border-color: rgba(79, 145, 255, 0.4); }
.launch-workflow__screens a:nth-child(3) { border-color: rgba(154, 114, 255, 0.42); }

.launch-workflow__screens a:hover,
.launch-proof__gallery a:hover,
.launch-privacy__media:hover {
  z-index: 2;
  border-color: rgba(94, 231, 227, 0.65);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46), 0 0 44px rgba(76, 145, 255, 0.12);
  transform: translateY(-8px);
}

.launch-workflow__screens img,
.launch-proof__gallery img,
.launch-privacy__media img {
  width: 100%;
}

.launch-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--launch-line);
  border-bottom: 1px solid var(--launch-line);
}

.launch-feature-strip article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 34px 28px 36px;
}

.launch-feature-strip article + article {
  border-left: 1px solid var(--launch-line);
}

.launch-feature-strip svg {
  width: 40px;
  height: 40px;
  color: #64c9ef;
}

.launch-feature-strip article:nth-child(2) svg { color: var(--launch-blue); }
.launch-feature-strip article:nth-child(3) svg { color: var(--launch-cyan); }
.launch-feature-strip article:nth-child(4) svg { color: var(--launch-violet); }

.launch-proof {
  padding: 120px 0 124px;
  border-bottom: 1px solid var(--launch-line);
  background:
    radial-gradient(circle at 88% 16%, rgba(30, 106, 180, 0.13), transparent 31rem),
    linear-gradient(180deg, #050d17, #071421 48%, #06101b);
}

.launch-proof__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.66fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: end;
}

.launch-proof__intro > div {
  max-width: 760px;
}

.launch-proof__stats {
  margin: 0;
  border-top: 1px solid var(--launch-line);
}

.launch-proof__stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--launch-line);
}

.launch-proof__stats dt {
  color: #8da0b3;
  font-size: 0.88rem;
}

.launch-proof__stats dd {
  margin: 0;
  color: #eafaff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.launch-proof__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.82fr);
  gap: 26px;
  margin-top: 62px;
}

.launch-proof__feature,
.launch-proof__rail a {
  display: grid !important;
  grid-template-rows: auto 1fr;
}

.launch-proof__gallery a > span {
  display: grid;
  gap: 6px;
  padding: 22px 24px 24px;
  background: rgba(9, 24, 38, 0.96);
}

.launch-proof__gallery a strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.launch-proof__gallery a small {
  color: var(--launch-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.launch-proof__rail {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.launch-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(50px, 8vw, 120px);
  margin-top: 82px;
  border-top: 1px solid var(--launch-line);
}

.launch-capabilities > div {
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1fr);
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--launch-line);
}

.launch-capabilities strong {
  color: #eaf3fa;
  font-size: 0.98rem;
}

.launch-capabilities span {
  color: #9facba;
  font-size: 0.9rem;
  line-height: 1.6;
}

.launch-pricing {
  padding: 124px 0 118px;
  border-bottom: 1px solid var(--launch-line);
  background: linear-gradient(135deg, #06101b, #07172a 54%, #07101f);
}

.launch-pricing__field span {
  position: absolute;
  top: -14%;
  right: -10%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(66, 143, 245, 0.18);
  border-radius: 50%;
}

.launch-pricing__field span + span {
  top: -2%;
  right: -2%;
  width: 44%;
  border-color: rgba(94, 231, 227, 0.12);
}

.launch-section-intro--pricing {
  max-width: 830px;
}

.launch-pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 62px;
}

.launch-price {
  position: relative;
  overflow: hidden;
  padding: 36px 34px 34px;
  border: 1px solid rgba(133, 181, 211, 0.24);
  border-radius: 20px;
  background: rgba(6, 17, 29, 0.74);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.launch-price--lifetime {
  border-color: rgba(76, 145, 255, 0.75);
  background: linear-gradient(160deg, rgba(11, 34, 58, 0.96), rgba(6, 18, 34, 0.94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35), 0 0 50px rgba(75, 124, 255, 0.13);
}

.launch-price__beam {
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bffeff, transparent);
  animation: launch-price-beam 5.6s linear infinite;
}

.launch-price__label {
  color: #7f9bb1;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-price--lifetime .launch-price__label {
  color: #9f89ff;
}

.launch-price h3,
.launch-price__explain h3 {
  margin: 18px 0 0;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.launch-price__amount {
  display: grid;
  gap: 3px;
  margin: 24px 0 0;
}

.launch-price__amount strong {
  color: #effbff;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.launch-price--lifetime .launch-price__amount strong {
  background: linear-gradient(90deg, #a997ff, #62e6e2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.launch-price__amount span {
  color: #8fa0b1;
  font-size: 0.84rem;
}

.launch-price ul,
.launch-privacy ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.launch-price li,
.launch-privacy li {
  position: relative;
  padding-left: 29px;
  color: #d1d9e2;
  font-size: 0.92rem;
}

.launch-price li::before,
.launch-privacy li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(89, 220, 213, 0.13);
  color: var(--launch-cyan);
  font-size: 0.7rem;
  font-weight: 800;
}

.launch-price--lifetime li::before {
  background: rgba(130, 103, 255, 0.18);
  color: #b7a3ff;
}

.launch-price__foot {
  margin: 31px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--launch-line);
  color: #93a1b0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.launch-price__foot strong {
  color: #78e2dd;
}

.launch-price__explain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 28px 34px 36px;
}

.launch-price__explain img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.launch-price__explain p {
  margin: 17px 0 0;
  color: #a8b4c1;
  font-size: 0.9rem;
  line-height: 1.64;
}

.launch-price__explain .text-link {
  margin-top: 25px;
  font-size: 0.9rem;
}

.launch-pricing__download {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--launch-line);
}

.launch-pricing__download p {
  max-width: 560px;
  margin: 0;
  color: #91a0b0;
  font-size: 0.86rem;
}

.launch-privacy {
  padding: 118px 0;
  border-bottom: 1px solid var(--launch-line);
  background:
    radial-gradient(circle at 18% 50%, rgba(37, 117, 198, 0.15), transparent 31rem),
    linear-gradient(110deg, #071320, #0a2440 52%, #07121f);
}

.launch-privacy__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(62px, 8vw, 120px);
  align-items: center;
}

.launch-privacy__copy {
  max-width: 540px;
}

.launch-privacy h2 {
  font-size: clamp(3.2rem, 5.3vw, 5.5rem);
}

.launch-privacy ul {
  margin-top: 30px;
}

.launch-privacy__copy .text-link {
  margin-top: 34px;
}

.launch-privacy__media {
  border-color: rgba(75, 159, 255, 0.5);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 56px rgba(47, 132, 229, 0.12);
}

.launch-open-source {
  padding: 82px 0;
  border-bottom: 1px solid var(--launch-line);
  background: #050c15;
}

.launch-open-source__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.75fr) auto;
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.launch-open-source h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.1rem);
}

.launch-open-source p {
  max-width: 720px;
  font-size: 0.96rem;
}

.launch-open-source dl {
  margin: 0;
  border-top: 1px solid var(--launch-line);
}

.launch-open-source dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--launch-line);
}

.launch-open-source dt,
.launch-open-source dd {
  color: #8f9ead;
  font-size: 0.78rem;
}

.launch-open-source dd {
  margin: 0;
  color: #c9d6df;
  text-align: right;
}

.launch-final {
  padding: 116px 0 122px;
  background:
    radial-gradient(circle at 50% 48%, rgba(32, 124, 211, 0.18), transparent 34rem),
    #050c16;
  text-align: center;
}

.launch-final__rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  aspect-ratio: 2.5;
  border: 1px solid rgba(70, 151, 249, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.launch-final__rings span:nth-child(2) { width: 980px; border-color: rgba(94, 231, 227, 0.1); }
.launch-final__rings span:nth-child(3) { width: 1220px; border-color: rgba(154, 114, 255, 0.08); }

.launch-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.launch-final h2 {
  font-size: clamp(3.2rem, 5.4vw, 5.5rem);
}

.launch-final p {
  max-width: 700px;
}

.launch-final .app-store-badge {
  margin-top: 28px;
}

.launch-final > .launch-final__inner > .text-link {
  margin-top: 14px;
  font-size: 0.88rem;
}

.launch-footer .site-footer__inner {
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.35fr);
  padding: 54px 0 42px;
}

.launch-footer__brand strong {
  color: var(--white);
}

.launch-footer__legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--launch-line, rgba(151, 194, 220, 0.18));
  color: #728190;
  font-size: 0.72rem;
  line-height: 1.55;
}

.has-js .launch-page .reveal-target {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.has-js .launch-page .reveal-target.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes launch-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes launch-device-in {
  from { opacity: 0; transform: translateX(54px) scale(0.96); }
  to { opacity: 1; transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
}

@keyframes launch-halo {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.045); }
}

@keyframes launch-screen-scan {
  0%, 16% { transform: translateX(0); opacity: 0; }
  22% { opacity: 1; }
  56% { transform: translateX(1270%); opacity: 0.85; }
  62%, 100% { transform: translateX(1270%); opacity: 0; }
}

@keyframes launch-node-one {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(-145px, 56px); opacity: 1; }
}

@keyframes launch-node-two {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(190px, -48px); opacity: 0.9; }
}

@keyframes launch-node-three {
  0%, 100% { transform: translate(0, 0); opacity: 0.25; }
  50% { transform: translate(-120px, -70px); opacity: 0.9; }
}

@keyframes launch-workflow-pulse {
  from { transform: translateX(0); }
  to { transform: translateX(calc(1320px - 118px)); }
}

@keyframes launch-price-beam {
  from { transform: translateX(0); }
  to { transform: translateX(470%); }
}

@media (max-width: 1180px) {
  .launch-page .shell {
    width: min(calc(100% - 48px), 1320px);
  }

  .launch-header .site-nav {
    gap: 18px;
  }

  .launch-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 48px;
  }

  .launch-hero h1 {
    font-size: clamp(3.4rem, 5.8vw, 5.3rem);
  }

  .launch-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-feature-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--launch-line);
  }

  .launch-feature-strip article:nth-child(4) {
    border-top: 1px solid var(--launch-line);
  }

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

  .launch-price__explain {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 74px minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 24px 30px;
    align-items: start;
    padding: 30px 0 0;
  }

  .launch-price__explain h3,
  .launch-price__explain p {
    margin-top: 0;
  }

  .launch-price__explain .text-link {
    grid-column: 2 / -1;
    margin-top: -8px;
  }

  .launch-open-source__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .launch-open-source .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .launch-header .site-header__inner {
    min-height: 68px;
  }

  .launch-header .site-nav {
    top: 68px;
  }

  .launch-hero {
    min-height: 0;
  }

  .launch-hero__grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 78px 90px;
  }

  .launch-hero__copy {
    max-width: 780px;
  }

  .launch-hero h1 {
    font-size: clamp(3.5rem, 8.5vw, 5.6rem);
  }

  .launch-hero__visual {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .launch-device__viewport {
    aspect-ratio: 1.6;
  }

  .launch-device__viewport img {
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .launch-principles__grid,
  .launch-workflow__screens {
    grid-template-columns: 1fr;
  }

  .launch-principles article + article {
    border-top: 1px solid var(--launch-line);
    border-left: 0;
  }

  .launch-principles article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 22px;
  }

  .launch-principles__icon {
    grid-row: 1 / 3;
  }

  .launch-workflow__screens {
    gap: 28px;
  }

  .launch-workflow__screens a {
    width: min(100%, 760px);
  }

  .launch-workflow__screens a:nth-child(2) { margin-left: auto; }

  .launch-proof__intro,
  .launch-proof__gallery,
  .launch-privacy__grid,
  .launch-open-source__inner {
    grid-template-columns: 1fr;
  }

  .launch-proof__stats {
    width: min(100%, 620px);
  }

  .launch-proof__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .launch-capabilities {
    grid-template-columns: 1fr;
  }

  .launch-privacy__copy {
    max-width: 720px;
  }

  .launch-open-source .button {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .launch-page .shell {
    width: min(calc(100% - 30px), 1320px);
  }

  .launch-hero__grid {
    padding-block: 58px 70px;
  }

  .launch-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 1;
  }

  .launch-hero__lead {
    margin-top: 26px;
    font-size: 1rem;
  }

  .launch-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .launch-trust {
    display: grid;
    gap: 10px;
  }

  .launch-trust li::after {
    display: none;
  }

  .launch-device {
    border-radius: 16px;
  }

  .launch-device__bar {
    height: 34px;
  }

  .launch-principles,
  .launch-workflow,
  .launch-proof,
  .launch-pricing,
  .launch-privacy,
  .launch-final {
    padding-block: 82px;
  }

  .launch-principles h2 {
    font-size: 2.25rem;
  }

  .launch-principles article {
    grid-template-columns: 48px 1fr;
    padding-inline: 6px;
  }

  .launch-principles__icon {
    width: 42px;
    height: 42px;
  }

  .launch-principles__icon svg {
    width: 34px;
    height: 34px;
  }

  .launch-section-intro h2,
  .launch-proof__intro h2,
  .launch-privacy h2,
  .launch-open-source h2,
  .launch-final h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .launch-workflow__steps {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 54px;
    padding-left: 10px;
  }

  .launch-workflow__steps::before {
    top: 23px;
    right: auto;
    bottom: 23px;
    left: 32px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--launch-cyan), var(--launch-blue), var(--launch-violet));
  }

  .launch-workflow__steps::after {
    display: none;
  }

  .launch-workflow__steps li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 0 20px;
  }

  .launch-workflow__steps li > span {
    grid-row: 1 / 3;
  }

  .launch-workflow__steps h3 {
    margin-top: 0;
  }

  .launch-workflow__steps p {
    margin-top: 7px;
  }

  .launch-feature-strip,
  .launch-proof__rail,
  .launch-capabilities,
  .launch-pricing__grid {
    grid-template-columns: 1fr;
  }

  .launch-feature-strip article {
    padding-inline: 6px;
  }

  .launch-feature-strip article + article,
  .launch-feature-strip article:nth-child(3) {
    border-top: 1px solid var(--launch-line);
    border-left: 0;
  }

  .launch-proof__gallery {
    gap: 22px;
  }

  .launch-capabilities {
    margin-top: 62px;
  }

  .launch-capabilities > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .launch-price {
    padding: 31px 25px 28px;
  }

  .launch-price__explain {
    grid-column: auto;
    display: flex;
    padding: 20px 4px 0;
  }

  .launch-price__explain .text-link {
    margin-top: 24px;
  }

  .launch-pricing__download {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-open-source dl {
    width: 100%;
  }

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

  .launch-footer__legal {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-hero__copy,
  .launch-device,
  .launch-hero__halo,
  .launch-node,
  .launch-device__scan,
  .launch-workflow__steps::after,
  .launch-price__beam {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .launch-device {
    transition: none;
  }
}

/* Scan-field motion and launch polish */

.page-sweep-progress {
  --page-progress: 0;
  position: fixed;
  z-index: 240;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5ee7e3, #4c91ff 58%, #9a72ff);
  box-shadow: 0 0 16px rgba(94, 231, 227, 0.55);
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
  pointer-events: none;
}

.has-js .reveal-target,
.has-js .launch-page .reveal-target {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 1;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-js .reveal-target.reveal--left { --reveal-x: -46px; --reveal-y: 0px; }
.has-js .reveal-target.reveal--right { --reveal-x: 46px; --reveal-y: 0px; }
.has-js .reveal-target.reveal--up { --reveal-y: 32px; }
.has-js .reveal-target.reveal--scale { --reveal-y: 18px; --reveal-scale: 0.965; }

.has-js .reveal-target.is-visible,
.has-js .launch-page .reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.launch-hero__grid {
  grid-template-columns: minmax(420px, 0.82fr) minmax(600px, 1.18fr);
  gap: clamp(50px, 5.2vw, 86px);
}

.launch-hero__copy {
  max-width: 610px;
  animation: none;
}

.launch-hero__copy > * {
  animation: launch-copy-left 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-hero__copy > .launch-hero__lead { animation-delay: 90ms; }
.launch-hero__copy > .launch-hero__actions { animation-name: launch-copy-up; animation-delay: 175ms; }
.launch-hero__copy > .launch-trust { animation-name: launch-copy-up; animation-delay: 260ms; }

.launch-hero__visual {
  padding-bottom: 30px;
}

.launch-device--full {
  overflow: visible;
  border-color: rgba(121, 207, 232, 0.52);
  border-radius: 26px;
  background: rgba(7, 13, 21, 0.86);
  box-shadow:
    0 46px 130px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 78px rgba(76, 145, 255, 0.18);
}

.launch-device--full::before,
.launch-device--full::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(94, 231, 227, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.launch-device--full::before {
  inset: -13% -8%;
  transform: rotate(-5deg);
}

.launch-device--full::after {
  inset: -22% -16%;
  border-color: rgba(76, 145, 255, 0.12);
  transform: rotate(8deg);
}

.launch-device--full .launch-device__viewport {
  aspect-ratio: 2160 / 1544;
  overflow: hidden;
  border-radius: 25px;
}

.launch-device--full .launch-device__viewport img {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.launch-device--full .launch-device__scan {
  left: -12%;
  width: 7%;
  background: linear-gradient(90deg, transparent, rgba(94, 231, 227, 0.14), rgba(190, 255, 255, 0.28), transparent);
  animation: launch-full-screen-scan 7.4s 1.1s ease-in-out infinite;
}

.launch-scan-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1.7fr) repeat(3, minmax(72px, 0.62fr));
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 13px 0 12px;
  overflow: hidden;
  border-top: 1px solid rgba(103, 201, 233, 0.25);
  border-bottom: 1px solid rgba(103, 201, 233, 0.12);
  color: #7f93a6;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-scan-rail > span:not(.launch-scan-rail__pulse) {
  position: relative;
  z-index: 1;
}

.launch-scan-rail__live {
  color: #b6fbf6;
}

.launch-scan-rail__live i {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--launch-cyan);
  box-shadow: 0 0 14px rgba(94, 231, 227, 0.9);
  animation: launch-status-pulse 2.2s ease-in-out infinite;
}

.launch-scan-rail__pulse {
  position: absolute;
  top: -1px;
  left: -28%;
  width: 24%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d8ffff, #5ee7e3, transparent);
  filter: drop-shadow(0 0 6px rgba(94, 231, 227, 0.8));
  animation: launch-rail-sweep 5.8s linear infinite;
}

.launch-device__caption {
  max-width: 620px;
  margin: 13px 0 0;
  color: #8ea0b1;
  font-size: 0.79rem;
  line-height: 1.5;
}

.launch-principles {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -65%, rgba(76, 145, 255, 0.2), transparent 38rem),
    linear-gradient(180deg, #050c16, #06111d);
}

.launch-principles__grid {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(11, 27, 43, 0.58), rgba(5, 15, 26, 0.28));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.launch-principles__grid::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -20%;
  width: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--launch-cyan), transparent);
  opacity: 0;
  pointer-events: none;
}

.launch-principles.is-section-visible .launch-principles__grid::before {
  animation: launch-card-rail 2.8s 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-principles article {
  position: relative;
  transition: background 260ms ease, transform 260ms ease;
}

.launch-principles article:hover {
  background: rgba(20, 51, 73, 0.34);
  transform: translateY(-5px);
}

.launch-principles__icon {
  border: 1px solid rgba(94, 231, 227, 0.16);
  border-radius: 17px;
  background: rgba(14, 42, 60, 0.38);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.launch-principles.is-section-visible .launch-principles__icon {
  animation: launch-icon-settle 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-workflow::before,
.launch-proof::before,
.launch-open-source::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(97, 171, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 171, 211, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 72% 30%, black, transparent 64%);
  pointer-events: none;
}

.launch-workflow__steps::after {
  left: 22px;
  right: 22px;
  width: auto;
  height: 7px;
  background:
    linear-gradient(90deg, transparent 0%, transparent 42%, #e8ffff 50%, transparent 58%, transparent 100%) 0 0 / 220% 100% no-repeat;
  animation: launch-workflow-track 5.8s linear infinite;
}

.launch-workflow__screens a::after,
.launch-proof__gallery a::after,
.launch-privacy__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -10% auto -10% -38%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(188, 255, 255, 0.13), transparent);
  opacity: 0;
  transform: skewX(-11deg);
  pointer-events: none;
}

.launch-workflow.is-section-visible .launch-workflow__screens a::after,
.launch-proof.is-section-visible .launch-proof__gallery a::after,
.launch-privacy.is-section-visible .launch-privacy__media::after {
  animation: launch-card-sweep 1.65s 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.launch-workflow.is-section-visible .launch-workflow__screens a:nth-child(2)::after { animation-delay: 700ms; }
.launch-workflow.is-section-visible .launch-workflow__screens a:nth-child(3)::after { animation-delay: 840ms; }

.launch-feature-strip article {
  position: relative;
  background: rgba(5, 15, 26, 0.22);
  transition: background 240ms ease;
}

.launch-feature-strip article:hover {
  background: rgba(15, 44, 65, 0.5);
}

.launch-feature-strip svg {
  filter: drop-shadow(0 0 12px rgba(76, 145, 255, 0.16));
}

.launch-proof {
  isolation: isolate;
}

.launch-proof__stats {
  position: relative;
  padding: 0 20px;
  border: 1px solid rgba(111, 180, 216, 0.2);
  border-radius: 18px;
  background: rgba(6, 18, 30, 0.56);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.18);
}

.launch-proof__stats div:last-child {
  border-bottom: 0;
}

.launch-proof__stats dd {
  text-shadow: 0 0 24px rgba(94, 231, 227, 0.22);
}

.launch-capabilities > div {
  position: relative;
}

.launch-capabilities > div::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(94, 231, 227, 0.54), transparent 78%);
  transform: scaleX(0);
  transform-origin: left;
}

.launch-capabilities > div:nth-child(even)::after {
  background: linear-gradient(270deg, rgba(154, 114, 255, 0.5), transparent 78%);
  transform-origin: right;
}

.launch-proof.is-section-visible .launch-capabilities > div::after {
  animation: launch-rule-draw 900ms 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.launch-privacy {
  isolation: isolate;
}

.launch-privacy::before,
.launch-privacy::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -6%;
  width: min(64vw, 880px);
  aspect-ratio: 1;
  border: 1px solid rgba(94, 231, 227, 0.11);
  border-radius: 50%;
  transform: translateY(-50%) scale(0.82);
  opacity: 0;
  pointer-events: none;
}

.launch-privacy::after {
  right: 4%;
  width: min(43vw, 590px);
  border-color: rgba(76, 145, 255, 0.15);
}

.launch-privacy.is-section-visible::before,
.launch-privacy.is-section-visible::after {
  animation: launch-boundary-settle 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.launch-privacy.is-section-visible::after { animation-delay: 120ms; }

.launch-open-source {
  isolation: isolate;
}

.launch-open-source::before {
  opacity: 0.28;
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 8%, black 46%, transparent 100%);
}

.launch-open-source dl {
  position: relative;
  padding: 0 18px;
  border: 1px solid rgba(120, 182, 212, 0.19);
  border-radius: 16px;
  background: rgba(8, 23, 36, 0.64);
}

.launch-open-source dl div:last-child { border-bottom: 0; }

.launch-final__rings span {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.launch-final.is-section-visible .launch-final__rings span {
  animation: launch-ring-settle 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.launch-final.is-section-visible .launch-final__rings span:nth-child(2) { animation-delay: 110ms; }
.launch-final.is-section-visible .launch-final__rings span:nth-child(3) { animation-delay: 220ms; }

.article-page {
  background:
    radial-gradient(circle at 80% 8%, rgba(40, 118, 204, 0.12), transparent 34rem),
    #050d17;
}

.article-page .site-header {
  border-color: rgba(151, 194, 220, 0.16);
  background: rgba(5, 12, 22, 0.84);
  backdrop-filter: blur(24px) saturate(130%);
}

.article-intro {
  isolation: isolate;
  min-height: 330px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 84% 35%, rgba(40, 133, 232, 0.2), transparent 26rem),
    linear-gradient(120deg, rgba(6, 16, 28, 0.98), rgba(7, 27, 45, 0.86));
}

.article-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 185, 222, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 185, 222, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 82% 45%, black, transparent 48%);
  pointer-events: none;
}

.article-intro::after {
  right: -7%;
  bottom: -105%;
  width: min(52vw, 760px);
  border-color: rgba(94, 231, 227, 0.15);
  box-shadow:
    0 0 0 86px rgba(76, 145, 255, 0.045),
    0 0 0 172px rgba(154, 114, 255, 0.028),
    0 0 100px rgba(35, 136, 242, 0.08);
}

.article-intro__inner {
  position: relative;
  z-index: 1;
}

.article-intro__inner::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 94px;
  height: 2px;
  background: linear-gradient(90deg, #5ee7e3, #4c91ff, transparent);
  box-shadow: 0 0 16px rgba(94, 231, 227, 0.4);
  transform: scaleX(0);
  transform-origin: left;
}

.article-intro.is-section-visible .article-intro__inner::before {
  animation: launch-rule-draw 900ms 160ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.article-body {
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 114, 191, 0.07), transparent 25rem),
    linear-gradient(180deg, rgba(8, 20, 33, 0.72), rgba(5, 13, 23, 0.94));
}

.toc {
  padding: 22px 26px 22px 24px;
  border: 1px solid rgba(120, 180, 211, 0.16);
  border-radius: 16px;
  background: rgba(7, 22, 35, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.toc a::before {
  left: -12px;
}

.callout,
.definition-list,
.data-table,
.download-list,
.contact-panel {
  position: relative;
}

.callout {
  overflow: hidden;
  border-radius: 18px;
}

.callout::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -36%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(177, 252, 255, 0.1), transparent);
  opacity: 0;
  transform: skewX(-12deg);
  pointer-events: none;
}

.callout.is-visible::before,
.contact-panel.is-visible::before {
  animation: launch-card-sweep 1.35s 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.support-grid {
  align-items: start;
}

.contact-panel {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24), 0 0 46px rgba(45, 133, 212, 0.07);
}

.prose > h2 {
  position: relative;
  padding-left: 18px;
}

.prose > h2::before {
  content: "";
  position: absolute;
  top: 0.15em;
  bottom: 0.12em;
  left: 0;
  width: 2px;
  border-radius: 3px;
  background: linear-gradient(var(--teal), rgba(76, 145, 255, 0.36));
  transform: scaleY(0);
  transform-origin: top;
}

.prose > h2.is-visible::before {
  animation: launch-rule-draw-y 680ms 120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.article-page .site-footer {
  border-top-color: rgba(151, 194, 220, 0.14);
  background: linear-gradient(180deg, #050c15, #030811);
}

.article-page .site-footer__inner {
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.35fr);
  padding: 54px 0 42px;
}

.article-page .launch-footer__legal {
  grid-column: 1 / -1;
}

@keyframes launch-copy-left {
  from { opacity: 0; transform: translate3d(-54px, 0, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes launch-copy-up {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes launch-full-screen-scan {
  0%, 16% { transform: translateX(0); opacity: 0; }
  23% { opacity: 1; }
  58% { transform: translateX(1650%); opacity: 0.78; }
  64%, 100% { transform: translateX(1650%); opacity: 0; }
}

@keyframes launch-rail-sweep {
  0%, 12% { transform: translateX(0); opacity: 0; }
  20% { opacity: 1; }
  72% { opacity: 0.86; }
  86%, 100% { transform: translateX(540%); opacity: 0; }
}

@keyframes launch-status-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes launch-card-rail {
  0% { opacity: 0; transform: translateX(0); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translateX(680%); }
}

@keyframes launch-icon-settle {
  0% { opacity: 0.45; transform: scale(0.72) rotate(-7deg); }
  70% { transform: scale(1.06) rotate(1deg); }
  100% { opacity: 1; transform: none; }
}

@keyframes launch-workflow-track {
  from { background-position: 110% 0; }
  to { background-position: -110% 0; }
}

@keyframes launch-card-sweep {
  0% { opacity: 0; transform: translateX(0) skewX(-11deg); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateX(680%) skewX(-11deg); }
}

@keyframes launch-rule-draw {
  to { transform: scaleX(1); }
}

@keyframes launch-rule-draw-y {
  to { transform: scaleY(1); }
}

@keyframes launch-boundary-settle {
  from { opacity: 0; transform: translateY(-50%) scale(0.82); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes launch-ring-settle {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.72); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 1180px) {
  .launch-hero__grid {
    grid-template-columns: minmax(390px, 0.85fr) minmax(510px, 1.15fr);
  }
}

@media (max-width: 960px) {
  .launch-hero__grid {
    grid-template-columns: 1fr;
  }

  .launch-hero__visual {
    padding-bottom: 0;
  }

  .launch-device--full .launch-device__viewport {
    aspect-ratio: 2160 / 1544;
  }

  .launch-device--full .launch-device__viewport img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  .has-js .reveal-target.reveal--left,
  .has-js .reveal-target.reveal--right,
  .has-js .reveal-target.reveal--up,
  .has-js .reveal-target.reveal--scale {
    --reveal-x: 0px;
    --reveal-y: 18px;
    --reveal-scale: 0.985;
  }

  .launch-hero__copy > * {
    animation-name: launch-copy-up;
  }

  .launch-device--full {
    border-radius: 17px;
  }

  .launch-device--full .launch-device__viewport {
    border-radius: 16px;
  }

  .launch-scan-rail {
    grid-template-columns: 1fr repeat(3, auto);
    gap: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }

  .launch-scan-rail__live {
    font-size: 0;
  }

  .launch-scan-rail__live::after {
    content: "Scanning";
    font-size: 0.58rem;
  }

  .launch-scan-rail__live i {
    margin-right: 0;
  }

  .launch-principles__grid {
    border-radius: 18px;
  }

  .article-intro {
    min-height: 290px;
  }

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

  .toc strong {
    grid-column: 1 / -1;
  }

  .article-page .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .article-page .launch-footer__legal {
    grid-column: auto;
  }

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

@media (max-width: 360px) {
  .toc {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-sweep-progress {
    display: none;
  }

  .has-js .reveal-target,
  .has-js .launch-page .reveal-target,
  .launch-hero__copy > *,
  .launch-principles__grid::before,
  .launch-principles__icon,
  .launch-workflow__screens a::after,
  .launch-proof__gallery a::after,
  .launch-privacy__media::after,
  .launch-capabilities > div::after,
  .launch-privacy::before,
  .launch-privacy::after,
  .launch-final__rings span,
  .article-intro__inner::before,
  .callout::before,
  .contact-panel::before,
  .prose > h2::before {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .launch-scan-rail__pulse,
  .launch-scan-rail__live i {
    animation: none !important;
  }
}
