:root {
  color-scheme: dark;
  --ink: #080909;
  --ink-soft: #0d0e0e;
  --panel: #111313;
  --paper: #f3f0e8;
  --muted: #aaa9a3;
  --line: rgba(243, 240, 232, 0.12);
  --line-strong: rgba(243, 240, 232, 0.2);
  --violet: #bba7ff;
  --violet-deep: #7451df;
  --mint: #7df1bd;
  --warm: #d8b98b;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --radius: 24px;
  --radius-lg: 40px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --page: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 7%, rgba(116, 81, 223, 0.13), transparent 28%),
    radial-gradient(circle at 12% 42%, rgba(125, 241, 189, 0.045), transparent 24%),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
  background: var(--violet);
  color: var(--ink);
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.page {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 7.3vw, 108px);
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.88;
}

.display em,
.section-title em,
.feature-copy h3 em,
.download-content h2 em {
  color: var(--violet);
  font-weight: 400;
}

.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 5.1vw, 76px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 0.98;
}

.section-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 23px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(243, 240, 232, 0.08);
}

.button-primary:hover {
  background: white;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 0;
}

.nav {
  display: grid;
  width: var(--page);
  min-height: 66px;
  align-items: center;
  margin: auto;
  border: 1px solid rgba(243, 240, 232, 0.1);
  border-radius: 999px;
  padding: 8px 9px 8px 19px;
  background: rgba(9, 10, 10, 0.74);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto 1fr;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 24px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(187, 167, 255, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-self: center;
}

.nav-links a {
  color: #c7c5bf;
  font-size: 12px;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: white;
}

.nav-action {
  min-height: 48px;
  padding-inline: 19px;
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.hero {
  position: relative;
  display: grid;
  min-height: 920px;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 80px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(42px, 7vw, 100px);
}

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

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #bab8b1;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--paper);
  font-weight: 600;
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: #898983;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.trust-line span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  box-shadow: 0 0 12px rgba(125, 241, 189, 0.8);
}

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

.orbit {
  position: absolute;
  width: min(570px, 47vw);
  aspect-ratio: 1;
  border: 1px solid rgba(187, 167, 255, 0.13);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  border: 1px solid rgba(243, 240, 232, 0.06);
  border-radius: inherit;
  content: "";
}

.orbit::before {
  inset: 13%;
}

.orbit::after {
  inset: 27%;
}

.orbit-dot {
  position: absolute;
  top: 5%;
  right: 21%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 22px var(--violet);
}

.phone {
  position: relative;
  z-index: 3;
  width: 296px;
  height: 612px;
  overflow: hidden;
  border: 7px solid #252727;
  border-radius: 54px;
  background: #050505;
  box-shadow: var(--shadow), inset 0 0 0 1px #424444;
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #050505;
  content: "";
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  transform: rotate(2.4deg);
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) rotate(2.4deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.4deg);
  }
}

.protection-card,
.wave-card {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line-strong);
  background: rgba(17, 19, 19, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.protection-card {
  top: 18%;
  left: -10%;
  display: flex;
  width: 184px;
  align-items: center;
  gap: 11px;
  border-radius: 20px;
  padding: 14px 16px;
}

.protection-card small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.protection-card strong {
  display: block;
  margin-top: 1px;
  color: #d9ffed;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.protection-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(125, 241, 189, 0.08), 0 0 18px rgba(125, 241, 189, 0.75);
  flex: 0 0 auto;
  animation: protection-pulse 2.4s ease-in-out infinite;
}

@keyframes protection-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.78; }
  50% { transform: scale(1.08); opacity: 1; }
}

.wave-card {
  right: -10%;
  bottom: 15%;
  width: 205px;
  border-radius: 22px;
  padding: 15px 17px 13px;
}

.wave-card p {
  margin: 3px 0 0;
  color: #d6d3cb;
  font-size: 11px;
  font-weight: 600;
}

.wave-card svg {
  width: 100%;
  height: 44px;
  overflow: visible;
}

.wave-line {
  fill: none;
  stroke: var(--mint);
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  stroke-linecap: round;
  stroke-width: 2;
  animation: draw-wave 3.8s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(125, 241, 189, 0.5));
}

@keyframes draw-wave {
  0% { stroke-dashoffset: 280; }
  45%, 80% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -280; }
}

.recognition-wrap {
  padding: 70px 0 120px;
}

.recognition {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  grid-template-columns: 210px minmax(0, 1fr);
}

.recognition::after {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(216, 185, 139, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(216, 185, 139, 0.025), 0 0 0 110px rgba(216, 185, 139, 0.018);
}

.recognition-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 50px 28px;
  color: var(--warm);
}

