:root {
  color: #f7f5fb;
  background: #0b0910;
  font-family:
    Inter, "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --accent: #a78bfa;
  --accent-bright: #c4b5fd;
  --surface: #15121c;
  --surface-raised: #1b1723;
  --line: rgb(255 255 255 / 10%);
  --muted: #a29aa9;
  --page: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 300px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 4%, rgb(113 77 190 / 18%), transparent 32rem),
    linear-gradient(180deg, #100c16 0, #0b0910 28rem, #09070d 100%);
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 8px;
  color: #0b0910;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  display: flex;
  width: var(--page);
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eee9f2;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav,
.footer-links {
  display: flex;
  gap: 25px;
}

.site-header nav a,
.footer-links a {
  color: #aaa2b2;
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-header nav a:hover,
.footer-links a:hover {
  color: #fff;
}

.hero {
  display: grid;
  width: var(--page);
  min-height: 680px;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  margin: 0 auto;
  padding: 70px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

h1 span {
  color: var(--accent-bright);
}

.lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: #b8afc3;
  font-size: 19px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  color: #130d1d;
  background: linear-gradient(135deg, #d7ccff, #a78bfa);
  box-shadow: 0 15px 36px rgb(109 74 183 / 22%);
}

.button--secondary {
  border-color: var(--line);
  color: #ded8e6;
  background: rgb(255 255 255 / 4%);
}

.microcopy {
  margin: 17px 0 0;
  color: #6f687a;
  font-size: 12px;
}

.hero__visual {
  position: relative;
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.hero__visual img,
.proof__image img {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 35px 90px rgb(0 0 0 / 48%);
}

.halo {
  position: absolute;
  inset: 10% -10%;
  border-radius: 50%;
  background: #7048bc;
  filter: blur(80px);
  opacity: 0.14;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 670px;
}

h2 {
  margin: 0;
  font-size: clamp(35px, 4.2vw, 57px);
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.section-heading > p:last-child,
.proof__copy > p,
.privacy-card > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.steps li,
.feature-list article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 2%));
}

.steps li {
  min-height: 225px;
  padding: 28px;
}

.steps li > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-bright);
  background: rgb(167 139 250 / 14%);
  font-size: 11px;
  font-weight: 800;
}

.steps h3,
.feature-list h3 {
  margin: 30px 0 9px;
  font-size: 19px;
}

.steps p,
.feature-list p,
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.proof {
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 95px);
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
}

.feature-list article {
  padding: 22px;
}

.feature-list h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.privacy-card {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: 170px 1fr;
  padding: 70px;
  border: 1px solid rgb(167 139 250 / 20%);
  border-radius: 30px;
  background:
    radial-gradient(circle at 5% 10%, rgb(167 139 250 / 15%), transparent 27rem),
    #141019;
}

.privacy-card__mark {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 35px;
  background: rgb(255 255 255 / 3%);
}

.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d6cfde;
  font-size: 12px;
}

.text-link {
  color: var(--accent-bright);
  font-weight: 750;
  text-decoration: none;
}

.faq__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 46px;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  color: #ece7f1;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.faq details p {
  padding-top: 15px;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta img {
  margin-bottom: 28px;
}

.final-cta > p:not(.eyebrow) {
  margin: 18px 0 29px;
  color: var(--muted);
}

footer {
  display: grid;
  width: var(--page);
  align-items: center;
  gap: 22px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  padding: 35px 0 55px;
  border-top: 1px solid var(--line);
}

footer > p {
  margin: 0;
  color: #67606f;
  font-size: 11px;
  grid-column: 1 / -1;
}

.page-main {
  width: min(780px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 85px 0 120px;
}

.page-main h1 {
  font-size: clamp(44px, 8vw, 68px);
}

.page-intro {
  margin: 24px 0 55px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal h2,
.support-content h2 {
  margin-top: 48px;
  font-size: 28px;
  letter-spacing: -0.025em;
}

.legal p,
.legal li,
.support-content p,
.support-content li {
  color: #b8afc3;
  font-size: 16px;
  line-height: 1.75;
}

.legal strong,
.support-content strong {
  color: #eee9f2;
}

.notice {
  margin: 34px 0;
  padding: 23px 25px;
  border: 1px solid rgb(167 139 250 / 23%);
  border-radius: 16px;
  background: rgb(167 139 250 / 8%);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 35px 0;
}

@media (max-width: 950px) {
  .hero,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero__visual {
    max-width: 760px;
    transform: none;
  }

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

  .proof__image {
    order: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

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

  .site-header nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 65px 0 80px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .lede {
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .steps,
  .feature-list,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  .privacy-card__mark {
    width: 110px;
    height: 110px;
  }

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

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

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