:root {
  --bg: #0b0d10;
  --bg-2: #12151a;
  --ink: #f4f1ea;
  --muted: #9a958a;
  --line: rgba(244, 241, 234, 0.1);
  --teal: #2ee6c8;
  --teal-dim: rgba(46, 230, 200, 0.14);
  --radius: 20px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244,241,234,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
  z-index: 0;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
nav { display: flex; gap: 22px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
nav a:hover, nav a:focus-visible { color: var(--ink); }

.hero {
  padding: 120px 0 80px;
  text-align: center;
}
.hero .logo-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 36px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line), 0 24px 60px rgba(0,0,0,0.45);
}
.hero .logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 16px;
}
.wordmark {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: clamp(48px, 10vw, 88px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  line-height: 0.95;
}
h1 {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
}
.lead {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.stores {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  background: rgba(255,255,255,0.02);
}
.store small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.store b { font-weight: 600; }
.store:hover { border-color: rgba(46,230,200,0.4); }

.section { padding: 28px 0 8px; }
.section h2 {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: 28px;
  margin: 0 0 8px;
}
.section .sub {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 36rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 160px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-bottom: 18px;
}

.apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.app {
  border: 1px dashed rgba(244,241,234,0.16);
  border-radius: var(--radius);
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(46,230,200,0.05), transparent 50%), var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.app span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.app strong {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: 22px;
}

.contact {
  margin: 56px 0 24px;
  padding: 32px;
  border-radius: 24px;
  background: var(--teal-dim);
  border: 1px solid rgba(46,230,200,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact h2 { margin: 0 0 6px; font-size: 24px; }
.contact p { margin: 0; color: var(--muted); }
.contact a.mail {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}
.contact a.mail:hover { text-decoration: underline; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }
.legal { display: flex; gap: 16px; }

.page { padding: 56px 0 80px; max-width: 640px; }
.page h1 {
  font-size: 36px;
  margin: 0 0 16px;
}
.page p { color: var(--muted); }
.page a { color: var(--teal); }

@media (max-width: 760px) {
  .grid, .apps { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  nav { gap: 14px; }
}

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