:root {
  --ink: #06111f;
  --night: #0b1022;
  --panel: #101a33;
  --violet: #7427f2;
  --cyan: #19c7e8;
  --lime: #b9ff5a;
  --gold: #ffbe2e;
  --white: #ffffff;
  --muted: #b8c2d6;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(2, 8, 23, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--night);
}

body.modal-open {
  overflow: hidden;
}

body.animations-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.animations-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.animations-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(22px);
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.animations-ready .reveal-scale.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1040px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 13, 28, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  animation: header-drop 680ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 138px;
  height: 36px;
  isolation: isolate;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  position: relative;
  z-index: 1;
}

.logo-stage {
  display: none;
}

.logo-client {
  position: absolute;
  left: 84px;
  top: -8px;
  width: 13px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px 12px 12px 3px;
  background: rgba(7, 13, 28, 0.9);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.16);
  opacity: 0;
  animation: accent-talk 4.8s ease 500ms both;
}

.logo-client::before,
.logo-client::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 1.8px;
  height: 1.8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.9;
  box-shadow: 4px 0 0 #ffffff, 8px 0 0 #ffffff;
}

.logo-client::before {
  left: 3px;
  animation: accent-dots 1.2s ease-in-out 900ms 3;
}

.logo-client::after {
  display: none;
}

.logo-executive {
  position: absolute;
  left: 107px;
  top: 2px;
  width: 13px;
  height: 32px;
  border-radius: 12px 12px 2px 2px;
  background:
    radial-gradient(circle at 50% 5px, rgba(185, 255, 90, 0.92) 0 5px, transparent 5.5px),
    linear-gradient(var(--lime), var(--lime)) center 13px / 8px 20px no-repeat;
  box-shadow: 0 0 18px rgba(185, 255, 90, 0.24);
  opacity: 0;
  transform-origin: center bottom;
  animation: human-i-walk 4.8s cubic-bezier(0.22, 1, 0.36, 1) 500ms both;
}

.logo-executive::before {
  display: none;
  content: "";
}

.logo-executive::after {
  display: none;
  content: "";
}

.logo-reception {
  display: none;
}

.logo-connection {
  display: none;
}

.logo-signal {
  display: none;
}

.brand:hover .logo-client,
.brand:focus-visible .logo-client,
.brand:hover .logo-executive,
.brand:focus-visible .logo-executive,
.brand:hover .logo-reception,
.brand:focus-visible .logo-reception,
.brand:hover .logo-connection,
.brand:focus-visible .logo-connection,
.brand:hover .logo-signal,
.brand:focus-visible .logo-signal {
  animation-delay: 0ms;
  animation-iteration-count: infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.header-cta,
.primary-button,
.secondary-button,
.plan-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px max(22px, calc((100vw - 1040px) / 2)) 56px;
}

.hero-carousel,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  background: #06111f;
}

.hero-slide {
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 120px max(22px, calc((100vw - 1040px) / 2)) 70px;
  opacity: 0;
  transform: scale(1.02);
  animation: hero-slide-show 35s infinite;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, var(--slide-glow), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(25, 199, 232, 0.13), transparent 24%),
    linear-gradient(135deg, var(--slide-start), var(--slide-mid) 48%, var(--slide-end));
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 76% 46%, black, transparent 62%);
}

.slide-legal {
  --slide-start: #07111f;
  --slide-mid: #10223d;
  --slide-end: #091d2a;
  --slide-glow: rgba(185, 255, 90, 0.22);
  animation-delay: 0s;
}

.slide-pharmacy {
  --slide-start: #1e1025;
  --slide-mid: #243a18;
  --slide-end: #0b1d28;
  --slide-glow: rgba(185, 255, 90, 0.22);
  animation-delay: 7s;
}

.slide-dj {
  --slide-start: #070817;
  --slide-mid: #25105b;
  --slide-end: #071e34;
  --slide-glow: rgba(25, 199, 232, 0.24);
  animation-delay: 14s;
}

.slide-catering {
  --slide-start: #120e12;
  --slide-mid: #473014;
  --slide-end: #111724;
  --slide-glow: rgba(255, 190, 46, 0.24);
  animation-delay: 21s;
}

