:root {
  --electric: #00e9ae;
  --teal-soft: #64d6c5;
  --deep: #09090d;
  --navy: #1a1c50;
  --ember: #ff4d00;
  --steel: #1f1f29;
  --steel-2: #2b2b38;
  --text: #f4f5f7;
  --text-muted: #b9bdd0;
  --max-width: 1240px;
  --font-head: "Poppins", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

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

body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(100, 214, 197, 0.16), transparent 60%),
    radial-gradient(800px 500px at 10% 35%, rgba(26, 28, 80, 0.45), transparent 70%),
    var(--deep);
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-a {
  width: 380px;
  height: 380px;
  right: -100px;
  top: -120px;
  background: rgba(0, 233, 174, 0.35);
}

.ambient-b {
  width: 340px;
  height: 340px;
  left: -90px;
  bottom: -120px;
  background: rgba(255, 77, 0, 0.22);
}

.site-header, main {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.brand-text em {
  color: var(--electric);
  font-style: normal;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

nav a:hover { color: var(--electric); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1rem 4.7rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.section-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 0.8rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--electric);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 4.1rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

h3 {
  font-size: 1.07rem;
}

.hero-copy {
  margin: 0;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.72;
}

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

.btn {
  border-radius: 999px;
  padding: 0.76rem 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(120deg, var(--electric), var(--teal-soft));
  color: #03110d;
}

.btn.ghost {
  border: 1px solid var(--steel-2);
  color: var(--text);
}

.media-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 28, 0.78);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

section + section {
  margin-top: 3.3rem;
}

.section-header {
  margin-bottom: 1.15rem;
}

.signal-strip,
.engine-grid,
.pricing-grid,
.gallery-grid,
.pill-row {
  display: grid;
  gap: 0.9rem;
}

.signal-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-strip article,
.card,
.pricing-plan {
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(28, 28, 38, 0.92), rgba(18, 18, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem;
}

.signal-strip p,
.card p,
.plan-desc,
.plan-meta,
.pricing-status {
  color: var(--text-muted);
}

.signal-strip p,
.card p,
.plan-desc {
  margin: 0.4rem 0 0;
}

.engine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  margin-top: 1rem;
  grid-template-columns: 1fr 1fr;
}

.pill-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pill-row span {
  border-radius: 999px;
  border: 1px solid rgba(100, 214, 197, 0.3);
  background: rgba(18, 22, 30, 0.9);
  padding: 0.55rem 0.8rem;
  text-align: center;
  font-size: 0.88rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 28, 0.8);
}

.steps li {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps span {
  color: var(--electric);
  display: inline-block;
  width: 42px;
  font-family: var(--font-head);
}

.pricing-status {
  margin-bottom: 0.8rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-price {
  margin: 0.55rem 0 0.35rem;
  font-size: 1.95rem;
  color: var(--electric);
  font-family: var(--font-head);
  line-height: 1;
}

.plan-meta {
  margin: 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-actions {
  margin-top: 0.95rem;
}

.trust .pill-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta {
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(140deg, rgba(26, 28, 80, 0.5), rgba(12, 12, 18, 0.92));
}

.cta p {
  margin: 0.95rem 0 0;
  color: var(--text-muted);
}

.cta a {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero,
  .signal-strip,
  .engine-grid,
  .pricing-grid,
  .gallery-grid,
  .pill-row,
  .trust .pill-row {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
