/* OpenRed — openred.space */

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a28;
  --border: #2a2a3a;
  --red: #e84040;
  --red-glow: rgba(232, 64, 64, 0.3);
  --red-dim: #c83030;
  --accent: #6366f1;
  --green: #40c080;
  --text: #e8e8f0;
  --text-dim: #8888a0;
  --text-muted: #555570;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: #ff5555; }

/* ── Layout ── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ── Floating Nav (sits above footer, no black band) ── */

nav {
  position: relative;
  z-index: 50;
  margin: 4rem auto 1.5rem;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

nav .container {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  background: rgba(18, 18, 28, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 64, 64, 0.15);
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
              0 0 60px rgba(232, 64, 64, 0.08);
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-brand img { width: 22px; height: 22px; border-radius: 4px; }
/* brand styling — text rendered all red via .nav-brand color */

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: #ff4444; color: white !important; }

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* Giant floating brand block (home page hero) */
.hero-brand {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.hero-brand-alien {
  width: clamp(96px, 14vw, 168px);
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
  animation: float-y 5.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 36px rgba(232, 64, 64, 0.45))
          drop-shadow(0 0 60px rgba(232, 64, 64, 0.25));
  border-radius: 0;
  /* override the small .nav-brand img rule */
}

.hero .hero-brand-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0;
  background-image: linear-gradient(
    110deg,
    #ff3838 0%,
    #ff8050 22%,
    #ff4080 45%,
    #c850ff 65%,
    #ff5050 88%,
    #ff3838 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hue-shift 9s linear infinite;
  filter: drop-shadow(0 6px 40px rgba(232, 64, 64, 0.45));
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes hue-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 240% 50%; }
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(232, 64, 64, 0.1);
  border: 1px solid rgba(232, 64, 64, 0.3);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.35;
  color: var(--red);
  margin-bottom: 1.25rem;
}

/* In the centered tagline we want uniform red — neutralise the gradient highlight */
.hero h1 .highlight {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--red);
  color: var(--red);
}

.hero p {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin: 0 auto 2.25rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #ff4444;
  color: white;
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 24px rgba(64, 192, 128, 0.25);
}

/* Glow orb behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-orb 6s ease-in-out infinite;
}

@keyframes pulse-orb {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* ── Features ── */

