:root {
  color-scheme: light;
  --black: #151515;
  --gray-700: #4d4d52;
  --gray-500: #737379;
  --gray-200: #e8e8ed;
  --gray-100: #f5f5f7;
  --blue: #087cf0;
  --blue-dark: #0066cc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--black);
  background: var(--white);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(8, 124, 240, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 15px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
}

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

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

.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
}

.site-nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.nav-links a:hover {
  color: var(--blue-dark);
}

.release-label {
  color: var(--gray-500);
  font-weight: 500;
}

.hero-shell {
  background: var(--gray-100);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: clamp(52px, 10vw, 132px);
  min-height: 760px;
  padding: 76px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  font-size: clamp(3.25rem, 6.2vw, 5.2rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-copy {
  max-width: 610px;
  margin-top: 26px;
  color: var(--gray-700);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--blue-dark);
}

.price-note {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.price-note strong {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
}

.price-note a {
  color: var(--blue-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}

.plain-facts {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  list-style: none;
  flex-wrap: wrap;
}

.plain-facts li + li::before {
  margin-right: 10px;
  color: #b0b0b5;
  content: "•";
}

.phone-wrap {
  justify-self: center;
}

.phone {
  position: relative;
  width: 338px;
  padding: 10px;
  border: 2px solid #252525;
  border-radius: 52px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

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

.phone img {
  width: 100%;
  height: auto;
  border-radius: 41px;
}

.phone-caption {
  margin-top: 15px;
  color: var(--gray-500);
  font-size: 0.76rem;
  text-align: center;
}

.section {
  padding: 112px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 740;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.section-header > p:last-child {
  max-width: 650px;
  margin-top: 20px;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-200);
  list-style: none;
}

.step {
  padding: 28px 30px 0 0;
}

.step + .step {
  padding-left: 30px;
  border-left: 1px solid var(--gray-200);
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.step p {
  margin-top: 11px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.details-shell {
  background: var(--gray-100);
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(58px, 10vw, 130px);
  align-items: start;
}

.details-copy {
  position: sticky;
  top: 60px;
}

.details-copy p:last-child {
  margin-top: 20px;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.detail-list {
  border-top: 1px solid #d9d9dd;
}

.detail-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid #d9d9dd;
}

.detail-item svg {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.detail-item p {
  margin-top: 6px;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.detail-item p a {
  color: var(--blue-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(60px, 12vw, 150px);
  align-items: center;
}

.privacy-copy > h2 + p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--gray-700);
  font-size: 1.07rem;
}

.privacy-list {
  border-top: 1px solid var(--gray-200);
  list-style: none;
}

.privacy-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 650;
}

.privacy-list li::before {
  margin-right: 12px;
  color: var(--blue);
  content: "✓";
  font-weight: 800;
}

.document-section .privacy-list {
  margin-top: 20px;
}

.final-cta {
  padding: 104px 0;
  color: var(--white);
  background: #151515;
  text-align: center;
}

.final-cta img {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 16px;
}

.final-cta h2 {
  max-width: 800px;
  margin-inline: auto;
}

.final-cta > .wrap > p {
  max-width: 570px;
  margin: 20px auto 0;
  color: #b9b9bf;
  font-size: 1.03rem;
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  padding: 10px 16px;
  border: 1px solid #424247;
  border-radius: 12px;
  text-align: left;
}

.store-status svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.store-status small,
.store-status strong {
  display: block;
}

.store-status small {
  color: #a9a9ae;
  font-size: 0.67rem;
  line-height: 1.1;
}

.store-status strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.footer-inner {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--gray-500);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

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

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

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.document-main {
  background: var(--white);
}

.document-hero {
  padding: 86px 0 78px;
  background: var(--gray-100);
}

.document-hero-inner,
.document-content {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.document-hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 6vw, 4.75rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1;
}

.document-lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.document-meta {
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 0.84rem;
}

.document-content {
  padding-block: 76px 96px;
}

.document-section {
  padding: 30px 0 34px;
  border-top: 1px solid var(--gray-200);
}

.document-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.document-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.document-section p {
  margin-top: 12px;
  color: var(--gray-700);
  font-size: 0.98rem;
  line-height: 1.7;
}

.document-section a,
.contact-card a {
  color: var(--blue-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}

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

.faq-item {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--gray-200);
}

.faq-item dt {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-item dd {
  margin-top: 9px;
  color: var(--gray-700);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item dd a {
  color: var(--blue-dark);
  font-weight: 650;
  text-underline-offset: 3px;
}

.contact-card {
  margin-top: 56px;
  padding: 30px;
  border-radius: 18px;
  background: var(--gray-100);
}

.contact-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-card p {
  margin-top: 8px;
  color: var(--gray-700);
}

.contact-card a {
  display: inline-block;
  margin-top: 15px;
}

@media (max-width: 900px) {
  .nav-links a {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 68px;
    padding-top: 82px;
    text-align: center;
  }

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

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

  .details,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .details-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 30px, 1120px);
  }

  .site-nav {
    min-height: 64px;
  }

  .brand span,
  .release-label {
    display: none;
  }

  .nav-links::after {
    color: var(--gray-500);
    content: "Coming soon";
    font-size: 0.78rem;
    font-weight: 500;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 74px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.1rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .plain-facts {
    gap: 6px;
    font-size: 0.8rem;
  }

  .plain-facts li + li::before {
    margin-right: 6px;
  }

  .phone {
    width: min(320px, calc(100vw - 46px));
  }

  .section {
    padding: 82px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

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

  .step {
    padding: 26px 0 30px;
    border-bottom: 1px solid var(--gray-200);
  }

  .step + .step {
    padding-left: 0;
    border-left: 0;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .detail-item {
    grid-template-columns: 34px 1fr;
    gap: 16px;
  }

  .final-cta {
    padding: 82px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
  }

  .document-hero {
    padding: 64px 0 58px;
  }

  .document-hero-inner,
  .document-content {
    width: min(100% - 30px, 760px);
  }

  .document-content {
    padding-block: 56px 76px;
  }

  .contact-card {
    padding: 24px;
  }
}

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