.privacy {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 13vw, 190px) 0;
  background:
    radial-gradient(circle at 80% 38%, rgb(23 120 255 / 22%), transparent 28%),
    var(--navy);
  color: var(--white);
}

.privacy::after {
  position: absolute;
  right: -18vw;
  bottom: -30vw;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgb(77 166 255 / 16%);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 10vw rgb(77 166 255 / 3%), 0 0 0 20vw rgb(77 166 255 / 2%);
}

.privacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 5vw, 88px);
}

.privacy-lead {
  max-width: 700px;
  margin-top: 30px;
  color: rgb(255 255 255 / 60%);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.8;
}

.privacy-list {
  margin-top: 56px;
  border-top: 1px solid rgb(255 255 255 / 13%);
}

.privacy-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}

.privacy-list dt {
  color: var(--signal-light);
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-list dd {
  color: rgb(255 255 255 / 72%);
  font-size: 15px;
}

.privacy-device {
  justify-self: center;
  width: 350px;
  max-width: 100%;
  transform: rotate(2deg);
}

.faq-draft {
  padding: clamp(100px, 12vw, 170px) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 5vw, 88px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 720;
  list-style: none;
  transition: color 160ms var(--ease);
}

.faq-list summary:hover,
.faq-list details[open] summary {
  color: var(--signal-ink);
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--signal);
  content: "+";
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 46px 26px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle, rgb(255 255 255 / 11%) 0.7px, transparent 0.8px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 65%);
}

.cta-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgb(77 166 255 / 18%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 110px rgb(77 166 255 / 2.6%), 0 0 0 220px rgb(77 166 255 / 1.8%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 100px 0;
}

.cta-inner > img {
  width: 132px;
  height: 132px;
  margin-bottom: 26px;
  border-radius: 30px;
  box-shadow: 0 34px 74px rgb(0 0 0 / 32%);
}

.final-cta h2 {
  max-width: 900px;
}

.store-badge-large {
  margin-top: 36px;
}

.store-badge-large img {
  height: 52px;
}

.cta-note {
  margin-top: 18px;
  color: rgb(255 255 255 / 40%);
  font-size: 13px;
}

.site-footer {
  padding: 30px 0;
  background: var(--footer);
  color: rgb(255 255 255 / 40%);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: rgb(255 255 255 / 75%);
  font-weight: 750;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

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

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

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.75fr);
    gap: 30px;
    min-height: 900px;
  }

  .hero-device {
    right: 0;
    width: 330px;
  }

  .vault-device {
    right: 5%;
  }

  .connection-stage {
    grid-template-columns: minmax(250px, 1fr) 120px minmax(250px, 1fr);
  }
}

@media (max-width: 960px) {
  .intro-grid,
  .workflow-heading,
  .workflow-stage,
  .connections-heading,
  .privacy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .connections-heading > p:last-child {
    grid-column: 1;
    max-width: 680px;
    padding-top: 0;
  }

  .workflow-proof {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .privacy-copy,
  .faq-grid > div:first-child {
    max-width: 760px;
  }

  .privacy-device {
    width: 340px;
  }

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

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

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 100px;
  }

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

  .hero-product {
    width: min(680px, 100%);
    min-height: 740px;
    margin-inline: auto;
  }

  .hero-device {
    right: 12%;
  }

  .vault-stage {
    min-height: 950px;
  }

  .vault-device {
    top: 190px;
    right: 50%;
    width: 340px;
    transform: translateX(50%) rotate(-2deg);
  }

}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
  }

  .site-nav {
    gap: 10px;
    min-height: 74px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .nav-download {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .site-nav-actions {
    gap: 6px;
  }

  .language-menu summary {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-grid {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.8vw, 4rem);
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.85rem);
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-product {
    min-height: 620px;
  }

  .hero-device {
    right: 3%;
    width: 285px;
  }

  .intro-grid,
  .workflow-heading,
  .connections-heading {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .connections-heading > p:last-child {
    grid-column: 1;
  }

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

  .vault-stage {
    min-height: 840px;
    border-radius: 28px;
  }

  .vault-stage-copy {
    top: 44px;
    left: 28px;
  }

  .vault-device {
    top: 170px;
    width: 290px;
  }

  .deadline-scale {
    bottom: 34px;
    left: 28px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .timeline-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .timeline-step p {
    grid-column: 2;
  }

  .workflow-proof {
    min-height: 610px;
  }

  .workflow-device {
    width: 300px;
  }

  .workflow-callout {
    right: 0;
    bottom: 34px;
  }

  .widget-hero-shot {
    padding: 9px;
    border-radius: 24px;
  }

  .widget-hero-shot img {
    border-radius: 17px;
  }

  .connection-stage {
    grid-template-columns: 1fr;
    min-height: 1180px;
  }

  .connection-stage::before {
    inset: 8% 4%;
  }

  .connection-device {
    width: 280px;
  }

  .connection-device-number {
    justify-self: start;
  }

  .connection-device-account {
    justify-self: end;
    transform: rotate(3deg);
  }

  .connection-line {
    width: 150px;
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .privacy-list div {
    grid-template-columns: 110px 1fr;
  }

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

  .footer-inner > p {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }
}

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

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