:root {
  color-scheme: light;
  --ink: #151722;
  --ink-soft: #343746;
  --muted: #686b78;
  --faint: #9699a4;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #efeee9;
  --line: #deddd7;
  --line-dark: rgba(255, 255, 255, 0.13);
  --violet: #625be8;
  --violet-dark: #4d47ce;
  --violet-soft: #e9e7ff;
  --green: #1ba579;
  --green-soft: #dcf8ee;
  --amber: #c87818;
  --amber-soft: #fff0d9;
  --night: #0d1118;
  --night-soft: #151b25;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(20, 23, 34, 0.05);
  --shadow-md: 0 18px 50px rgba(22, 25, 38, 0.1);
  --shadow-lg: 0 36px 100px rgba(12, 15, 25, 0.22);
  --shell: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  font-family:
    Inter, "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

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

.narrow-shell {
  max-width: 840px;
}

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

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

:focus-visible {
  outline: 3px solid rgba(98, 91, 232, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 246, 242, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(21, 23, 34, 0.08);
  background: rgba(247, 246, 242, 0.94);
  box-shadow: 0 8px 30px rgba(21, 23, 34, 0.04);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #817cf7, #4b46cc);
  box-shadow: 0 8px 18px rgba(77, 71, 206, 0.24);
}

.brand-mark i,
.mini-mark::before,
.mini-mark::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  content: "";
}

.brand-mark i:first-child {
  top: 7px;
  left: 7px;
}

.brand-mark i:last-child {
  right: 7px;
  bottom: 7px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a,
.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.text-link:hover {
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--night);
}

.button-small:hover {
  background: #252938;
  box-shadow: 0 10px 24px rgba(13, 17, 24, 0.15);
}

.button-primary {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 12px 26px rgba(98, 91, 232, 0.22);
}

.button-primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 16px 32px rgba(98, 91, 232, 0.3);
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.button-quiet:hover {
  border-color: #c6c4bc;
  background: var(--surface);
}

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

.button-white:hover {
  background: #f0efff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  gap: 4px;
  padding: 6px 0 22px;
}

.mobile-menu a {
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 148px 0 92px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 91, 232, 0.09), transparent 30%),
    linear-gradient(rgba(21, 23, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 34, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 91, 232, 0.2), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label,
.feature-kicker {
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(98, 91, 232, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 165, 121, 0.12);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(50px, 6.25vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--violet);
  font-style: normal;
}

.accent-text,
h1 em,
h2 em,
h3 em,
strong em {
  color: var(--violet);
  font-style: normal;
}

.security-preview h2 em,
.security-list strong em,
.final-cta h2 em {
  color: #aaa6ff;
  text-shadow: 0 0 24px rgba(129, 124, 247, 0.2);
}

.hero-summary {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

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

.hero-note {
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 650;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

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

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 165, 121, 0.12);
}

.product-stage {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(98, 91, 232, 0.13);
  border-radius: 50%;
}

.stage-orbit-one {
  inset: -90px -160px -90px -80px;
}

.stage-orbit-two {
  inset: -20px -90px -20px -10px;
}

.app-window {
  position: absolute;
  top: 62px;
  left: 0;
  width: 590px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--night);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-5deg) rotateX(2deg);
}

.window-bar {
  display: flex;
  align-items: center;
  height: 34px;
  gap: 6px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.48);
  background: #141923;
  font-size: 10px;
}

.window-bar span:last-child {
  margin-left: 6px;
}

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

.window-dot:nth-child(2) {
  background: #f0bd55;
}

.window-dot:nth-child(3) {
  background: #45c978;
}

.app-window img {
  width: 100%;
  height: auto;
}

.phone-card {
  position: absolute;
  right: 0;
  bottom: 2px;
  z-index: 4;
  width: 196px;
  min-height: 358px;
  padding: 18px 16px;
  border: 7px solid #1d2029;
  border-radius: 34px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(13, 17, 24, 0.3);
  text-align: center;
  transform: rotate(4deg);
}

.phone-card::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 13px;
  border-radius: 999px;
  background: #1d2029;
  content: "";
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin: 8px 4px 24px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
  font-size: 11px;
  font-weight: 800;
}

.mini-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--violet);
}

.mini-mark::before,
.mini-mark::after {
  width: 7px;
  height: 7px;
  border-width: 1.5px;
  border-radius: 2px;
}

.mini-mark::before {
  top: 5px;
  left: 5px;
}

.mini-mark::after {
  right: 5px;
  bottom: 5px;
}

.phone-check {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 17px;
  place-items: center;
  border-radius: 18px;
  color: var(--green);
  background: var(--green-soft);
}

.phone-check svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.phone-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.phone-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
}

.phone-card button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: var(--violet);
  font-size: 10px;
  font-weight: 750;
}

.phone-card small {
  display: block;
  margin-top: 12px;
  color: var(--faint);
  font-size: 8px;
}

.stage-pill {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(20, 25, 35, 0.94);
  box-shadow: 0 12px 28px rgba(13, 17, 24, 0.18);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.stage-pill svg {
  width: 16px;
  height: 16px;
  color: #62dfae;
}

.stage-pill-top {
  top: 24px;
  right: 2px;
}

.stage-pill-bottom {
  bottom: 44px;
  left: -36px;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

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

.proof-grid div {
  padding: 27px 30px;
  border-right: 1px solid var(--line);
}

.proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 2px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: 112px 0;
}

.section-tinted {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.release-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.release-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 58px;
}

.release-copy {
  position: sticky;
  top: 112px;
}

.release-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.release-copy p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

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

.release-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.release-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.release-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

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

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
}

