@font-face {
  font-family: 'Montserrat';
  src: url('/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
:root {
  --sidebar: #050b17;
  --bg: #04070e;
  --panel: #0b1422;
  --muted-panel: #121b2c;
  --text: #eff6ff;
  --muted: #8fa3bb;
  --accent: #ffc71e;
  --teal: #20c3c7;
  --blue: #2562fa;
  --border: rgba(255,255,255,0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.wordmark { font-family: 'Montserrat', sans-serif; font-weight: 600; }
.wordmark .gold { color: var(--accent); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(4,7,14,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); font-size: 19px; }
.brand img { width: 34px; height: 34px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
nav .nav-links a:not(.btn) {
  display: none;
}
nav .nav-links a:not(.btn)[href="/support/"],
nav .nav-links a:not(.btn)[href="/legal/privacy/"] {
  display: inline-flex;
}
@media (max-width: 720px) { .nav-links a.hide-m { display: none; } }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #141002;
  font-weight: 700; font-size: 15px;
  padding: 11px 22px; border-radius: 10px; text-decoration: none;
  border: 0; cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,199,30,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(255,199,30,0.38); }
.btn.small { padding: 8px 16px; font-size: 13.5px; }
.btn.soon { cursor: default; background: rgba(255,199,30,0.16); color: var(--accent); border: 1px solid rgba(255,199,30,0.35); box-shadow: none; }
.btn.soon:hover { transform: none; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border); color: var(--text); background: transparent;
  font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: 10px; text-decoration: none; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

.hero { text-align: center; padding: 88px 0 34px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -40% -20% auto;
  height: 760px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,98,250,0.16), transparent 62%),
              radial-gradient(ellipse at 72% 18%, rgba(255,199,30,0.07), transparent 55%),
              radial-gradient(ellipse at 26% 18%, rgba(32,195,199,0.10), transparent 50%);
}
.hero > * { position: relative; }
.hero img.mark { width: 92px; height: 92px; border-radius: 21px; box-shadow: 0 18px 50px rgba(0,0,0,0.5); margin-bottom: 26px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 56px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
.hero h1 .gold { color: var(--accent); }
.hero p.sub { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); max-width: 660px; margin: 20px auto 0; }
.hero .cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.compact-hero { padding-bottom: 52px; }
.fineprint { color: var(--muted); font-size: 13px; margin-top: 16px; }
.fineprint strong { color: var(--text); }

.badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.badge {
  border: 1px solid var(--border); background: rgba(255,255,255,0.035);
  color: var(--muted); border-radius: 999px;
  font-size: 13px; font-weight: 600; padding: 7px 15px;
}
.badge b { color: var(--teal); font-weight: 700; }

section { padding: 68px 0; }
section.alt { background: var(--sidebar); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 36px); letter-spacing: -0.015em; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 16px; }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid, .grid.two { grid-template-columns: 1fr; } }
.card {
  background: var(--muted-panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.card .icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
  background: linear-gradient(180deg, rgba(32,195,199,0.18), rgba(32,195,199,0.07));
  border: 1px solid rgba(32,195,199,0.28);
  box-shadow: 0 10px 26px rgba(32,195,199,0.08);
}
.card .icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card .icon.hot {
  color: #ff5a4f;
  background: linear-gradient(180deg, rgba(255,90,79,0.18), rgba(255,90,79,0.07));
  border-color: rgba(255,90,79,0.30);
}
.card .icon.warm {
  color: var(--accent);
  background: linear-gradient(180deg, rgba(255,199,30,0.18), rgba(255,199,30,0.06));
  border-color: rgba(255,199,30,0.28);
}
.feature-card {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(255,255,255,0.06), transparent 34%);
  opacity: 0;
  transition: opacity .18s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,199,30,0.30);
  background: #141f32;
}
.feature-card:hover::after { opacity: 1; }
.feature-grid { align-items: stretch; }
.feature-grid .card { min-height: 210px; }
.feature-grid .card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255,199,30,0.07), rgba(255,199,30,0.015)), var(--muted-panel);
  border-color: rgba(255,199,30,0.28);
}
.card h3 { font-size: 16.5px; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 14px; }

