:root {
  color-scheme: dark;
  --bg: #0b0912;
  --bg-elevated: #12101b;
  --surface: rgba(21, 18, 31, 0.78);
  --surface-strong: #17131f;
  --line: rgba(255, 255, 255, 0.1);
  --line-bright: rgba(185, 145, 255, 0.28);
  --text: #f7f3ff;
  --muted: #aaa4b7;
  --purple: #9b6dff;
  --purple-light: #c6a8ff;
  --teal: #48d8d2;
  --green: #8ff0c3;
  --shell: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 52% -20%, rgba(123, 74, 213, 0.14), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.ambient {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

.ambient-one {
  top: 10vh;
  right: -260px;
  background: var(--purple);
}

.ambient-two {
  bottom: -220px;
  left: -260px;
  background: var(--teal);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(11, 9, 18, 0.78);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(155, 109, 255, 0.2), rgba(72, 216, 210, 0.08));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: var(--purple);
}

.brand-mark .brand-check {
  fill: none;
  stroke: white;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #c9c3d3;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta) {
  transition: color 160ms ease;
}

.nav-links > a:not(.nav-cta):hover {
  color: white;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(191, 159, 255, 0.38);
  border-radius: 12px;
  background: rgba(155, 109, 255, 0.1);
  color: #eee6ff;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(191, 159, 255, 0.65);
  background: rgba(155, 109, 255, 0.19);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 99px;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  display: grid;
  min-height: min(900px, calc(100vh - 80px));
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 9vw, 8.75rem);
}

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

.eyebrow,
.kicker {
  color: var(--purple-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.46rem 0.7rem;
  border: 1px solid rgba(178, 137, 255, 0.22);
  border-radius: 999px;
  background: rgba(155, 109, 255, 0.07);
}

.eyebrow-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.eyebrow-icon svg {
  width: 17px;
  fill: var(--purple-light);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.047em;
}

h1 {
  max-width: 780px;
  margin: 1.55rem 0 1.45rem;
  font-size: clamp(4rem, 7.4vw, 7.2rem);
  font-weight: 760;
}

h1 span {
  display: block;
  background: linear-gradient(100deg, #c7adff 12%, #9362f5 55%, #62d8d3 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 2.25rem;
  color: #b9b2c4;
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.15;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  min-width: 178px;
  background: linear-gradient(115deg, #a77cff, #8659ee);
  box-shadow: 0 16px 36px rgba(123, 77, 218, 0.28), inset 0 1px rgba(255, 255, 255, 0.28);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(123, 77, 218, 0.4), inset 0 1px rgba(255, 255, 255, 0.3);
}

.button-primary span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button-primary small {
  margin-bottom: 2px;
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.09em;
}

.play-icon {
  width: 25px;
  height: 25px;
  fill: white;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #ddd7e7;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
}

.button-secondary svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.7rem;
  color: #8f899b;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
}

.hero-assurance svg {
  width: 17px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.hero-visual::before {
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 97, 255, 0.19), rgba(73, 38, 126, 0.04) 55%, transparent 72%);
  content: "";
  filter: blur(4px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(165, 125, 243, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 500px;
}

.orbit-two {
  width: 620px;
  height: 620px;
  border-color: rgba(72, 216, 210, 0.07);
}

.app-frame {
  position: relative;
  z-index: 2;
  width: min(333px, 78vw);
  padding: 8px;
  border: 1px solid rgba(183, 145, 255, 0.42);
  border-radius: 31px;
  background: #100d16;
  box-shadow: var(--shadow), 0 0 90px rgba(125, 80, 225, 0.15);
}

.app-frame::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(199, 164, 255, 0.38), transparent 38%, rgba(72, 216, 210, 0.35));
  content: "";
}

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

.frame-top {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 68px;
  height: 17px;
  border-radius: 999px;
  background: #0e0b14;
  transform: translateX(-50%);
}

.frame-top span {
  position: absolute;
  top: 5px;
  right: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #201b2a;
}

.privacy-card {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 196px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(24, 20, 34, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.privacy-card-top {
  top: 13%;
  left: -5%;
}

.privacy-card-bottom {
  right: -7%;
  bottom: 14%;
}

.privacy-card strong,
.privacy-card small {
  display: block;
}

.privacy-card strong {
  font-size: 0.78rem;
  line-height: 1.35;
}

.privacy-card small {
  color: #9d96a8;
  font-size: 0.66rem;
}

.mini-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
}

.mini-icon svg {
  width: 19px;
  height: 19px;
}

.mini-icon.purple {
  background: rgba(155, 109, 255, 0.18);
}

.mini-icon.purple svg {
  fill: none;
  stroke: #b791ff;
  stroke-width: 1.8;
}

.mini-icon.teal {
  background: rgba(72, 216, 210, 0.15);
}

.mini-icon.teal svg {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  color: #d4cedd;
  font-size: 0.87rem;
  font-weight: 680;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: #817b8c;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-items i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--purple);
}

.section {
  padding-block: clamp(6rem, 10vw, 9.5rem);
}

.section-heading {
  max-width: 750px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.kicker {
  margin-bottom: 1rem;
}

.section-heading h2,
.workflow h2,
.download-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 720;
}

.section-heading > p:last-child,
.section-intro,
.download-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
  transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(178, 137, 255, 0.23);
  transform: translateY(-4px);
}

.feature-card-wide {
  display: grid;
  min-height: 350px;
  grid-column: 1 / -1;
  grid-template-columns: 72px minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(112, 65, 207, 0.15), transparent 50%),
    rgba(255, 255, 255, 0.025);
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 3.2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
}

