:root {
  --bg: #0b111a;
  --bg-soft: #111b2a;
  --surface: #131f30;
  --surface-elev: #19283a;
  --surface-alt: #0f1826;
  --text: #ecf2ff;
  --muted: #9bb0c9;
  --primary: #d79a4d;
  --primary-dark: #bb833f;
  --line: #25384f;
  --line-strong: #345073;
  --shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  color: var(--text);
  background:
    radial-gradient(1200px 560px at 80% -10%, rgba(215, 154, 77, 0.12), transparent 62%),
    radial-gradient(900px 500px at 0% 0%, rgba(70, 114, 163, 0.24), transparent 60%),
    linear-gradient(180deg, #0a1019 0%, var(--bg) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(14px);
  opacity: 0.45;
}

body::before {
  top: 12%;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 154, 77, 0.28) 0%, rgba(215, 154, 77, 0) 72%);
  animation: ambientFloat 14s ease-in-out infinite;
}

body::after {
  bottom: 8%;
  left: -100px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 137, 196, 0.2) 0%, rgba(86, 137, 196, 0) 72%);
  animation: ambientFloat 18s ease-in-out infinite reverse;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 16, 25, 0.68);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(10, 16, 25, 0.88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.2);
  animation: brandPulse 4.8s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.52rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.brand-tagline {
  margin-top: 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 242, 255, 0.92);
  white-space: nowrap;
}

.brand-tagline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  animation: taglineReveal 5.4s steps(22, end) infinite;
}

.brand-tagline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 2px;
  background: rgba(215, 154, 77, 0.95);
  animation: taglineCaretTrack 5.4s steps(22, end) infinite, taglineCaretBlink 0.8s step-end infinite;
}

.brand-tagline-text {
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.98rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 16, 25, 0.78);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 154, 77, 0.5);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 12, 0.54);
  backdrop-filter: blur(8px);
  z-index: 65;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(17, 27, 42, 0.98) 0%, rgba(10, 16, 25, 0.98) 100%);
  border-left: 1px solid rgba(215, 154, 77, 0.24);
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.34);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-drawer-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.drawer-close {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.mobile-drawer-nav a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(52, 80, 115, 0.85);
  border-radius: 14px;
  background: rgba(12, 19, 31, 0.72);
  padding: 14px 16px;
  font-weight: 600;
}

.mobile-drawer-cta {
  margin-top: 6px;
  display: inline-flex;
}

.btn {
  border: 1px solid transparent;
  border-radius: 11px;
  background: linear-gradient(180deg, #e1aa62 0%, var(--primary) 100%);
  color: #1c2129;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 20px rgba(215, 154, 77, 0.22);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 12px 24px rgba(215, 154, 77, 0.3);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.24) 50%, transparent 80%);
  transform: translateX(-130%);
}

.btn:hover::after {
  animation: buttonSweep 0.8s ease;
}

.btn-small {
  padding: 10px 14px;
  font-size: 0.98rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 68px 0 36px;
  overflow: hidden;
}

.page-backdrop,
.page-backdrop-line,
.page-backdrop-grid,
.page-backdrop-glow {
  position: fixed;
  pointer-events: none;
}

.page-backdrop {
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.page-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(126, 85, 255, 0.14) 0%, rgba(126, 85, 255, 0) 34%),
    radial-gradient(circle at 82% 18%, rgba(75, 126, 196, 0.16) 0%, rgba(75, 126, 196, 0) 24%),
    linear-gradient(180deg, rgba(4, 8, 14, 0) 0%, rgba(4, 8, 14, 0.18) 56%, rgba(4, 8, 14, 0.7) 100%);
}

.page-backdrop-line {
  top: 0;
  left: -12%;
  width: 124%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(129, 88, 255, 0.95) 14%, rgba(210, 150, 75, 0.85) 50%, rgba(129, 88, 255, 0.95) 86%, transparent 100%);
  box-shadow: 0 0 16px rgba(129, 88, 255, 0.55), 0 0 34px rgba(210, 150, 75, 0.18);
  animation: heroBeam 8s linear infinite;
}