.slide-dental {
  --slide-start: #07111f;
  --slide-mid: #163b4d;
  --slide-end: #0c1e30;
  --slide-glow: rgba(25, 199, 232, 0.24);
  animation-delay: 28s;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.98) 0%, rgba(6, 17, 31, 0.9) 36%, rgba(6, 17, 31, 0.18) 64%, rgba(6, 17, 31, 0.03) 100%),
    linear-gradient(180deg, rgba(6, 17, 31, 0.08), rgba(6, 17, 31, 0.46));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(630px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content > * {
  animation: hero-content-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 270ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 360ms;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 630px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 4.7vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 8px;
}

.typing-word {
  display: inline-flex;
  width: fit-content;
  min-height: 1em;
  align-items: center;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(185, 255, 90, 0.34);
}

.typing-word::after {
  content: "";
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.1em;
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(185, 255, 90, 0.6);
  animation: cursor-blink 0.82s steps(2, start) infinite;
}

.hero-copy {
  max-width: 540px;
  color: #d8e2f3;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.primary-button {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 20px 44px rgba(185, 255, 90, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-button.light {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-showcase {
  display: none;
}

.site-mockup {
  position: relative;
  z-index: 2;
  width: min(680px, 48vw);
  aspect-ratio: 16 / 10.8;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 15, 29, 0.84);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(185, 255, 90, 0.08);
  transform: perspective(1100px) rotateY(-10deg) rotateX(3deg) rotateZ(0.35deg);
  backdrop-filter: blur(12px);
  animation: mockup-float 7s ease-in-out infinite;
}

.site-mockup::after {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 10, 20, 0.38), transparent 34%),
    linear-gradient(180deg, rgba(4, 10, 20, 0.08), rgba(4, 10, 20, 0.42));
}

.mock-top {
  display: flex;
  height: 42px;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.09);
}

.mock-image {
  display: block;
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) brightness(0.78) blur(0.35px);
  transform: scale(1.018);
}

.mock-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.mock-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.mock-nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 15px 18px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
}

.mock-hero {
  display: grid;
  min-height: 300px;
  align-content: end;
  gap: 12px;
  margin: 16px;
  padding: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, var(--mock-glow), transparent 34%),
    linear-gradient(135deg, var(--mock-a), var(--mock-b));
}

.mock-hero small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mock-hero h3 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(1.65rem, 2.3vw, 2.5rem);
  line-height: 1;
}

.mock-hero p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.mock-hero b {
  width: fit-content;
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.82rem;
  font-weight: 950;
}

.mock-panels,
.mock-gallery,
.mock-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 16px 16px;
}

.mock-panels span,
.mock-gallery span,
.mock-menu span {
  min-height: 74px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-panels span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 900;
}

.mock-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.mock-gallery span,
.mock-menu span {
  background:
    radial-gradient(circle at 60% 34%, rgba(255, 255, 255, 0.34), transparent 23%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.mock-eq {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  height: 92px;
  align-items: end;
  padding: 0 16px 16px;
}

.mock-eq span {
  border-radius: 8px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}

.mock-eq span:nth-child(1) { height: 44px; }
.mock-eq span:nth-child(2) { height: 72px; }
.mock-eq span:nth-child(3) { height: 54px; }
.mock-eq span:nth-child(4) { height: 86px; }
.mock-eq span:nth-child(5) { height: 62px; }

.mock-bubbles,
.mock-timeline {
  display: flex;
  gap: 12px;
  padding: 0 16px 16px;
}

.mock-bubbles span {
  flex: 1;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.4), transparent 26%),
    linear-gradient(135deg, rgba(185, 255, 90, 0.3), rgba(25, 199, 232, 0.18));
}