.cinematic-section { padding-top: 18px; }
.cinematic-wrap {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #080e18;
  box-shadow: 0 32px 86px rgba(0,0,0,0.42);
}
.cinematic-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.98) contrast(1.04);
}
.cinematic-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,7,14,0.84) 0%, rgba(4,7,14,0.58) 32%, rgba(4,7,14,0.10) 70%, rgba(4,7,14,0.50) 100%),
    linear-gradient(180deg, rgba(4,7,14,0.08), rgba(4,7,14,0.62));
}
.cinematic-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
  padding: 54px 42px;
}
.cinematic-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.cinematic-copy p {
  color: var(--text);
  opacity: 0.82;
  margin-top: 16px;
  font-size: 16px;
}
.cinematic-labels {
  position: absolute;
  z-index: 3;
  left: 42px;
  bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cinematic-labels span {
  color: var(--text);
  background: rgba(9,17,30,0.72);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 900;
}
.cinematic-labels span:nth-child(1) { color: var(--accent); }
.cinematic-labels span:nth-child(2) { color: var(--teal); }
.cinematic-labels span:nth-child(3) { color: #ff8a3d; }

.director-section { overflow: hidden; }
.director-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
}
.director-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.director-copy p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
}
.director-checks {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.director-checks li {
  display: flex;
  gap: 12px;
  color: var(--text);
  font-size: 14.5px;
  align-items: flex-start;
}
.director-checks li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #141002 0 31%, transparent 33%), var(--accent);
  box-shadow: 0 0 0 4px rgba(255,199,30,0.10);
}
.polish-demo {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    #08101d;
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
}
.demo-tabs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.demo-tabs span:last-child { text-align: right; color: var(--teal); }
.demo-tabs strong {
  color: var(--accent);
  border: 1px solid rgba(255,199,30,0.28);
  background: rgba(255,199,30,0.10);
  border-radius: 999px;
  padding: 6px 12px;
  text-transform: none;
  letter-spacing: 0;
}
.compare-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rough-panel,
.ready-panel {
  min-width: 0;
}
.rough-panel p,
.ready-panel p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 10px;
  text-align: center;
}
.mini-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #101928;
}
.mini-player.rough {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 100%) 0 0 / 34px 34px,
    linear-gradient(180deg, #121927, #0a0f1a);
}
.mini-player.ready {
  background:
    radial-gradient(circle at 70% 42%, rgba(255,199,30,0.16), transparent 18%),
    linear-gradient(135deg, #102033, #07101d);
  border-color: rgba(32,195,199,0.24);
}
.raw-line {
  position: absolute;
  left: 15%;
  right: 13%;
  height: 12px;
  border-radius: 999px;
  top: 46%;
  background: rgba(143,163,187,0.30);
}
.raw-line.short { width: 46%; top: 32%; right: auto; }
.raw-line.thin { height: 8px; top: 62%; opacity: 0.65; }
.raw-cursor {
  position: absolute;
  left: 67%;
  top: 52%;
  width: 8px;
  height: 8px;
  background: rgba(143,163,187,0.7);
  border-radius: 999px;
}
.title-card {
  position: absolute;
  left: 7%;
  top: 10%;
  color: #141002;
  background: var(--accent);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}
.highlight-band {
  position: absolute;
  left: 18%;
  right: 14%;
  top: 48%;
  height: 18px;
  border-radius: 8px;
  background: rgba(255,199,30,0.28);
  border: 1px solid rgba(255,199,30,0.42);
}
.click-ring {
  position: absolute;
  right: 22%;
  top: 38%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid #ff5a4f;
  box-shadow: 0 0 0 10px rgba(255,90,79,0.12);
  animation: demoRing 2s ease-out infinite;
}
.caption-bar {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  text-align: center;
  color: var(--text);
  background: rgba(4,7,14,0.74);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
}
.logo-dot {
  position: absolute;
  right: 7%;
  top: 10%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(4,7,14,0.74);
  border: 1px solid rgba(255,199,30,0.34);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}
.timeline-demo {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr 1fr 0.8fr;
  gap: 7px;
  margin-top: 16px;
}
.clip {
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
}
.clip.title,
.clip.close { color: var(--accent); background: rgba(255,199,30,0.10); border-color: rgba(255,199,30,0.22); }
.clip.board,
.clip.caption { color: var(--teal); background: rgba(32,195,199,0.09); border-color: rgba(32,195,199,0.22); }
.clip.click { color: #ff8a3d; background: rgba(255,138,61,0.10); border-color: rgba(255,138,61,0.22); }

.output-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.output-card {
  background: var(--muted-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.output-card h3 {
  margin-top: 16px;
  font-size: 17px;
}
.output-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}
.output-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b1422, #101a2a);
  border: 1px solid rgba(255,255,255,0.12);
}
.lesson-board {
  position: absolute;
  left: 8%;
  top: 13%;
  width: 66%;
  height: 58%;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(32,195,199,0.12) 0 2px, transparent 2px 100%) 0 0 / 28px 28px,
    linear-gradient(180deg, rgba(32,195,199,0.10), rgba(32,195,199,0.03));
  border: 1px solid rgba(32,195,199,0.26);
}
.lesson-board::after {
  content: '';
  position: absolute;
  left: 18%;
  top: 32%;
  width: 54%;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 18px 0 rgba(255,199,30,0.65), 44px 36px 0 rgba(255,199,30,0.45);
}
.presenter-bubble {
  position: absolute;
  right: 8%;
  bottom: 22%;
  width: 25%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,0.72), rgba(32,195,199,0.48) 33%, #122034 35%);
  border: 3px solid rgba(255,255,255,0.16);
}
.output-caption {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  color: var(--text);
  background: rgba(4,7,14,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 7px 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}
.browser-bar {
  position: absolute;
  inset: 8% 8% auto;
  height: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
}
.product-panel {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 24%;
  height: 42%;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,98,250,0.28), rgba(32,195,199,0.10));
  border: 1px solid rgba(37,98,250,0.32);
}
.demo-zoom {
  position: absolute;
  right: 15%;
  top: 34%;
  width: 28%;
  height: 28%;
  border-radius: 14px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 10px rgba(255,199,30,0.12);
}
.output-screen.vertical {
  aspect-ratio: 9 / 12;
  width: 54%;
  margin: 0 auto;
  background: linear-gradient(180deg, #182437, #07101d);
}
.creator-frame {
  position: absolute;
  inset: 9% 12% 35%;
  border-radius: 999px 999px 18px 18px;
  background: radial-gradient(circle at 50% 34%, rgba(255,255,255,0.8), rgba(255,199,30,0.46) 28%, rgba(37,98,250,0.22) 29%);
}
.creator-title {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 58%;
  color: #141002;
  background: var(--accent);
  border-radius: 8px;
  padding: 7px 8px;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
}
.creator-bars {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 14%;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 16px 0 rgba(32,195,199,0.52), 0 32px 0 rgba(32,195,199,0.25);
}

@media (max-width: 880px) {
  .director-grid,
  .output-gallery {
    grid-template-columns: 1fr;
  }
  .director-grid { gap: 28px; }
}
@media (max-width: 580px) {
  .cinematic-wrap { min-height: 520px; border-radius: 16px; }
  .cinematic-wrap img { object-position: 54% center; }
  .cinematic-wrap::before {
    background:
      linear-gradient(180deg, rgba(4,7,14,0.82) 0%, rgba(4,7,14,0.50) 45%, rgba(4,7,14,0.72) 100%);
  }
  .cinematic-copy { padding: 34px 24px; }
  .cinematic-labels { left: 24px; right: 24px; bottom: 24px; }
  .compare-stage,
  .timeline-demo {
    grid-template-columns: 1fr;
  }
  .timeline-demo .clip { height: 32px; }
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 26px 22px; }
.step .num {
  display: inline-flex; width: 32px; height: 32px; border-radius: 999px;
  align-items: center; justify-content: center;
  background: var(--accent); color: #141002; font-weight: 800; font-size: 15px;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 14px; }

.privacy-band {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, rgba(37,98,250,0.10), rgba(37,98,250,0.02));
  border: 1px solid rgba(37,98,250,0.25); border-radius: 16px; padding: 44px 32px;
}
.privacy-band h2 { font-size: clamp(22px, 3vw, 30px); }
.privacy-band p { color: var(--muted); margin-top: 12px; font-size: 15.5px; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 860px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: var(--muted-panel); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: rgba(255,199,30,0.45); background: linear-gradient(180deg, rgba(255,199,30,0.07), rgba(255,199,30,0.015)), var(--muted-panel); }
.price-card .plan { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.price-card .price { font-size: 42px; font-weight: 800; margin: 10px 0 2px; }
.price-card .price small { font-size: 15px; color: var(--muted); font-weight: 600; }
.price-card .terms { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.price-card ul { list-style: none; margin: 0 0 22px; flex: 1; }
.price-card li { color: var(--muted); font-size: 14px; padding: 5px 0; display: flex; gap: 10px; }
.price-card li::before { content: '✓'; color: var(--teal); font-weight: 800; }
.pill { display: inline-block; background: rgba(255,199,30,0.14); color: var(--accent); border: 1px solid rgba(255,199,30,0.3); border-radius: 999px; font-size: 12px; font-weight: 700; padding: 3px 12px; margin-bottom: 12px; align-self: flex-start; }

.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.compare th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare td.us { color: var(--accent); font-weight: 700; }
.compare tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 8px 6px; }

.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); padding: 18px 4px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: '+'; color: var(--accent); font-weight: 800; }
.faq details[open] summary::after { content: '–'; }
.faq p { color: var(--muted); font-size: 14.5px; margin-top: 10px; }