.features-section { background: transparent; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(232, 64, 64, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── How It Works ── */

.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ── Product Gallery (sliding carousel) ── */

.gallery-section {
  padding: 4rem 0 6rem;
  background: transparent;
}

.gallery {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-viewport {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(18, 18, 28, 0.5);
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5),
              0 0 80px rgba(232, 64, 64, 0.06);
}

.gallery-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 0.5rem;
}

.gallery-slide img {
  width: 100%;
  max-height: 540px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
  display: block;
}

.gallery-caption {
  margin-top: 0.85rem;
  padding: 0 0.5rem 0.25rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.5em;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.75);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.gallery-arrow:hover {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(64, 192, 128, 0.25);
}

.gallery-prev { left: -22px; }
.gallery-next { right: -22px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.gallery-dot:hover { background: var(--text-dim); }
.gallery-dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
  transform: scale(1.2);
}

.gallery-playpause {
  display: block;
  margin: 1rem auto 0;
  background: rgba(10, 10, 15, 0.75);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.gallery-playpause:hover {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(64, 192, 128, 0.25);
}

.gallery-playpause.is-paused {
  color: var(--red);
  border-color: rgba(232, 64, 64, 0.4);
  padding-left: 3px; /* nudge the ▶ glyph optically centered */
}

/* ── Lightbox modal ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 3, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.gallery-lightbox-figure {
  margin: 0;
  max-width: min(1600px, 95vw);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gallery-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  background: #000;
}

.gallery-lightbox-figure figcaption {
  color: var(--text-dim);
  font-size: 0.95rem;
  text-align: center;
  max-width: 800px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 18, 28, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.gallery-lightbox-close:hover {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(64, 192, 128, 0.25);
}

@media (max-width: 900px) {
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.25rem; }
  .gallery-prev { left: 6px; }
  .gallery-next { right: 6px; }
  .gallery-caption { font-size: 0.8rem; }
  .gallery-lightbox { padding: 3rem 0.75rem; }
  .gallery-lightbox-close { top: 0.75rem; right: 0.75rem; }
}

/* ── Comparison ── */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table th {
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.comparison-table td:first-child {
  font-weight: 600;
}

.comparison-table tr:hover td {
  background: rgba(232, 64, 64, 0.03);
}

.check { color: var(--green); }
.cross { color: var(--red); }
.openred-row { background: rgba(232, 64, 64, 0.05); }
.openred-row td:first-child { color: var(--red); font-weight: 700; }

/* ── Pricing ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

/* CTA pinned to the bottom so buttons line up across cards of differing height */
.price-card .price-cta {
  margin-top: auto;
  width: 100%;
  display: block;
  text-align: center;
}

.price-card.featured {
  border-color: var(--red);
  position: relative;
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
}

.price-card .setup {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.price-features li::before {
  content: '\2713';
  color: var(--green);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ── About ── */

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dim);
}

.about-content strong {
  color: var(--text);
}

.about-content .callout {
  background: var(--bg-card);
  border-left: 3px solid var(--red);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.founder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--red);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.founder h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.founder .role { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 1rem; }
.founder p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }

/* ── Contact / Forms ── */

.form-card {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

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

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background: #ff4444;
  box-shadow: 0 0 20px var(--red-glow);
}

/* Honeypot — invisible to humans, irresistible to bots.
   Positioned far off-screen rather than display:none so dumb scrapers
   that filter on display still see the field as "visible". */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Footer ── */

footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer a { color: var(--text-dim); }

.footer-quote {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ── Responsive ── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  margin-left: auto;
  position: relative;
  z-index: 102;
  -webkit-tap-highlight-color: rgba(232, 64, 64, 0.3);
  touch-action: manipulation;
}

@media (max-width: 900px) {
  .hero h1 { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .how-it-works .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }

  .nav-toggle { display: block; }

  .nav-cta { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background: rgba(18, 18, 28, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(232, 64, 64, 0.15);
    border-radius: 16px;
    margin: 0;
    padding: 0.5rem 0;
    gap: 0;
    min-width: 200px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 1rem;
    display: block;
  }
}

/* ── Deep-space layer: starfield + nebula clouds ── */

/* Solid black backdrop sits on the body itself so the layers above can be transparent */
body {
  background-color: #03030a;
}

/* Starfield — brighter & denser */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  z-index: -1;
  pointer-events: none;
  background-image:
    /* Bright anchor stars (2-3 px) */
    radial-gradient(2.5px 2.5px at 12% 8%,  rgba(255,255,255,1),       transparent 70%),
    radial-gradient(2px   2px   at 46% 14%, rgba(255,255,255,1),       transparent 70%),
    radial-gradient(2.5px 2.5px at 81% 9%,  rgba(255,255,255,1),       transparent 70%),
    radial-gradient(2.5px 2.5px at 18% 38%, rgba(255,235,210,1),       transparent 70%),
    radial-gradient(2px   2px   at 72% 52%, rgba(255,255,255,1),       transparent 70%),
    radial-gradient(2.5px 2.5px at 38% 95%, rgba(220,235,255,1),       transparent 70%),
    radial-gradient(2px   2px   at 42% 68%, rgba(255,255,255,1),       transparent 70%),
    radial-gradient(2px   2px   at 86% 96%, rgba(255,255,255,1),       transparent 70%),
    /* Medium stars (1.5 px) */
    radial-gradient(1.5px 1.5px at 28% 22%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 63% 28%, rgba(200,220,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 92% 31%, rgba(255,255,255,0.9),  transparent 70%),
    radial-gradient(1.5px 1.5px at 35% 47%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 54% 41%, rgba(255,240,220,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 88% 49%, rgba(255,255,255,0.9),  transparent 70%),
    radial-gradient(1.5px 1.5px at  6% 61%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 24% 73%, rgba(255,255,255,1),    transparent 70%),
    radial-gradient(1.5px 1.5px at 58% 77%, rgba(220,230,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 76% 81%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 93% 71%, rgba(255,250,230,0.9),  transparent 70%),
    radial-gradient(1.5px 1.5px at 14% 90%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 65% 88%, rgba(255,255,255,0.95), transparent 70%),
    /* Faint background stars (1 px) — fill space */
    radial-gradient(1px 1px at  4% 16%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 21% 52%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 33% 11%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 41% 33%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 49% 62%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 56% 19%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 67% 44%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 79% 64%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 84% 36%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 96% 56%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at  9% 84%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 27% 96%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 47% 87%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 73% 93%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1px 1px at 89% 84%, rgba(255,255,255,0.7), transparent 70%);
  background-size: 1100px 800px;
  background-repeat: repeat;
  animation: drift-stars 240s linear infinite, twinkle 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes drift-stars {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-60px, -120px, 0); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.92; }
  50%      { opacity: 1; }
}
