:root {
  color-scheme: dark;
  --bg: #060709;
  --surface: rgba(20, 21, 27, 0.82);
  --surface-strong: #141820;
  --text: #fbfbfd;
  --muted: #aeb2bd;
  --soft: #747a89;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(82, 176, 255, 0.34);
  --rose: #ffb0aa;
  --cyan: #28b8ff;
  --blue: #477df6;
  --violet: #bd25d9;
  --mint: #76e8b4;
  --max: 1180px;
  --radius: 26px;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(40, 184, 255, 0.13), transparent 32rem),
    radial-gradient(circle at 90% 14%, rgba(189, 37, 217, 0.11), transparent 30rem),
    radial-gradient(circle at 52% 56%, rgba(255, 176, 170, 0.055), transparent 34rem),
    linear-gradient(180deg, #060709 0%, #090d14 48%, #060709 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 9, 0.8);
  backdrop-filter: blur(22px);
}

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

.brand,
.nav-links,
.nav-actions,
.hero-actions,
.meta-row,
.privacy-list li,
.footer-links,
.store-button {
  display: flex;
  align-items: center;
}

.brand {
  text-decoration: none;
}

.brand img {
  width: 174px;
  height: auto;
}

.nav-links {
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-actions {
  gap: 10px;
}

.button,
.store-button {
  min-height: 50px;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(40, 184, 255, 0.42);
  border-radius: 999px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 56%, var(--violet));
  color: #fff;
  box-shadow: 0 18px 46px rgba(71, 125, 246, 0.22);
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
}

.button:hover,
.store-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 23px 54px rgba(71, 125, 246, 0.3);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 74px;
  padding: 78px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(118, 232, 180, 0.1);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7.1vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  background: linear-gradient(90deg, var(--cyan), #92a5ff 52%, #df66de);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(35px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.lead,
.section-copy,
.feature-card p,
.step p,
.privacy-card p,
.store-copy p,
.cta-panel p,
.legal-intro,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 21px);
}

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

.store-button svg {
  width: 19px;
  height: 19px;
}

.meta-row {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.meta-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7dbe3;
  font-size: 12px;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -12% 4%;
  border-radius: 50%;
  background: conic-gradient(from 215deg, rgba(40, 184, 255, 0.42), rgba(71, 125, 246, 0.03), rgba(189, 37, 217, 0.36), rgba(255, 176, 170, 0.28), rgba(40, 184, 255, 0.42));
  filter: blur(54px);
  opacity: 0.34;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid #343b47;
  border-radius: 42px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 1440 / 3088;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  top: 0;
  right: 4%;
  width: min(340px, 74%);
  transform: rotate(2.2deg);
}

.app-chip {
  position: absolute;
  left: 0;
  top: 74px;
  z-index: 2;
  width: 235px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 20px;
  background: rgba(11, 16, 24, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.app-chip img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  margin-bottom: 16px;
}

.app-chip strong,
.app-chip span {
  display: block;
}

.app-chip strong {
  font-size: 19px;
}

.app-chip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.local-badge {
  position: absolute;
  left: 18px;
  bottom: 84px;
  z-index: 3;
  border: 1px solid rgba(118, 232, 180, 0.32);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(8, 18, 16, 0.9);
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.section {
  padding: 94px 0;
}

.section-bordered {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.023);
}

.section-head {
  max-width: 770px;
  margin-bottom: 38px;
}

.section-copy {
  max-width: 730px;
  margin-bottom: 0;
  font-size: 18px;
}

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

.feature-card,
.step,
.privacy-card,
.cta-panel,
.policy article,
.screenshot-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.feature-card {
  min-height: 242px;
  border-radius: var(--radius);
  padding: 27px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(40, 184, 255, 0.08);
  color: var(--cyan);
  font-size: 19px;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 22px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.store-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  align-items: center;
  gap: 48px;
}

.store-art {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #061522;
  box-shadow: var(--shadow);
}

.store-art img {
  width: 100%;
  height: auto;
}

.store-copy p {
  margin-bottom: 0;
  font-size: 17px;
}

.store-copy .button {
  margin-top: 26px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 270px;
  border-radius: var(--radius);
  padding: 72px 24px 26px;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step p {
  margin-bottom: 0;
  font-size: 15px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 54px;
}

.privacy-card {
  border-color: var(--line-strong);
  border-radius: 30px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(40, 184, 255, 0.08), transparent 42%),
    var(--surface);
}

.privacy-card p {
  margin-bottom: 0;
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  gap: 12px;
  color: #e0e3e9;
  line-height: 1.5;
  font-weight: 700;
}

.privacy-list li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(118, 232, 180, 0.12);
  color: var(--mint);
  font-size: 13px;
}

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

.screenshot-card {
  border-radius: 28px;
  padding: 15px;
}

.screenshot-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 1440 / 3088;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-card figcaption {
  padding: 16px 5px 4px;
}

.screenshot-card strong,
.screenshot-card span {
  display: block;
}

.screenshot-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: 30px;
  padding: 40px;
  background:
    linear-gradient(120deg, rgba(40, 184, 255, 0.08), transparent 35%),
    linear-gradient(300deg, rgba(189, 37, 217, 0.08), transparent 38%),
    var(--surface);
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
}

.disclaimer {
  max-width: 880px;
  margin: 22px auto 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 38px 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  margin-top: 3px;
  color: var(--soft);
  font-size: 13px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.legal-hero {
  max-width: 900px;
  padding: 84px 0 42px;
}

.legal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 80px);
}

.legal-intro {
  max-width: 830px;
  margin-bottom: 0;
  font-size: 19px;
}

.legal-intro code,
.policy code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8ebf0;
  font-size: 0.9em;
}

.date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.date-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: #d8dce4;
  font-size: 12px;
  font-weight: 760;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.legal-summary div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-summary strong,
.legal-summary span {
  display: block;
}

.legal-summary strong {
  color: var(--mint);
  font-size: 13px;
}

.legal-summary span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding: 18px 0 94px;
}

.toc {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: rgba(12, 15, 21, 0.82);
}

.toc strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover,
.toc a:focus-visible {
  color: var(--cyan);
}

.policy {
  display: grid;
  gap: 16px;
}

.policy article {
  scroll-margin-top: 104px;
  border-radius: 22px;
  padding: 30px;
}

.policy h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.policy p {
  margin-bottom: 15px;
  font-size: 16px;
}

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

.policy ul {
  margin: 12px 0 18px;
  padding-left: 23px;
}

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

.policy a {
  color: var(--cyan);
}

.brand:focus-visible,
.button:focus-visible,
.store-button:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible,
.toc a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

  .hero,
  .privacy-layout,
  .store-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 26px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .feature-grid,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    columns: 2;
  }

  .toc strong {
    column-span: all;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 146px;
  }

  .nav-actions .button {
    min-height: 40px;
    padding: 0 13px;
  }

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

  h1 {
    font-size: clamp(45px, 14vw, 62px);
  }

  .hero-actions,
  .hero-actions .button,
  .hero-actions .store-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-phone {
    right: 0;
    width: min(290px, 76%);
  }

  .app-chip {
    top: 44px;
    width: 190px;
    padding: 16px;
  }

  .app-chip img {
    width: 60px;
    height: 60px;
  }

  .local-badge {
    left: 0;
    bottom: 48px;
  }

  .section {
    padding: 68px 0;
  }

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

  .feature-card,
  .step {
    min-height: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 58px;
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .toc {
    columns: 1;
  }

  .policy article {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