.section-label {
  display: block;
  margin-bottom: 19px;
}

.two-column h2,
.section-heading h2,
.security-copy h2,
.open-source-card h2,
.page-hero h1,
.support-content h2,
.security-explainer h2,
.practices-grid h2,
.report-card h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.problem-copy {
  padding-top: 38px;
}

.problem-copy p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 90px;
}

.split-heading p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

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

.step-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-card::after {
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 91, 232, 0.1), transparent 68%);
  content: "";
}

.step-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #d3d1ca;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.icon-box,
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--violet);
  background: var(--violet-soft);
}

.icon-box {
  margin-bottom: 62px;
}

.icon-box svg,
.feature-icon svg {
  width: 23px;
  height: 23px;
}

.step-card h3,
.feature-card h3,
.release-card h3,
.principles-grid h3,
.check-grid h3 {
  margin-bottom: 11px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.step-card p,
.feature-card p,
.release-card p,
.principles-grid p,
.check-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 400px;
  padding: 46px;
}

.feature-purple {
  border-color: transparent;
  background: #e9e7ff;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.feature-kicker {
  display: block;
  margin-bottom: 16px;
}

.feature-large h3 {
  font-size: clamp(34px, 4vw, 52px);
}

.feature-large p {
  max-width: 460px;
  color: #56586a;
  font-size: 16px;
}

.feature-icon {
  margin-bottom: 52px;
}

.feature-icon.green {
  color: var(--green);
  background: var(--green-soft);
}

.feature-icon.amber {
  color: var(--amber);
  background: var(--amber-soft);
}

.feature-icon.violet {
  color: var(--violet);
  background: var(--violet-soft);
}

.direction-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.device {
  position: relative;
  border: 7px solid #262938;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(77, 71, 206, 0.15);
}

.desktop-device {
  width: 248px;
  height: 156px;
  border-radius: 18px;
}

.desktop-device::after {
  position: absolute;
  right: 72px;
  bottom: -23px;
  left: 72px;
  height: 16px;
  border: 7px solid #262938;
  border-top: 0;
  content: "";
}

.mobile-device {
  width: 96px;
  height: 178px;
  border-radius: 25px;
  transform: rotate(5deg);
}

.device span {
  position: absolute;
  inset: 15px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(98, 91, 232, 0.17), transparent 55%),
    #f3f2ff;
}

.mobile-device span {
  inset: 12px 8px;
  border-radius: 14px;
}

.transfer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  gap: 9px;
}

.transfer-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(98, 91, 232, 0.1);
}

.transfer-line i:nth-child(2) {
  opacity: 0.55;
}

.transfer-line i:nth-child(3) {
  opacity: 0.25;
}

.feature-wide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 36px;
  grid-column: 1 / -1;
}

.zip-list,
.history-list {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
}

.zip-list div,
.history-list div {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(21, 23, 34, 0.06);
  border-radius: 10px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 700;
}

.zip-list span,
.history-list span {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.zip-list i {
  color: var(--faint);
  font-style: normal;
  font-weight: 600;
}

.feature-dark {
  border-color: transparent;
  color: var(--white);
  background: var(--night-soft);
}

.feature-dark p {
  color: #aab1bd;
}

.dark-icon {
  color: #bab7ff;
  background: rgba(129, 124, 247, 0.15);
}

.feature-dark .history-list {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.feature-dark .history-list div {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.05);
}

.history-list strong {
  color: #62dfae;
  font-size: 10px;
}

.amber-dot {
  background: #efb45d;
  box-shadow: 0 0 0 4px rgba(239, 180, 93, 0.12);
}

.security-preview {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(98, 91, 232, 0.2), transparent 30%),
    var(--night);
}

.security-preview::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.security-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.light-label {
  color: #a9a5ff;
}

.security-copy h2 {
  margin-bottom: 24px;
}

.security-copy p {
  margin-bottom: 30px;
  color: #aeb5c0;
  font-size: 16px;
  line-height: 1.8;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--violet-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.light-link {
  color: #c4c1ff;
}

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

.security-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-dark);
}

.security-list > div > span {
  color: #777e8a;
  font-size: 11px;
  font-weight: 850;
}

.security-list p {
  margin: 0;
  color: #9fa7b3;
  font-size: 13px;
  line-height: 1.6;
}

.security-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 15px;
}

.open-source-section {
  background: var(--surface-soft);
}

.open-source-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.open-source-card h2 {
  max-width: 750px;
}

.open-source-card p {
  max-width: 680px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-row span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
  font-weight: 750;
}

.source-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
  min-width: 190px;
}

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

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  list-style: none;
  font-size: 17px;
  font-weight: 760;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 700px;
  margin: -8px 0 24px;
  color: var(--muted);
}

.final-cta {
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(129, 124, 247, 0.32), transparent 30%),
    #4d47ce;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.final-cta p {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.final-actions {
  display: flex;
  gap: 10px;
}

.site-footer {
  padding: 74px 0 24px;
  color: #d7dbe3;
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  padding-bottom: 64px;
}

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

.footer-grid > div:first-child p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #8f97a5;
  font-size: 13px;
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 12px;
}

.footer-links a {
  width: fit-content;
  color: #8f97a5;
  font-size: 12px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #6f7785;
  font-size: 11px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 162px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(98, 91, 232, 0.25), transparent 34%),
    var(--night);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    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: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  content: "";
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: center;
  gap: 100px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: #aeb5c0;
  font-size: 18px;
  line-height: 1.75;
}

