:root {
  --bg: #071028;
  --bg-soft: #0c1b3d;
  --card: rgba(11, 26, 58, 0.72);
  --border: rgba(152, 178, 255, 0.2);
  --text: #ebf1ff;
  --muted: #a8b6d9;
  --brand: #31d88f;
  --brand-2: #1fa0ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -20%, #1e315f 0%, rgba(30, 49, 95, 0) 50%),
    linear-gradient(180deg, #08122c 0%, #050b1b 100%);
  color: var(--text);
  min-height: 100vh;
}

h1,
h2,
.brand {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: var(--brand-2);
  left: -80px;
  top: 140px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--brand);
  right: -80px;
  top: 380px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(7, 16, 40, 0.75);
  border-bottom: 1px solid rgba(158, 182, 255, 0.14);
  z-index: 10;
}

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

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  padding: 90px 0 54px;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 12px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.04;
  margin: 0;
  max-width: 900px;
}

.subhead {
  margin-top: 20px;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.6;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  color: #03161f;
  background: linear-gradient(135deg, var(--brand) 0%, #60ffc2 100%);
}

.btn-secondary {
  color: #ecf3ff;
  background: rgba(148, 176, 255, 0.14);
  border: 1px solid rgba(154, 181, 255, 0.3);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.screenshot-section {
  margin: 30px auto 80px;
}

.section-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 10px;
}

.section-copy p {
  margin: 0;
  color: var(--muted);
}

.shot-frame {
  margin: 24px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(175, 196, 255, 0.28);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  background: #09132d;
}

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

.workflow {
  margin: 8px auto 90px;
}

.workflow h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

.steps {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.step {
  padding: 16px;
  border-radius: 12px;
  background: rgba(10, 24, 53, 0.65);
  border: 1px solid rgba(163, 187, 255, 0.18);
  color: #d9e5ff;
}

.step span {
  display: inline-block;
  margin-right: 10px;
  color: var(--brand);
  font-weight: 700;
}

.launch {
  margin: 0 auto 90px;
  border-radius: 16px;
  border: 1px solid rgba(169, 191, 255, 0.24);
  background: linear-gradient(145deg, rgba(17, 37, 80, 0.85), rgba(9, 20, 44, 0.85));
  padding: 30px;
}

.launch h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.launch p {
  margin: 10px 0 20px;
  color: var(--muted);
  max-width: 720px;
}

.site-footer {
  border-top: 1px solid rgba(153, 179, 255, 0.15);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 22px 0 30px;
  color: #9db0dd;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 60px;
  }

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