.mock-timeline span {
  flex: 1;
  height: 76px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.legal-site {
  --mock-a: #081321;
  --mock-b: #243b68;
  --mock-glow: rgba(185, 255, 90, 0.25);
}

.dessert-site {
  --mock-a: #3b1736;
  --mock-b: #e26ca0;
  --mock-glow: rgba(255, 190, 46, 0.28);
}

.dj-site {
  --mock-a: #0c1028;
  --mock-b: #7427f2;
  --mock-glow: rgba(25, 199, 232, 0.3);
}

.kids-site {
  --mock-a: #19215c;
  --mock-b: #f24f7b;
  --mock-glow: rgba(185, 255, 90, 0.3);
}

.event-site {
  --mock-a: #08242e;
  --mock-b: #8358a8;
  --mock-glow: rgba(255, 190, 46, 0.3);
}

.food-site {
  --mock-a: #35151a;
  --mock-b: #d6682f;
  --mock-glow: rgba(25, 199, 232, 0.22);
}

@keyframes hero-slide-show {
  0%, 16% {
    opacity: 1;
    transform: scale(1);
  }

  20%, 100% {
    opacity: 0;
    transform: scale(1.025);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes accent-talk {
  0% {
    opacity: 0;
    transform: translateY(3px) rotate(-7deg) scale(0.7);
  }

  18%, 72% {
    opacity: 1;
    transform: translateY(0) rotate(-7deg) scale(1);
  }

  36% {
    transform: translateY(-1px) rotate(-3deg) scale(1.04);
  }

  100% {
    opacity: 0.86;
    transform: translateY(0) rotate(-7deg) scale(0.95);
  }
}

@keyframes accent-dots {
  0%, 100% {
    opacity: 0.38;
    transform: translateY(1px);
  }

  45% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes human-i-walk {
  0% {
    opacity: 0;
    transform: translateX(24px) translateY(2px) scale(0.86);
    filter: blur(3px);
  }

  15% {
    opacity: 0.5;
  }

  42% {
    opacity: 0.58;
    transform: translateX(12px) translateY(-1px) scale(0.94);
    filter: blur(0);
  }

  68% {
    opacity: 0.48;
    transform: translateX(0) translateY(0) scale(1);
  }

  82% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes human-arms {
  0%, 18% {
    opacity: 0;
    transform: rotate(0deg);
  }

  30% {
    opacity: 0.85;
    transform: rotate(-18deg);
  }

  46% {
    opacity: 0.9;
    transform: rotate(18deg);
  }

  62% {
    opacity: 0.78;
    transform: rotate(-12deg);
  }

  78%, 100% {
    opacity: 0;
    transform: rotate(0deg);
  }
}

@keyframes service-module {
  0%, 34% {
    opacity: 0;
    transform: scaleX(0.42) translateY(2px);
  }

  52%, 100% {
    opacity: 0.55;
    transform: scaleX(1) translateY(0);
  }
}

@keyframes human-left-foot {
  0%, 18% {
    opacity: 0;
    transform: translateX(52px) rotate(12deg);
  }

  30% {
    opacity: 0.85;
    transform: translateX(34px) rotate(-18deg);
  }

  46% {
    transform: translateX(20px) rotate(16deg);
  }

  62% {
    transform: translateX(9px) rotate(-12deg);
  }

  78%, 100% {
    opacity: 0.85;
    transform: translateX(0) rotate(-10deg);
  }
}

@keyframes human-right-foot {
  0%, 18% {
    opacity: 0;
    transform: translateX(52px) rotate(-12deg);
  }

  30% {
    opacity: 0.85;
    transform: translateX(34px) rotate(18deg);
  }

  46% {
    transform: translateX(20px) rotate(-16deg);
  }

  62% {
    transform: translateX(9px) rotate(12deg);
  }

  78%, 100% {
    opacity: 0.85;
    transform: translateX(0) rotate(10deg);
  }
}

@keyframes service-pulse {
  0%, 100% {
    opacity: 0;
  }
}

@keyframes connection-line {
  0%, 100% {
    opacity: 0;
  }
}

@keyframes reception-counter {
  0%, 100% {
    opacity: 0;
  }
}

@keyframes executive-greets {
  0%, 100% {
    opacity: 0;
  }
}

@keyframes client-arrives {
  0%, 100% {
    opacity: 0;
  }
}

@keyframes mockup-float {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes hero-content-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.niche-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf2ff;
  font-weight: 800;
}

.section {
  padding: 70px max(22px, calc((100vw - 1040px) / 2));
}

.intro-section {
  background:
    linear-gradient(135deg, rgba(25, 199, 232, 0.09), transparent 36%),
    #07111f;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.value-grid,
.pricing-grid,
.niche-grid {
  display: grid;
  gap: 18px;
}

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

.value-card,
.price-card,
.steps article,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.value-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 255, 90, 0.32);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(25, 199, 232, 0.06);
}

.value-card p,
.section-copy,
.steps p,
.price-card li,
.cta-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 950;
}

.value-more {
  margin-top: auto;
  border: 1px solid rgba(185, 255, 90, 0.35);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--lime);
  background: rgba(6, 17, 31, 0.68);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.value-more:hover,
.value-more:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 255, 90, 0.7);
  box-shadow: 0 0 0 4px rgba(185, 255, 90, 0.1), 0 12px 30px rgba(0, 0, 0, 0.24);
  outline: none;
}

.stage-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  perspective: 1400px;
}

