/* Example product launch demo — illustrative styling only */
:root {
  --bg: #030306;
  --fg: #f4f2ff;
  --muted: rgba(244, 242, 255, 0.55);
  --a: #22d3ee;
  --b: #a78bfa;
  --card: rgba(12, 12, 20, 0.85);
  --line: rgba(167, 139, 250, 0.22);
  --glow: rgba(34, 211, 238, 0.15);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 50% at 50% -30%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(34, 211, 238, 0.08), transparent 50%);
}
.lp-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(3, 3, 6, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--a);
}
nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--fg);
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--b);
  margin-bottom: 16px;
}
.launch-live {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 480px;
}
h1#hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}
h1#hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--a), var(--b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-pri {
  background: linear-gradient(135deg, var(--a), #06b6d4);
  color: #020617;
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--fg);
}
.countdown-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  max-width: 420px;
}
.countdown-wrap span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
}
#countdown {
  display: flex;
  gap: 16px;
  font-variant-numeric: tabular-nums;
}
.cd-unit {
  text-align: center;
}
.cd-unit strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--a);
  line-height: 1.1;
}
.cd-unit small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.1;
  max-height: 520px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 80px var(--glow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 6, 0.5), transparent 40%);
  pointer-events: none;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
  max-width: 520px;
}
.stats-strip .stat {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: rgba(8, 8, 16, 0.6);
}
.stats-strip .stat:last-child {
  border-right: none;
}
.stats-strip .stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--a);
}
.stats-strip .stat span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
section.block {
  padding: 88px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
section.block h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 12px;
}
.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.spec-card {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.spec-k {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--b);
  margin-bottom: 8px;
}
.spec-v {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.quote-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 0;
  border-left: none;
}
.quote-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}
.quote-card footer {
  font-size: 13px;
  color: var(--fg);
  border: none;
  padding: 0;
  text-align: left;
}
.quote-card footer span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}
.faq-item {
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.faq-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--fg);
}
.faq-item span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
#cta {
  padding: 80px 40px 100px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
#cta h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.cta-note {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}
#waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
#waitlist-email {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #080810;
  color: var(--fg);
  outline: none;
  font-size: 15px;
}
#waitlist-msg {
  margin-top: 14px;
  font-size: 14px;
  min-height: 1.2em;
}
#waitlist-msg.ok {
  color: #34d399;
}
#waitlist-msg.err {
  color: #f87171;
}
footer.site-ft {
  padding: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
footer.site-ft a {
  color: var(--a);
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-visual {
    max-height: 360px;
    order: -1;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 200px;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stats-strip .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}
