:root {
  --bg: #05060a;
  --bg-highlight: radial-gradient(circle at 20% 20%, rgba(68, 99, 217, 0.4), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(245, 179, 82, 0.35), transparent 52%);
  --surface: rgba(13, 17, 26, 0.84);
  --surface-alt: rgba(22, 27, 40, 0.75);
  --surface-strong: rgba(28, 34, 49, 0.85);
  --border: rgba(120, 138, 190, 0.2);
  --text: #f5f7ff;
  --muted: #b0b8d4;
  --muted-strong: #6c7494;
  --accent: #4a7fff;
  --accent-warm: #f5a742;
  --accent-subtle: rgba(74, 127, 255, 0.12);
  --accent-dark: #3057d6;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(7, 10, 18, 0.35);
  --max-width: 1120px;
  --max-width-wide: 1260px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-highlight);
  min-height: 100vh;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.92) 0%, rgba(5, 6, 10, 0.98) 100%);
}

main {
  flex: 1;
}

a {
  color: inherit;
}

a:hover {
  color: var(--accent);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  color: inherit;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 2rem;
  height: 2rem;
}

.icon-lg {
  width: 2.4rem;
  height: 2.4rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 4rem);
}

.site-header {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: clamp(1.5rem, 4vw, 2.75rem) auto 0;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(120, 138, 190, 0.12);
  border-radius: var(--radius-lg);
  min-height: 72px;
  box-shadow: 0 12px 40px rgba(7, 10, 18, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(9, 12, 20, 0.95), rgba(20, 24, 35, 0.92));
  box-shadow: 0 18px 32px rgba(8, 12, 22, 0.45);
  position: relative;
}

.brand-logo::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 13px;
  border: 1px solid rgba(120, 138, 190, 0.35);
  pointer-events: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);
  transform-origin: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-mark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), transform var(--transition);
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.ghost-button {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}

.ghost-button:hover {
  background: rgba(74, 127, 255, 0.18);
  border-color: rgba(74, 127, 255, 0.5);
}

/* Keep theme toggle visible on desktop */
.theme-toggle { display: inline-flex; }

/* Header icon buttons */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
}

.theme-toggle {
  display: inline-flex; /* always visible on desktop */
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-icon {
  position: relative;
  width: 22px;
  height: 14px;
  display: inline-block;
}

.menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 6px; }
.menu-icon span:nth-child(3) { top: 12px; }

.site-header.nav-open .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.nav-open .menu-icon span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  max-width: var(--max-width-wide);
  margin: clamp(2rem, 4vw, 4rem) auto 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: fit-content;
}

.hero-logo-frame {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(9, 12, 20, 0.96), rgba(28, 33, 48, 0.92));
  position: relative;
}

.hero-logo-frame::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 20px;
  border: 1px solid rgba(120, 138, 190, 0.35);
  pointer-events: none;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);
  transform-origin: center;
}

.hero-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-logo-title {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-logo-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-warm);
}

.eyebrow .icon {
  color: var(--accent-warm);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.primary-button,
.secondary-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.85rem 1.65rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #f7f9ff;
  box-shadow: 0 16px 32px rgba(74, 127, 255, 0.35);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(74, 127, 255, 0.45);
}

.secondary-button {
  background: rgba(74, 127, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(74, 127, 255, 0.4);
}

.secondary-button:hover {
  background: rgba(74, 127, 255, 0.2);
  transform: translateY(-2px);
}

.link-button {
  padding: 0.75rem 0.5rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.link-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
}

.hero-points li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--muted);
}

.hero-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-warm);
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-stack {
  display: grid;
  gap: 1.5rem;
}

.device {
  border-radius: 32px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(120, 138, 190, 0.2);
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.device-dark {
  background: linear-gradient(145deg, rgba(18, 24, 37, 0.85), rgba(11, 15, 26, 0.65));
}

.device-light {
  background: linear-gradient(145deg, rgba(240, 246, 255, 0.12), rgba(94, 112, 159, 0.15));
}

.device-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.device-body {
  flex: 1;
  display: grid;
  gap: 1rem;
}

.line-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(74, 127, 255, 0.12);
  border: 1px solid rgba(74, 127, 255, 0.18);
  color: var(--text);
}

.line-item.active {
  background: rgba(245, 179, 82, 0.15);
  border-color: rgba(245, 179, 82, 0.45);
}

.role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 0.35rem;
}

.feedback-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(18, 24, 37, 0.8);
  border: 1px solid rgba(74, 127, 255, 0.18);
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.video-placeholder {
  border-radius: var(--radius-md);
  border: 1px dashed rgba(74, 127, 255, 0.35);
  min-height: 160px;
  display: grid;
  place-items: center;
  background: rgba(10, 15, 26, 0.65);
  font-weight: 600;
  color: var(--muted);
}