.page-hero .button {
  margin-top: 30px;
}

.security-seal {
  display: grid;
  justify-items: center;
  min-height: 310px;
  padding: 52px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  text-align: center;
}

.security-seal svg {
  width: 96px;
  height: 96px;
  margin-bottom: 30px;
  padding: 22px;
  border-radius: 28px;
  color: #9e9aff;
  background: rgba(129, 124, 247, 0.13);
}

.security-seal span,
.security-seal strong {
  display: block;
}

.security-seal span {
  color: #8b93a0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.security-seal strong {
  margin-top: 7px;
  font-size: 18px;
}

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

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

.principles-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.principles-grid article > span,
.check-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.security-explainer {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.security-explainer h2 {
  margin-bottom: 24px;
}

.security-explainer p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.connection-diagram {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.connection-diagram > div {
  display: grid;
  flex: 1;
  min-height: 150px;
  padding: 18px;
  place-content: center;
  border-radius: 14px;
  background: var(--paper);
  text-align: center;
}

.connection-diagram > i {
  color: var(--violet);
  font-style: normal;
  font-weight: 900;
}

.connection-diagram span {
  display: grid;
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  font-size: 11px;
  font-weight: 850;
}

.connection-diagram strong,
.connection-diagram small {
  display: block;
}

.connection-diagram strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.connection-diagram small {
  color: var(--muted);
  font-size: 10px;
}

.threat-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.threat-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.5fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

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

.threat-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.threat-row strong {
  font-size: 14px;
}

.threat-head {
  min-height: 50px;
  color: var(--faint);
  background: var(--surface-soft);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.coverage.covered {
  color: #087553;
  background: var(--green-soft);
}

.coverage.reduced {
  color: #995b0b;
  background: var(--amber-soft);
}

.coverage.not-covered {
  color: #b23c49;
  background: #ffe9ec;
}

.security-practices {
  color: var(--white);
  background: #4d47ce;
}

.practices-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.practices-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.practices-grid li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.practices-grid li::before {
  position: absolute;
  top: 18px;
  left: 19px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
}

.practices-grid li::after {
  position: absolute;
  top: 22px;
  left: 23px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--white);
  border-left: 1.5px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.report-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.report-card p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
}

.report-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.requirements-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.requirements-card > span {
  display: block;
  margin-bottom: 18px;
  color: #989fab;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.requirements-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements-card li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #abb2be;
  font-size: 13px;
}

.requirements-card li:last-child {
  border-bottom: 0;
}

.requirements-card strong {
  color: var(--white);
}

.support-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 100px;
}

.support-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.support-nav strong {
  margin-bottom: 6px;
  color: var(--faint);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.support-nav a:hover {
  color: var(--violet);
}

.support-content {
  display: grid;
  gap: 96px;
  min-width: 0;
}

.support-content h2 {
  margin-bottom: 30px;
  font-size: clamp(34px, 4vw, 52px);
}

.support-content > section > p {
  color: var(--ink-soft);
  line-height: 1.8;
}

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

.instruction-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.instruction-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 12px;
  font-weight: 850;
}

.instruction-list strong {
  display: block;
  margin-bottom: 3px;
}

.instruction-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.callout {
  margin-bottom: 24px;
  padding: 24px;
  border-left: 4px solid var(--violet);
  border-radius: 0 14px 14px 0;
  background: var(--violet-soft);
}

.callout strong {
  display: block;
  margin-bottom: 7px;
}

.callout p {
  margin: 0;
  color: #55576a;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.check-grid article {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.check-grid article > span {
  margin-bottom: 50px;
}

.plain-steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--line);
  counter-reset: support-step;
  list-style: none;
}

.plain-steps li {
  position: relative;
  min-height: 62px;
  padding: 20px 24px 20px 64px;
  background: var(--surface);
  counter-increment: support-step;
}

