:root {
  --bg: #f4f7fd;
  --surface: #ffffff;
  --surface-soft: #eef3ff;
  --text: #0d1b3e;
  --muted: #4b5b7d;
  --border: rgba(13, 27, 62, 0.12);
  --primary: #1459f5;
  --primary-strong: #0f42bc;
  --accent: #e63636;
  --shadow: 0 12px 28px rgba(11, 17, 35, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "SF Pro Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(600px 260px at 10% -10%, rgba(20, 89, 245, 0.17), transparent),
    radial-gradient(500px 240px at 90% 0%, rgba(230, 54, 54, 0.12), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--primary-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 6.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 4.6vw, 2rem);
}

h3 {
  font-size: 1.05rem;
}

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

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.row-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.row-wrap.compact {
  align-items: flex-end;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 253, 0.88);
}

.site-header .container {
  padding: 14px 0;
}

.site-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text);
  padding: 5px 8px;
  border-radius: 8px;
}

.site-nav a:hover {
  background: var(--surface-soft);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.02rem;
}

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

.brand-logo {
  border-radius: 9px;
  border: 1px solid var(--border);
  background: #fff;
}

.hero {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.79rem;
}

.lead {
  color: var(--muted);
  max-width: 620px;
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.sample-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.sample-label {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.sample-badge {
  font-size: 0.72rem;
  background: var(--surface-soft);
  color: var(--primary-strong);
  border: 1px solid rgba(20, 89, 245, 0.28);
  border-radius: 999px;
  padding: 4px 9px;
  font-weight: 700;
  line-height: 1;
}

.hero-card-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.hero-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section {
  padding: 34px 0;
}

.section-tight {
  padding: 12px 0 20px;
}

.section-tint {
  background: linear-gradient(to bottom, rgba(238, 243, 255, 0.8), rgba(238, 243, 255, 0));
}

.section-accent {
  background: linear-gradient(120deg, rgba(20, 89, 245, 0.15), rgba(230, 54, 54, 0.11));
}

.subhead {
  color: var(--muted);
  margin-top: 8px;
}

.trust-strip-inner {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-label {
  color: var(--text);
  font-weight: 700;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(13, 27, 62, 0.25);
}

.grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.card,
.shot-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
}

.mode-kicker {
  color: var(--primary-strong);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}

.mode-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 7px;
}

.shot-card {
  padding: 10px;
}

.shot-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.shots-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-card figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-slot {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  background: repeating-linear-gradient(
    -45deg,
    rgba(20, 89, 245, 0.06),
    rgba(20, 89, 245, 0.06) 10px,
    rgba(230, 54, 54, 0.05) 10px,
    rgba(230, 54, 54, 0.05) 20px
  );
}

.demo-video,
.demo-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.demo-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.waitlist-form {
  margin-top: 14px;
}

.waitlist-form input {
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.form-status {
  margin-top: 8px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  padding: 11px 16px;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
}

.btn-primary:hover {
  text-decoration: none;
  filter: brightness(0.97);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-soft);
  text-decoration: none;
}

.btn[disabled],
.btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 12px;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin-top: 8px;
  color: var(--muted);
}

.prose {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.prose h1,
.prose h2 {
  margin-bottom: 10px;
}

.prose h2 {
  margin-top: 20px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.todo-block {
  margin-top: 14px;
  border: 1px dashed rgba(13, 27, 62, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.todo-block p + p {
  margin-top: 8px;
}

.site-footer {
  margin-top: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

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

.disabled-link {
  color: #7b859b;
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.8;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    align-items: start;
  }

  .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .trust-strip-inner {
    justify-content: flex-start;
    border-radius: 14px;
  }
}
