:root {
  --ink: #06132f;
  --ink-soft: #34415f;
  --blue: #1769ff;
  --blue-deep: #0752e9;
  --mint: #15c9ae;
  --ice: #edf6ff;
  --line: #dce7f3;
  --paper: #ffffff;
  --max: 1180px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 28px 80px rgba(22, 63, 128, 0.13);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(6, 19, 47, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px rgba(27, 61, 117, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(14, 97, 241, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #3e4c67;
  font-size: 14px;
  font-weight: 650;
}

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

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transition: transform 160ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--ink);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 9px 25px rgba(6, 19, 47, 0.16);
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.nav-cta svg,
.text-button svg,
.light-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f0f5fb;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  padding: 158px 0 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(84, 213, 255, 0.19), transparent 23%),
    linear-gradient(180deg, #f7fbff 0%, #fff 78%);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: 80px;
  width: 55%;
  height: 420px;
  transform: rotate(-8deg);
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(23, 105, 255, 0.09), rgba(21, 201, 174, 0.03));
  content: "";
  filter: blur(2px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  top: -190px;
  left: -130px;
  width: 450px;
  height: 450px;
  background: rgba(55, 145, 255, 0.08);
}

.hero-glow-two {
  right: 10%;
  bottom: 4%;
  width: 270px;
  height: 270px;
  background: rgba(21, 201, 174, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.96fr 0.94fr;
  gap: 75px;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 10px;
  border: 1px solid #d9e8fc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border: 3px solid #bfe6ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.08);
}

.hero h1 {
  max-width: 670px;
  margin: 25px 0 22px;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(92deg, var(--blue) 0%, #1689ff 55%, var(--mint) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.play-button {
  display: inline-flex;
  min-width: 196px;
  min-height: 64px;
  align-items: center;
  gap: 13px;
  padding: 9px 20px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 19, 47, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(6, 19, 47, 0.24);
}

.play-icon {
  width: 29px;
  height: 32px;
  flex: 0 0 auto;
}

.play-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.play-button small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.play-button strong {
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.text-button svg {
  transition: transform 160ms ease;
}

.text-button:hover svg {
  transform: translateX(4px);
}

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-trust svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-trust span {
  display: flex;
  flex-direction: column;
  color: #6d7890;
  font-size: 11px;
  line-height: 1.4;
}

.hero-trust strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 605px;
}

.phone-card {
  position: absolute;
  z-index: 3;
  top: -6px;
  left: 50%;
  width: min(390px, 76%);
  height: 620px;
  overflow: hidden;
  transform: translateX(-50%) rotate(1.7deg);
  border: 10px solid #08152d;
  border-bottom: 0;
  border-radius: 54px 54px 12px 12px;
  background: #fff;
  box-shadow: 0 42px 85px rgba(14, 70, 158, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.phone-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 25%);
  content: "";
  pointer-events: none;
}

.phone-card img {
  width: 100%;
  height: auto;
  margin-top: -1px;
}

.phone-top {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 50%;
  display: flex;
  width: 82px;
  height: 23px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071022;
}

.phone-top span:first-child {
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: #202c42;
}

.phone-top span:last-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f4f86;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

.orbit-two {
  width: 440px;
  height: 440px;
  border-color: rgba(21, 201, 174, 0.18);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 172px;
  padding: 12px 15px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(17, 67, 138, 0.17);
  backdrop-filter: blur(15px);
}

.float-card-storage {
  top: 83px;
  right: -25px;
  animation: float 4s ease-in-out infinite;
}

.float-card-private {
  bottom: 76px;
  left: -35px;
  animation: float 4.5s ease-in-out 0.4s infinite;
}

.float-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
}

.float-icon-blue {
  background: #e6f0ff;
  color: var(--blue);
}

.float-icon-green {
  background: #dbfaf4;
  color: #0ead95;
}

.float-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.float-card > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.float-card small {
  color: #7b879e;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.float-card strong {
  font-size: 13px;
}

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

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  margin-top: 25px;
  padding: 25px 30px;
  border: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 45px rgba(15, 62, 132, 0.06);
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

.hero-proof p {
  margin: 0;
  color: #77839a;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.section {
  padding: 122px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 54px;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
}

.section-kicker {
  margin: 0 0 14px;
}

.section-heading h2,
.walkthrough-copy h2,
.privacy-copy h2,
.faq-heading h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 57px);
  font-weight: 830;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.section-heading > p,
.section-intro,
.faq-heading > p {
  margin: 0;
  color: #66728a;
  font-size: 17px;
  line-height: 1.7;
}

.features-section {
  position: relative;
  background: #fff;
}

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

.feature-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid #dfe9f4;
  border-radius: var(--radius-lg);
  background: #f7fbff;
}