.page-backdrop-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 132, 170, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 132, 170, 0.09) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0.18;
  transform-origin: top center;
  transform: perspective(900px) rotateX(74deg) scale(1.32) translateY(-8%);
}

.page-backdrop-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(122, 87, 243, 0.14) 45%, transparent 100%);
  animation: heroScan 7.8s linear infinite;
}

.page-backdrop-glow {
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.7;
}

.page-backdrop-glow-primary {
  top: 12px;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(92, 46, 196, 0.2) 0%, rgba(92, 46, 196, 0.08) 28%, rgba(92, 46, 196, 0) 64%),
    radial-gradient(circle at 50% 44%, rgba(215, 154, 77, 0.08) 0%, rgba(215, 154, 77, 0) 58%);
  animation: heroAura 12s ease-in-out infinite;
}

.page-backdrop-glow-secondary {
  top: -80px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(79, 113, 186, 0.18) 0%, rgba(79, 113, 186, 0) 70%);
  animation: heroOrb 10s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-left,
.hero-right {
  animation: heroRise 0.9s ease both;
}

.hero-right {
  animation-delay: 0.12s;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7cbe5;
  font-weight: 700;
}

.hero h1 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 4.9vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.hero-copy,
.muted {
  margin-top: 13px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 24px;
  align-items: center;
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(25, 40, 58, 0.65);
  padding: 11px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: statFloat 6s ease-in-out infinite;
}

.stat:nth-child(2) {
  animation-delay: 1s;
}

.stat:nth-child(3) {
  animation-delay: 2s;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 154, 77, 0.6);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.stat span {
  font-size: 0.87rem;
  color: var(--muted);
}

.slider-card,
.card,
.form-card,
.video-wrap,
.demo-info-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(25, 40, 58, 0.86) 0%, rgba(19, 31, 48, 0.96) 100%);
  box-shadow: var(--shadow);
}

.slider-card {
  position: relative;
  min-height: 278px;
  padding: 24px;
  overflow: hidden;
  animation: cardDrift 7s ease-in-out infinite;
}

.slider-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(215, 154, 77, 0.16) 0%, rgba(215, 154, 77, 0) 72%);
  pointer-events: none;
}

.slide {
  --slide-pad: 22px;
  --slide-thumb-size: clamp(92px, 22vw, 164px);
  --slide-thumb-radius: clamp(12px, 2vw, 16px);
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--slide-pad);
  /* Reserve space so text never overlaps the thumbnail pseudo-element. */
  padding-right: calc(var(--slide-pad) + var(--slide-thumb-size) + clamp(14px, 3vw, 22px));
  border: 1px solid rgba(69, 102, 145, 0.34);
  border-radius: 18px;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide::before,
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.slide::before {
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.1) 0%, rgba(8, 14, 24, 0.76) 72%, rgba(8, 14, 24, 0.92) 100%);
}

