:root {
  --bg: #05060a;
  --panel: #0d1018;
  --panel-soft: #111422;
  --accent: #6ba3ff;
  --accent-strong: #8bb3ff;
  --text-main: #f7f7fb;
  --text-soft: #c4c8d6;
  --text-muted: #8f93a4;
  --border: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

* { box-sizing: border-box; }
html {
	background-color: #05060a;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 10% 0, #1a2340 0, #05060a 55%);
  font-family: 'Inter', system-ui, -apple-system, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 18px 40px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-main);
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  margin-left: 16px;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  padding: 36px 20px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.12), rgba(8, 10, 18, 0.9));
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy .eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
}

.lead {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 12px;
}

.chip.subtle {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.45s ease;
}

.hero-shot {
  min-width: 100%;
  background: linear-gradient(155deg, #1a2336 0%, #0c0f1a 60%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0;
}

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

.hero-shot figcaption {
  margin: 10px 12px 12px;
  color: var(--text-soft);
  font-size: 13px;
}

.hero-shot.phone {
  max-width: 520px;
  margin: 0 auto;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 2px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(107, 163, 255, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #6ba3ff, #6790ff);
  color: #0a0c18;
  box-shadow: 0 12px 24px rgba(103, 144, 255, 0.3);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover { transform: translateY(-1px); }

.apps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 34px 0 12px;
}

.app-card {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-soft) 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow);
}

.app-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.app-card h2 { margin: 0 0 8px; }

.app-desc {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.app-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 4px;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-soft);
  text-decoration: none;
  margin-right: 12px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero-shot {
    min-width: 100%;
  }
  .hero-shot.phone {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 28px 16px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .lead {
    font-size: 15px;
  }
  .hero-visual {
    margin-top: 4px;
  }
  .hero-shot.phone {
    max-width: 300px;
  }
  .hero-shot figcaption {
    font-size: 12px;
  }
}