.recognition-time strong {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.recognition-time span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.recognition-copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
  padding: clamp(48px, 7vw, 86px);
}

.recognition-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.recognition-copy p span {
  color: var(--warm);
  font-style: italic;
}

.process {
  padding: 130px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.section-index {
  color: #666863;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.process-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  position: relative;
  min-height: 360px;
  padding: 42px 34px 38px;
  border-right: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.022);
}

.process-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--violet);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.process-card h3 {
  margin: 62px 0 14px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

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

.process-label {
  position: absolute;
  right: 28px;
  bottom: 30px;
  color: #62645f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase {
  padding: 100px 0 150px;
}

.feature {
  display: grid;
  min-height: 710px;
  align-items: center;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(60px, 10vw, 150px);
}

.feature + .feature {
  margin-top: 130px;
}

.feature:nth-child(even) .feature-visual {
  order: 2;
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 48px 48px;
}

.feature-visual::before {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(116, 81, 223, 0.16);
  content: "";
  filter: blur(70px);
}

.feature:nth-child(even) .feature-visual::before {
  background: rgba(125, 241, 189, 0.09);
}

.feature .phone {
  width: 270px;
  height: auto;
  aspect-ratio: 0.472;
  border-width: 6px;
  border-radius: 49px;
  transform: none;
}

.feature:nth-child(even) .phone {
  transform: none;
}

.feature .phone::before {
  display: none;
}

.inspiration-screenshot {
  object-position: center top;
}

.home-screenshot,
.protection-screenshot {
  object-position: center top;
}

.feature .phone img {
  object-fit: contain;
  background: #000;
}

.feature-copy h3 {
  max-width: 610px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.feature-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: #d1cfc8;
  font-size: 13px;
  font-weight: 600;
}

.feature-list li::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  content: "";
}

.principles {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0c0c;
}

.principles-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.principle-symbol {
  position: relative;
  display: grid;
  width: min(380px, 100%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(187, 167, 255, 0.2);
  border-radius: 50%;
}

.principle-symbol::before,
.principle-symbol::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.principle-symbol::before {
  inset: 15%;
  border: 1px solid var(--line);
}

.principle-symbol::after {
  width: 10px;
  height: 10px;
  background: var(--violet);
  box-shadow: 0 0 24px var(--violet);
  animation: orbit-dot 9s linear infinite;
}

@keyframes orbit-dot {
  from { transform: rotate(0deg) translateX(161px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(161px) rotate(-360deg); }
}

.principle-symbol span {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 116px);
  font-style: italic;
  letter-spacing: -0.06em;
}

.principle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.principle-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: #b8b6b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.disclaimer {
  max-width: 610px;
  margin-top: 34px;
  border-left: 2px solid var(--violet);
  padding-left: 17px;
  color: #868782;
  font-size: 11px;
  line-height: 1.7;
}

.privacy {
  padding: 150px 0;
}

.privacy-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(125, 241, 189, 0.24);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 12% 15%, rgba(125, 241, 189, 0.08), transparent 31%), var(--panel);
  grid-template-columns: 1fr 0.82fr;
}

.privacy-copy {
  padding: clamp(48px, 7vw, 90px);
}

.privacy-copy .eyebrow {
  color: var(--mint);
}

.privacy-list {
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(125, 241, 189, 0.17);
  margin: 0;
  padding: 40px clamp(35px, 5vw, 68px);
  list-style: none;
}

.privacy-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 22px 0 22px 36px;
  color: #d8d6cf;
  font-size: 13px;
  font-weight: 600;
}

.privacy-list li:last-child {
  border-bottom: 0;
}

.privacy-list li::before {
  position: absolute;
  top: 26px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 4px var(--panel), inset 0 0 0 8px var(--mint);
}

.pricing {
  padding: 110px 0 150px;
}

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

.price-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 55px);
  background: var(--panel);
}

.price-card.featured {
  border-color: rgba(187, 167, 255, 0.34);
  background: #14131a;
}

.price-card.featured::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(116, 81, 223, 0.19);
  content: "";
  filter: blur(50px);
}

.discount-badge {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 4vw, 44px);
  right: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(125, 241, 189, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(125, 241, 189, 0.08);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.price-name {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price {
  display: block;
  margin-top: 23px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
}

.price-card > p {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-card .button {
  position: absolute;
  z-index: 2;
  right: clamp(32px, 5vw, 55px);
  bottom: clamp(32px, 5vw, 55px);
  left: clamp(32px, 5vw, 55px);
}

.faq {
  padding: 130px 0 160px;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(60px, 10vw, 150px);
}

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

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

summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 29px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--violet);
  outline-offset: 5px;
}

summary::before,
summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 16px;
  height: 1px;
  background: var(--violet);
  content: "";
  transition: transform 180ms ease;
}