.controls {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.demo {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.demo-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 138, 190, 0.2);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.demo-screen {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(74, 127, 255, 0.12), rgba(245, 179, 82, 0.1));
  border: 1px solid rgba(74, 127, 255, 0.18);
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 127, 255, 0.18);
  color: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-screen p {
  color: var(--muted);
  max-width: 360px;
  margin-top: 1rem;
}

.demo-player {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  text-align: center;
}

.pillars h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.pillar-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pillar {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(120, 138, 190, 0.18);
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.pillar-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(74, 127, 255, 0.16);
  border: 1px solid rgba(74, 127, 255, 0.3);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.pillar-icon .icon {
  width: 1.85rem;
  height: 1.85rem;
}

.pillar p {
  color: var(--muted);
}

.experience {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step {
  background: linear-gradient(145deg, rgba(22, 27, 40, 0.85), rgba(12, 16, 27, 0.8));
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 127, 255, 0.18);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: grid;
  gap: 1rem;
}

.step-index {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.5rem;
  background: rgba(245, 179, 82, 0.16);
  border: 1px solid rgba(245, 179, 82, 0.4);
  color: var(--accent-warm);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 18px rgba(245, 179, 82, 0.12);
}

.step-index .icon {
  width: 1.85rem;
  height: 1.85rem;
}

.step ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  display: grid;
  gap: 0.65rem;
}

.audience {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.audience-card {
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  border: 1px solid rgba(120, 138, 190, 0.2);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: grid;
  gap: 0.75rem;
}

.pain-point {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.benefit {
  color: var(--muted);
  font-size: 0.97rem;
}

.pricing {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 138, 190, 0.2);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: grid;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.pricing-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card.featured {
  border: 1px solid rgba(245, 179, 82, 0.6);
  background: linear-gradient(145deg, rgba(27, 32, 52, 0.95), rgba(15, 18, 29, 0.9));
  box-shadow: 0 30px 60px rgba(245, 179, 82, 0.18);
}

.waitlist {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.waitlist-form {
  background: var(--surface-strong);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 138, 190, 0.2);
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.waitlist-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.waitlist-form input,
.waitlist-form textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(74, 127, 255, 0.25);
  background: rgba(6, 8, 12, 0.75);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border var(--transition), box-shadow var(--transition);
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: rgba(74, 127, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(74, 127, 255, 0.2);
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 120px;
}

.waitlist-note {
  font-size: 0.85rem;
  color: var(--muted-strong);
  text-align: center;
}

.store-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  color: #f7f8ff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 20, 34, 0.9);
  transition: transform var(--transition), box-shadow var(--transition);
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(20, 25, 35, 0.4);
}

.store-button:focus-visible {
  outline: 2px solid rgba(74, 127, 255, 0.6);
  outline-offset: 3px;
}

.store-button--apple {
  background: linear-gradient(135deg, rgba(13, 17, 27, 0.96), rgba(33, 38, 54, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
}

.store-button--google {
  background: linear-gradient(135deg, rgba(9, 14, 24, 0.96), rgba(21, 25, 37, 0.92));
  border-color: rgba(66, 133, 244, 0.25);
}

.store-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.store-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
}

.store-caption {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 244, 255, 0.7);
}

.store-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 6vw, 4rem);
  border: 1px solid rgba(120, 138, 190, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(5, 6, 10, 0.95);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
  max-width: 320px;
}

.footer-brand p {
  color: var(--muted);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.footer-columns h4 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.footer-columns a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.legal {
  font-size: 0.8rem;
  color: var(--muted-strong);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: nowrap;
    padding-block: 0.5rem;
    position: sticky;
  }

  /* Show hamburger, hide inline nav */
  .menu-toggle { display: inline-flex; }
  .theme-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: var(--max-width-wide);
    background: rgba(5, 6, 10, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(120, 138, 190, 0.18);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    box-shadow: 0 18px 48px rgba(7, 10, 18, 0.4);
    z-index: 20;
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-header.nav-open .site-nav { display: flex; }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    color: var(--text);
  }

  .site-nav a:hover {
    background: rgba(74, 127, 255, 0.12);
    transform: none;
  }
}

/* Ensure icons stay visible on very small screens */
@media (max-width: 640px) {
  .ghost-button { display: none; }
  .theme-toggle, .menu-toggle { margin-left: 0.35rem; }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    border-radius: var(--radius-md);
  }

  /* Ensure copy appears before screenshot on phones */
  .hero-visual { order: 2; }

  .hero-points li::before {
    top: -0.2rem;
  }

  .hero-logo-badge {
    gap: 0.75rem;
    padding: 0.75rem 1rem 0.75rem 0.85rem;
  }

  .hero-logo-frame {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .device-stack {
    transform: scale(0.95);
  }

  .pillars,
  .pricing {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ===============================
   Light Theme (opt-in)
   Apply by setting data-theme="light" on <html> or <body>.
   =============================== */

:root[data-theme="light"] {
  --bg: #F7F9FF;
  --bg-highlight: radial-gradient(60% 40% at 20% 15%, rgba(74, 127, 255, 0.08), transparent 60%),
                  radial-gradient(50% 35% at 85% 10%, rgba(245, 167, 66, 0.10), transparent 62%);
  --surface: rgba(255, 255, 255, 0.95);
  --surface-alt: rgba(245, 248, 255, 0.78);
  --surface-strong: rgba(241, 246, 255, 0.9);
  --border: #D6DDEE;
  --text: #0E1528;
  --muted: #51607C;
  --muted-strong: #3A4660;
  --accent: #2E55C7;        /* darker blue for higher contrast on white */
  --accent-dark: #1F3E92;   /* button gradient end */
  --accent-subtle: #EAF1FF; /* tinted fills */
  --shadow-soft: 0 16px 40px rgba(10,16,32,0.08);
}

[data-theme="light"] body {
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-highlight);
}

[data-theme="light"] .site {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, rgba(249, 251, 255, 0.98) 100%);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-color: #E0E6F2;
  box-shadow: 0 10px 28px rgba(10, 16, 32, 0.12);
}

/* Hero brand badge (was dark; make it light on white) */
[data-theme="light"] .hero-logo-badge { background: transparent; border-color: transparent; box-shadow: none; }

/* Cards and panels */
[data-theme="light"] .demo-card,
[data-theme="light"] .pillar,
[data-theme="light"] .audience-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .waitlist-form {
  background: #FFFFFF;
  border-color: #E0E6F2;
  box-shadow: 0 12px 30px rgba(10,16,32,0.08);
}

/* Experience steps: lighten surfaces */
[data-theme="light"] .step {
  background: #FFFFFF;
  border-color: #E0E6F2;
}
[data-theme="light"] .step-index {
  background: rgba(245, 167, 66, 0.16);
  border-color: rgba(245, 167, 66, 0.4);
  color: #C8841E;
}

/* Device cards in hero */
[data-theme="light"] .device {
  background: #FFFFFF;
  border-color: #E0E6F2;
}
[data-theme="light"] .device-dark,
[data-theme="light"] .device-light {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(240,245,255,0.92));
}
[data-theme="light"] .line-item {
  background: #EAF1FF;
  border-color: #D6E4FF;
  color: #0E1528;
}
[data-theme="light"] .line-item.active {
  background: #FFF3E1;
  border-color: rgba(245, 167, 66, 0.55);
}
[data-theme="light"] .feedback-card {
  background: #F4F7FF;
  border-color: #D6E4FF;
  color: #51607C;
}

