body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.4;
}
.container {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--s-md);
}
.container--narrow { max-width: 640px; text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.7rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px) saturate(1.05);
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  transition: all var(--dur) var(--ease);
  white-space: nowrap; position: relative; z-index: 1;
  box-shadow: 0 8px 22px rgba(2,6,23,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
}
.btn--primary {
  background: linear-gradient(180deg, rgba(74,124,255,0.18), rgba(74,124,255,0.12));
  color: var(--white); border-color: rgba(74,124,255,0.22);
  box-shadow: 0 10px 30px rgba(74,124,255,0.12), inset 0 1px 0 rgba(255,255,255,0.03);
}
.btn--primary:hover {
  background: linear-gradient(180deg, rgba(74,124,255,0.28), rgba(74,124,255,0.18));
  border-color: rgba(74,124,255,0.32);
  box-shadow: 0 18px 44px rgba(74,124,255,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
}
.btn--ghost { background: transparent; color: var(--white-dim); border-color: var(--border-med); }
.btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn--glass {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  box-shadow: 0 8px 22px rgba(2,6,23,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 14px 38px rgba(2,6,23,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.btn--outline { background: transparent; color: var(--white-dim); border-color: var(--border-med); }
.btn--outline:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; margin-top: auto; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(6,11,26,0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--white);
}
.nav__logo-mark {
  display: block; width: 14px; height: 16px;
  background: linear-gradient(160deg, #4a7cff 0%, #a44aff 50%, #ff3d71 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  flex-shrink: 0;
}
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: 0.88rem; color: var(--white-dim); letter-spacing: 0.02em; transition: color var(--dur) ease; }
.nav__links a:hover { color: var(--white); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: var(--s-lg);
  max-width: var(--max-w); margin: 0 auto;
  padding: 9rem var(--s-md) var(--s-2xl); z-index: 1;
}
.hero__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cta); margin-bottom: var(--s-md);
}
.hero__headline {
  display: flex; flex-direction: column;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: var(--s-md);
}
.hero__headline .line {
  display: block; opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
.hero__headline .line--1 { animation-delay: 0.1s; }
.hero__headline .line--2 {
  animation-delay: 0.22s;
  background: linear-gradient(90deg, #ff3d71 0%, #ff8c42 16%, #f9e04b 32%, #4affa0 48%, #4a7cff 64%, #4ac8ff 80%, #a44aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-style: normal;
  /* ensure crisp gradient rendering */
  background-size: 200% 100%;
}
.hero__headline .line--3 { animation-delay: 0.34s; }
.word-prism {
  background: linear-gradient(90deg, #4a7cff, #a44aff, #ff3d71);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700; font-style: normal;
}
.hero__sub {
  color: var(--white-dim); font-size: 1.05rem; font-weight: 300;
  max-width: 460px; margin-bottom: var(--s-lg); line-height: 1.75;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.44s forwards;
}
.hero__cta {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: var(--s-2xl);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.54s forwards;
}
.hero__stats {
  display: flex; align-items: center; gap: var(--s-lg);
  border-top: 1px solid var(--border-subtle); padding-top: var(--s-md);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.64s forwards;
}
.stat__n {
  display: block; font-family: var(--font-mono); font-size: 2.2rem;
  font-weight: 500; color: var(--white); letter-spacing: -0.02em; line-height: 1;
}
.stat__l { font-size: 0.78rem; color: var(--white-dimmer); letter-spacing: 0.04em; line-height: 1.5; }
.stat__sep { width: 1px; height: 40px; background: var(--border-subtle); }
.hero__prism {
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 1.2s ease 0.7s forwards;
  position: relative;
}
.hero__prism svg { width: 100%; max-width: 360px; filter: drop-shadow(0 0 40px rgba(74,124,255,0.2)); }
/* Style prism image to better fit the site feel */
.hero__prism img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto; max-height: 600px;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(2,6,23,0.7), 0 0 80px rgba(74,124,255,0.08);
  border: 1px solid rgba(255,255,255,0.04);
  object-fit: cover;
  filter: contrast(1.06) saturate(1.28) brightness(1.02);
  box-shadow: 0 28px 80px rgba(2,6,23,0.7), 0 0 80px rgba(74,124,255,0.08), inset 0 1px 0 rgba(255,255,255,0.03);
  transform: translateY(0);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative; z-index: 2;
}
.hero__prism:hover img {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(2,6,23,0.65), 0 0 60px rgba(74,124,255,0.12);
}

/* White radial glow behind the prism image */
.hero__prism::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 640px; height: 640px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 6%, rgba(255,255,255,0.18) 12%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 30% 40%, rgba(74,124,255,0.28) 0%, rgba(74,124,255,0.18) 10%, rgba(74,124,255,0) 28%),
    radial-gradient(circle at 60% 50%, rgba(164,74,255,0.22) 0%, rgba(164,74,255,0) 22%),
    radial-gradient(circle at 72% 38%, rgba(255,61,113,0.16) 0%, rgba(255,61,113,0) 24%);
  filter: blur(36px) saturate(1.05);
  opacity: 0.95; z-index: 1; pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

/* Low, blurred floor reflection / dispersion rays */
.hero__prism::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -8%; width: 78%; height: 160px; border-radius: 4px;
  background: linear-gradient(90deg, rgba(74,124,255,0.14) 6%, rgba(164,74,255,0.10) 30%, rgba(255,61,113,0.08) 58%, rgba(255,200,140,0.06) 82%);
  filter: blur(34px) contrast(1.05) saturate(1.2);
  opacity: 0.9; z-index: 0; pointer-events: none; mix-blend-mode: screen;
  transform-origin: center; transform: translateX(-50%) rotateX(72deg) scaleY(0.7);
}
.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: var(--s-md);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white-dimmer);
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero__scroll-line {
  display: block; width: 48px; height: 1px; background: var(--white-dimmer);
  transform-origin: left; animation: extendLine 1.2s var(--ease) 1.4s both;
}

