:root {
  --bg: #070a14;
  --card: rgba(19, 26, 48, 0.72);
  --card-solid: #131a30;
  --border: rgba(127, 180, 255, 0.16);
  --text: #e9edf7;
  --muted: #9aa7c4;
  --accent: #7fb4ff;
  --accent-deep: #4d7fff;
  --flame: #ffa45c;
  --ok: #5fd39a;
  --warn: #ffd47f;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(77, 127, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 35%, rgba(255, 130, 70, 0.07), transparent 60%),
    var(--bg);
  color: var(--text);
  font: 18px/1.65 system-ui, -apple-system, "Segoe UI", sans-serif;
  min-height: 100vh;
}
#stars { position: fixed; inset: 0; z-index: -1; opacity: 0.55; pointer-events: none; }

.wrap { max-width: 1400px; margin: 0 auto; padding: 0 28px 90px; }

#splash {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(900px 600px at 50% 110%, rgba(255, 130, 70, 0.16), transparent 60%),
    radial-gradient(1100px 700px at 80% -10%, rgba(77, 127, 255, 0.14), transparent 60%),
    var(--bg);
  animation: splash-out 0.5s ease 1.6s forwards;
}
@keyframes splash-out { to { opacity: 0; visibility: hidden; } }
.splash-rocket .ship { animation: liftoff 1.7s cubic-bezier(0.55, 0, 0.85, 0.6) forwards; }
@keyframes liftoff {
  0% { transform: translate(0, 0); }
  8% { transform: translate(-1px, 2px); }
  16% { transform: translate(1px, 0); }
  24% { transform: translate(-1px, 1px); }
  32% { transform: translate(1px, 2px); }
  100% { transform: translate(0, -130vh); }
}
.splash-rocket .flame { transform-origin: 50px 162px; animation: flicker 0.12s ease-in-out infinite alternate; }
.splash-rocket .flame2 { animation-duration: 0.09s; }
@keyframes flicker { from { transform: scaleY(0.75); } to { transform: scaleY(1.15); } }

.livebar {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 9px 16px; font-size: 0.92rem; font-weight: 600; text-align: center;
  background: linear-gradient(90deg, rgba(77, 127, 255, 0.18), rgba(255, 130, 70, 0.14));
  border-bottom: 1px solid rgba(127, 180, 255, 0.2);
}
.livebar .livemsg { display: inline; }
.livebar .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); vertical-align: middle; margin-right: 8px;
  animation: livepulse 1.6s ease-in-out infinite; }
.livebar.confirmed .dot { background: var(--ok); }
.livebar.verifying .dot { background: var(--warn); }
@keyframes livepulse { 50% { opacity: 0.35; } }
.livebar a { color: var(--accent); text-decoration: none; white-space: nowrap; }
.livebar a:hover { text-decoration: underline; }

.watch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.watch-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; font-size: 0.92rem; }
.watch-item b { display: block; margin-bottom: 3px; }
.watch-item .soon { color: var(--warn); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; }
.watch-item p { color: var(--muted); margin: 0; }

.hero { text-align: left; margin-top: 14px; }
.hero h1 { margin: 0 0 18px; }
.hero .sub { max-width: none; }
.hero .card { max-width: none; margin: 32px 0 0; }
.hero .demo { max-width: none; margin: 46px 0 0 !important; }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 34px; gap: 16px; flex-wrap: wrap;
}
.logo { font-weight: 800; font-size: 1.15rem; text-decoration: none; letter-spacing: 0.2px;
  background: linear-gradient(90deg, var(--accent), var(--flame));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
nav .links a { color: var(--muted); text-decoration: none; margin-left: 18px; font-size: 0.95rem; }
nav .links a:hover { color: var(--text); }

h1 { font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.12; letter-spacing: -0.5px; margin-bottom: 14px; }
h1 .glow { background: linear-gradient(90deg, var(--accent), var(--flame));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.sub { color: var(--muted); font-size: 1.2rem; max-width: 760px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
h2 { font-size: 1.5rem; margin: 48px 0 16px; letter-spacing: -0.2px; }
.card h2, .card h3 { margin-top: 0; }

form.signup { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
input[type=email] {
  flex: 1; min-width: 220px; padding: 13px 16px; border-radius: 10px;
  border: 1px solid rgba(127, 180, 255, 0.28); background: rgba(7, 10, 22, 0.8);
  color: var(--text); font-size: 1rem; outline: none;
}
input[type=email]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(127, 180, 255, 0.15); }
button {
  padding: 13px 26px; border: none; border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #06080f; font-weight: 800; font-size: 1rem;
  box-shadow: 0 4px 22px rgba(77, 127, 255, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
button:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(77, 127, 255, 0.5); }
#signup-msg { margin-top: 10px; font-size: 0.95rem; }

.status-line { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(127, 180, 255, 0.08); font-size: 0.97rem; flex-wrap: wrap; }
.status-line:last-child { border-bottom: none; }
.badge { font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.badge.watching { color: var(--accent); background: rgba(127, 180, 255, 0.12); border: 1px solid rgba(127, 180, 255, 0.3); }
.badge.verifying { color: var(--warn); background: rgba(255, 212, 127, 0.1); border: 1px solid rgba(255, 212, 127, 0.3); }
.badge.confirmed { color: var(--ok); background: rgba(95, 211, 154, 0.12); border: 1px solid rgba(95, 211, 154, 0.35);
  animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 14px rgba(95, 211, 154, 0.45); } }

.steps { display: grid; gap: 16px; }
@media (min-width: 980px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { display: flex; gap: 14px; align-items: baseline;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 22px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.step b { color: var(--flame); font-size: 1.5rem; min-width: 1.1em; }

.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; margin-top: 8px; }
.guide-card { display: block; text-decoration: none; color: var(--text);
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px;
  transition: transform 0.15s ease, border-color 0.15s ease; }
.guide-card:hover { transform: translateY(-3px); border-color: rgba(127, 180, 255, 0.45); }
.guide-card .t { font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
.guide-card .d { color: var(--muted); font-size: 0.9rem; }
.guide-card .arrow { color: var(--accent); font-size: 0.9rem; margin-top: 10px; display: inline-block; }

article { margin-top: 10px; max-width: 820px; margin-left: auto; margin-right: auto; }
article h1 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); margin: 8px 0 18px; }
article h2 { font-size: 1.35rem; margin: 38px 0 12px; color: var(--text); }
article h2::after { content: ""; display: block; width: 44px; height: 3px; margin-top: 8px;
  background: linear-gradient(90deg, var(--accent), var(--flame)); border-radius: 2px; }
article h3 { font-size: 1.1rem; margin: 26px 0 10px; color: var(--accent); }
article p, article li { color: #cdd6ea; }
article p { margin: 14px 0; line-height: 1.75; }
article ul, article ol { padding-left: 24px; margin: 14px 0; }
article li { margin: 8px 0; line-height: 1.7; }
article a { color: var(--accent); }
article strong { color: var(--text); }
article em:last-of-type { color: var(--muted); }
.placeholder-pill { display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--warn);
  border: 1px dashed rgba(255, 212, 127, 0.45); border-radius: 999px; padding: 2px 10px; vertical-align: middle; }
.verify-flag { color: #ff9d9d; background: rgba(255, 100, 100, 0.08); border-radius: 6px; padding: 1px 6px; font-size: 0.85em; }

.fine { color: var(--muted); font-size: 0.85rem; margin-top: 48px; line-height: 1.6; }
