/* ================================================
   GLOBALIPTV.CA — "Northern Aurora" Theme
   Typography: Racing Sans One (display) + Outfit (body)
   Palette: Deep dark + White + Canadian Red accent
   ================================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --bg-deep:       #000000;
  --bg-primary:    #000000;
  --bg-card:       #0a0a0a;
  --bg-card-hover: #111111;
  --bg-surface:    #000000;

  --red:           #E63946;
  --red-light:     #ff4d5c;
  --red-dark:      #b91c28;
  --red-glow:      rgba(230, 57, 70, 0.35);

  --text-primary:  #f1f5f9;
  --text-secondary:#b3b3b3;
  --text-muted:    #808080;

  --glass:         rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-hover:   rgba(255, 255, 255, 0.1);

  --accent:        var(--red);
  --accent-hover:  var(--red-dark);
  --card-bg:       var(--bg-card);
  --border:        var(--glass-border);

  --radius:        12px;
  --radius-lg:     20px;
  --radius-full:   9999px;

  --nav-h:         72px;
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  background: var(--bg-deep);
  overflow-x: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Racing Sans One', cursive;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.15);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px var(--red-glow), 0 1px 2px rgba(0,0,0,.3);
}
.btn--primary:hover {
  background: var(--red-light);
  box-shadow: 0 8px 40px var(--red-glow), 0 2px 4px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.2);
  background: var(--glass-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: 'Racing Sans One', cursive;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
}
.logo-global { color: var(--text-primary); }
.logo-iptv   { color: var(--red); }
.logo-ca     { color: var(--text-muted); font-size: 0.8em; margin-left: 1px; }

.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { font-size: 0.85rem; padding: 10px 24px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: var(--nav-h) 0 0;
  overflow: hidden;
  background: #000;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.12);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.hero__badge-leaf { color: var(--red); }

.hero__title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__content {
  max-width: 600px;
}

.hero__desc {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__interac {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.hero__interac svg {
  flex-shrink: 0;
}

/* Globe background */
.globe-bg {
  position: absolute;
  top: -55%;
  right: -30%;
  width: 1500px;
  height: 1500px;
  z-index: 1;
  pointer-events: none;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.globe-static {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.7;
}

.globe-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(230,57,70,0.07) 0%, rgba(230,57,70,0.02) 40%, transparent 60%);
  pointer-events: none;
}

/* Hero placeholder */
.hero__placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__placeholder {
  perspective: 1200px;
}

.placeholder-frame {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.placeholder-frame:hover {
  transform: rotateY(-2deg) rotateX(0deg);
}

.placeholder-frame__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ph-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.ph-dot:first-child { background: var(--red); opacity: 0.8; }
.ph-dot:nth-child(2) { background: rgba(255,255,255,.2); }
.ph-dot:nth-child(3) { background: rgba(255,255,255,.12); }

.placeholder-frame__body {
  display: flex;
}
.placeholder-frame__body img {
  width: 100%;
  height: auto;
  display: block;
}

/* Maple Scene (legacy) */
.maple-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.06) 0%, transparent 70%);
}

.maple-scene__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
  filter: blur(40px);
}

.maple-leaf {
  position: absolute;
  color: var(--red);
  filter: drop-shadow(0 0 20px var(--red-glow));
}

.maple-leaf--hero {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  animation: hero-leaf-spin 30s linear infinite, glow-pulse 4s ease-in-out infinite alternate;
}

.maple-leaf--sm {
  opacity: 0.12;
  filter: drop-shadow(0 0 10px rgba(230,57,70,0.15));
}

