:root {
  color-scheme: dark;
  --bg: #07080c;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f6f3ef;
  --muted: rgba(246, 243, 239, 0.68);
  --faint: rgba(246, 243, 239, 0.42);
  --accent: #d64b3f;
  --accent-2: #ff7866;
  --success: #86d19b;
  --shadow: rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1120px;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 75, 63, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(255, 120, 102, 0.12), transparent 30rem),
    linear-gradient(145deg, #090a10 0%, #0f0d11 48%, #07080c 100%);
  color: var(--text);
}

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

.page {
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(24px);
  background: rgba(7, 8, 12, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(214, 75, 63, 0.95), rgba(105, 26, 30, 0.95));
  box-shadow: 0 14px 32px rgba(214, 75, 63, 0.3);
}

.brand-wave {
  width: 16px;
  height: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2px;
}

.brand-wave i,
.wave i {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: currentColor;
}

.brand-wave i:nth-child(1) { height: 8px; }
.brand-wave i:nth-child(2) { height: 16px; }
.brand-wave i:nth-child(3) { height: 12px; }
.brand-wave i:nth-child(4) { height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 2px;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.hero {
  min-height: calc(100dvh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding: 76px 22px 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(214, 75, 63, 0.16);
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(214, 75, 63, 0.18);
  color: var(--text);
}

.privacy-badge-main {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.privacy-badge-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow: 0 18px 42px rgba(214, 75, 63, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
  max-width: 660px;
}

.trust-pill {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 13px;
}

.phone {
  width: min(100%, 410px);
  margin-left: auto;
  border-radius: 46px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line-strong);
  box-shadow: 0 36px 90px var(--shadow);
}

.phone-screen {
  min-height: 660px;
  border-radius: 34px;
  padding: 28px 22px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    #090a0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(214, 75, 63, 0.18);
  filter: blur(18px);
}

.phone-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.phone-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.phone-subtitle {
  margin-top: 8px;
  color: var(--faint);
  line-height: 1.35;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.mini-sliders {
  width: 18px;
  height: 18px;
  display: grid;
  gap: 4px;
}

.mini-sliders i {
  height: 2px;
  border-radius: 999px;
  background: var(--muted);
}

.app-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.app-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
}

.app-card p {
  color: var(--muted);
  line-height: 1.45;
}

.record-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wave-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(214, 75, 63, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.wave {
  width: 26px;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 2px;
}

.wave i:nth-child(1) { height: 8px; }
.wave i:nth-child(2) { height: 18px; }
.wave i:nth-child(3) { height: 12px; }
.wave i:nth-child(4) { height: 22px; }
.wave i:nth-child(5) { height: 14px; }
.wave i:nth-child(6) { height: 9px; }

.record-meta strong {
  display: block;
  margin-bottom: 4px;
}

.record-meta span {
  color: var(--faint);
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(214, 75, 63, 0.16);
  color: var(--accent-2);
}

.section {
  padding: 76px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin-bottom: 0;
}

.section-head p,
.legal-intro {
  color: var(--muted);
  line-height: 1.65;
  font-size: 18px;
}

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

.feature-card,
.legal-card {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.062);
}

.feature-card h3,
.legal-card h2,
.legal-card h3 {
  margin-bottom: 12px;
}

.feature-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--line);
}

.step {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.064);
}

.step-number {
  color: var(--accent-2);
  font-weight: 900;
  margin-bottom: 36px;
}

.privacy-band {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(214, 75, 63, 0.18), transparent 56%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 26px;
  align-items: center;
}

.privacy-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.privacy-band > * {
  position: relative;
}

.privacy-title-accent {
  display: block;
  color: var(--accent-2);
}

.privacy-band p {
  color: var(--muted);
  line-height: 1.65;
}

.privacy-list {
  display: grid;
  gap: 10px;
}

.privacy-list span {
  display: block;
  border-radius: 16px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
  color: var(--muted);
}

.privacy-list .privacy-list-strong {
  color: var(--text);
  background: rgba(214, 75, 63, 0.2);
  border-color: rgba(255, 120, 102, 0.34);
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 44px;
  color: var(--faint);
}

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

.footer a {
  color: var(--muted);
  margin-left: 16px;
}

.legal-hero {
  padding: 78px 0 36px;
}

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

.legal-grid {
  display: grid;
  gap: 16px;
  padding-bottom: 80px;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.updated {
  color: var(--accent-2);
  font-weight: 800;
}

@media (max-width: 880px) {
  .hero,
  .section-head,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .phone {
    margin: 0 auto;
  }

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

@media (max-width: 620px) {
  .nav-inner {
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 54px;
  }

  .trust-row,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 560px;
  }

  .privacy-badge {
    align-items: flex-start;
    border-radius: 20px;
    flex-direction: column;
    padding: 8px;
  }

  .privacy-badge-note {
    padding: 0 8px 4px;
    white-space: normal;
  }

  .section {
    padding: 54px 0;
  }

  .footer-inner {
    display: grid;
  }

  .footer a {
    margin: 0 14px 0 0;
  }
}