.signup {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 24px;
  background: rgba(18,27,44,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}
.signup-copy {
  max-width: 620px;
  margin: 0 auto 18px;
}
.signup-copy h2 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.signup-copy p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 14.5px;
}
.signup form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.signup .form-row {
  display: grid;
  gap: 10px;
  width: 100%;
}
.signup .form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.signup input[type=email],
.signup input[type=text],
.signup select,
.signup textarea {
  flex: 1; min-width: 240px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 15px; padding: 12px 16px; outline: none;
  font-family: inherit;
}
.signup select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.signup textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
}
.signup input[type=email]:focus,
.signup input[type=text]:focus,
.signup select:focus,
.signup textarea:focus { border-color: rgba(255,199,30,0.5); }
.signup .msg { font-size: 13.5px; margin-top: 12px; color: var(--teal); min-height: 20px; }
.signup .msg.err { color: #f08a8a; }

.product-showcase {
  width: min(1010px, calc(100vw - 48px));
  margin: 58px auto 0;
  text-align: left;
}
.showcase-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)), #080e18;
  box-shadow: 0 34px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  aspect-ratio: 16 / 9;
}
.showcase-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,7,14,0.82) 0%, transparent 16%, transparent 84%, rgba(4,7,14,0.82) 100%),
    linear-gradient(180deg, transparent 72%, rgba(4,7,14,0.42) 100%);
}
.showcase-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.12) 46%, transparent 54% 100%);
  transform: translateX(-70%);
  animation: sheen 7.5s ease-in-out infinite;
}
.showcase-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.012);
}
.floating-note {
  position: absolute;
  z-index: 4;
  color: var(--text);
  background: rgba(9,17,30,0.84);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 42px rgba(0,0,0,0.34);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation: floatNote 5.8s ease-in-out infinite;
}
.note-smart { top: 12%; right: 5%; color: var(--accent); }
.note-local { left: 5%; bottom: 14%; color: var(--teal); animation-delay: -1.8s; }
.note-import { right: 8%; bottom: 16%; color: #ff8a3d; animation-delay: -3.2s; }
.cursor-pulse {
  position: absolute;
  z-index: 5;
  left: 61%;
  top: 39%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffcf24;
  box-shadow: 0 0 0 0 rgba(255,207,36,0.55), 0 0 22px rgba(255,207,36,0.7);
  animation: cursorPulse 2.2s ease-out infinite;
}
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px auto 0;
}
.showcase-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--muted);
  background: rgba(18,27,44,0.78);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}