.maple-leaf--1 { width: 32px; height: 32px; top: 8%;  left: 15%; animation: leaf-float-1 7s ease-in-out infinite alternate, leaf-spin 20s linear infinite; }
.maple-leaf--2 { width: 22px; height: 22px; top: 18%; right: 12%; animation: leaf-float-2 9s ease-in-out infinite alternate, leaf-spin 25s linear infinite reverse; animation-delay: 1s; }
.maple-leaf--3 { width: 40px; height: 40px; bottom: 25%; left: 8%;  animation: leaf-float-1 8s ease-in-out infinite alternate, leaf-spin 18s linear infinite; animation-delay: 2s; }
.maple-leaf--4 { width: 26px; height: 26px; bottom: 12%; right: 20%; animation: leaf-float-2 6s ease-in-out infinite alternate, leaf-spin 22s linear infinite reverse; animation-delay: 0.5s; }
.maple-leaf--5 { width: 18px; height: 18px; top: 40%;  left: 5%;  animation: leaf-float-1 10s ease-in-out infinite alternate, leaf-spin 28s linear infinite; animation-delay: 3s; }
.maple-leaf--6 { width: 28px; height: 28px; top: 12%;  right: 30%; animation: leaf-float-2 7.5s ease-in-out infinite alternate, leaf-spin 19s linear infinite reverse; animation-delay: 1.5s; }
.maple-leaf--7 { width: 20px; height: 20px; bottom: 35%; right: 8%; animation: leaf-float-1 8.5s ease-in-out infinite alternate, leaf-spin 24s linear infinite; animation-delay: 2.5s; }

/* Player Frame */
.player-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  z-index: 10;
}
.player-frame__inner {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(230,57,70,0.06);
}
.player-frame__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--glass-border);
}
.player-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}
.player-dot:first-child { background: var(--red); opacity: 0.8; }
.player-dot:nth-child(2) { background: var(--text-secondary); opacity: 0.5; }
.player-dot:nth-child(3) { background: var(--text-secondary); opacity: 0.3; }

.player-frame__screen {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(230,57,70,0.04) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.2), transparent);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-bob 2s ease-in-out infinite;
}

/* ---------- MOVIE CAROUSEL ---------- */
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  background: var(--bg-deep);
}

.carousel::before,
.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}
.carousel::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
  will-change: transform;
}

.carousel__header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 48px;
}
.carousel__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.carousel__header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.carousel__track img {
  height: 280px;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.carousel__track img:hover {
  transform: scale(1.05);
}

@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- WHY SECTION ---------- */
.why {
  padding: 80px 0;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 16px 0 8px;
}

.why__lead {
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
}

.why__text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.why__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.7;
}

.why__list li svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 4px;
}

.why__list li strong {
  color: var(--text-primary);
}

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

/* ---------- STATS ---------- */
.stats {
  position: relative;
  background: var(--bg-surface);
  padding: 32px 0;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  font-family: 'Racing Sans One', cursive;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-primary);
}
.stat__suffix {
  font-family: 'Racing Sans One', cursive;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--red);
}
.stat__label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 72px 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent, var(--red)), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(230, 57, 70, 0.08);
  color: var(--card-accent, var(--red));
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}
.feature-card:hover .feature-card__icon { transform: scale(1.1) rotate(-3deg); }

.feature-card h3 {
  font-family: 'Racing Sans One', cursive;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.75;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 72px 0;
  background: var(--bg-deep);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
  opacity: 0.3;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step__number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
  position: relative;
  z-index: 1;
}

.step__content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step__content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .steps::before { left: 24px; }
  .step__number { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 80px 0 72px;
  background: var(--bg-primary);
}

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-card__text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-card__author strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-card__author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 72px 0;
  background: var(--bg-surface);
  position: relative;
}

/* Tabs */
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing__tab {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 28px;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.pricing__tab:hover {
  color: var(--text-primary);
}
.pricing__tab.is-active {
  background: var(--red);
  color: #fff;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.price-card:hover {
  transform: translateY(-6px);
}

/* Featured 12-month card */
.price-card--featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(230,57,70,0.1) 0%, rgba(230,57,70,0.02) 30%, var(--bg-card) 60%);
  transform: scale(1.04);
  z-index: 2;
}
.price-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-card__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--red);
  color: #fff;
  white-space: nowrap;
}

.price-card__savings {
  font-size: 0.85rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 20px;
}

.price-card__tier {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 4px;
}

.price-card__devices-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease-out);
}
.price-card__devices-badge svg {
  flex-shrink: 0;
}

