:root {
  --bg: #0f172a;
  --bg-soft: #111d36;
  --text: #e2e8f0;
  --muted: #b7c0d5;
  --primary: #22d3ee;
  --primary-strong: #06b6d4;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(226, 232, 240, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1e293b 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  padding: 1.5rem 0 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.nav__links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero__content {
  margin-top: 4rem;
  max-width: 740px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.65rem 1rem;
  color: #031324;
  background: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--primary-strong);
}

.button--ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.button--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(34, 211, 238, 0.08);
}

.section {
  padding: 3rem 0;
}

.grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.card,
.screen-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.2rem;
}

.section--alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.screen-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
}

.screen-card h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.35rem;
}

.footer {
  padding: 2rem 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__links {
  display: inline-flex;
  gap: 1rem;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--primary);
}

.legal {
  max-width: 760px;
}

.legal ul {
  padding-left: 1.15rem;
}

.muted {
  color: var(--muted);
}

code {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  padding: 0.1rem 0.35rem;
}


.support-card {
  margin-top: 1.25rem;
}