.feature-card-large {
  display: grid;
  min-height: 615px;
  background: linear-gradient(145deg, #f6fbff, #eef6ff);
  grid-column: 1 / -1;
  grid-template-columns: 1fr 0.85fr;
}

.feature-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.feature-card-blue {
  background: linear-gradient(145deg, #0a5ff3, #1f7aff);
  color: #fff;
}

.feature-card-mint {
  background: linear-gradient(150deg, #ebfffb, #dff8f5);
}

.feature-number {
  position: absolute;
  top: 31px;
  right: 34px;
  color: rgba(6, 19, 47, 0.22);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.feature-card-blue .feature-number {
  color: rgba(255, 255, 255, 0.55);
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 17px;
  background: #e6f0ff;
  color: var(--blue);
}

.feature-card-blue .feature-icon {
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
}

.feature-card-mint .feature-icon {
  background: #caf2ea;
  color: #0ca88e;
}

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

.feature-card h3 {
  max-width: 510px;
  margin: 0 0 15px;
  font-size: 32px;
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.feature-card p {
  max-width: 520px;
  margin: 0;
  color: #5d6b85;
  font-size: 16px;
}

.feature-card-blue p {
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #d9f7f1;
  color: #0aa58b;
  content: "✓";
  font-size: 12px;
}

.feature-shot {
  position: absolute;
  right: 58px;
  bottom: -270px;
  width: 330px;
  overflow: hidden;
  transform: rotate(3deg);
  border: 8px solid #0a172f;
  border-radius: 43px;
  background: #fff;
  box-shadow: 0 30px 65px rgba(17, 70, 152, 0.2);
}

.mini-bars {
  display: grid;
  margin-top: 43px;
  gap: 11px;
}

.mini-bars span {
  position: relative;
  display: block;
  width: var(--bar);
  height: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.mini-bars span::after {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.66);
  content: "";
}

.size-pill {
  display: grid;
  align-items: center;
  margin-top: 38px;
  padding: 17px 19px;
  border: 1px solid rgba(17, 146, 127, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  grid-template-columns: auto 1fr auto auto;
  gap: 10px;
}

.size-pill span {
  color: #617a78;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.size-pill strong {
  color: #0b9e87;
  font-size: 17px;
  text-align: center;
}

.size-pill svg {
  width: 19px;
  fill: none;
  stroke: #0b9e87;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.walkthrough-section {
  overflow: hidden;
  background: #f5f9fe;
}

.walkthrough-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 0.82fr;
  gap: 115px;
}

.walkthrough-copy h2 {
  max-width: 560px;
}

.section-intro {
  max-width: 570px;
  margin-top: 25px;
}

.steps {
  display: grid;
  margin: 45px 0 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.steps li {
  display: grid;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 19px;
  cursor: pointer;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.steps li:hover,
.steps li.is-active {
  border-color: #dce8f6;
  background: #fff;
  box-shadow: 0 12px 34px rgba(27, 76, 143, 0.07);
}

.steps li:hover {
  transform: translateX(3px);
}

.steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e6edf5;
  color: #66748e;
  font-size: 12px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.steps li.is-active > span {
  background: var(--blue);
  color: #fff;
}

.steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.steps p {
  margin: 0;
  color: #728097;
  font-size: 13px;
  line-height: 1.55;
}

.walkthrough-visual {
  position: relative;
  min-height: 650px;
}

.walkthrough-visual::before {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 156, 255, 0.18), rgba(21, 201, 174, 0.08) 52%, transparent 70%);
  content: "";
}

.walkthrough-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 355px;
  height: 650px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 9px solid #07132b;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 35px 75px rgba(11, 62, 140, 0.2);
}

.walkthrough-frame img {
  width: 100%;
  transition: opacity 160ms ease, transform 160ms ease;
}

.walkthrough-frame img.is-switching {
  transform: scale(0.985);
  opacity: 0;
}

.walkthrough-note {
  position: absolute;
  z-index: 3;
  right: -34px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid #dce8f5;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 38px rgba(21, 65, 126, 0.16);
}

.walkthrough-note svg {
  width: 31px;
  height: 31px;
  padding: 7px;
  border-radius: 9px;
  background: #daf8f2;
  fill: none;
  stroke: #0aa78d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.walkthrough-note span {
  display: flex;
  flex-direction: column;
  color: #738098;
  font-size: 10px;
}

.walkthrough-note strong {
  color: var(--ink);
  font-size: 13px;
}

.gallery-section {
  padding-bottom: 132px;
  overflow: hidden;
}

.gallery-heading {
  margin-bottom: 40px;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.gallery-controls button:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}

.gallery-controls svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-track {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  overflow-x: auto;
  margin-inline: auto;
  padding: 5px 0 30px;
  gap: 22px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track figure {
  width: 310px;
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
}

.gallery-track img {
  width: 100%;
  border: 1px solid #d9e5f2;
  border-radius: 29px;
  background: #eef5fc;
  box-shadow: 0 20px 55px rgba(17, 66, 135, 0.11);
}

.gallery-track figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 750;
}

.gallery-track figcaption span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

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

.privacy-card {
  position: relative;
  display: grid;
  min-height: 575px;
  overflow: hidden;
  padding: 72px 76px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 17% 40%, rgba(34, 119, 255, 0.35), transparent 25%),
    linear-gradient(135deg, #071633, #092855);
  color: #fff;
  grid-template-columns: 0.72fr 1fr;
  gap: 75px;
}

.privacy-card::after {
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.privacy-art {
  position: relative;
  min-height: 400px;
}

.privacy-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 315px;
  height: 315px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(102, 202, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 47px rgba(59, 139, 255, 0.06), 0 0 0 95px rgba(59, 139, 255, 0.03);
}

.privacy-shield {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  background: linear-gradient(150deg, rgba(51, 147, 255, 0.95), rgba(20, 204, 177, 0.86));
  box-shadow: 0 28px 65px rgba(0, 18, 61, 0.44), 0 0 38px rgba(53, 184, 255, 0.25);
}

.privacy-shield svg {
  width: 79px;
  fill: rgba(255, 255, 255, 0.12);
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.8;
}

.privacy-dot {
  position: absolute;
  z-index: 3;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: #2dd7ba;
  box-shadow: 0 0 0 7px rgba(45, 215, 186, 0.1);
}

.dot-one { top: 18%; left: 18%; }
.dot-two { right: 10%; bottom: 23%; }
.dot-three { bottom: 11%; left: 26%; width: 7px; height: 7px; background: #3f9dff; }

.privacy-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.privacy-copy .section-kicker {
  color: #6eead7;
}

.privacy-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-points {
  display: grid;
  margin: 29px 0 30px;
  gap: 12px;
}

.privacy-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.privacy-points svg {
  width: 21px;
  height: 21px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(64, 223, 198, 0.14);
  fill: none;
  stroke: #70ead9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.light-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 750;
}

.faq-section {
  background: #f7faff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading h2 {
  max-width: 440px;
}

.faq-heading > p {
  margin-top: 23px;
  font-size: 15px;
}

.faq-heading > a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.faq-list {
  border-top: 1px solid #d8e3f0;
}

.faq-list details {
  border-bottom: 1px solid #d8e3f0;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 87px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid #cbd8e8;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background: var(--ink);
  content: "";
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -6px 50px 28px 0;
  color: #68758d;
  font-size: 15px;
  line-height: 1.75;
}

.cta-section {
  padding: 110px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 77px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg, #e9f5ff, #f2fffc);
  text-align: center;
}

.cta-card::before,
.cta-card::after {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(23, 105, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.cta-card::before {
  top: -205px;
  left: -95px;
}

.cta-card::after {
  right: -150px;
  bottom: -210px;
}

.cta-card > img {
  position: relative;
  z-index: 2;
  margin: 0 auto 26px;
  border-radius: 27px;
  box-shadow: 0 20px 45px rgba(19, 99, 218, 0.2);
}

.cta-card h2 {
  position: relative;
  z-index: 2;
}

.cta-card > p:not(.section-kicker) {
  position: relative;
  z-index: 2;
  margin: 18px auto 28px;
  color: #65728b;
  font-size: 17px;
}

.play-button-light {
  position: relative;
  z-index: 2;
  justify-content: center;
}

.cta-spark {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  border-radius: 4px 12px 4px 12px;
  background: var(--blue);
}

.spark-one {
  top: 27%;
  left: 20%;
}

.spark-two {
  right: 19%;
  bottom: 25%;
  width: 13px;
  height: 13px;
  background: var(--mint);
}

.site-footer {
  padding: 78px 0 28px;
  background: #06132f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
}

.footer-brand img {
  box-shadow: none;
}

.footer-copy {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-label {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #70ead9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.legal-body {
  background: #f7faff;
}

.legal-main {
  padding-top: 82px;
}

.legal-hero {
  padding: 90px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 30%, rgba(53, 178, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #eef6ff, #f7faff);
}

.legal-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-hero > .shell > p:last-child {
  margin: 0;
  color: #68758d;
  font-size: 14px;
}

.legal-layout {
  display: grid;
  padding-top: 70px;
  padding-bottom: 110px;
  grid-template-columns: 220px 1fr;
  gap: 85px;
}

.legal-aside {
  position: sticky;
  top: 115px;
  display: flex;
  align-self: start;
  flex-direction: column;
  gap: 10px;
}

.legal-aside p {
  margin: 0 0 9px;
  color: #8a96aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-aside a {
  color: #62708a;
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease, transform 160ms ease;
}

.legal-aside a:hover {
  transform: translateX(3px);
  color: var(--blue);
}

.legal-content {
  max-width: 790px;
  padding: 52px 58px;
  border: 1px solid #e0e9f3;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(18, 62, 123, 0.06);
}

.legal-content section {
  scroll-margin-top: 120px;
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid #e5edf5;
}

.legal-content h2 {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 810;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.legal-content h3 {
  margin: 27px 0 10px;
  color: #1c2b49;
  font-size: 17px;
  font-weight: 780;
}

.legal-content p,
.legal-content li {
  color: #53617a;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23, 105, 255, 0.3);
  text-underline-offset: 3px;
}

.legal-content address {
  color: #53617a;
  font-size: 14px;
  font-style: normal;
  line-height: 1.85;
}

.legal-callout {
  margin: 27px 0 0;
  padding: 25px 27px;
  border: 1px solid #cee5ff;
  border-radius: 19px;
  background: #f0f7ff;
}

.legal-callout > strong {
  color: var(--blue);
  font-size: 15px;
}

.legal-callout ul {
  margin-bottom: 0;
}

.link-list {
  list-style: none;
  padding-left: 0 !important;
}

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

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

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

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

  .js [data-reveal] {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    min-height: 0;
    padding-top: 142px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 70px);
  }

  .phone-card {
    width: 82%;
  }

  .float-card-storage {
    right: -4px;
  }

  .float-card-private {
    left: -6px;
  }

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

  .hero-proof p {
    display: none;
  }

  .hero-proof div:first-of-type {
    border-left: 0;
  }

  .walkthrough-grid {
    gap: 55px;
  }

  .walkthrough-note {
    right: -5px;
  }

  .privacy-card {
    padding: 58px 48px;
    grid-template-columns: 0.62fr 1fr;
    gap: 48px;
  }

  .faq-grid {
    gap: 70px;
  }
}

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

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .site-nav {
    position: fixed;
    top: 72px;
    right: 17px;
    left: 17px;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-12px);
    border: 1px solid #dce7f2;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    gap: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav > a:not(.nav-cta) {
    padding: 12px 5px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-grid,
  .walkthrough-grid,
  .privacy-card,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-visual {
    width: min(100%, 580px);
    margin: 20px auto 0;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card-large {
    min-height: 720px;
    grid-template-columns: 1fr;
  }

  .feature-shot {
    right: 50%;
    bottom: -110px;
    width: 300px;
    transform: translateX(50%) rotate(2deg);
  }

  .walkthrough-copy {
    text-align: center;
  }

  .walkthrough-copy h2,
  .section-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .steps {
    text-align: left;
  }

  .walkthrough-visual {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .gallery-track {
    width: min(calc(100% - 34px), var(--max));
  }

  .privacy-card {
    padding: 48px 40px 58px;
    gap: 35px;
  }

  .privacy-art {
    min-height: 300px;
  }

  .privacy-ring {
    width: 245px;
    height: 245px;
  }

  .faq-heading {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .legal-aside {
    position: static;
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    padding-bottom: 8px;
    gap: 16px;
  }

  .legal-aside p {
    display: none;
  }

  .legal-aside a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: #fff;
  }
}

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

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

  .brand {
    font-size: 20px;
  }

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

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(46px, 14.5vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 17px;
  }

  .hero-trust {
    align-items: flex-start;
    gap: 15px;
  }

  .hero-trust > div {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 535px;
    margin-top: 40px;
  }

  .phone-card {
    width: 290px;
    height: 530px;
    border-width: 7px;
    border-radius: 42px 42px 8px 8px;
  }

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

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

  .float-card {
    min-width: 142px;
    padding: 9px;
  }

  .float-card-storage {
    top: 62px;
    right: -4px;
  }

  .float-card-private {
    bottom: 68px;
    left: -2px;
  }

  .float-icon {
    width: 33px;
    height: 33px;
  }

  .float-card strong {
    font-size: 11px;
  }

  .hero-proof {
    overflow-x: auto;
    margin-top: 20px;
    padding: 18px 14px;
    border-radius: 18px 18px 0 0;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }

  .hero-proof div {
    padding-left: 15px;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading h2,
  .walkthrough-copy h2,
  .privacy-copy h2,
  .faq-heading h2,
  .cta-card h2 {
    font-size: 38px;
  }

  .section-heading > p,
  .section-intro {
    font-size: 15px;
  }

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

  .feature-card {
    min-height: 350px;
    padding: 31px 27px;
    border-radius: 27px;
  }

  .feature-card-large {
    min-height: 675px;
  }

  .feature-card h3 {
    font-size: 28px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-shot {
    bottom: -95px;
    width: 270px;
  }

  .size-pill {
    grid-template-columns: 1fr auto;
  }

  .size-pill svg,
  .size-pill span:last-child {
    display: none;
  }

  .steps li {
    padding: 15px 10px;
  }

  .walkthrough-visual {
    min-height: 565px;
  }

  .walkthrough-frame {
    width: 300px;
    height: 550px;
    border-width: 7px;
    border-radius: 42px;
  }

  .walkthrough-note {
    right: -1px;
    bottom: 48px;
  }

  .gallery-section {
    padding-bottom: 90px;
  }

  .gallery-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 15px;
  }

  .gallery-heading .section-kicker {
    grid-column: 1 / -1;
  }

  .gallery-heading h2 {
    font-size: 34px;
  }

  .gallery-controls button {
    width: 42px;
    height: 42px;
  }

  .gallery-track {
    width: calc(100% - 28px);
  }

  .gallery-track figure {
    width: min(78vw, 310px);
  }

  .privacy-card {
    width: calc(100% - 20px);
    padding: 36px 25px 44px;
    border-radius: 30px;
  }

  .privacy-art {
    min-height: 245px;
  }

  .privacy-shield {
    width: 115px;
    height: 115px;
    border-radius: 33px;
  }

  .privacy-shield svg {
    width: 60px;
  }

  .privacy-ring {
    width: 200px;
    height: 200px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 5px;
  }

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

  .cta-card {
    padding: 57px 20px;
    border-radius: 30px;
  }

  .spark-one {
    left: 9%;
  }

  .spark-two {
    right: 9%;
  }

  .footer-grid {
    gap: 45px;
  }

  .footer-links {
    gap: 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .legal-main {
    padding-top: 72px;
  }

  .legal-hero {
    padding: 65px 0 52px;
  }

  .legal-layout {
    padding-top: 35px;
    padding-bottom: 75px;
  }

  .legal-content {
    padding: 31px 24px;
    border-radius: 22px;
  }

  .legal-content h2 {
    font-size: 22px;
  }
}