.showcase-strip b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #141002;
  background: var(--accent);
  font-size: 12px;
}

.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}
.launch-status,
.launch-card,
.launch-list-panel {
  background: var(--muted-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
}
.launch-status h2,
.launch-list-panel h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-top: 14px;
}
.launch-status p,
.launch-list-panel p {
  color: var(--muted);
  margin-top: 12px;
}
.launch-card h3 { font-size: 18px; margin-bottom: 12px; }
.launch-card ul,
.clean-list {
  list-style: none;
}
.launch-card li,
.clean-list li {
  color: var(--muted);
  font-size: 14px;
  padding: 7px 0;
  display: flex;
  gap: 10px;
}
.launch-card li::before,
.clean-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 900;
}
.launch-card ul + h3 { margin-top: 22px; }
.launch-card .done-list li { color: var(--text); }
.launch-card .done-list li::before { color: #3ddc97; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.download-grid .card p,
.download-grid .card li { font-size: 14.5px; }
.launch-list-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: center;
}
.launch-list-panel .signup { margin: 0; max-width: none; padding: 0; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }

@media (max-width: 760px) {
  .product-showcase { margin-top: 38px; }
  .showcase-frame { border-radius: 16px; aspect-ratio: 4 / 5; }
  .showcase-frame img { object-position: center 8%; }
  .floating-note { display: none; }
  .cursor-pulse { left: 62%; top: 34%; }
  .showcase-strip { grid-template-columns: 1fr; }
  .launch-panel,
  .download-grid,
  .launch-list-panel {
    grid-template-columns: 1fr;
  }
  .signup { padding: 18px; }
  .signup .form-row.two { grid-template-columns: 1fr; }
}

