:root {
  --brand: #6366f1;
  --brand-hover: #818cf8;
  --brand-soft: rgba(99, 102, 241, 0.1);
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --bg-elevated: rgba(18, 18, 26, 0.8);
  --text-main: #ffffff;
  --text-muted: #a8a8b8;
  --text-subtle: #6b6b7f;
  --border-subtle: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.12);
  --card-bg: rgba(18, 18, 26, 0.6);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.7);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body { 
  height: 100%; 
  scroll-behavior: smooth; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: color var(--transition-fast);
}

.page { 
  min-height: 100vh; 
  display: flex; 
  flex-direction: column; 
  background: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
}

.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 120px;
  width: 100%;
}

@media (max-width: 768px) {
  .shell {
    padding: 24px 20px 80px;
  }
}

@media (max-width: 480px) {
  .shell {
    padding: 20px 16px 64px;
  }
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 24px;
  gap: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}

.nav-left { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.nav-brand:hover .logo-mark {
  border-color: var(--border-soft);
  transform: translateY(-1px);
}

.logo-img { 
  width: 32px; 
  height: 32px; 
  object-fit: contain; 
  display: block; 
}

.logo-wordmark { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
}

.logo-title { 
  font-weight: 700; 
  letter-spacing: -0.02em; 
  font-size: 20px; 
  transition: color var(--transition-fast);
  color: var(--text-main);
}

.logo-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  font-weight: 500;
}

.nav-links { 
  display: none; 
  gap: 32px; 
  font-size: 14px; 
  font-weight: 500;
  color: var(--text-muted); 
}

.nav-links a { 
  position: relative; 
  transition: color var(--transition-fast);
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--transition-base);
}

.nav-links a:hover::after, 
.nav-links a.is-active::after { 
  width: 100%; 
}

.nav-links a.is-active { 
  color: var(--text-main); 
  font-weight: 600;
}

.nav-cta { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.pill-beta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-muted);
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pill-beta:hover {
  border-color: var(--border-soft);
  color: var(--text-main);
  background: rgba(18, 18, 26, 0.95);
}

.pill-countdown { 
  display: inline-flex; 
  gap: 8px; 
  align-items: center;
}

.pill-countdown .pill-label { 
  opacity: 0.7; 
}