.price-card__head { margin-bottom: 24px; }
.price-card__head h3 {
  font-family: 'Racing Sans One', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.price-card__duration {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 32px;
}
.price-card__currency {
  font-family: 'Racing Sans One', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  align-self: flex-start;
  margin-top: 8px;
}
.price-card__amount {
  font-family: 'Racing Sans One', cursive;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.price-card__period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.price-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.price-card__features svg {
  flex-shrink: 0;
  color: var(--red);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 72px 0;
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(230, 57, 70, 0.2); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }
.faq-item__q:hover { background: var(--glass-hover); }

.faq-item__q h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.08);
  position: relative;
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon { background: rgba(230, 57, 70, 0.15); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-item__a {
  padding: 0 24px 20px;
}
.faq-item__a p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-surface);
}

.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-deep);
  padding-top: 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col h4 {
  font-family: 'Racing Sans One', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--text-primary); }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__partner {
  margin-top: 6px;
}
.footer__partner a {
  color: var(--red-light);
  font-weight: 600;
  transition: color 0.2s;
}
.footer__partner a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- KEYFRAMES ---------- */
@keyframes glow-pulse {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes hero-leaf-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes leaf-float-1 {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(8deg); }
}
@keyframes leaf-float-2 {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(-10deg); }
}
@keyframes leaf-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scroll-bob {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}

.legal-page__updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }

.legal-page li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-page a:hover {
  color: #fff;
}

.legal-page strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .legal-page { padding: 100px 0 60px; }
  .legal-page h2 { margin-top: 28px; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  animation: cookie-slide-up 0.4s var(--ease-out);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.cookie-banner__text svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red-light);
}

.cookie-banner__text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius);
}

@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; margin: 0 auto; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__placeholder { max-width: 480px; margin: 0 auto; }
  .globe-bg { width: 1200px; height: 1200px; right: -40%; top: -40%; }
  .why__inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .features__grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid   { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }

  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile menu */
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    animation: menu-slide 0.3s var(--ease-out);
  }

  .nav__hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
  .nav__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Left-align hero on mobile */
  .hero__inner { text-align: left; }
  .hero__content { margin: 0; }
  .hero__desc { margin-left: 0; margin-right: 0; }
  .hero__actions { justify-content: flex-start; }

  .globe-bg { width: 900px; height: 900px; right: -55%; top: -30%; opacity: 0.7; }
  .carousel__track img { height: 150px; }
  .carousel__track { gap: 10px; animation-duration: 25s; }
  .carousel { padding: 28px 0; }
  .carousel__header { margin-bottom: 20px; padding: 0 20px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why__inner { grid-template-columns: 1fr; }
  .why__text { text-align: left; }
  .why__img { max-width: 500px; margin: 0 auto; }
  .features__grid { grid-template-columns: 1fr; }
  .pricing__grid  { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .pricing__tab { padding: 8px 18px; font-size: 0.85rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* How It Works mobile */
  .how-it-works { padding: 56px 0; }
  .steps::before { left: 24px; }
  .step { gap: 16px; }
  .step__number { width: 48px; height: 48px; font-size: 1.15rem; }
  .step__content h3 { font-size: 1.1rem; }

  /* Testimonials mobile */
  .testimonials { padding: 64px 0 56px; }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-card { padding: 24px; }

  /* Cookie banner mobile */
  .cookie-banner__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 16px;
  }
  .cookie-banner__text { gap: 10px; }
  .cookie-banner__text svg { display: none; }
  .cookie-banner__text p { font-size: 0.82rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }

  .container { padding: 0 20px; }
}

@keyframes menu-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- SUBPAGE HERO ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 48px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 650px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 36px; }
}

/* ---------- INSTALLATION GUIDES ---------- */
.guides {
  padding: 16px 0 72px;
}

.guides__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.guide-item[open] { border-color: rgba(230, 57, 70, 0.25); }

.guide-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s;
}
.guide-item__q::-webkit-details-marker { display: none; }
.guide-item__q::marker { display: none; content: ''; }
.guide-item__q:hover { background: var(--glass-hover); }

.guide-item__device {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(230, 57, 70, 0.08);
  color: var(--red);
}