.plain-steps li::before {
  position: absolute;
  top: 18px;
  left: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--violet);
  background: var(--violet-soft);
  content: counter(support-step);
  font-size: 11px;
  font-weight: 850;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
  }

  .app-window {
    width: 530px;
  }

  .phone-card {
    right: -8px;
    width: 178px;
    min-height: 326px;
  }

  .stage-pill-bottom {
    left: -12px;
  }

  .security-grid,
  .page-hero-grid {
    gap: 60px;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 126px;
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .product-stage {
    min-height: 570px;
    margin-top: 20px;
  }

  .app-window {
    left: 5%;
    width: min(78vw, 650px);
  }

  .phone-card {
    right: 4%;
  }

  .stage-pill-top {
    right: 12%;
  }

  .stage-pill-bottom {
    left: 1%;
  }

  .two-column,
  .release-layout,
  .split-heading,
  .security-grid,
  .open-source-card,
  .final-cta-inner,
  .page-hero-grid,
  .security-explainer,
  .practices-grid,
  .report-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .problem-copy {
    padding-top: 0;
  }

  .release-copy {
    position: static;
  }

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

  .step-card {
    min-height: 280px;
  }

  .icon-box {
    margin-bottom: 42px;
  }

  .feature-large {
    grid-template-columns: 1fr;
  }

  .direction-visual {
    margin-top: 20px;
  }

  .security-copy {
    max-width: 720px;
  }

  .open-source-card {
    align-items: start;
  }

  .source-actions {
    justify-items: start;
  }

  .final-actions {
    justify-content: flex-start;
  }

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

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

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

  .security-seal {
    min-height: 260px;
  }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .support-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .support-nav strong {
    grid-column: 1 / -1;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-summary {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 13px 20px;
  }

  .product-stage {
    min-height: 470px;
  }

  .app-window {
    top: 45px;
    left: 0;
    width: 95%;
    border-radius: 13px;
    transform: rotateY(-3deg) rotateX(1deg);
  }

  .phone-card {
    right: -3px;
    bottom: 0;
    width: 145px;
    min-height: 272px;
    padding: 13px 11px;
    border-width: 5px;
    border-radius: 26px;
  }

  .phone-card::before {
    width: 42px;
    height: 10px;
  }

  .phone-top {
    margin-bottom: 16px;
  }

  .phone-brand {
    margin-bottom: 15px;
  }

  .phone-check {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 13px;
  }

  .phone-check svg {
    width: 22px;
    height: 22px;
  }

  .phone-card button {
    min-height: 34px;
    font-size: 8px;
  }

  .stage-pill {
    display: none;
  }

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

  .proof-grid div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .two-column h2,
  .section-heading h2,
  .security-copy h2,
  .open-source-card h2,
  .page-hero h1,
  .support-content h2,
  .security-explainer h2,
  .practices-grid h2,
  .report-card h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .steps-grid,
  .feature-grid,
  .release-grid,
  .security-update-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .release-card,
  .feature-large,
  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .feature-large {
    min-height: 580px;
  }

  .direction-visual {
    transform: scale(0.76);
  }

  .feature-icon {
    margin-bottom: 38px;
  }

  .zip-list,
  .history-list {
    margin-top: 12px;
  }

  .open-source-card,
  .report-card {
    padding: 32px 26px;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
  }

  .page-hero {
    padding: 126px 0 78px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .principles-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article {
    min-height: 240px;
  }

  .connection-diagram {
    display: grid;
  }

  .connection-diagram > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .threat-row,
  .threat-head {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px;
  }

  .threat-head {
    display: none;
  }

  .coverage {
    margin-top: 4px;
  }

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

@media (max-width: 430px) {
  .proof-grid div {
    padding: 22px 18px;
  }

  .product-stage {
    min-height: 400px;
  }

  .app-window {
    width: 100%;
  }

  .phone-card {
    width: 130px;
    min-height: 250px;
  }

  .phone-card p {
    margin-bottom: 12px;
  }

  .direction-visual {
    width: 430px;
    margin-left: -70px;
  }

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

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

  .support-nav strong {
    grid-column: auto;
  }
}

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

:root {
  color-scheme: dark;
  --ink: #f2f3f8;
  --ink-soft: #c0c5d1;
  --muted: #8d95a7;
  --faint: #626b7d;
  --paper: #080b12;
  --surface: #111721;
  --surface-soft: #0c1119;
  --line: #252d3b;
  --line-dark: rgba(255, 255, 255, 0.1);
  --violet: #817cf7;
  --violet-dark: #a29eff;
  --violet-soft: #29284d;
  --green: #39cf98;
  --green-soft: #17372e;
  --amber: #f3ad4a;
  --amber-soft: #3a2b17;
  --night: #080b12;
  --night-soft: #111720;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 44px 120px rgba(0, 0, 0, 0.48);
  --cursor-x: 50vw;
  --cursor-y: 20vh;
}

html {
  overflow-x: clip;
  background: var(--paper);
  scrollbar-color: #30394a #0a0e15;
}

body {
  position: relative;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(98, 91, 232, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(80, 69, 203, 0.09), transparent 25%),
    var(--paper);
}

body::before {
  position: fixed;
  z-index: 0;
  top: calc(var(--cursor-y) - 270px);
  left: calc(var(--cursor-x) - 270px);
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 124, 247, 0.06), transparent 68%);
  content: "";
  pointer-events: none;
  transition:
    top 300ms ease-out,
    left 300ms ease-out;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.ambient-sky {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
  will-change: transform;
}

.ambient-orb-one {
  top: -260px;
  left: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(98, 91, 232, 0.16), transparent 68%);
  animation: ambientDriftOne 18s ease-in-out infinite alternate;
}

.ambient-orb-two {
  top: 24%;
  right: -380px;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(74, 68, 196, 0.12), transparent 68%);
  animation: ambientDriftTwo 24s ease-in-out infinite alternate;
}

.ambient-orb-three {
  bottom: -340px;
  left: 24%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(57, 207, 152, 0.05), transparent 68%);
  animation: ambientDriftThree 21s ease-in-out infinite alternate;
}

.ambient-stars {
  position: absolute;
  inset: -80px;
  opacity: 0.32;
  background-image:
    radial-gradient(circle, rgba(196, 193, 255, 0.6) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.2px);
  background-position:
    0 0,
    37px 43px;
  background-size:
    96px 96px,
    137px 137px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  animation: starsSlide 42s linear infinite;
}

.skip-link {
  color: var(--white);
  background: var(--violet);
}

:focus-visible {
  outline-color: rgba(129, 124, 247, 0.65);
}

.site-header {
  border-color: rgba(255, 255, 255, 0.055);
  background: rgba(8, 11, 18, 0.7);
  box-shadow: none;
}