.slide::after {
  inset: auto;
  right: clamp(12px, 3vw, 22px);
  bottom: clamp(12px, 2.5vw, 18px);
  width: var(--slide-thumb-size);
  height: var(--slide-thumb-size);
  border-radius: var(--slide-thumb-radius);
  border: 1px solid rgba(163, 189, 223, 0.18);
  background: rgba(9, 16, 27, 0.42);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.slide-purchase {
  background:
    radial-gradient(circle at 22% 24%, rgba(224, 172, 94, 0.28) 0%, rgba(224, 172, 94, 0) 24%),
    linear-gradient(135deg, rgba(11, 27, 46, 0.96) 0%, rgba(18, 39, 63, 0.88) 40%, rgba(9, 20, 34, 0.96) 100%);
}

.slide-purchase::after {
  background:
    linear-gradient(180deg, rgba(9, 16, 27, 0.18) 0%, rgba(9, 16, 27, 0.36) 100%),
    url("assets/1.jpg") center / cover no-repeat;
  border: 1px solid rgba(163, 189, 223, 0.18);
}

.slide-growth {
  background:
    radial-gradient(circle at 72% 22%, rgba(122, 87, 243, 0.34) 0%, rgba(122, 87, 243, 0) 32%),
    linear-gradient(135deg, rgba(9, 21, 36, 0.96) 0%, rgba(24, 35, 66, 0.88) 42%, rgba(8, 16, 30, 0.98) 100%);
}

.slide-growth::after {
  background:
    linear-gradient(180deg, rgba(9, 16, 27, 0.18) 0%, rgba(9, 16, 27, 0.36) 100%),
    url("assets/2.png") center / cover no-repeat;
  border: 1px solid rgba(163, 189, 223, 0.18);
}

.slide-management {
  background:
    radial-gradient(circle at 80% 18%, rgba(70, 167, 230, 0.26) 0%, rgba(70, 167, 230, 0) 28%),
    linear-gradient(135deg, rgba(9, 22, 34, 0.96) 0%, rgba(14, 36, 56, 0.88) 46%, rgba(8, 17, 28, 0.98) 100%);
}

.slide-management::after {
  background:
    linear-gradient(180deg, rgba(9, 16, 27, 0.18) 0%, rgba(9, 16, 27, 0.36) 100%),
    url("1.webp") center / cover no-repeat;
}

@media (max-width: 520px) {
  .slider-card {
    min-height: 252px;
    padding: 18px;
  }

  .slide {
    inset: 18px;
    --slide-pad: 18px;
    --slide-thumb-size: clamp(84px, 28vw, 132px);
  }

  .slide p {
    max-width: 26ch;
  }
}

.slide h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.slide p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--muted);
  max-width: 30ch;
}

.slide-dots {
  position: absolute;
  left: 24px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #4a6483;
  cursor: pointer;
  transition: 0.25s ease;
}

.dot.active {
  width: 24px;
  background: var(--primary);
}

.review-slider {
  --review-pad: clamp(16px, 2.2vw, 24px);
  --review-radius: clamp(14px, 2vw, 18px);
  position: relative;
  aspect-ratio: 4/3;
  width: min(100%, clamp(320px, 38vw, 480px));
  overflow: hidden;
  justify-self: end;
}

.review-card {
  position: absolute;
  inset: 0;
  padding: var(--review-pad);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(25, 40, 58, 0.86) 0%, rgba(19, 31, 48, 0.96) 100%);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(0);
  pointer-events: none;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: clamp(180px, 28vw, 240px);
  height: clamp(180px, 28vw, 240px);
  background: radial-gradient(circle, rgba(86, 137, 196, 0.22) 0%, rgba(86, 137, 196, 0) 70%);
  pointer-events: none;
}

.review-card::after {
  content: "“";
  position: absolute;
  top: clamp(14px, 2.2vw, 18px);
  left: clamp(16px, 2.4vw, 22px);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.6rem, 6.4vw, 4.8rem);
  line-height: 1;
  color: rgba(215, 154, 77, 0.28);
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  pointer-events: auto;
}

.review-card.leaving {
  opacity: 1;
  animation: reviewLeave 0.6s ease forwards;
}

.review-card.entering {
  opacity: 0;
  animation: reviewEnter 0.6s ease forwards;
}

.review-quote {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  max-width: 40ch;
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2.6vw, 28px) clamp(12px, 2vw, 16px) 0 0;
}

.review-meta {
  margin: 0;
  margin-top: clamp(12px, 1.8vw, 18px);
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  position: relative;
  z-index: 1;
}

.review-name {
  color: rgba(236, 242, 255, 0.92);
}

.review-dots {
  position: absolute;
  left: var(--review-pad);
  bottom: clamp(14px, 2.2vw, 18px);
  display: flex;
  gap: 8px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .review-slider {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .review-slider {
    width: 100%;
    justify-self: stretch;
  }

  .review-quote {
    font-size: 1.15rem;
  }
}

@keyframes reviewLeave {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-40px);
  }
}

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