.stage-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.stage-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.76);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 320ms ease, backdrop-filter 320ms ease, transform 460ms ease;
}

.stage-modal.is-open .stage-backdrop {
  opacity: 1;
  transform: scale(1);
  animation: modal-backdrop-in 460ms ease both;
}

.stage-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  width: min(1080px, 100%);
  min-height: min(620px, calc(100svh - 48px));
  overflow: hidden;
  border: 1px solid rgba(25, 199, 232, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 38, 32, 0.88), rgba(9, 14, 28, 0.94)),
    #07111f;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: rotateX(6deg) rotateY(-3deg) scale(0.93) translateY(28px);
  transform-origin: center center;
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.stage-modal.is-open .stage-dialog {
  opacity: 1;
  transform: rotateX(0) rotateY(0) scale(1) translateY(0);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.58), 0 0 70px rgba(25, 199, 232, 0.08);
}

.stage-modal.is-animating .stage-dialog {
  animation: modal-shell-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stage-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stage-modal.is-animating .stage-close {
  animation: modal-close-pop 460ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}

.stage-close:hover,
.stage-close:focus-visible {
  transform: rotate(90deg) scale(1.04);
  border-color: rgba(185, 255, 90, 0.62);
  box-shadow: 0 0 0 4px rgba(185, 255, 90, 0.1), 0 0 26px rgba(25, 199, 232, 0.16);
  outline: none;
}

.stage-panel,
.stage-detail {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 56px);
}

.stage-panel {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 255, 90, 0.14), transparent 26%),
    rgba(7, 36, 30, 0.62);
}

