:root {
  --bg: #070b14;
  --ink: #f4f7ff;
  --muted: #9aa6c2;
  --glass: rgba(16, 22, 38, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7c5cff;
  --accent-2: #4da3ff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, "Segoe UI", system-ui, sans-serif;
}

body {
  overflow-x: hidden;
}

a { color: #b9a8ff; text-decoration: none; }
a:hover { color: #fff; text-decoration: underline; }

.site {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.aurora-a {
  width: 420px;
  height: 420px;
  left: -80px;
  top: 80px;
  background: rgba(124, 92, 255, 0.22);
}

.aurora-b {
  width: 380px;
  height: 380px;
  right: -60px;
  bottom: 40px;
  background: rgba(77, 163, 255, 0.16);
}

.aurora-c {
  width: 260px;
  height: 260px;
  left: 40%;
  top: 30%;
  background: rgba(62, 232, 160, 0.08);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 700 18px/1 Outfit, sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-link:hover { color: var(--ink); text-decoration: none; }

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #141a30 url("../img/icon-512.png") center / cover no-repeat;
  box-shadow: 0 0 16px rgba(124, 92, 255, 0.45);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  color: #a9b4d0;
  font: 600 14px Outfit, sans-serif;
  text-decoration: none;
}

.nav a:hover,
.nav a.is-active { color: #fff; }

.site-main {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px 48px;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  width: 100%;
  color: #6f7b96;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0 48px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #a9b4d0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(180deg, #fff, #c8d2f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 0;
  font: 600 15px Outfit, sans-serif;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #8b6cff, #6a48f0);
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.28);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #9b80ff, #7454ff);
}

.btn-ghost {
  color: #e8edf8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-art {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: #0b1020;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 28px 0 12px;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44em;
}

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

.feature-card {
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: #a9b4d0;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.shot-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1020;
}

.shot-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-grid figcaption {
  padding: 8px 10px 10px;
  color: #8b95b3;
  font-size: 12px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  font: 600 14px Outfit, sans-serif;
  text-decoration: none;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.store-btn:hover { color: #fff; text-decoration: none; background: rgba(255, 255, 255, 0.14); }

.store-btn.is-soon {
  opacity: 0.55;
  cursor: default;
}

.store-ios { border-color: rgba(255, 255, 255, 0.18); }
.store-android { border-color: rgba(62, 232, 160, 0.28); }

.prose {
  max-width: 720px;
}

.prose h1 {
  margin: 8px 0 18px;
  font-size: 36px;
  letter-spacing: -0.03em;
}

.prose h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.prose p,
.prose li {
  color: #c5cee0;
  line-height: 1.6;
}

.prose ul { padding-left: 1.2em; }

.panel-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.panel-card h1 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 34px;
}

.panel-card .tag {
  text-align: center;
  color: var(--muted);
  margin: 0 0 22px;
}

.form-row {
  margin: 0 0 14px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  color: #a9b4d0;
  font-size: 13px;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 22, 0.7);
  color: var(--ink);
  font: 500 15px Outfit, sans-serif;
}

.form-row textarea { min-height: 140px; resize: vertical; }

.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.flash {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.flash-ok {
  background: rgba(62, 232, 160, 0.12);
  border: 1px solid rgba(62, 232, 160, 0.35);
  color: #b8ffe0;
}

.flash-err {
  background: rgba(255, 77, 109, 0.12);
  border: 1px solid rgba(255, 77, 109, 0.35);
  color: #ffd0da;
}

.mailto-line {
  text-align: center;
  margin: 18px 0 0;
  color: #8b95b3;
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: flex-start; }
  .nav { justify-content: flex-start; }
}
