:root {
  --bg-top: #121822;
  --bg-bottom: #080b11;
  --card: #161d29;
  --text: #f2f5fa;
  --dim: rgba(242, 245, 250, 0.62);
  --hero: #4e9cff;
  --gold: #e2b64c;
  --line: rgba(242, 245, 250, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom) 60%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
nav .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
nav .brand img { width: 34px; height: 34px; border-radius: 8px; }
nav .brand span { font-weight: 600; font-size: 17px; }
nav .links a {
  color: var(--dim); text-decoration: none; font-size: 14px; margin-left: 26px;
}
nav .links a:hover { color: var(--text); }

.hero { display: flex; align-items: center; gap: 48px; padding: 64px 0 40px; }
.hero-copy { flex: 1.1; }
.hero-copy h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: clamp(40px, 6vw, 64px); font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.hero-copy .sub { font-size: 19px; color: var(--dim); max-width: 26em; margin-bottom: 28px; }
.hero-shot { flex: 0.9; text-align: center; }
.hero-shot img { max-width: 100%; height: auto; max-height: 640px; }

.badge {
  display: inline-block; background: var(--hero); color: #071018;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  text-decoration: none;
}
.badge.soon { background: rgba(78, 156, 255, 0.16); color: var(--hero); cursor: default; }
.pricing-line { margin-top: 14px; font-size: 14px; color: var(--dim); }

section { padding: 56px 0; border-top: 1px solid var(--line); }
section h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: clamp(26px, 3.6vw, 36px); font-weight: 700; letter-spacing: -0.015em;
  margin-bottom: 10px;
}
section .lede { color: var(--dim); font-size: 17px; max-width: 38em; margin-bottom: 28px; }
.feature { display: flex; align-items: center; gap: 48px; }
.feature.flip { flex-direction: row-reverse; }
.feature .copy { flex: 1; }
.feature .shot { flex: 1; text-align: center; }
.feature .shot img { max-width: 100%; height: auto; border-radius: 14px; max-height: 460px; }
.feature .shot img.bare { border-radius: 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px;
}
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.card p { font-size: 14.5px; color: var(--dim); }
.card .dot { color: var(--hero); }

.prose { max-width: 44em; padding: 48px 0 80px; }
.prose h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 16px; }
.prose h2 { font-size: 21px; font-weight: 600; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--dim); font-size: 16.5px; }
.prose ul { padding-left: 22px; margin: 10px 0; }
.prose a { color: var(--hero); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .stamp { font-size: 13.5px; margin-top: 28px; opacity: 0.7; }

footer {
  border-top: 1px solid var(--line); padding: 30px 0 44px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--dim); font-size: 13.5px;
}
footer a { color: var(--dim); text-decoration: none; margin-right: 20px; }
footer a:hover { color: var(--text); }

@media (max-width: 820px) {
  .hero, .feature, .feature.flip { flex-direction: column; }
  .hero { padding-top: 32px; }
  nav .links a { margin-left: 16px; }
}
