/* ── Tokens ───────────────────────────────────────────────────────── */
:root {
  --night:        #0a1426;
  --midnight:     #14213d;
  --surface:      #1c2b4a;
  --surface-2:    #243557;
  --line:         #2a3a5c;
  --amber:        #f5b942;
  --amber-bright: #ffd166;
  --amber-soft:   rgba(245, 185, 66, 0.12);
  --cream:        #f5f1e8;
  --mist:         #8b95a9;
  --pitch:        #4a9b3e;

  --display: 'Anton', 'Impact', sans-serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --max:     1240px;
  --pad:     clamp(20px, 4vw, 48px);
  --radius:  4px;

  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-amber: 0 0 60px -10px rgba(245, 185, 66, 0.35);
}

/* ── Reset ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── Base ─────────────────────────────────────────────────────────── */
body {
  font-family: var(--body);
  background: var(--night);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* Pixel grid signature — LED matrix vibe */
.pixelgrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 185, 66, 0.18) 1px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

/* Display utility */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--amber);
}

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 20, 38, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-color: var(--line);
}
.nav__brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand-mark {
  width: 14px;
  height: 14px;
  background:
    radial-gradient(circle at center, var(--amber) 30%, transparent 32%),
    radial-gradient(circle at center, var(--amber-bright) 12%, transparent 14%);
  background-size: 6px 6px, 6px 6px;
  background-position: 0 0, 0 0;
  border: 1px solid var(--amber);
  border-radius: 2px;
  box-shadow: 0 0 16px var(--amber-soft);
}
.nav__links { display: none; gap: 28px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: var(--amber);
  color: var(--night);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-amber); }

@media (min-width: 880px) {
  .nav__links { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245, 185, 66, 0.08), transparent 60%),
    radial-gradient(ellipse at 20% 90%, rgba(74, 155, 62, 0.06), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, #0d1a32 100%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    padding-top: 40px;
  }
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--amber-soft);
  border: 1px solid rgba(245, 185, 66, 0.3);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--amber-bright);
  margin-bottom: 28px;
}
.hero__status .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 185, 66, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 185, 66, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 185, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 185, 66, 0); }
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 8.5vw, 104px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  display: block;
  color: var(--amber);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: var(--amber);
}

.hero__lede {
  margin-top: 32px;
  max-width: 520px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--mist);
  line-height: 1.55;
}

.hero__ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--night);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
  background: var(--amber-bright);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn svg { width: 18px; height: 18px; }

.hero__meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero__meta-item .k {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--amber);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero__meta-item .v {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

/* Poster card on the right */
.hero__poster {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  max-width: 420px;
  justify-self: center;
  width: 100%;
  transform: translateZ(0);
}
.hero__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 20, 38, 0.3));
  pointer-events: none;
}
.hero__poster img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 8s ease;
}
.hero__poster:hover img { transform: scale(1.03); }

.hero__poster-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
}
.hero__poster-label .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(10, 20, 38, 0.7);
  border-radius: 3px;
  backdrop-filter: blur(8px);
}
.hero__poster-label .live::before {
  content: "";
  width: 6px; height: 6px;
  background: #ff4b4b;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ── Section base ─────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
}

.section__head {
  max-width: 800px;
  margin-bottom: 64px;
}
.section__head .eyebrow { margin-bottom: 20px; }
.section__title {
  font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 64px);
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}
.section__lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--mist);
  max-width: 580px;
  line-height: 1.6;
}

/* ── Specs ────────────────────────────────────────────────────────── */
.specs {
  background:
    linear-gradient(180deg, transparent, rgba(245, 185, 66, 0.025) 50%, transparent),
    var(--night);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specs__grid {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 880px) {
  .specs__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

.specs__tabs {
  display: inline-flex;
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 32px;
}
.specs__tab {
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.specs__tab[aria-selected="true"] {
  background: var(--amber);
  color: var(--night);
}

.specs__panel { display: none; }
.specs__panel[data-active] {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.specs__display {
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.specs__display .pixelgrid {
  opacity: 0.2;
  mask-image: none;
  -webkit-mask-image: none;
}
.specs__hero-num {
  font-family: var(--display);
  font-size: clamp(110px, 18vw, 200px);
  line-height: 0.85;
  color: var(--amber);
  letter-spacing: -0.01em;
  text-shadow: 0 0 40px rgba(245, 185, 66, 0.4);
  position: relative;
}
.specs__hero-num sup {
  font-size: 0.35em;
  vertical-align: super;
  color: var(--amber-bright);
  font-weight: normal;
}
.specs__hero-label {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  position: relative;
}

.specs__list {
  list-style: none;
  display: grid;
  gap: 18px;
}
.specs__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.specs__list li:last-child { border-bottom: none; }
.specs__list .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  align-self: center;
}
.specs__list .value {
  color: var(--cream);
  font-weight: 500;
}
.specs__list .value strong {
  color: var(--amber);
  font-weight: 600;
}

/* ── Use cases ────────────────────────────────────────────────────── */
.cases {
  background: var(--night);
}
.cases__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.case {
  position: relative;
  padding: 32px 28px;
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.case:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  background: var(--surface);
}
.case::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.case:hover::before { width: 100%; }
.case__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  color: var(--amber);
}
.case__title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.case__copy {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

/* ── Gallery / carousel ───────────────────────────────────────────── */
.gallery {
  background: var(--night);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.gallery__viewport {
  position: relative;
  margin: 0 calc(-1 * var(--pad));
}

.gallery__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px var(--pad);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery__track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 min(720px, 88vw);
  scroll-snap-align: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--midnight);
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.slide__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.slide:hover .slide__media img {
  transform: scale(1.04);
}
.slide__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 70px 26px 24px;
  background: linear-gradient(to top, rgba(10, 20, 38, 0.95) 0%, rgba(10, 20, 38, 0.6) 50%, transparent 100%);
  color: var(--cream);
  pointer-events: none;
}
.slide__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.slide__title {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

/* Controls */
.gallery__controls {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.gallery__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--midnight);
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
  flex-shrink: 0;
}
.gallery__arrow:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--surface);
}
.gallery__arrow:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.gallery__arrow svg { width: 18px; height: 18px; }

.gallery__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  padding: 0;
}
.gallery__dot:hover { background: var(--mist); }
.gallery__dot.is-active {
  background: var(--amber);
  width: 28px;
  border-radius: 4px;
}

