:root {
  color-scheme: dark;
  --bg: #07090d;
  --surface: #12151b;
  --surface-2: #181c23;
  --text: #f5f7fb;
  --muted: #9da3ae;
  --line: rgba(255,255,255,.09);
  --accent: #ff4d57;
  --green: #33d17a;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,77,87,.10), transparent 26rem),
    linear-gradient(180deg, #090b10 0%, var(--bg) 40%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7,9,13,.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
  padding: 84px 0 72px;
}

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

h1, h2, h3 {
  line-height: 1.06;
  letter-spacing: -.045em;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 720;
}

.hero .lead {
  margin: 26px 0 0;
  max-width: 650px;
  color: #d9dde5;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.45;
}

.hero .copy {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}



.app-store-cta {
  margin-top: 32px;
}

.app-store-cta a {
  display: inline-block;
  line-height: 0;
}

.app-store-badge {
  display: block;
  height: 52px;
  width: auto;
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-store-cta a:hover .app-store-badge {
  opacity: .90;
  transform: translateY(-1px);
}

.phone-stage {
  display: flex;
  justify-content: center;
  align-items: end;
  min-width: 0;
}

.phone-stage img {
  display: block;
  width: min(350px, 100%);
  height: auto;
  filter: drop-shadow(0 35px 55px rgba(0,0,0,.50));
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
}

.card .number {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.screenshot-section {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  justify-content: center;
  gap: 56px;
  align-items: start;
}

.screenshot {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.screenshot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.45));
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.privacy-item {
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.privacy-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.privacy-item span { color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}

.contact h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
}

.contact-copy {
  color: var(--muted);
  font-size: 18px;
}

.contact-copy a {
  color: var(--text);
  text-underline-offset: 4px;
}

.disclaimer {
  margin-top: 40px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: #777f8d;
  font-size: 13px;
  line-height: 1.65;
}

footer {
  padding: 32px 0 54px;
  color: #777f8d;
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #8e95a1;
  text-decoration: none;
}

.legal {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 120px;
}

.legal h1 {
  font-size: clamp(42px, 7vw, 68px);
}

.legal h2 {
  margin: 48px 0 14px;
  font-size: 25px;
}

.legal p, .legal li {
  color: #b0b6c0;
  font-size: 17px;
}

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

.legal .meta {
  margin: 18px 0 42px;
  color: #7f8793;
}

.legal hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

@media (max-width: 820px) {
  .nav-links a:not(:last-child) { display: none; }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 68px;
  }

  .hero-copy { text-align: left; }

  .phone-stage img {
  display: block;
  width: min(350px, 100%);
  height: auto;
  filter: drop-shadow(0 35px 55px rgba(0,0,0,.50));
}

@media (max-width: 520px) {
  .container,
  .legal {
    width: min(100% - 28px, var(--max));
  }

  .nav { min-height: 62px; }

  .hero { padding-top: 52px; }

  h1 { font-size: 49px; }

  .card { padding: 22px; }

  .section { padding: 58px 0; }

  .screenshot {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