.section {
  padding: 42px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(14, 24, 37, 0.72) 0%, rgba(14, 24, 37, 0.9) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin: 5px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
}

.section-head.compact h2 {
  max-width: 20ch;
}

.card-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

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

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

.card {
  padding: 16px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card-visual {
  overflow: hidden;
}

.card-media {
  position: relative;
  height: 168px;
  margin: -16px -16px 16px;
  border-bottom: 1px solid rgba(61, 94, 132, 0.34);
  background: linear-gradient(135deg, rgba(10, 20, 31, 0.98) 0%, rgba(19, 36, 59, 0.92) 100%);
}

.card-media::before,
.card-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.card-media-purchase {
  background:
    radial-gradient(circle at 20% 26%, rgba(224, 172, 94, 0.3) 0%, rgba(224, 172, 94, 0) 22%),
    linear-gradient(135deg, rgba(10, 20, 31, 0.98) 0%, rgba(19, 36, 59, 0.92) 100%);
}

.card-media-purchase::before {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 76px;
  border-radius: 14px;
  background:
    linear-gradient(0deg, rgba(224, 172, 94, 0.88) 0 18%, transparent 18% 100%),
    linear-gradient(90deg, transparent 0 20%, rgba(139, 171, 212, 0.12) 20% 21%, transparent 21% 100%),
    linear-gradient(180deg, rgba(10, 18, 28, 0.78) 0%, rgba(10, 18, 28, 0.3) 100%);
  border: 1px solid rgba(120, 153, 198, 0.2);
}

.card-media-purchase::after {
  top: 26px;
  right: 24px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(95, 214, 159, 0.95) 0 10px, transparent 11px),
    conic-gradient(from 200deg, rgba(95, 214, 159, 0.86) 0 90deg, rgba(122, 87, 243, 0.2) 90deg 360deg);
  opacity: 0.9;
}

.card-media-management {
  background:
    radial-gradient(circle at 78% 22%, rgba(70, 167, 230, 0.26) 0%, rgba(70, 167, 230, 0) 24%),
    linear-gradient(135deg, rgba(8, 22, 34, 0.98) 0%, rgba(15, 38, 56, 0.92) 100%);
}

.card-media-management::before {
  inset: 28px 20px 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 28%, rgba(95, 214, 159, 0.92) 0 8px, transparent 9px),
    radial-gradient(circle at 52% 56%, rgba(224, 172, 94, 0.92) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 26%, rgba(122, 87, 243, 0.92) 0 8px, transparent 9px),
    linear-gradient(rgba(123, 155, 198, 0.24), rgba(123, 155, 198, 0.24)) 32% 31% / 18% 2px no-repeat,
    linear-gradient(rgba(123, 155, 198, 0.24), rgba(123, 155, 198, 0.24)) 59% 49% / 17% 2px no-repeat,
    linear-gradient(rgba(123, 155, 198, 0.24), rgba(123, 155, 198, 0.24)) 43% 44% / 20% 2px no-repeat,
    linear-gradient(180deg, rgba(9, 16, 27, 0.48) 0%, rgba(9, 16, 27, 0.12) 100%);
  border: 1px solid rgba(120, 153, 198, 0.18);
}

.card-media-management::after {
  left: 26px;
  bottom: 22px;
  width: 108px;
  height: 42px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(95, 214, 159, 0.18) 0%, rgba(95, 214, 159, 0.72) 100%);
  box-shadow: 0 0 22px rgba(95, 214, 159, 0.16);
}

.card-media-growth {
  background:
    radial-gradient(circle at 66% 18%, rgba(122, 87, 243, 0.3) 0%, rgba(122, 87, 243, 0) 24%),
    linear-gradient(135deg, rgba(9, 21, 36, 0.98) 0%, rgba(22, 34, 64, 0.92) 100%);
}

