:root {
  color-scheme: dark;
  --ink: #f4f7f7;
  --muted: #a6b0b8;
  --soft: #15191d;
  --paper: #080a0d;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.10);
  --green: #00d9a3;
  --blue: #0a84ff;
  --pink: #ff3b58;
  --gold: #ffb800;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 0.8px 0.8px, rgba(255, 255, 255, 0.16) 0.8px, transparent 0) 0 0 / 22px 22px,
    radial-gradient(circle at 78% 10%, rgba(0, 217, 163, 0.13), transparent 28%),
    radial-gradient(circle at 12% 42%, rgba(255, 184, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #080a0d 0%, #0d1013 52%, #080a0d 100%);
}

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

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

a:hover {
  color: var(--green);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.78fr);
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
  font-size: 18px;
  font-weight: 700;
}

.app-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9f7;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.app-icon img {
  width: 52px;
  height: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 1;
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 22px;
}

.app-store-badge {
  display: inline-flex;
  min-width: 178px;
  height: 56px;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: #050505;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.app-store-badge:hover,
.app-store-badge:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.app-store-badge:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.app-store-badge svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.app-store-badge span {
  display: grid;
  line-height: 1;
}

.app-store-badge span span {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0;
}

.app-store-badge strong {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(380px, 100%);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.48));
}

.phone-screenshot {
  width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
}

.section-heading p,
.closing-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.step-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
}

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

.section-heading.compact {
  margin-bottom: 26px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  min-height: 250px;
  padding: 24px;
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 8px;
  color: #06100d;
  font-weight: 800;
  background: var(--green);
}

.step-card p,
.feature-card p,
.screen-card figcaption {
  color: var(--muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(0, 217, 163, 0.15), rgba(10, 132, 255, 0.08)),
    var(--surface);
}

.photo-feature {
  grid-column: span 2;
}

.privacy-card {
  background:
    linear-gradient(135deg, rgba(255, 184, 0, 0.14), rgba(255, 255, 255, 0.04)),
    var(--surface);
}

.place-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.place-pills span {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.proof-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.proof-photos img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.screen-card {
  margin: 0;
  overflow: visible;
}

.screen-card figcaption {
  padding-top: 16px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.screen-art {
  position: relative;
  height: 530px;
  overflow: hidden;
  isolation: isolate;
}

.screen-art::before {
  content: "";
  position: absolute;
  inset: 124px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    #171b1f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.30);
}

.screen-art::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 18px;
  left: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.screen-device {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: clamp(300px, 88%, 360px);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.46));
}

.closing {
  padding-bottom: 70px;
}

.closing-panel {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 64px 28px;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(190, 255, 219, 0.46), transparent 32%),
    radial-gradient(circle at 82% 92%, rgba(0, 132, 255, 0.20), transparent 38%),
    linear-gradient(135deg, #00d987 0%, #0f9f72 42%, #075241 100%);
  border: 1px solid rgba(181, 255, 221, 0.34);
  box-shadow: 0 26px 86px rgba(0, 217, 135, 0.18);
}

.closing-panel .eyebrow,
.closing-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.closing-panel h2 {
  margin-bottom: 4px;
}

.closing-panel .app-store-badge {
  margin-top: 6px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.88);
}

.footer-inner {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner span {
  margin-right: auto;
  color: var(--ink);
  font-weight: 800;
}

.legal-page {
  background:
    radial-gradient(circle at 0.8px 0.8px, rgba(255, 255, 255, 0.15) 0.8px, transparent 0) 0 0 / 22px 22px,
    radial-gradient(circle at 78% 10%, rgba(0, 217, 163, 0.12), transparent 28%),
    #080a0d;
}

.legal-header {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 0;
}

.legal-brand {
  margin-bottom: 0;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.legal-card {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.legal-card h1 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: 58px;
}

.legal-card h2 {
  margin-top: 0;
  font-size: 28px;
}

.legal-card h3 {
  margin-top: 24px;
}

.legal-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-nav a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--green);
  border-color: rgba(0, 217, 163, 0.35);
}

.legal-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--green);
  font-weight: 700;
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

.note-box {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 184, 0, 0.34);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 184, 0, 0.12);
}

.note-box strong {
  color: var(--ink);
}

@media (max-width: 920px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

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

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-wide,
  .photo-feature {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 0.8px 0.8px, rgba(255, 255, 255, 0.15) 0.8px, transparent 0) 0 0 / 20px 20px,
      radial-gradient(circle at 70% 8%, rgba(0, 217, 163, 0.12), transparent 30%),
      #080a0d;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 58px 0;
  }

  .hero {
    padding-top: 30px;
    gap: 30px;
  }

  .brand-lockup {
    margin-bottom: 30px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 18px;
  }

  .phone-shell {
    width: min(300px, 100%);
  }

  .bento-grid,
  .proof-photos {
    grid-template-columns: 1fr;
  }

  .feature-wide,
  .photo-feature {
    grid-column: auto;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .footer-inner span {
    margin-right: 0;
  }

  .legal-header,
  .legal-main {
    width: min(100% - 28px, 920px);
  }

  .legal-main {
    padding-top: 38px;
    padding-bottom: 58px;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-card h1 {
    font-size: 38px;
  }

  .legal-card h2 {
    font-size: 25px;
  }
}