.stage-modal.is-open .stage-panel {
  animation: modal-panel-wash 760ms ease both, modal-panel-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stage-number {
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 950;
}

.stage-number,
.stage-panel h2,
.stage-panel p:last-child,
.stage-detail > .eyebrow,
.stage-detail li,
.stage-result {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
}

.stage-modal.is-open .stage-number {
  animation: modal-copy-in 540ms ease 90ms both;
}

.stage-modal.is-open .stage-panel h2 {
  animation: modal-copy-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.stage-modal.is-open .stage-panel p:last-child {
  animation: modal-copy-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both;
}

.stage-modal.is-open .stage-detail > .eyebrow {
  animation: modal-copy-in 540ms ease 280ms both;
}

.stage-panel h2 {
  max-width: 100%;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.stage-panel p:last-child {
  color: #c7d2e6;
  font-size: 1.04rem;
  line-height: 1.65;
}

.stage-detail {
  display: grid;
  align-content: center;
  gap: 24px;
}

.stage-detail ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage-detail li {
  position: relative;
  padding-left: 30px;
  color: #d7e0f0;
  line-height: 1.55;
}

.stage-modal.is-open .stage-detail li {
  animation: modal-list-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--item-delay, 360ms);
}

.stage-detail li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 0 18px rgba(25, 199, 232, 0.22);
}

.stage-result {
  padding: 18px;
  border: 1px solid rgba(185, 255, 90, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.stage-modal.is-open .stage-result {
  animation: modal-result-pop 680ms cubic-bezier(0.22, 1, 0.36, 1) 680ms both;
}

.stage-result h3 {
  color: var(--lime);
}

.stage-result p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.plans-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(116, 39, 242, 0.22), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(255, 190, 46, 0.11), transparent 20%),
    #0b1022;
}

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

.price-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 0%, rgba(185, 255, 90, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(25, 199, 232, 0.14), transparent 42%);
  transition: opacity 220ms ease;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(116, 39, 242, 0.42), rgba(16, 26, 51, 0.86)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(185, 255, 90, 0.5);
  transform: translateY(-12px);
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(185, 255, 90, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(185, 255, 90, 0.12);
}

.price-card.featured:hover,
.price-card.featured:focus-within {
  transform: translateY(-18px);
}

.price-card:hover::after,
.price-card:focus-within::after {
  opacity: 1;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.plan-name {
  margin-bottom: 18px;
  color: var(--cyan);
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.price span {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.92;
  font-weight: 950;
}

.price small,
.monthly {
  color: #d4def1;
  font-weight: 800;
}

.annual-option {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.annual-option strong {
  color: var(--lime);
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  transition: transform 180ms ease, color 180ms ease;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 0 0 4px rgba(185, 255, 90, 0.1);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover li,
.price-card:focus-within li {
  color: #e4ecfb;
}

.price-card:hover li::before,
.price-card:focus-within li::before {
  transform: scale(1.08);
  box-shadow: 0 0 0 5px rgba(185, 255, 90, 0.14), 0 0 18px rgba(25, 199, 232, 0.22);
}

.plan-button {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  position: relative;
  z-index: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.featured .plan-button {
  background: var(--lime);
}

.price-card:hover .plan-button,
.price-card:focus-within .plan-button {
  transform: translateY(-2px);
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(185, 255, 90, 0.2);
}

.email-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(185, 255, 90, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.email-note h3 {
  margin: 0;
  color: var(--lime);
  font-size: 1rem;
}

.email-note p {
  max-width: 940px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.email-note strong {
  color: #ffffff;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(9, 20, 38, 0.6), rgba(9, 20, 38, 1)),
    #091426;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 38px;
  align-items: start;
}

.section-copy {
  margin-top: 20px;
  font-size: 1rem;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.steps article:hover {
  transform: translateX(8px);
  border-color: rgba(185, 255, 90, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.steps span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.steps p {
  margin-bottom: 0;
}

.niches-section {
  background: #07111f;
}

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

.niche-grid span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.niche-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 255, 90, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.cta-section {
  padding: 48px max(22px, calc((100vw - 1040px) / 2)) 60px;
  background:
    radial-gradient(circle at 80% 10%, rgba(25, 199, 232, 0.16), transparent 24%),
    linear-gradient(135deg, #07111f, #11163a 62%, #2a135b);
}

.cta-panel {
  padding: clamp(28px, 6vw, 56px);
}

.cta-panel h2 {
  max-width: 840px;
}

.cta-panel p {
  max-width: 680px;
  margin-top: 20px;
}

@media (max-width: 880px) {
  .site-header {
    top: 10px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 108px;
  }

  .hero-slide {
    justify-items: center;
    padding: 100px 18px 42px;
  }

  .site-mockup {
    width: min(420px, 78vw);
    min-height: 0;
    opacity: 0.34;
    transform: translate(18%, 8%) perspective(900px) rotateY(-7deg);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 17, 31, 0.97), rgba(6, 17, 31, 0.78)),
      linear-gradient(180deg, rgba(6, 17, 31, 0.18), rgba(6, 17, 31, 0.94));
  }

  .section,
  .cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading,
  .split,
  .value-grid,
  .pricing-grid,
  .niche-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .stage-modal {
    padding: 14px;
  }

  .stage-dialog {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }

  .stage-panel,
  .stage-detail {
    padding: 26px;
  }

  .stage-panel h2 {
    font-size: clamp(2rem, 7.5vw, 3.15rem);
  }
}

@media (max-width: 880px) {
  .price-card.featured {
    transform: none;
  }

  .price-card:hover,
  .price-card:focus-within,
  .price-card.featured:hover,
  .price-card.featured:focus-within {
    transform: none;
  }

  .price-card ul {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 118px;
    height: 32px;
  }

  .logo-stage {
    transform: scale(0.86);
    transform-origin: left top;
  }

  .site-header {
    width: calc(100% - 20px);
  }

  .header-cta {
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .hero {
    min-height: 1000px;
    padding-bottom: 48px;
  }

  .hero-actions {
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    flex: 1 1 210px;
  }

  .steps article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }

  .steps span {
    width: 40px;
    height: 40px;
  }

  .site-mockup {
    width: 88vw;
    min-height: 0;
    opacity: 0.16;
    transform: translate(28%, 2%) perspective(800px) rotateY(-8deg);
  }

  .mobile-showcase {
    display: block;
    position: relative;
    height: 250px;
    margin: 28px 0 0;
    perspective: 900px;
  }

  .mobile-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 8px;
    background: rgba(6, 17, 31, 0.82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(185, 255, 90, 0.08);
    transform: rotateX(2deg) rotateY(-7deg);
  }

  .mobile-frame::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background:
      radial-gradient(circle at 17px 16px, rgba(255, 255, 255, 0.45) 0 4px, transparent 5px),
      radial-gradient(circle at 33px 16px, rgba(255, 255, 255, 0.3) 0 4px, transparent 5px),
      radial-gradient(circle at 49px 16px, rgba(255, 255, 255, 0.25) 0 4px, transparent 5px),
      rgba(255, 255, 255, 0.08);
  }

  .mobile-frame::after {
    content: "";
    position: absolute;
    inset: 32px 0 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(6, 17, 31, 0.28), transparent 42%),
      linear-gradient(180deg, transparent, rgba(6, 17, 31, 0.34));
  }

  .mobile-frame img {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: calc(100% - 32px);
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.86) saturate(1.03);
    opacity: 0;
    animation: mobile-showcase-swap 35s infinite;
  }

  .mobile-frame img:nth-child(1) { animation-delay: 0s; }
  .mobile-frame img:nth-child(2) { animation-delay: 7s; }
  .mobile-frame img:nth-child(3) { animation-delay: 14s; }
  .mobile-frame img:nth-child(4) { animation-delay: 21s; }
  .mobile-frame img:nth-child(5) { animation-delay: 28s; }
}

@keyframes mobile-showcase-swap {
  0%, 16% {
    opacity: 1;
  }

  20%, 100% {
    opacity: 0;
  }
}

@keyframes modal-backdrop-in {
  0% {
    opacity: 0;
    backdrop-filter: blur(0);
  }

  100% {
    opacity: 1;
    backdrop-filter: blur(14px);
  }
}

@keyframes modal-shell-in {
  0% {
    opacity: 0;
    transform: rotateX(7deg) rotateY(-4deg) scale(0.92) translate3d(0, 34px, -90px);
    filter: blur(8px);
  }

  58% {
    opacity: 1;
    transform: rotateX(-1deg) rotateY(0.6deg) scale(1.01) translate3d(0, -4px, 0);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: rotateX(0) rotateY(0) scale(1) translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes modal-panel-in {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes modal-panel-wash {
  0% {
    box-shadow: inset 0 0 0 rgba(185, 255, 90, 0);
  }

  45% {
    box-shadow: inset 160px 0 120px rgba(185, 255, 90, 0.08);
  }

  100% {
    box-shadow: inset 0 0 0 rgba(185, 255, 90, 0);
  }
}

@keyframes modal-copy-in {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes modal-list-in {
  0% {
    opacity: 0;
    transform: translateX(24px) translateY(10px) scale(0.98);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes modal-result-pop {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
    box-shadow: 0 0 0 rgba(185, 255, 90, 0);
  }

  55% {
    opacity: 1;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 0 44px rgba(185, 255, 90, 0.11);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(185, 255, 90, 0);
  }
}

@keyframes modal-close-pop {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
  }

  65% {
    opacity: 1;
    transform: scale(1.08) rotate(8deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

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

  body.animations-ready .reveal,
  body.animations-ready .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