@media (max-width: 480px) {
  .pill-countdown { display: none; }
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  background: var(--brand);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active { 
  transform: translateY(0); 
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-ghost {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-ghost span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: var(--border-soft);
  color: var(--text-main);
  background: var(--bg-elevated);
}

/* STATUS BAR */
.status-bar {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2),
              0 0 8px rgba(16, 185, 129, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.status-pill {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: rgba(18, 18, 26, 0.5);
}

/* LAUNCH BAR */
.launch-bar {
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 32px;
  align-items: center;
}

.launch-kicker {
  width: fit-content;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(18, 18, 26, 0.5);
  color: var(--text-subtle);
  font-weight: 600;
}

.launch-title { 
  margin-top: 16px; 
  font-size: 28px; 
  font-weight: 700; 
  letter-spacing: -0.02em; 
  line-height: 1.2;
  color: var(--text-main);
}

.launch-sub { 
  margin-top: 12px; 
  font-size: 15px; 
  color: var(--text-muted); 
  max-width: 520px;
  line-height: 1.6;
}

.launch-right { 
  display: flex; 
  gap: 20px; 
  align-items: center; 
  justify-content: flex-end; 
}

.launch-art {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.launch-art:hover {
  transform: scale(1.05);
}

.launch-actions { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  align-items: flex-end; 
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  margin-top: 64px;
  padding: 64px 0 96px;
  align-items: center;
}

.hero-left { 
  display: flex; 
  flex-direction: column; 
  gap: 32px; 
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: fit-content;
  font-weight: 600;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text-main);
}

.hero-title span { 
  color: var(--brand);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body { 
  max-width: 560px; 
  font-size: 18px; 
  color: var(--text-muted); 
  line-height: 1.7;
  font-weight: 400;
}

.hero-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 8px; 
}

.hero-tag {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.hero-tag:hover {
  border-color: var(--border-soft);
  background: rgba(18, 18, 26, 0.9);
  color: var(--text-main);
}

.hero-ctas { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  margin-top: 8px; 
  align-items: center; 
}

.hero-footnote { 
  margin-top: 16px; 
  font-size: 13px; 
  color: var(--text-subtle); 
  line-height: 1.6;
}

.hero-footnote span { 
  color: var(--text-main); 
  font-weight: 600; 
}

.hero-right { 
  display: flex; 
  justify-content: flex-end; 
}

.hero-visual {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
  position: relative;
}

.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  border-color: var(--border-soft);
}

.hero-visual img { 
  display: block; 
  width: 100%; 
  height: auto; 
  border-radius: var(--radius-xl);
}

/* SECTIONS */
.section {
  padding: 96px 0 104px;
  border-top: 1px solid var(--border-subtle);
}

.section + .section { 
  margin-top: 0; 
}

.section-header { 
  margin-bottom: 48px; 
  max-width: 800px;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title { 
  font-size: clamp(32px, 5vw, 48px); 
  letter-spacing: -0.03em; 
  margin-top: 12px; 
  margin-bottom: 16px; 
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.section-header--center { 
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title-large { 
  font-size: clamp(36px, 6vw, 56px); 
}

.section-lead { 
  margin-top: 16px; 
  font-size: 18px; 
  color: var(--text-muted); 
  max-width: 640px; 
  line-height: 1.7;
  font-weight: 400;
}

.section-header--center .section-lead { 
  margin-left: auto; 
  margin-right: auto; 
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 24px;
}

.card {
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-soft);
  background: rgba(18, 18, 26, 0.9);
}

.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}

.card-title { 
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 12px; 
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.card-body { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.7;
  font-weight: 400;
}

/* HOW */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 32px;
}

.step {
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-soft);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--brand-soft);
  color: var(--brand);
}

.step-title { 
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 12px; 
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.step-body { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.7;
  font-weight: 400;
}

.section-sub { 
  margin-top: 48px; 
}

.usecases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.usecase-pill {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.usecase-pill:hover {
  border-color: var(--border-soft);
  background: rgba(18, 18, 26, 0.9);
  transform: translateY(-1px);
}

.usecase-pill strong { 
  color: var(--text-main); 
  font-weight: 700; 
}

/* SCREENSHOTS */
.screenshots-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.screenshots-group {
  margin-top: 48px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.screenshots-group-title { 
  font-size: 20px; 
  font-weight: 700; 
  margin-bottom: 8px; 
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.screenshots-group-sub { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.7;
  font-weight: 400;
}

.screen-caption { 
  margin-top: 16px; 
  font-size: 14px; 
  color: var(--text-muted); 
  text-align: center; 
  line-height: 1.6;
}

.screen-frame {
  flex: 0 1 300px;
  max-width: 320px;
  padding: 0;
  border-radius: 32px;
  background: transparent;
  border: none;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
}

.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 32px;
}

.screen-frame--center {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9);
}

.screen-frame:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.05);
}

.screen-frame--center:hover {
  transform: translateY(-16px) scale(1.08);
  box-shadow: 0 24px 96px rgba(0, 0, 0, 0.95);
}

/* CTA */
.cta-band {
  border-radius: var(--radius-xl);
  margin-top: 48px;
  padding: 48px 40px;
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-band-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-title { 
  font-size: 28px; 
  font-weight: 700; 
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-main);
}

.cta-band-sub { 
  font-size: 16px; 
  color: var(--text-muted); 
  max-width: 520px; 
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 400;
}

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

.input-shell {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 8px 8px 8px 20px;
  gap: 8px;
  transition: border-color var(--transition-fast);
}

.input-shell:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.input-shell input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-size: 15px;
  min-width: 200px;
  font-family: inherit;
}

.input-shell input::placeholder { 
  color: var(--text-subtle); 
}

.btn-sub {
  border-radius: var(--radius-md);
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--brand);
  color: white;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-sub:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.cta-footnote { 
  font-size: 13px; 
  color: var(--text-subtle); 
  line-height: 1.6;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 32px 48px;
  margin-top: 32px;
}

.faq-item-question { 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 12px; 
  line-height: 1.4;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.faq-item-answer { 
  font-size: 16px; 
  color: var(--text-muted); 
  line-height: 1.7;
  font-weight: 400;
}

/* FOOTER */
.footer {
  padding-top: 64px;
  margin-top: auto;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

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

.footer-row > div:first-child { 
  opacity: 0.8; 
  font-weight: 500;
  color: var(--text-subtle);
}

.footer-links { 
  display: flex; 
  gap: 24px; 
  flex-wrap: wrap; 
  font-weight: 500;
}

.footer-links a { 
  color: var(--text-muted); 
  transition: color var(--transition-fast);
  font-size: 14px;
}

.footer-links a:hover { 
  color: var(--text-main); 
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero { 
    grid-template-columns: minmax(0,1fr); 
    gap: 48px;
    margin-top: 48px;
    padding: 48px 0 64px;
  }
  
  .hero-right { 
    order: -1; 
    justify-content: center; 
  }
  
  .nav-links { 
    display: none; 
  }
  
  .screenshots-row { 
    justify-content: center; 
    align-items: center; 
    gap: 24px; 
  }
  
  .screen-frame, 
  .screen-frame--center { 
    flex: 1 1 280px; 
    max-width: 320px; 
    transform: none; 
  }
  
  .launch-bar { 
    grid-template-columns: minmax(0,1fr); 
  }
  
  .launch-right { 
    justify-content: space-between; 
  }
  
  .launch-actions { 
    align-items: stretch; 
    width: 100%; 
  }
  
  .launch-actions .btn-primary, 
  .launch-actions .btn-ghost { 
    width: 100%; 
    justify-content: center; 
  }
}

@media (min-width: 768px) { 
  .nav-links { 
    display: flex; 
  } 
}

@media (max-width: 720px) {
  .section-grid, 
  .steps, 
  .faq-grid { 
    grid-template-columns: minmax(0,1fr); 
  }
  
  .usecases { 
    grid-template-columns: minmax(0,1fr); 
  }
  
  .cta-band-top { 
    align-items: flex-start; 
  }
  
  .cta-actions { 
    flex-direction: column; 
    align-items: stretch; 
  }
  
  .cta-actions .btn-primary { 
    width: 100%; 
    justify-content: center; 
  }
  
  .input-shell { 
    width: 100%; 
    justify-content: space-between; 
  }
  
  .input-shell input { 
    width: 100%; 
  }
  
  .section {
    padding: 64px 0 72px;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .nav { 
    align-items: flex-start; 
    padding: 12px 0 20px;
  }
  
  .nav-cta { 
    flex-direction: column; 
    align-items: flex-end; 
    gap: 8px; 
  }
  
  .pill-beta { 
    display: none; 
  }
  
  .hero { 
    margin-top: 32px; 
    row-gap: 32px; 
    padding-bottom: 48px; 
  }
  
  .hero-body { 
    font-size: 16px; 
  }
  
  .hero-footnote { 
    font-size: 12px; 
  }
  
  .hero-ctas { 
    flex-direction: column; 
    align-items: stretch; 
  }
  
  .hero-ctas .btn-primary, 
  .hero-ctas .btn-ghost { 
    width: 100%; 
    justify-content: center; 
  }
  
  .screenshots-row { 
    gap: 24px; 
  }
  
  .screen-frame { 
    flex: 1 1 240px; 
    max-width: 280px; 
  }
  
  .section {
    padding: 48px 0 56px;
  }
  
  .card, .step {
    padding: 24px;
  }
  
  .cta-band {
    padding: 32px 24px;
  }
}

/* Nav active state styling */
.nav-links a.is-active {
  color: var(--text-main);
}

.nav-links a.is-active::after {
  width: 100%;
}

.nav-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-brand:hover .logo-title{
  color: var(--text-main);
}

.nav-brand:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 6px;
  border-radius: 12px;
}

/* Release page styles */
.release-hero{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,0.9fr);
  gap:48px;
  align-items:center;
}

.release-card{
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  overflow:hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.release-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-soft);
}

.release-art{
  width:100%;
  height:auto;
  border-radius: var(--radius-lg);
  display:block;
}

.release-meta{ 
  margin-top: 24px; 
}

.release-list{
  margin-top:16px;
  display:grid;
  gap:12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.release-mini-ctas{
  margin-top: 24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

@media (max-width: 880px){
  .release-hero{ 
    grid-template-columns: 1fr; 
  }
}

/* =========================
   Brevo form (GoRoam theme)
========================= */
.notify-embed .sib-form {
  background: transparent !important;
  text-align: left !important;
}

.notify-embed #sib-form-container {
  background: transparent !important;
}

.notify-embed #sib-container {
  max-width: 560px !important;
  margin: 0 !important;
  border-radius: var(--radius-xl) !important;
  border: 1px solid var(--border-subtle) !important;
  background: var(--bg-elevated) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.notify-embed .sib-form-message-panel {
  max-width: 560px !important;
  border-radius: var(--radius-lg) !important;
}

.notify-embed .sib-form-block,
.notify-embed .sib-text-form-block {
  text-align: left !important;
}

.notify-embed .sib-form-block p,
.notify-embed label,
.notify-embed .entry__label {
  color: var(--text-main) !important;
  font-family: inherit !important;
}

.notify-embed .sib-text-form-block p,
.notify-embed .entry__specification {
  color: var(--text-muted) !important;
}

.notify-embed input.input {
  width: 100% !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-subtle) !important;
  background: var(--bg) !important;
  color: var(--text-main) !important;
  padding: 12px 20px !important;
  font-family: inherit !important;
  font-size: 15px !important;
}

.notify-embed input.input::placeholder {
  color: var(--text-subtle) !important;
}

.notify-embed input.input:focus {
  outline: none !important;
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px var(--brand-soft) !important;
}

.notify-embed button.sib-form-block__button {
  border-radius: var(--radius-md) !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  background: var(--brand) !important;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
  transition: all var(--transition-base) !important;
}

.notify-embed button.sib-form-block__button:hover {
  background: var(--brand-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4) !important;
}
