/* Bolteniq demo pages — shared brand styles. Mobile-first, dark. */
:root {
  --bg: #0b1020;
  --bg-2: #121a30;
  --card: #151d33;
  --text: #f4f7ff;
  --muted: #9aa6c4;
  --accent: #3b82f6;
  --accent-2: #22d3ee;
  --border: #253253;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(59,130,246,0.18), transparent 60%),
    var(--bg);
}

.wrap {
  width: 100%;
  max-width: 640px;
  padding: 24px 18px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 18px;
}
.brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 18px rgba(59,130,246,0.7);
}

.headline {
  text-align: center;
  margin: 2px 0 0;
}
.headline h1 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 6px;
}
.headline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.stage {
  width: 100%;
  display: flex;
  justify-content: center;
}
.stage video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 82vh;
  max-height: 82dvh;
  background: transparent;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
/* Cap how wide each orientation can get; the video's own ratio + max-height do the
   sizing, so there's no letterboxing and no black filler. */
.stage.portrait { max-width: 460px; margin: 0 auto; }
.stage.landscape { max-width: 720px; margin: 0 auto; }

.cta {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px;
  text-align: center;
}
.cta p { margin: 0; color: var(--muted); font-size: 15px; }
.cta a.button {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.cta a.button:active { transform: translateY(1px); }

.foot {
  color: var(--muted);
  font-size: 12px;
  opacity: 0.7;
  margin-top: 6px;
  text-align: center;
}

@media (min-width: 700px) {
  .headline h1 { font-size: 26px; }
}