.feature-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-wide .feature-icon {
  margin: 0;
}

.purple-icon {
  background: rgba(155, 109, 255, 0.12);
  color: #b78eff;
}

.blue-icon {
  background: rgba(128, 145, 255, 0.1);
  color: #9ca8ff;
}

.teal-icon {
  background: rgba(72, 216, 210, 0.1);
  color: var(--teal);
}

.green-icon {
  background: rgba(143, 240, 195, 0.1);
  color: var(--green);
}

.card-label {
  margin-bottom: 0.7rem;
  color: #837b91;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  max-width: 440px;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 680;
}

.feature-card > p:last-child,
.feature-card > div > p:last-child {
  max-width: 610px;
  margin: 0;
  color: #9e97a9;
  font-size: 0.93rem;
}

.redaction-demo {
  position: relative;
  align-self: stretch;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: #100d17;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 18px 55px rgba(0, 0, 0, 0.2);
}

.redaction-demo::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  content: "";
}

.demo-line {
  position: absolute;
  left: 30px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.demo-line.long {
  top: 76px;
  width: 70%;
}

.demo-line.medium {
  top: 106px;
  width: 55%;
}

.demo-line.short {
  top: 136px;
  width: 35%;
}

.mosaic-blocks {
  position: absolute;
  right: 30px;
  bottom: 27px;
  display: grid;
  width: 145px;
  height: 72px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(190, 155, 255, 0.4);
  border-radius: 10px;
  background: rgba(93, 52, 170, 0.26);
  transform: rotate(-2deg);
}

.mosaic-blocks span {
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(203, 180, 255, 0.64), rgba(105, 68, 181, 0.68));
}

.feature-card-accent::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(79, 218, 193, 0.08);
  content: "";
  filter: blur(24px);
}

.workflow {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 85%);
}

.workflow::before {
  position: absolute;
  top: 20%;
  right: -18%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(82, 209, 209, 0.055);
  content: "";
  filter: blur(80px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.workflow-copy {
  max-width: 570px;
}

.steps {
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.2rem;
  padding: 0 0 2.6rem;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 46px;
  bottom: 5px;
  left: 22px;
  width: 1px;
  background: linear-gradient(var(--purple), rgba(255, 255, 255, 0.06));
  content: "";
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(168, 126, 251, 0.3);
  border-radius: 14px;
  background: rgba(155, 109, 255, 0.08);
  color: #b895ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  font-weight: 670;
  letter-spacing: -0.02em;
}

.steps p {
  max-width: 430px;
  margin: 0;
  color: #96909f;
  font-size: 0.92rem;
}

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

.workflow-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 195, 190, 0.12), transparent 66%);
}

.app-frame-secondary {
  transform: rotate(1.5deg);
}

.tool-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(21, 18, 29, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  color: #d8d1e1;
  font-size: 0.73rem;
  font-weight: 680;
  backdrop-filter: blur(15px);
}

.tool-chip-one {
  top: 28%;
  left: -2%;
  transform: rotate(-4deg);
}

