*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #4c1d95;
  --cyan: #06b6d4;
  --cyan-light: #67e8f9;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --bg: #0d0b1a;
  --bg-1: #110e22;
  --bg-2: #160e2f;
  --bg-card: #1a1430;
  --text: #e2e0f0;
  --muted: #9b96b8;
  --border: rgba(255, 255, 255, .07);
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-alt: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .32s;
}

.grad-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: .9;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes shimmer {
  0% {
    left: -120%;
  }

  100% {
    left: 140%;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 11, 26, .83);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.nav.is-scrolled {
  background: rgba(13, 11, 26, .96);
  border-bottom-color: rgba(167, 139, 250, .25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__brand-icon {
  width: 22px;
  height: 22px;
}

.nav__logo {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  letter-spacing: .02em;
}

.nav__link:hover {
  color: #fff;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple-light), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav__link.is-active {
  color: #fff;
}

.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 16px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, .3);
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, .4);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}

.nav__mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(13, 11, 26, .82) 0%,
      rgba(13, 11, 26, .65) 34%,
      rgba(13, 11, 26, .28) 58%,
      rgba(13, 11, 26, 0) 80%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 11, 26, .95) 0%,
      rgba(76, 29, 149, .3) 40%,
      rgba(6, 182, 212, .1) 70%,
      rgba(13, 11, 26, .98) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero__orb-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, .18) 0%, transparent 70%);
  filter: blur(40px);
}

.hero__orb-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, .12) 0%, transparent 70%);
  filter: blur(50px);
  animation-delay: 2s;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 32px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.hero__text {
  animation: fadeUp .9s ease-out both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(124, 58, 237, .15);
  border: 1px solid rgba(124, 58, 237, .3);
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero__badge-icon {
  width: 14px;
  height: 14px;
}

.hero__badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--purple-light);
  text-transform: uppercase;
}

.hero__heading {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero__subtext {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: 0 8px 30px rgba(124, 58, 237, .4);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.hero__btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s linear infinite;
}

.hero__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(124, 58, 237, .5);
}

.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}

.hero__btn-secondary:hover {
  color: #fff;
}

.hero__btn-secondary-icon {
  width: 18px;
  height: 18px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.problem {
  padding: 96px 32px;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
}

.problem::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124, 58, 237, .06) 0%, transparent 70%);
  pointer-events: none;
}

.problem__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.problem__title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.problem__divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 2px;
  margin: 18px auto 0;
}

.problem__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem__card {
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .3s ease, border-color .3s ease;
}

.problem__card:hover {
  transform: translateY(-6px);
}

.problem__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 50%);
  pointer-events: none;
}

.problem__card--purple {
  background: linear-gradient(145deg, #1e1440 0%, #160e2f 100%);
}

.problem__card--purple:hover {
  border-color: rgba(124, 58, 237, .25);
}

.problem__card--cyan {
  background: linear-gradient(145deg, #0d1f2d 0%, #0d0b1a 100%);
}

.problem__card--cyan:hover {
  border-color: rgba(6, 182, 212, .25);
}

.problem__card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: center;
}

.problem__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.problem__card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.solution {
  padding: 96px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.solution__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.solution__content {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.solution__title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.solution__title span {
  display: block;
}

.solution__title span.grad-text {
  font-style: italic;
}

.solution__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.solution__features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
  width: 100%;
  text-align: left;
}

.solution__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.solution__feature:hover {
  border-color: rgba(124, 58, 237, .2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  transform: translateY(-3px);
}

.solution__feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  box-shadow: none;
}

.solution__feature-icon-wrap--purple {
  background: #9b5cff;
}

.solution__feature-icon-wrap--cyan {
  background: #11d6f7;
}

.solution__feature-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(16%) sepia(57%) saturate(2534%) hue-rotate(247deg) brightness(90%) contrast(102%);
}

.solution__feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.solution__feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.technology {
  padding: 96px 32px;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
}

.technology::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 300px;
  top: -100px;
  right: -200px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, .07) 0%, transparent 70%);
  pointer-events: none;
}

.technology__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.technology__header {
  text-align: center;
  margin-bottom: 56px;
}

.technology__section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.technology__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tech-card {
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .3s ease, border-color .3s ease;
}

.tech-card:hover {
  transform: translateY(-4px);
}