.prose { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.prose h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.015em; margin-bottom: 8px; }
.prose .updated { color: var(--muted); font-size: 13.5px; margin-bottom: 32px; }
.prose h2 { font-size: 21px; margin: 34px 0 10px; }
.prose h3 { font-size: 17px; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--muted); font-size: 15px; }
.prose ul, .prose ol { padding-left: 22px; margin: 10px 0; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent); }
.prose code { background: var(--panel); border: 1px solid var(--border); border-radius: 6px; padding: 1px 7px; font-size: 13.5px; }
.prose .note { background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 8px; padding: 14px 18px; margin: 18px 0; }

.changelog-item { border-left: 2px solid var(--border); padding: 0 0 32px 24px; position: relative; }
.changelog-item::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.changelog-item .ver { font-weight: 800; font-size: 18px; }
.changelog-item .date { color: var(--muted); font-size: 13px; margin-left: 10px; }

.blog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .blog-list { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--muted-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  display: block;
  min-height: 220px;
}
.blog-card:hover { border-color: rgba(255,199,30,0.36); background: #141f32; }
.blog-card .level, .article-meta .level {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h2 { font-size: 21px; line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.01em; }
.blog-card p { color: var(--muted); font-size: 14.5px; }
.blog-card .intent { margin-top: 16px; font-size: 13px; color: var(--teal); font-weight: 700; }
.article-meta { color: var(--muted); font-size: 13.5px; margin: 10px 0 28px; }
.article-callout {
  background: linear-gradient(180deg, rgba(255,199,30,0.10), rgba(255,199,30,0.03));
  border: 1px solid rgba(255,199,30,0.24);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
}
.article-callout p { margin: 0; color: var(--text); }
.prose .answer-box {
  background: var(--muted-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 20px 0 28px;
}
.prose .answer-box p { margin: 0; color: var(--text); }
.hero .answer-box {
  max-width: 720px;
  margin: 24px auto 0;
  background: var(--muted-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 16px 18px;
  text-align: left;
}
.hero .answer-box p { margin: 0; color: var(--text); font-size: 15px; }

@keyframes sheen {
  0%, 42% { transform: translateX(-72%); opacity: 0; }
  52% { opacity: 1; }
  68%, 100% { transform: translateX(72%); opacity: 0; }
}
@keyframes floatNote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes cursorPulse {
  0% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255,207,36,0.55), 0 0 22px rgba(255,207,36,0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 22px rgba(255,207,36,0), 0 0 28px rgba(255,207,36,0.42); }
  100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255,207,36,0), 0 0 22px rgba(255,207,36,0.55); }
}
@keyframes demoRing {
  0% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255,90,79,0.28); }
  70% { transform: scale(1); box-shadow: 0 0 0 14px rgba(255,90,79,0); }
  100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255,90,79,0); }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-frame::after,
  .floating-note,
  .cursor-pulse,
  .click-ring {
    animation: none;
  }
}