/* SECTIONS */
.section { padding: var(--s-2xl) 0; position: relative; z-index: 1; }
.section--glass {
  background: var(--navy-glass); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.section__header { margin-bottom: var(--s-xl); }
.section__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cta); margin-bottom: var(--s-sm);
}
.section__title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

/* Process explained image (prism graphic) */
.process-explained { display: flex; justify-content: center; margin-bottom: var(--s-lg); }
.process-explained img { width: 100%; max-width: 760px; height: auto; border-radius: 32px; box-shadow: 0 12px 36px rgba(2,6,23,0.55); border: 1px solid rgba(255,255,255,0.03); }

/* PROCESS */
.process { display: flex; flex-direction: column; }
.process__step {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: start; gap: var(--s-lg);
  padding: var(--s-lg) 0; border-top: 1px solid var(--border-subtle);
}
.process__num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--white-dimmer); letter-spacing: 0.1em; padding-top: 4px; }
.process__content { display: flex; flex-direction: column; gap: 0.75rem; }
.process__icon { color: var(--cta); line-height: 1; }
.process__title { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); }
.process__body { color: var(--white-dim); font-weight: 300; max-width: 500px; font-size: 0.97rem; }
.process__connector { padding-left: 80px; height: 48px; display: flex; align-items: center; }
.process__beam { width: 1px; height: 100%; background: var(--border-subtle); }
.process__beam--rainbow { background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(74,124,255,0.4) 50%, rgba(164,74,255,0.4) 100%); }

/* DELIVERABLES */
.deliverables { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-sm); }
.deliverable {
  position: relative; background: var(--navy-glass);
  border: 1px solid var(--border-subtle); border-radius: var(--r-lg);
  padding: var(--s-lg); overflow: hidden; backdrop-filter: blur(10px);
  transition: border-color var(--dur) ease;
}
.deliverable:hover { border-color: var(--border-med); }
.deliverable__spectrum { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--clr1), var(--clr2)); opacity: 0.8; }

/* Glassmorphic, colorful reveal state for deliverables */
.deliverable.reveal.visible {
  background: linear-gradient(160deg, rgba(74,124,255,0.10) 0%, rgba(164,74,255,0.085) 40%, rgba(255,61,113,0.06) 70%, rgba(255,200,140,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  box-shadow: 0 18px 48px rgba(2,6,23,0.6), 0 0 40px rgba(74,124,255,0.06) inset 0 1px 0 rgba(255,255,255,0.02);
  color: var(--white);
  transform: translateY(0);
  opacity: 1;
  transition: all 420ms var(--ease);
}

.deliverable.reveal.visible .deliverable__title { color: var(--white); }
.deliverable.reveal.visible .deliverable__body { color: rgba(255,255,255,0.9); }
.deliverable__title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; padding-top: var(--s-sm); letter-spacing: -0.01em; }
.deliverable__body { color: var(--white-dim); font-size: 0.92rem; font-weight: 300; line-height: 1.7; margin-bottom: var(--s-md); }
.deliverable__platforms { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.deliverable__platforms span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-dimmer); border: 1px solid var(--border-subtle); border-radius: 4px; padding: 0.2rem 0.6rem; }

/* PERSONAS */
.personas { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--s-lg); }
.persona { padding: 0.5rem 1.2rem; border: 1px solid var(--border-subtle); border-radius: 999px; font-size: 0.88rem; font-weight: 400; color: var(--white-dim); letter-spacing: 0.02em; transition: all var(--dur) ease; cursor: default; }
.persona:hover { border-color: rgba(74,124,255,0.5); color: var(--white); background: rgba(74,124,255,0.07); }
.for__note { font-size: 1.05rem; color: var(--white-dim); font-weight: 300; max-width: 480px; font-style: italic; }