.tech-card--cyan {
  background: linear-gradient(135deg, #0c2233 0%, #091829 100%);
}

.tech-card--cyan:hover {
  border-color: rgba(6, 182, 212, .2);
}

.tech-card--purple {
  background: linear-gradient(111deg, #2e2541 0%, #170f29 100%);
}

.tech-card--purple:hover {
  border-color: rgba(124, 58, 237, .25);
}

.tech-card__glow {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -100px;
  right: -80px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

.tech-card__glow--cyan {
  background: rgba(6, 182, 212, .3);
}

.tech-card__glow--purple {
  background: rgba(124, 58, 237, .3);
}

.tech-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.tech-card__title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.tech-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tech-card__bullet {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tech-card__item-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

.products {
  padding: 96px 32px;
  background: var(--bg);
  scroll-margin-top: 72px;
}

.products__header {
  text-align: center;
  margin-bottom: 40px;
}

.products__title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.products__subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
}

.products__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.product-card__glow--gold {
  background: rgba(245, 158, 11, .5);
}

.product-card__glow--purple {
  background: rgba(124, 58, 237, .5);
}

.product-card__inner {
  border-radius: 24px;
  padding: 18px 22px 20px;
  border: 1px solid rgba(255, 255, 255, .06);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.product-card__inner--gold {
  background: linear-gradient(145deg, #1c1607 0%, #120f05 100%);
}

.product-card__inner--gold:hover {
  border-color: rgba(245, 158, 11, .2);
}

.product-card__inner--purple {
  background: linear-gradient(145deg, #1e1440 0%, #110c28 100%);
}

.product-card__inner--purple:hover {
  border-color: rgba(124, 58, 237, .25);
}

.product-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-card__title {
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
}

.product-card__title-sub {
  font-size: .86em;
  font-weight: 700;
  opacity: .98;
}

.product-card__title--gold {
  color: var(--gold);
}

.product-card__title--purple {
  color: var(--purple-light);
}

.product-card__badge {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.3;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.product-card__badge--gold {
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .25);
  color: var(--gold-light);
}

.product-card__badge--purple {
  background: rgba(124, 58, 237, .15);
  border: 1px solid rgba(124, 58, 237, .25);
  color: var(--purple-light);
}

.product-card__img-wrap {
  width: 100%;
  height: clamp(210px, 34vw, 270px);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  animation: floatY 5s ease-in-out infinite;
}

.product-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .05);
}

.product-card__feat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.product-card__feat-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.hat {
  padding: 80px 32px;
  background: var(--bg-1);
  scroll-margin-top: 72px;
}

.hat__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hat__card {
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, #1a1430 0%, #110e22 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hat__card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hat__img-wrap {
  position: relative;
  min-width: 0;
  min-height: 320px;
  overflow: hidden;
}

.hat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hat__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 48px 56px 48px 48px;
  position: relative;
  z-index: 1;
}

.hat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hat__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.hat__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.hat__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.hat__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hat__feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hat__feature-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.testimonials {
  padding: 96px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124, 58, 237, .06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: rgba(124, 58, 237, .15);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, .2);
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.testimonial-card__role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.testimonial-card__role--cyan {
  color: var(--cyan);
}

.testimonial-card__role--purple {
  color: var(--purple-light);
}

.testimonial-card__role--gold {
  color: var(--gold);
}

.testimonial-card__quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

.cta {
  padding: 100px 32px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
  scroll-margin-top: 72px;
}

.cta::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, rgba(6, 182, 212, .06) 40%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.cta__inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta__title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: .97;
}

.cta__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 50%, var(--cyan) 100%);
  background-size: 200% 200%;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(124, 58, 237, .4);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.cta__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s linear infinite;
}

.cta__btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 56px rgba(124, 58, 237, .5);
}

.footer {
  background: #08060f;
  padding: 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer__text {
  font-size: 13px;
  color: rgba(155, 150, 184, .5);
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    display: none;
  }

  .technology__cards {
    grid-template-columns: 1fr;
  }

  .hat__card {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding: 40px 32px;
  }

  .hat__img-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    min-height: 260px;
    border-radius: 20px;
  }

  .hat__content {
    padding: 0;
  }

  .hat__features {
    align-items: center;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1025px) {
  .problem {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
  }

  .problem .section-inner {
    width: 100%;
  }

  .problem__header {
    margin: 0 auto 36px;
  }

  .problem__grid {
    gap: 16px;
  }

  .problem__card {
    padding: 24px 22px;
  }

  .problem__card-icon {
    margin-bottom: 14px;
  }

  .problem__card-title {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .problem__card-text {
    font-size: 13px;
    line-height: 1.55;
  }

  .solution {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
    scroll-margin-top: 72px;
  }

  .solution__inner {
    width: 100%;
    gap: 64px;
  }

  .technology {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
  }

  .technology .technology__inner {
    width: 100%;
  }

  .products {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
  }

  .products .section-inner {
    width: 100%;
  }

  .products__header {
    margin-bottom: 28px;
  }

  .product-card__img-wrap {
    height: clamp(220px, 30vh, 300px);
  }

  .hat {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
  }

  .hat__inner {
    width: 100%;
  }

  .testimonials {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
  }

  .testimonials .section-inner {
    width: 100%;
  }

  .testimonials__title {
    margin-bottom: 36px;
  }

  .cta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 32px 56px;
  }

  .cta__inner {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav__mobile-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 11, 26, .97);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
  }

  .nav__mobile-menu.hidden {
    display: none;
  }

  .nav__mobile-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 14px;
    background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    font-size: 14px;
  }

  .hero__content {
    padding: 100px 20px 72px;
  }

  .problem {
    padding: 72px 20px;
  }

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution {
    padding: 72px 20px;
  }

  .technology {
    padding: 72px 20px;
  }

  .products {
    padding: 72px 20px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hat {
    padding: 64px 20px;
  }

  .testimonials {
    padding: 72px 20px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 80px 20px;
  }
}