.site-header.is-scrolled {
  border-color: rgba(129, 124, 247, 0.16);
  background: rgba(8, 11, 18, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand {
  color: var(--ink);
}

.brand-mark {
  background: linear-gradient(145deg, #817cf7, #4b46cc);
  box-shadow:
    0 10px 24px rgba(83, 77, 220, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: brandBreathe 4s ease-in-out infinite;
}

.desktop-nav a,
.text-link {
  color: var(--muted);
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.text-link:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  position: absolute;
  z-index: -1;
  top: -120%;
  left: -35%;
  width: 32%;
  height: 340%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  transform: rotate(24deg);
  transition: left 480ms ease;
}

.button:hover::before {
  left: 120%;
}

.button-small {
  border-color: rgba(129, 124, 247, 0.24);
  color: var(--ink);
  background: rgba(129, 124, 247, 0.13);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.button-small:hover {
  border-color: rgba(129, 124, 247, 0.48);
  background: rgba(129, 124, 247, 0.2);
  box-shadow: 0 12px 28px rgba(52, 46, 154, 0.25);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(135deg, #817cf7, #5a55e7 55%, #4b46cc);
  box-shadow:
    0 14px 34px rgba(68, 61, 196, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #9894ff, #6f69ef 55%, #5852d9);
  box-shadow:
    0 18px 42px rgba(76, 69, 211, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.25);
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink-soft);
  background: rgba(17, 23, 33, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.button-quiet:hover {
  border-color: rgba(129, 124, 247, 0.34);
  color: var(--ink);
  background: rgba(30, 36, 52, 0.9);
}

.button-white {
  color: #171923;
  background: var(--white);
}

.menu-button {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(17, 23, 33, 0.88);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.mobile-menu {
  background: rgba(8, 11, 18, 0.96);
}

.mobile-menu a {
  border-color: var(--line);
  color: var(--ink-soft);
}

.hero {
  min-height: 840px;
  background:
    radial-gradient(circle at 20% 22%, rgba(98, 91, 232, 0.13), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(129, 124, 247, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(13, 17, 24, 0.3), rgba(8, 11, 18, 0.12));
}

.hero::before {
  opacity: 0.8;
  background:
    linear-gradient(rgba(129, 124, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 124, 247, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 55% 38%, #000 8%, transparent 72%);
  animation: heroGridMove 22s linear infinite;
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 5%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(129, 124, 247, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(129, 124, 247, 0.025),
    0 0 0 180px rgba(129, 124, 247, 0.015);
  content: "";
  pointer-events: none;
  animation: haloPulse 9s ease-in-out infinite;
}

.hero-glow {
  top: -250px;
  right: -180px;
  width: 850px;
  height: 850px;
  opacity: 0.85;
  background: radial-gradient(circle, rgba(129, 124, 247, 0.2), transparent 68%);
  animation: glowDrift 11s ease-in-out infinite alternate;
}

.eyebrow,
.section-label,
.feature-kicker {
  color: #aaa7ff;
}

.eyebrow {
  border-color: rgba(129, 124, 247, 0.24);
  color: #c2bfff;
  background: rgba(41, 40, 77, 0.48);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero h1 {
  color: var(--ink);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(110deg, #8b86ff, #b5b2ff 48%, #736df0 85%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 10px 30px rgba(101, 94, 230, 0.24));
}

.hero-summary {
  color: var(--ink-soft);
}

.hero-note,
.trust-row,
.proof-grid span {
  color: var(--muted);
}

.trust-row {
  border-color: var(--line);
}

.status-dot {
  background: var(--green);
  box-shadow:
    0 0 0 4px rgba(57, 207, 152, 0.11),
    0 0 18px rgba(57, 207, 152, 0.35);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.product-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --stage-x: 50%;
  --stage-y: 50%;
  transform: perspective(1300px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.product-stage::before {
  position: absolute;
  inset: 3% -5% -3% 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at var(--stage-x) var(--stage-y),
    rgba(129, 124, 247, 0.2),
    rgba(89, 82, 220, 0.06) 34%,
    transparent 68%
  );
  content: "";
  filter: blur(8px);
  pointer-events: none;
  transition: background 160ms ease;
}

.stage-orbit {
  border-color: rgba(129, 124, 247, 0.12);
  box-shadow: inset 0 0 70px rgba(129, 124, 247, 0.025);
}

.stage-orbit-one {
  animation: orbitSpin 30s linear infinite;
}

.stage-orbit-two {
  border-style: dashed;
  animation: orbitSpinReverse 23s linear infinite;
}

.stage-orbit-one::before,
.stage-orbit-two::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9692ff;
  box-shadow:
    0 0 0 6px rgba(129, 124, 247, 0.08),
    0 0 24px rgba(129, 124, 247, 0.6);
  content: "";
}

.app-window {
  border-color: rgba(129, 124, 247, 0.24);
  background: #0d121a;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 80px rgba(74, 68, 196, 0.12);
  animation: appFloat 7s ease-in-out infinite;
}

.app-window::after {
  position: absolute;
  inset: 34px 0 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(183, 179, 255, 0.08) 48%,
    transparent 61%
  );
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  animation: screenSheen 7s ease-in-out infinite 1.4s;
}

.window-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #111720;
}

.phone-card {
  border-color: #282e3b;
  color: var(--ink);
  background:
    linear-gradient(155deg, rgba(129, 124, 247, 0.09), transparent 34%),
    #141a24;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 50px rgba(98, 91, 232, 0.13);
  animation: phoneFloat 6s ease-in-out infinite 0.8s;
}

.phone-card::before {
  background: #05070b;
}

.phone-top,
.phone-card p,
.phone-card small {
  color: var(--muted);
}

.phone-check {
  color: var(--green);
  background: rgba(57, 207, 152, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(57, 207, 152, 0.12),
    0 0 30px rgba(57, 207, 152, 0.1);
  animation: approvalPulse 3s ease-in-out infinite;
}

.phone-card button {
  background: linear-gradient(135deg, #817cf7, #5a55e7);
  box-shadow: 0 10px 22px rgba(71, 64, 201, 0.28);
}

.stage-pill {
  border-color: rgba(129, 124, 247, 0.18);
  color: var(--ink-soft);
  background: rgba(13, 18, 26, 0.88);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.stage-pill-top {
  animation: pillFloat 5s ease-in-out infinite;
}

.stage-pill-bottom {
  animation: pillFloatReverse 6s ease-in-out infinite 0.5s;
}

.proof-strip {
  border-color: var(--line);
  background: rgba(11, 15, 22, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.015);
}

.proof-grid div,
.proof-grid div:first-child {
  border-color: var(--line);
}

.proof-grid div {
  position: relative;
  overflow: hidden;
}

.proof-grid div::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 124, 247, 0.7), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
}

.proof-grid div:hover::before {
  opacity: 1;
  animation: lineSweep 1s ease;
}

.proof-grid strong {
  color: #d8d6ff;
  text-shadow: 0 0 24px rgba(129, 124, 247, 0.2);
}

.section {
  position: relative;
}

.section-tinted {
  border-color: var(--line);
  background:
    radial-gradient(circle at 10% 10%, rgba(98, 91, 232, 0.07), transparent 28%),
    rgba(12, 17, 25, 0.84);
}

.release-section {
  border-color: var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(98, 91, 232, 0.065), transparent 28%),
    rgba(8, 11, 18, 0.7);
}

.release-copy h2 {
  color: var(--ink);
}

.release-copy p {
  color: var(--muted);
}

.two-column h2,
.section-heading h2,
.open-source-card h2,
.support-content h2,
.security-explainer h2,
.report-card h2 {
  color: var(--ink);
}

.problem-copy p,
.section-heading.centered p,
.split-heading p,
.step-card p,
.feature-card p,
.release-card p,
.principles-grid p,
.check-grid p,
.open-source-card p,
.security-explainer p,
.support-content > section > p {
  color: var(--muted);
}

.step-card,
.feature-card,
.release-card,
.principles-grid article,
.check-grid article,
.instruction-list li {
  --spot-x: 50%;
  --spot-y: 50%;
  border-color: var(--line);
  background:
    radial-gradient(
      280px circle at var(--spot-x) var(--spot-y),
      rgba(129, 124, 247, 0.11),
      transparent 55%
    ),
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--surface);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px rgba(255, 255, 255, 0.025);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.step-card:hover,
.feature-card:hover,
.release-card:hover,
.principles-grid article:hover,
.check-grid article:hover,
.instruction-list li:hover {
  z-index: 2;
  border-color: rgba(129, 124, 247, 0.4);
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.27),
    0 0 0 1px rgba(129, 124, 247, 0.05) inset,
    0 0 42px rgba(75, 70, 204, 0.08);
  transform: translateY(-6px);
}

.step-card::after {
  background: radial-gradient(circle, rgba(129, 124, 247, 0.15), transparent 68%);
}

.step-number {
  color: #474f61;
}

.icon-box,
.feature-icon {
  color: #a6a2ff;
  background: rgba(129, 124, 247, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(129, 124, 247, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.12);
}

.feature-purple {
  border-color: rgba(129, 124, 247, 0.2);
  background:
    radial-gradient(circle at 72% 30%, rgba(129, 124, 247, 0.14), transparent 32%),
    linear-gradient(135deg, #141629, #121824 60%, #10151e);
}

.feature-purple::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(129, 124, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 124, 247, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 20%, #000);
  pointer-events: none;
}

.feature-large p {
  color: var(--muted);
}

.feature-icon.green {
  color: var(--green);
  background: rgba(57, 207, 152, 0.1);
}

.feature-icon.amber {
  color: var(--amber);
  background: rgba(243, 173, 74, 0.1);
}

.feature-icon.violet {
  color: #aaa6ff;
  background: rgba(129, 124, 247, 0.12);
}

.device {
  border-color: #303748;
  background: #0b0f16;
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.desktop-device::after {
  border-color: #303748;
}

.device span {
  background:
    linear-gradient(135deg, rgba(129, 124, 247, 0.16), transparent 55%),
    #12182a;
  box-shadow: inset 0 0 0 1px rgba(129, 124, 247, 0.07);
}

.transfer-line {
  position: relative;
}

.transfer-line::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 124, 247, 0.5), transparent);
  content: "";
}

.transfer-line i {
  position: relative;
  background: #a7a3ff;
  box-shadow:
    0 0 0 5px rgba(129, 124, 247, 0.1),
    0 0 18px rgba(129, 124, 247, 0.55);
  animation: transferPacket 2.2s ease-in-out infinite;
}

.transfer-line i:nth-child(2) {
  animation-delay: 0.18s;
}

.transfer-line i:nth-child(3) {
  animation-delay: 0.36s;
}

.zip-list,
.history-list {
  border-color: var(--line);
  background: rgba(8, 11, 18, 0.55);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
}

.zip-list div,
.history-list div {
  border-color: rgba(255, 255, 255, 0.065);
  color: var(--ink-soft);
  background: rgba(22, 29, 41, 0.82);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.zip-list div:hover,
.history-list div:hover {
  border-color: rgba(129, 124, 247, 0.3);
  transform: translateX(4px);
}

.feature-dark {
  border-color: rgba(129, 124, 247, 0.16);
  background:
    radial-gradient(circle at 85% 15%, rgba(98, 91, 232, 0.1), transparent 34%),
    #10151e;
}

.feature-dark p {
  color: var(--muted);
}

.security-preview {
  border-block: 1px solid rgba(129, 124, 247, 0.12);
  background:
    radial-gradient(circle at 14% 18%, rgba(98, 91, 232, 0.22), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(57, 207, 152, 0.05), transparent 25%),
    #0a0e16;
}

.security-preview::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(129, 124, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 124, 247, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.security-preview::after {
  border-color: rgba(129, 124, 247, 0.11);
  box-shadow:
    0 0 0 80px rgba(129, 124, 247, 0.02),
    0 0 0 160px rgba(129, 124, 247, 0.012);
  animation: orbitSpin 36s linear infinite;
}

.security-copy p {
  color: #a1a9b8;
}

.security-list > div {
  position: relative;
  overflow: hidden;
  transition:
    padding-left 180ms ease,
    background-color 180ms ease;
}

.security-list > div::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--violet), transparent);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.security-list > div:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(129, 124, 247, 0.05), transparent);
}

.security-list > div:hover::after {
  opacity: 1;
}

.open-source-section,
.faq-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(98, 91, 232, 0.055), transparent 24%),
    var(--paper);
}

.open-source-card,
.report-card {
  border-color: rgba(129, 124, 247, 0.18);
  background:
    radial-gradient(circle at 90% 15%, rgba(129, 124, 247, 0.1), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--surface);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.035);
}

.stack-row span {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(8, 11, 18, 0.55);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.stack-row span:hover {
  border-color: rgba(129, 124, 247, 0.4);
  color: #c4c1ff;
  transform: translateY(-2px);
}

.inline-link {
  color: #aaa6ff;
}

.faq-list,
.faq-list details {
  border-color: var(--line);
}

.faq-list summary {
  color: var(--ink);
  transition:
    color 160ms ease,
    padding-left 160ms ease;
}

.faq-list summary:hover {
  padding-left: 8px;
  color: #b8b5ff;
}

.faq-list summary span::before,
.faq-list summary span::after {
  background: #aaa6ff;
}

.faq-list details p {
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(129, 124, 247, 0.24);
  background:
    radial-gradient(circle at 12% 20%, rgba(152, 148, 255, 0.2), transparent 31%),
    radial-gradient(circle at 88% 65%, rgba(57, 207, 152, 0.08), transparent 25%),
    linear-gradient(135deg, #24204c, #312b76 54%, #19183f);
}

.final-cta::before {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 90deg,
    transparent,
    rgba(129, 124, 247, 0.08),
    transparent 32%
  );
  content: "";
  animation: orbitSpin 26s linear infinite;
}

.final-cta-inner {
  position: relative;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 10%, rgba(98, 91, 232, 0.07), transparent 26%),
    #070a10;
}

.footer-grid > div:first-child p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-bottom {
  border-color: var(--line);
}

.page-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(98, 91, 232, 0.23), transparent 32%),
    radial-gradient(circle at 12% 70%, rgba(57, 207, 152, 0.035), transparent 24%),
    #090d15;
}

.page-hero::before {
  opacity: 0.75;
  background:
    linear-gradient(rgba(129, 124, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 124, 247, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: heroGridMove 24s linear infinite;
}

.page-hero p {
  color: var(--ink-soft);
}

.security-seal,
.requirements-card {
  border-color: rgba(129, 124, 247, 0.18);
  background:
    radial-gradient(circle at 50% 20%, rgba(129, 124, 247, 0.12), transparent 38%),
    rgba(17, 23, 33, 0.72);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.security-seal svg {
  color: #a8a4ff;
  background: rgba(129, 124, 247, 0.12);
  box-shadow:
    0 0 0 1px rgba(129, 124, 247, 0.12) inset,
    0 0 50px rgba(98, 91, 232, 0.12);
  animation: shieldHover 5s ease-in-out infinite;
}

.principles-grid article {
  border-color: var(--line);
  background:
    radial-gradient(
      280px circle at var(--spot-x) var(--spot-y),
      rgba(129, 124, 247, 0.11),
      transparent 55%
    ),
    var(--surface);
}

.connection-diagram {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.connection-diagram > div {
  border: 1px solid rgba(129, 124, 247, 0.09);
  background: rgba(8, 11, 18, 0.58);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.connection-diagram > div:hover {
  border-color: rgba(129, 124, 247, 0.34);
  transform: translateY(-4px);
}

.connection-diagram span {
  background: linear-gradient(135deg, #817cf7, #5a55e7);
  box-shadow: 0 8px 22px rgba(71, 64, 201, 0.28);
}

.connection-diagram small {
  color: var(--muted);
}

.threat-table {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.threat-row {
  border-color: var(--line);
  transition: background-color 160ms ease;
}

.threat-row:not(.threat-head):hover {
  background: rgba(129, 124, 247, 0.045);
}

.threat-row p {
  color: var(--muted);
}

.threat-head {
  color: var(--faint);
  background: rgba(8, 11, 18, 0.48);
}

.coverage.covered {
  color: #6ce0b4;
  background: rgba(57, 207, 152, 0.11);
}

.coverage.reduced {
  color: #f6bd67;
  background: rgba(243, 173, 74, 0.11);
}

.coverage.not-covered {
  color: #ff929d;
  background: rgba(255, 123, 137, 0.11);
}

.security-practices {
  border-block: 1px solid rgba(129, 124, 247, 0.22);
  background:
    radial-gradient(circle at 14% 20%, rgba(129, 124, 247, 0.2), transparent 28%),
    linear-gradient(135deg, #1b193a, #28235e 58%, #15142d);
}

.practices-grid li {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(8, 11, 18, 0.2);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.practices-grid li:hover {
  border-color: rgba(183, 179, 255, 0.35);
  background: rgba(129, 124, 247, 0.07);
  transform: translateX(5px);
}

.requirements-card li {
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.support-nav {
  border-color: var(--line);
  background: rgba(17, 23, 33, 0.78);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
}

.support-nav a {
  color: var(--muted);
}

.support-nav a:hover {
  color: #b3afff;
}

.instruction-list li,
.check-grid article {
  border-color: var(--line);
  background:
    radial-gradient(
      260px circle at var(--spot-x) var(--spot-y),
      rgba(129, 124, 247, 0.1),
      transparent 58%
    ),
    var(--surface);
}

.instruction-list li > span {
  color: #b2afff;
  background: rgba(129, 124, 247, 0.12);
  box-shadow: inset 0 0 0 1px rgba(129, 124, 247, 0.12);
}

.instruction-list p {
  color: var(--muted);
}

.callout {
  border-color: #817cf7;
  background:
    linear-gradient(90deg, rgba(129, 124, 247, 0.12), transparent),
    rgba(17, 23, 33, 0.75);
}

.callout p {
  color: var(--muted);
}

.plain-steps {
  border-color: var(--line);
  background: var(--line);
}

.plain-steps li {
  background: var(--surface);
  transition: background-color 160ms ease;
}

.plain-steps li:hover {
  background: #161d29;
}

.plain-steps li::before {
  color: #b2afff;
  background: rgba(129, 124, 247, 0.12);
}

.js [data-reveal] {
  filter: blur(5px);
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.js [data-reveal].is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes ambientDriftOne {
  from {
    transform: translate3d(-2%, -2%, 0) scale(0.95);
  }
  to {
    transform: translate3d(13%, 9%, 0) scale(1.08);
  }
}

@keyframes ambientDriftTwo {
  from {
    transform: translate3d(4%, -3%, 0) scale(1);
  }
  to {
    transform: translate3d(-12%, 10%, 0) scale(1.12);
  }
}

@keyframes ambientDriftThree {
  from {
    transform: translate3d(-8%, 5%, 0) scale(0.96);
  }
  to {
    transform: translate3d(11%, -8%, 0) scale(1.1);
  }
}

@keyframes starsSlide {
  to {
    transform: translate3d(68px, 68px, 0);
  }
}

@keyframes brandBreathe {
  0%,
  100% {
    box-shadow:
      0 10px 24px rgba(83, 77, 220, 0.28),
      0 0 0 0 rgba(129, 124, 247, 0);
  }
  50% {
    box-shadow:
      0 12px 30px rgba(83, 77, 220, 0.4),
      0 0 0 7px rgba(129, 124, 247, 0.06);
  }
}

@keyframes heroGridMove {
  to {
    background-position:
      54px 54px,
      54px 54px;
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes glowDrift {
  from {
    transform: translate3d(-3%, -2%, 0) scale(0.96);
  }
  to {
    transform: translate3d(5%, 6%, 0) scale(1.08);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

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

@keyframes appFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(2deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-4deg) rotateX(1.5deg) translate3d(0, -8px, 18px);
  }
}

@keyframes screenSheen {
  0%,
  48% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(-11px);
  }
}

@keyframes approvalPulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(57, 207, 152, 0.12),
      0 0 20px rgba(57, 207, 152, 0.06);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(57, 207, 152, 0.22),
      0 0 36px rgba(57, 207, 152, 0.18);
  }
}

@keyframes pillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pillFloatReverse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes lineSweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes transferPacket {
  0% {
    opacity: 0.15;
    transform: translateX(-10px) scale(0.72);
  }
  45% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0.15;
    transform: translateX(10px) scale(0.72);
  }
}

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

@media (max-width: 960px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(8, 11, 18, 0.92);
  }

  .product-stage {
    transform: none;
  }

  .app-window {
    animation-duration: 8s;
  }

  .support-nav {
    background: var(--surface);
  }
}

@media (max-width: 700px) {
  body::before {
    display: none;
  }

  .ambient-orb {
    opacity: 0.45;
  }

  .ambient-stars {
    opacity: 0.2;
  }

  .hero {
    background:
      radial-gradient(circle at 70% 20%, rgba(98, 91, 232, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(13, 17, 24, 0.2), rgba(8, 11, 18, 0.08));
  }

  .hero::after {
    display: none;
  }

  .app-window {
    animation-name: appFloatMobile;
  }

  .phone-card {
    animation-name: phoneFloatMobile;
  }

  .proof-grid div:nth-child(3) {
    border-color: var(--line);
  }

  .step-card:hover,
  .feature-card:hover,
  .principles-grid article:hover,
  .check-grid article:hover,
  .instruction-list li:hover {
    transform: none;
  }

  .final-cta {
    background:
      radial-gradient(circle at 20% 10%, rgba(152, 148, 255, 0.18), transparent 30%),
      linear-gradient(145deg, #28235e, #17152f);
  }
}

@keyframes appFloatMobile {
  0%,
  100% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(0);
  }
  50% {
    transform: rotateY(-2deg) rotateX(0.5deg) translateY(-5px);
  }
}

@keyframes phoneFloatMobile {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-7px);
  }
}