/* Pricing: featured should be light too */
[data-theme="light"] .pricing-card.featured {
  background: #FFFFFF;
  border: 1px solid rgba(245, 167, 66, 0.45);
  box-shadow: 0 22px 48px rgba(245, 167, 66, 0.10);
}

/* Inputs */
[data-theme="light"] .waitlist-form input,
[data-theme="light"] .waitlist-form textarea {
  background: #FFFFFF;
  color: #0E1528;
  border-color: #C9D3EB;
}
[data-theme="light"] .waitlist-form label { color: #51607C; }
[data-theme="light"] .waitlist-form input:focus,
[data-theme="light"] .waitlist-form textarea:focus {
  border-color: rgba(46, 85, 199, 0.65);
  box-shadow: 0 0 0 3px rgba(46, 85, 199, 0.20);
}

/* Hero screenshot image (all themes) */
.hero-screenshot {
  display: block;
  width: 60%;
  max-width: 336px; /* ~40% smaller */
  min-width: 240px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* Always hide the old mock device stack */
.device-stack { display: none; }

/* Slightly crisper border on light */
[data-theme="light"] .hero-screenshot { border-color: #E0E6F2; box-shadow: 0 20px 50px rgba(10,16,32,0.12); }

/* Mobile dropdown sheet */
@media (max-width: 900px) {
  [data-theme="light"] .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: #E0E6F2;
  }
}

/* Buttons */
[data-theme="light"] .primary-button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #FFFFFF;
}

[data-theme="light"] .secondary-button {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid rgba(46, 85, 199, 0.35);
}

[data-theme="light"] .link-button {
  color: var(--accent);
}

/* Footer */
[data-theme="light"] .site-footer {
  background: #F8FAFF;
  border-color: #E0E6F2;
}