summary::after {
  transform: rotate(90deg);
}

details[open] summary::after {
  transform: rotate(0);
}

details p {
  max-width: 680px;
  margin: -4px 0 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.download {
  padding: 70px 0 160px;
}

.download-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 550px;
  align-items: end;
  border: 1px solid rgba(187, 167, 255, 0.23);
  border-radius: var(--radius-lg);
  padding: clamp(42px, 8vw, 96px);
  background: radial-gradient(circle at 75% 50%, rgba(116, 81, 223, 0.26), transparent 32%), #111113;
}

.download-card::before {
  position: absolute;
  top: -190px;
  right: -40px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(187, 167, 255, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(187, 167, 255, 0.025), 0 0 0 140px rgba(187, 167, 255, 0.015);
}

.download-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.download-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 98px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.download-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 27px 0 35px;
  color: #bbb8b3;
  font-size: 17px;
}

.site-footer {
  padding: 0 0 110px;
}

.footer-grid {
  display: grid;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 35px;
  color: #777873;
  font-size: 11px;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

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

.footer-note {
  max-width: 340px;
  justify-self: end;
  text-align: right;
}

.mobile-cta {
  position: fixed;
  z-index: 45;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  border: 1px solid rgba(243, 240, 232, 0.22);
  border-radius: 999px;
  padding: 7px;
  background: rgba(9, 10, 10, 0.82);
  backdrop-filter: blur(18px);
}

.mobile-cta .button {
  width: 100%;
  min-height: 49px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 17px;
    background: rgba(12, 13, 13, 0.96);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 8px; font-size: 14px; }
  .nav-action { display: none; }
  .menu-toggle { display: grid; }

  .hero {
    min-height: auto;
    padding-top: 180px;
    grid-template-columns: 1fr;
  }

  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 700px; }
  .orbit { width: min(570px, 88vw); }
  .recognition { grid-template-columns: 160px 1fr; }
  .feature { grid-template-columns: 1fr 1fr; gap: 52px; }
  .privacy-card { grid-template-columns: 1fr; }
  .privacy-list { border-top: 1px solid rgba(125, 241, 189, 0.17); border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { order: 3; grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 32px, 680px); }
  body { padding-bottom: 74px; }
  .site-header { padding-top: 10px; }
  .nav { min-height: 60px; }
  .brand-logo { width: 22px; height: 26px; }
  .display { font-size: clamp(58px, 19vw, 82px); }

  .hero { padding-top: 145px; padding-bottom: 35px; }
  .hero-lead { margin-top: 27px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 30px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 620px; margin-top: 10px; }

  .phone { width: 246px; height: 510px; border-width: 6px; border-radius: 46px; }
  .hero-phone { transform: rotate(1deg); }
  .protection-card { top: 16%; left: -2%; width: 174px; }
  .wave-card { right: -2%; bottom: 14%; width: 165px; }

  .recognition-wrap { padding: 50px 0 90px; }
  .recognition { grid-template-columns: 1fr; }
  .recognition-time { align-items: flex-start; border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 30px; }
  .recognition-copy { padding: 39px 30px 48px; }
  .recognition-copy p { font-size: 31px; }

  .process, .principles, .privacy, .pricing, .faq { padding-top: 90px; padding-bottom: 90px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 42px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 34px 10px 45px; }
  .process-card h3 { margin-top: 38px; }
  .process-label { display: none; }

  .showcase { padding: 60px 0 100px; }
  .feature, .principles-grid, .faq-grid { grid-template-columns: 1fr; }
  .feature { gap: 45px; }
  .feature + .feature { margin-top: 110px; }
  .feature:nth-child(even) .feature-visual { order: initial; }
  .feature-visual { min-height: 570px; }
  .feature .phone { width: 230px; height: auto; }

  .principle-symbol { width: min(320px, 90vw); margin: auto; }
  @keyframes orbit-dot {
    from { transform: rotate(0deg) translateX(135px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(135px) rotate(-360deg); }
  }

  .privacy-card { border-radius: 28px; }
  .privacy-copy { padding: 43px 28px; }
  .privacy-list { padding: 24px 28px 35px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 405px; }
  .faq-grid { gap: 45px; }

  .download { padding: 40px 0 95px; }
  .download-card { min-height: 560px; border-radius: 28px; padding: 38px 28px; }
  .download-content h2 { font-size: clamp(55px, 17vw, 78px); }
  .download-content .button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { order: initial; grid-column: auto; justify-content: flex-start; }
  .footer-note { justify-self: start; text-align: left; }
  .mobile-cta { display: block; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