/* TESTIMONIALS */
.testimonials { display: grid; gap: var(--s-sm); }
.testimonial { position: relative; background: var(--navy-glass); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); padding: var(--s-lg); overflow: hidden; backdrop-filter: blur(10px); }
.testimonial__spectrum { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, #4a7cff, #a44aff, #ff3d71); }
.testimonial__quote { font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.8; margin-bottom: var(--s-md); }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #4a7cff, #a44aff); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; flex-shrink: 0; }
.testimonial__name { font-size: 0.9rem; font-weight: 500; }
.testimonial__role { font-size: 0.8rem; color: var(--white-dimmer); }

/* PRICING */
.plans { display: flex; gap: var(--s-sm); justify-content: center; flex-wrap: wrap; }
.plan { flex: 1; min-width: 280px; max-width: 380px; display: flex; flex-direction: column; background: var(--navy-glass); border: 1px solid var(--border-subtle); border-radius: var(--r-xl); padding: var(--s-lg); backdrop-filter: blur(10px); position: relative; overflow: hidden; transition: border-color var(--dur) ease; }
.plan:hover { border-color: var(--border-med); }
.plan--featured { border-color: rgba(74,124,255,0.4); }
.plan--featured:hover { border-color: rgba(74,124,255,0.65); }
.plan__glow { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 240px; height: 240px; background: radial-gradient(circle, rgba(74,124,255,0.15) 0%, transparent 70%); pointer-events: none; }
.plan__badge { display: inline-flex; align-self: flex-start; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cta); border: 1px solid rgba(74,124,255,0.35); border-radius: 4px; padding: 0.25rem 0.65rem; margin-bottom: var(--s-sm); }
.plan__name { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dimmer); margin-bottom: 0.75rem; }
.plan__price { font-family: var(--font-mono); font-size: 3.5rem; font-weight: 500; letter-spacing: -0.02em; line-height: 1; margin-bottom: var(--s-md); display: flex; align-items: flex-start; gap: 2px; }
.plan__currency { font-size: 1.4rem; margin-top: 0.4rem; color: var(--white-dim); }
.plan__period { font-size: 1rem; color: var(--white-dimmer); margin-top: auto; padding-bottom: 0.5rem; font-weight: 300; }
.plan__divider { height: 1px; background: var(--border-subtle); margin-bottom: var(--s-md); }
.plan__features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: var(--s-lg); flex: 1; }
.plan__features li { font-size: 0.9rem; font-weight: 300; color: var(--white-dim); display: flex; align-items: center; gap: 0.6rem; }
.plan__features li::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--cta); flex-shrink: 0; opacity: 0.7; }

/* Pricing note styling (centered, subdued color) */
.pricing__note {
  text-align: center;
  color: var(--white-dimmer);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: var(--s-md);
  width: 100%;
}

/* CTA SECTION */
.cta-section { text-align: center; border-top: 1px solid var(--border-subtle); }
.cta-section__title { margin-bottom: var(--s-md); }
.cta-section__sub { color: var(--white-dim); font-weight: 300; margin-bottom: var(--s-lg); font-size: 1.02rem; }
.cta-section__note { margin-top: var(--s-sm); font-size: 0.78rem; color: var(--white-dimmer); letter-spacing: 0.05em; }
.text-spectrum { background: linear-gradient(90deg, #4a7cff 0%, #a44aff 40%, #ff3d71 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* FOOTER */
.footer { border-top: 1px solid var(--border-subtle); padding: var(--s-lg) var(--s-md); position: relative; z-index: 1; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-sm); }
.footer__logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono); font-size: 1rem; font-weight: 500; letter-spacing: 0.05em; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 0.85rem; color: var(--white-dimmer); transition: color var(--dur) ease; }
.footer__links a:hover { color: var(--white); }
.footer__copy { font-size: 0.78rem; color: var(--white-dimmer); }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes extendLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  /* show prism on small screens and constrain its size/glow */
  .hero__prism { display: flex; justify-content: center; margin-top: var(--s-lg); }
  .hero__prism img { max-width: 360px; width: 86%; border-radius: 12px; box-shadow: 0 14px 36px rgba(2,6,23,0.55); }
  .hero__prism::before { width: 360px; height: 360px; filter: blur(20px); opacity: 0.9; }
  .hero__prism::after { display: none; }
  .deliverables { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero__stats { gap: var(--s-md); flex-wrap: wrap; }
  .process__step { grid-template-columns: 48px 1fr; gap: var(--s-sm); }
  .process__connector { padding-left: 48px; }
  .section__title { font-size: 2rem; }
}