.tool-chip-two {
  right: -6%;
  bottom: 25%;
  transform: rotate(3deg);
}

.mosaic-mini {
  width: 19px;
  height: 19px;
  border-radius: 5px;
  background: conic-gradient(from 90deg, #a478ff, #604098, #c9afff, #7e52ce, #a478ff);
}

.solid-mini {
  width: 19px;
  height: 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: #6a6471;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.screenshot-section {
  padding-bottom: clamp(7rem, 12vw, 11rem);
}

.js-only {
  display: none;
}

.js .js-only {
  display: grid;
}

.js .no-js-gallery {
  display: none;
}

.screen-showcase {
  min-height: 690px;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #100d17;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.screen-tabs {
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  border-right: 1px solid var(--line);
}

.screen-tab {
  display: grid;
  min-height: 130px;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: #8d8698;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.screen-tab:hover {
  color: #c4bdcd;
}

.screen-tab.active {
  border-color: rgba(170, 128, 255, 0.18);
  background: linear-gradient(135deg, rgba(155, 109, 255, 0.12), rgba(155, 109, 255, 0.035));
  color: white;
}

.tab-index {
  color: var(--purple-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.screen-tab strong,
.screen-tab small {
  display: block;
}

.screen-tab strong {
  margin-bottom: 0.42rem;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.screen-tab small {
  color: #85808e;
  font-size: 0.78rem;
  line-height: 1.5;
}

.screen-stage {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 80% 40%, rgba(134, 87, 226, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent);
}

.screen-stage::after {
  position: absolute;
  right: -20%;
  bottom: -50%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(72, 216, 210, 0.09);
  border-radius: 50%;
  content: "";
}

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

.screen-stage-copy > p:first-child {
  margin-bottom: 0.75rem;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.screen-stage-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 680;
}

.screen-stage-copy > p:last-child {
  margin: 0;
  color: #9a94a4;
  font-size: 0.93rem;
}

.stage-device {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: center;
  width: min(300px, 100%);
  padding: 7px;
  border: 1px solid rgba(174, 135, 255, 0.35);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: #0e0b14;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.stage-device img {
  width: 100%;
  border-radius: 21px 21px 0 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.stage-device img.switching {
  opacity: 0;
  transform: translateY(6px);
}

.no-js-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.no-js-gallery figure {
  margin: 0;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-strong);
}

.no-js-gallery img {
  width: 100%;
  border-radius: 14px;
}

.no-js-gallery figcaption {
  padding: 0.8rem 0.3rem 0.35rem;
  color: #c9c3d3;
  font-size: 0.84rem;
  font-weight: 650;
}

.download-section {
  padding-bottom: clamp(6rem, 10vw, 9rem);
}

.download-inner {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: clamp(2.2rem, 6vw, 5.5rem);
  border: 1px solid rgba(183, 145, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 30%, rgba(65, 207, 201, 0.13), transparent 30%),
    linear-gradient(130deg, rgba(106, 62, 193, 0.2), rgba(18, 14, 27, 0.96) 52%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 35px 100px rgba(0, 0, 0, 0.26);
}

.download-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.download-copy h2 {
  max-width: 650px;
}

.download-copy > p:not(.kicker) {
  max-width: 570px;
  margin-bottom: 2rem;
}

.download-visual {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
}

.veil-logo-large {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(155, 109, 255, 0.21), rgba(72, 216, 210, 0.07));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.33), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(4deg);
}

.veil-logo-large svg {
  width: 110px;
  fill: var(--purple);
  filter: drop-shadow(0 12px 20px rgba(111, 60, 202, 0.35));
}

.veil-logo-large .large-check {
  fill: none;
  stroke: white;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-ring {
  position: absolute;
  border: 1px solid rgba(181, 144, 255, 0.14);
  border-radius: 50%;
}

.ring-a {
  width: 320px;
  height: 320px;
}

.ring-b {
  width: 430px;
  height: 430px;
  border-color: rgba(72, 216, 210, 0.08);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p {
  margin: 0;
  color: #76717f;
  font-size: 0.78rem;
}

.footer-brand {
  color: #cfc9d7;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 3rem;
  }

  .privacy-card-top {
    left: -10%;
  }

  .privacy-card-bottom {
    right: -12%;
  }

  .feature-card-wide {
    grid-template-columns: 64px minmax(0, 1fr) minmax(220px, 0.65fr);
  }

  .screen-stage {
    grid-template-columns: 0.7fr 1fr;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 860px) {
  .js .nav-toggle {
    display: block;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem 1.5rem;
  }

  .js .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    width: min(360px, calc(100vw - 48px));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.7rem;
    visibility: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(18, 15, 27, 0.96);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(22px);
  }

  .js .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .nav-links a {
    padding: 0.85rem 1rem;
  }

  .js .nav-cta {
    justify-content: center;
    margin-top: 0.35rem;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 5rem;
    text-align: center;
  }

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

  h1 span {
    display: inline;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-assurance {
    justify-content: center;
  }

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

  .privacy-card-top {
    left: 8%;
  }

  .privacy-card-bottom {
    right: 7%;
  }

  .trust-strip {
    flex-direction: column;
    text-align: center;
  }

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

  .feature-card-wide {
    grid-template-columns: 64px 1fr;
  }

  .redaction-demo {
    min-height: 210px;
    grid-column: 1 / -1;
  }

  .feature-card-accent {
    grid-column: 1 / -1;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .workflow-copy {
    max-width: 660px;
  }

  .workflow-visual {
    min-height: 680px;
  }

  .tool-chip-one {
    left: 12%;
  }

  .tool-chip-two {
    right: 11%;
  }

  .screen-showcase {
    grid-template-columns: 1fr;
  }

  .screen-tabs {
    display: grid;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scrollbar-width: thin;
  }

  .screen-tab {
    min-height: 118px;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1rem;
  }

  .screen-tab small {
    display: none;
  }

  .screen-stage {
    min-height: 610px;
    grid-template-columns: 1fr 1fr;
  }

  .download-inner {
    grid-template-columns: 1fr 0.6fr;
  }

  .veil-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 40px;
  }

  .veil-logo-large svg {
    width: 86px;
  }
}

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

  .nav-wrap {
    min-height: 70px;
  }

  .js .nav-links {
    width: calc(100vw - 32px);
  }

  .hero {
    gap: 1rem;
    padding-block: 4rem 3rem;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  h1 {
    margin-block: 1.25rem;
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-assurance {
    gap: 0.7rem 1.1rem;
  }

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

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 500px;
    height: 500px;
  }

  .privacy-card {
    min-width: 0;
    padding: 0.6rem;
  }

  .privacy-card-top {
    top: 10%;
    left: -1%;
  }

  .privacy-card-bottom {
    right: -1%;
    bottom: 11%;
  }

  .mini-icon {
    width: 31px;
    height: 31px;
  }

  .privacy-card strong {
    font-size: 0.7rem;
  }

  .privacy-card small {
    font-size: 0.59rem;
  }

  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.85rem;
  }

  .section {
    padding-block: 5.8rem;
  }

  .section-heading h2,
  .workflow h2,
  .download-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.35rem);
  }

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

  .feature-card,
  .feature-card-accent {
    min-height: 280px;
    grid-column: 1;
  }

  .feature-card-wide {
    display: block;
  }

  .feature-card-wide .feature-icon {
    margin-bottom: 2rem;
  }

  .redaction-demo {
    min-height: 190px;
    margin-top: 2rem;
  }

  .workflow-visual {
    min-height: 640px;
  }

  .tool-chip-one {
    left: -1%;
  }

  .tool-chip-two {
    right: -1%;
  }

  .screen-showcase {
    min-height: 0;
    border-radius: 22px;
  }

  .screen-tabs {
    grid-template-columns: repeat(4, 148px);
  }

  .screen-stage {
    min-height: 710px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding: 2rem 1.3rem 0;
    text-align: center;
  }

  .screen-stage-copy {
    max-width: 400px;
    margin-inline: auto;
  }

  .stage-device {
    width: min(280px, 84vw);
  }

  .no-js-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .download-section {
    padding-top: 0;
  }

  .download-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .download-copy > p:not(.kicker) {
    margin-inline: auto;
  }

  .download-copy .button {
    max-width: 250px;
  }

  .download-visual {
    min-height: 260px;
    grid-row: 1;
  }

  .veil-logo-large {
    width: 130px;
    height: 130px;
    border-radius: 34px;
  }

  .ring-a {
    width: 240px;
    height: 240px;
  }

  .ring-b {
    width: 320px;
    height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding-block: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