.card-media-growth::before {
  left: 18px;
  right: 18px;
  bottom: 18px;
  top: 24px;
  border-radius: 18px;
  background:
    linear-gradient(140deg, transparent 0 24%, rgba(95, 214, 159, 0.9) 24% 27%, transparent 27% 100%),
    linear-gradient(130deg, transparent 0 42%, rgba(95, 214, 159, 0.78) 42% 45%, transparent 45% 100%),
    linear-gradient(120deg, transparent 0 58%, rgba(224, 172, 94, 0.88) 58% 61%, transparent 61% 100%),
    linear-gradient(180deg, rgba(9, 16, 27, 0.62) 0%, rgba(9, 16, 27, 0.18) 100%);
  border: 1px solid rgba(120, 153, 198, 0.18);
}

.card-media-growth::after {
  top: 22px;
  left: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, rgba(122, 87, 243, 0.9) 0 120deg, rgba(224, 172, 94, 0.86) 120deg 220deg, rgba(95, 214, 159, 0.86) 220deg 360deg);
  opacity: 0.88;
}

.card:hover,
.demo-info-card:hover,
.form-card:hover,
.video-wrap:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 154, 77, 0.45);
  box-shadow: 0 30px 44px rgba(0, 0, 0, 0.28);
}

.card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-family: "Space Grotesk", sans-serif;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.card.mini {
  text-align: center;
  font-weight: 600;
  color: #dbe7f7;
}

.form-card,
.demo-info-card {
  padding: 20px;
}

.demo-points {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.demo-points div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(16, 27, 42, 0.75);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.demo-points div:hover {
  transform: translateX(5px);
  border-color: rgba(215, 154, 77, 0.42);
}

.demo-points strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  color: #f1d2a6;
}

.demo-points p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 12px;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin: 9px 0 5px;
  font-size: 1rem;
  font-weight: 600;
  color: #e1ebfa;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
  color: var(--text);
  background: rgba(10, 16, 25, 0.75);
  font-size: 1rem;
  transition: border-color 0.2s ease, outline-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7f95b0;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(215, 154, 77, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

select[multiple] {
  min-height: 130px;
}

.status {
  min-height: 18px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.video-wrap {
  padding: 10px;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  background: #0a1019;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-row p {
  margin: 0;
  color: var(--muted);
}

.footer-line {
  font-weight: 700;
  color: #f0d3a9;
  font-family: "Space Grotesk", sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.08);
  }
}

@keyframes heroBeam {
  0% {
    transform: translateX(-8%);
    opacity: 0.7;
  }
  50% {
    transform: translateX(8%);
    opacity: 1;
  }
  100% {
    transform: translateX(-8%);
    opacity: 0.7;
  }
}

@keyframes heroScan {
  0% {
    transform: translateY(-26%);
    opacity: 0;
  }
  15% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.35;
  }
  85% {
    opacity: 0.18;
  }
  100% {
    transform: translateY(34%);
    opacity: 0;
  }
}

@keyframes heroAura {
  0%,
  100% {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.55;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes heroOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-24px, 16px, 0) scale(1.08);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes buttonSweep {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes brandPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.2), 0 0 24px rgba(215, 154, 77, 0.35);
  }
}

@keyframes taglineReveal {
  0%,
  12% {
    transform: translateX(0);
  }
  46%,
  72% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes taglineCaretTrack {
  0%,
  12% {
    right: 100%;
  }
  46%,
  72% {
    right: -2px;
  }
  100% {
    right: 100%;
  }
}

@keyframes taglineCaretBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .three-col,
  .five-col {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-main {
    flex: 1 1 auto;
    gap: 0;
  }

  .header-actions {
    gap: 10px;
  }

  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .header-row {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .brand-tagline {
    font-size: 0.57rem;
    letter-spacing: 0.12em;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .hero {
    padding-top: 38px;
  }

  .btn-small {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .mobile-drawer-cta {
    display: inline-flex;
  }

  .video-wrap iframe {
    min-height: 220px;
  }
}