.guide-item__q h2 {
  flex: 1;
  font-family: 'Figtree', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
}
.guide-item__q h2 span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.guide-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.08);
  position: relative;
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.guide-item__icon::before,
.guide-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}
.guide-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.guide-item[open] .guide-item__icon { background: rgba(230, 57, 70, 0.15); }
.guide-item[open] .guide-item__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.guide-item__a {
  padding: 4px 24px 24px;
}
.guide-item__a > p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
}

.guide-steps {
  counter-reset: gstep;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 4px;
}
.guide-steps li {
  counter-increment: gstep;
  position: relative;
  padding-left: 42px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.guide-steps li::before {
  content: counter(gstep);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--red-light);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-steps strong { color: var(--text-primary); }

.guide-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(230, 57, 70, 0.06);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 18px;
  color: var(--text-secondary);
}
.guide-note svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 3px;
}
.guide-note strong { color: var(--text-primary); }
.guide-note a {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide-note a:hover { color: #fff; }

@media (max-width: 768px) {
  .guide-item__q { padding: 16px 18px; gap: 12px; }
  .guide-item__device { width: 38px; height: 38px; }
  .guide-item__a { padding: 0 18px 20px; }
}

/* ---------- FREE TRIAL ---------- */
.trial-card-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
}
.btn--whatsapp:hover {
  background: #1ebe5c;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}
.btn--whatsapp svg { fill: #fff; flex-shrink: 0; }

/* ---------- ABOUT PAGE ---------- */
.about-story {
  padding: 32px 0 64px;
}
.about-story .why__inner { align-items: start; }

/* ---------- NAV — EARLY COLLAPSE (more menu links) ---------- */
@media (max-width: 1100px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    animation: menu-slide 0.3s var(--ease-out);
  }

  .nav__hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
  .nav__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ================================================================
   AMBIENT BACKGROUND — sitewide "fog + red constellations"
   A brand-red starfield (stars connected in lines) over a faint
   dark fog on the black base — so no section reads as flat pure-
   black. The layers are absolute and span the FULL page height, so
   they SCROLL with the content: you move through a tall, varied
   constellation field and see different patterns as you scroll.
   The hero keeps its own (untouched) black backdrop.
   ================================================================ */

/* Establish the containing block for the full-height ambient layers */
body { position: relative; }

/* Let the ambient show through the previously solid-black sections.
   (.hero is intentionally left alone — it keeps its own backdrop.) */
.carousel,
.stats,
.how-it-works,
.testimonials,
.pricing,
.cta-banner {
  background: transparent;
}

/* Layer 1 — faint dark fog + fine red star dust (scrolls with page) */
body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px    at 60px 70px,  rgba(230,57,70,0.26), transparent),
    radial-gradient(1.5px 1.5px at 250px 200px, rgba(255,86,98,0.22), transparent),
    radial-gradient(60% 30% at 18% 10%,  rgba(230,57,70,0.030), transparent 70%),
    radial-gradient(55% 28% at 82% 55%,  rgba(230,57,70,0.026), transparent 72%);
  background-size:
    360px 360px, 360px 360px,
    100% 70%, 100% 70%;
  background-repeat:
    repeat, repeat,
    no-repeat, no-repeat;
}

/* Layer 2 — red constellations ("stars lining up"), tiled down the
   full page height so new patterns scroll into view. */
body::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("../img/constellation.svg") center top / 135% auto repeat-y;
  opacity: 0.85;
}

/* Footer: solid black base with a few scattered red stars */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
  background:
    radial-gradient(1.5px 1.5px at 14% 32%, rgba(255,86,98,0.55), transparent),
    radial-gradient(1px 1px     at 78% 24%, rgba(230,57,70,0.50), transparent),
    radial-gradient(1px 1px     at 46% 58%, rgba(255,86,98,0.45), transparent),
    radial-gradient(1.5px 1.5px at 64% 80%, rgba(230,57,70,0.45), transparent),
    radial-gradient(1px 1px     at 30% 82%, rgba(255,86,98,0.50), transparent),
    radial-gradient(1px 1px     at 90% 62%, rgba(230,57,70,0.40), transparent),
    var(--bg-deep);
}