.gallery__counter {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mist);
  min-width: 56px;
  text-align: center;
}
.gallery__counter strong {
  color: var(--cream);
  font-weight: 700;
}

/* ── Features ─────────────────────────────────────────────────────── */
.features {
  background: linear-gradient(180deg, var(--night) 0%, #0d1a32 100%);
  border-top: 1px solid var(--line);
}
.features__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.feature {
  background: var(--night);
  padding: 36px 30px;
  transition: background 0.2s;
}
.feature:hover { background: var(--midnight); }
.feature__num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 14px;
}
.feature__title {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature__copy {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

/* ── Contact ──────────────────────────────────────────────────────── */
.contact {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(245, 185, 66, 0.06), transparent 60%),
    var(--night);
  border-top: 1px solid var(--line);
  position: relative;
}
.contact__grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 880px) {
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
  }
}

.contact__direct {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.contact__line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.contact__line:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}
.contact__line-icon {
  width: 22px;
  height: 22px;
  color: var(--amber);
  flex-shrink: 0;
}
.contact__line-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.contact__line-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 2px;
}

/* Form */
.form {
  background: var(--midnight);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
}
@media (max-width: 540px) { .form { padding: 28px 22px; } }

.form__title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form__sub {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 28px;
}

.form__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1 / -1; }

.form__field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: var(--night);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--body);
  width: 100%;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: #0d1830;
}
.form__field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--body);
}
.form__field.is-invalid input,
.form__field.is-invalid select,
.form__field.is-invalid textarea {
  border-color: #e57373;
}
.form__field-error {
  font-size: 12px;
  color: #e57373;
  margin-top: 6px;
  display: none;
}
.form__field.is-invalid .form__field-error { display: block; }

.form__submit {
  grid-column: 1 / -1;
  background: var(--amber);
  color: var(--night);
  padding: 18px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--mono);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  margin-top: 8px;
}
.form__submit:hover {
  background: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}
.form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.form__success {
  display: none;
  padding: 22px;
  background: rgba(74, 155, 62, 0.12);
  border: 1px solid rgba(74, 155, 62, 0.4);
  border-radius: var(--radius);
  color: #a8d49d;
  font-size: 14px;
  margin-bottom: 22px;
}
.form.is-success .form__success { display: block; }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
  padding: 50px var(--pad) 30px;
  border-top: 1px solid var(--line);
  background: #060d1c;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer__brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__meta {
  font-size: 13px;
  color: var(--mist);
}
.footer__legal {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ── Floating WhatsApp ─────────────────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}
.fab.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: fab-bounce 0.5s ease;
}
.fab:hover { transform: scale(1.08); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5); }
.fab svg { width: 30px; height: 30px; }
@keyframes fab-bounce {
  0%   { transform: scale(0.6); }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ── Scroll reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle hero animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero__poster { animation: float 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero__poster { animation: none; } }

/* ── Hero stars background (inline SVG) ──────────────────────────── */
.hero__stars {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><circle cx='20' cy='30' r='0.6' fill='%23f5f1e8'/><circle cx='70' cy='80' r='0.4' fill='%23f5f1e8'/><circle cx='130' cy='40' r='0.7' fill='%23ffd166'/><circle cx='180' cy='120' r='0.5' fill='%23f5f1e8'/><circle cx='50' cy='160' r='0.4' fill='%23f5f1e8'/><circle cx='100' cy='180' r='0.6' fill='%23f5f1e8'/><circle cx='160' cy='60' r='0.5' fill='%23f5f1e8'/><circle cx='30' cy='100' r='0.3' fill='%23f5f1e8'/></svg>");
}