.minimal-home {
  background:
    linear-gradient(180deg, #04070e 0%, #07101d 46%, #04070e 100%);
}
.quiet-hero {
  min-height: calc(100vh - 64px);
  padding-top: clamp(56px, 8vw, 94px);
  padding-bottom: clamp(42px, 7vw, 76px);
  text-align: center;
}
.quiet-hero-copy {
  max-width: 780px;
  margin: 0 auto;
}
.quiet-hero .mark {
  width: 82px;
  height: 82px;
  border-radius: 19px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.46);
  margin: 22px auto 26px;
  display: block;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: rgba(32,195,199,0.10);
  border: 1px solid rgba(32,195,199,0.28);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}
.quiet-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 850;
}
.quiet-hero .sub {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 20px);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.quiet-product {
  position: relative;
  overflow: hidden;
  width: min(960px, calc(100vw - 48px));
  margin: clamp(40px, 7vw, 70px) auto 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #08101d;
  box-shadow: 0 34px 90px rgba(0,0,0,0.52);
  aspect-ratio: 16 / 9;
}
.quiet-product::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,7,14,0.58), transparent 20%, transparent 80%, rgba(4,7,14,0.58)),
    linear-gradient(180deg, transparent 68%, rgba(4,7,14,0.46));
}
.quiet-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.quiet-product-card {
  position: absolute;
  z-index: 2;
  color: var(--text);
  background: rgba(9,17,30,0.78);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.quiet-product-card.card-one {
  left: 22px;
  bottom: 22px;
  color: var(--accent);
}
.quiet-product-card.card-two {
  right: 22px;
  bottom: 22px;
  color: var(--teal);
}
.signal-section {
  padding: 52px 0;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.signal-card {
  background: rgba(18,27,44,0.68);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.signal-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.signal-card h2 {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.18;
}
.signal-card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 14.5px;
}
.early-access-band {
  padding: 62px 0 76px;
  background: var(--sidebar);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.minimal-signup {
  margin-top: 0;
  max-width: 780px;
}
.privacy-strip {
  padding: 48px 0;
}
.privacy-strip-inner {
  text-align: center;
  max-width: 740px;
}
.privacy-strip h2 {
  font-size: clamp(22px, 3vw, 30px);
}
.privacy-strip p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15.5px;
}

@media (max-width: 820px) {
  .quiet-hero {
    min-height: auto;
    padding-top: 44px;
  }
  .quiet-product {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }
  .quiet-product img {
    object-position: center top;
  }
  .signal-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .quiet-hero {
    text-align: left;
  }
  .quiet-hero-copy,
  .quiet-hero h1,
  .quiet-hero .sub {
    margin-left: 0;
    margin-right: 0;
  }
  .quiet-hero .mark {
    margin-left: 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-actions .btn,
  .hero-actions .btn-ghost,
  .minimal-signup .btn {
    width: 100%;
    justify-content: center;
  }
  .quiet-product {
    width: 100%;
  }
  .quiet-product-card {
    display: none;
  }
}

footer { border-top: 1px solid var(--border); padding: 36px 0; background: var(--sidebar); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-inner .brand { font-size: 16px; }
.foot-inner .brand img { width: 26px; height: 26px; }
footer p { color: var(--muted); font-size: 13px; }
footer .foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
footer .foot-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
footer .foot-links a:hover { color: var(--text); }
