:root {
  --bg: #0b0714;
  --bg-soft: #140d24;
  --panel: rgba(28, 18, 49, 0.78);
  --panel-strong: rgba(36, 22, 66, 0.92);
  --stroke: rgba(181, 146, 255, 0.18);
  --text: #f4efff;
  --muted: #c6b9e5;
  --muted-2: #9d90bc;
  --primary: #8f4cff;
  --primary-2: #b56dff;
  --accent: #e7d8ff;
  --shadow: 0 30px 80px rgba(83, 31, 165, 0.28);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #0a0713 0%, #0c0917 40%, #09060f 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body::before,
body::after {
  content: '';
  position: fixed;
  inset: -20%;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(144, 76, 255, 0.24), transparent 24%),
    radial-gradient(circle at 75% 25%, rgba(236, 111, 255, 0.16), transparent 22%),
    radial-gradient(circle at 55% 75%, rgba(103, 75, 255, 0.18), transparent 26%);
  filter: blur(30px);
  animation: gradientShift 18s ease-in-out infinite alternate;
}
body::after {
  z-index: -5;
  background:
    radial-gradient(circle at 70% 35%, rgba(133, 89, 255, 0.16), transparent 20%),
    radial-gradient(circle at 30% 70%, rgba(255, 120, 208, 0.10), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(82, 63, 216, 0.12), transparent 28%);
  filter: blur(60px);
  animation: gradientShiftReverse 24s ease-in-out infinite alternate;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.72; margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
ul, ol { margin: 0; padding: 0; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -2;
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.orb-1 {
  width: 360px;
  height: 360px;
  background: rgba(148, 76, 255, 0.24);
  top: -80px;
  left: -120px;
}
.orb-2 {
  width: 420px;
  height: 420px;
  background: rgba(221, 121, 255, 0.14);
  top: 120px;
  right: -160px;
  animation-delay: -4s;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.28;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 5, 15, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 28px rgba(143, 76, 255, 0.4);
  font-size: 0.95rem;
}
.logo-text {
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}
.nav a:hover { color: var(--text); }
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.95;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 14px 40px rgba(143, 76, 255, 0.35);
}
.btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: var(--text);
}

.hero {
  padding: 72px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}
.hero-single {
  padding-top: 84px;
  padding-bottom: 24px;
}
.hero-single-inner {
  max-width: 900px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #d7c2ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.3rem, 5.4vw, 4.7rem);
  letter-spacing: -0.04em;
  max-width: none;
  line-height: 1.02;
}
.hero h1 .line-1 {
  display: block;
  white-space: nowrap;
  color: var(--text);
}
.hero h1 .line-2 {
  display: block;
  margin-top: 0.22em;
  white-space: nowrap;
  background: linear-gradient(135deg, #f4eaff 0%, #caa8ff 45%, #9f65ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  margin-top: 20px;
  max-width: 60ch;
  font-size: 1.04rem;
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-panel { position: relative; }
.glass {
  background: linear-gradient(180deg, rgba(35, 23, 62, 0.88), rgba(18, 12, 34, 0.88));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card {
  padding: 28px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -40% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 104, 255, 0.3), transparent 70%);
}
.hero-kicker {
  color: #d8bbff;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-card h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.hero-card-minimal {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-section-single {
  padding-top: 8px;
  padding-bottom: 64px;
}
.offer-placeholder {
  border-radius: 30px;
  padding: 30px;
  min-height: 58vh;
}
.offer-placeholder-label {
  color: #d7c2ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.offer-placeholder-body {
  min-height: 44vh;
  border-radius: 22px;
  padding: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--accent);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
}

.section {
  padding: 34px 0 34px;
}
.muted { padding-top: 24px; }
.section-head {
  max-width: 820px;
  margin-bottom: 24px;
}
.section-head.left { max-width: 700px; }
.section-head h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.cards {
  display: grid;
  gap: 18px;
}
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.one { grid-template-columns: 1fr; }
.card {
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(11, 8, 22, 0.24);
}
.card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}
.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.card li {
  color: var(--accent);
  position: relative;
  padding-left: 16px;
}
.card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-2);
  position: absolute;
  left: 0;
  top: 0.72em;
}


.offer-section { padding-top: 24px; }
.offer-head { margin-bottom: 18px; }
.offer-wrap {
  border-radius: 30px;
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}
.offer-side {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}
.side-note {
  position: sticky;
  top: 96px;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}
.side-note strong {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1rem;
}
.offer-content {
  padding: 12px;
}
.offer-block {
  padding: 26px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
}
.offer-block + .offer-block { margin-top: 12px; }
.offer-block h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.offer-block p {
  color: #e7ddff;
}

.final-cta {
  padding-top: 36px;
  padding-bottom: 56px;
}
.final-cta-box {
  text-align: center;
  border-radius: 30px;
  padding: 42px 24px;
  background: linear-gradient(180deg, rgba(126, 70, 221, 0.18), rgba(46, 23, 88, 0.35));
  border: 1px solid rgba(190, 155, 255, 0.16);
  box-shadow: var(--shadow);
}
.final-cta-box h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.cta-group.center { justify-content: center; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 4, 12, 0.7);
}
.footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-inner strong { display: block; margin-bottom: 6px; }
.footer-meta { color: var(--muted-2); font-size: 0.95rem; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.92;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(16px) translateX(8px); }
}

@keyframes gradientShift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(2%, 2%, 0) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate3d(4%, -2%, 0) scale(1.03);
    opacity: 0.88;
  }
}

@keyframes gradientShiftReverse {
  0% {
    transform: translate3d(3%, 1%, 0) scale(1.04);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(-2%, -3%, 0) scale(1.1);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-4%, 2%, 0) scale(1.02);
    opacity: 0.78;
  }
}

@media (max-width: 1100px) {
  .cards.four,
  .hero-grid,
  .offer-wrap {
    grid-template-columns: 1fr;
  }
  .offer-side {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .side-note { position: static; }
}

@media (max-width: 820px) {
  body {
    background: linear-gradient(180deg, #0a0713 0%, #0c0917 46%, #09060f 100%);
  }
  body::before,
  body::after,
  .bg-orb,
  .bg-grid {
    display: none;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    pointer-events: none;
  }
  .nav a {
    pointer-events: auto;
  }
  .nav a {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.9;
  }
  .nav-logo {
    width: 44px;
    height: 44px;
  }
  .desktop-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .hero { padding-top: 52px; }
  .section { padding: 28px 0; }
  .header-inner {
    min-height: 72px;
    gap: 10px;
    position: relative;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.82rem;
  }
  .logo-text {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .footer-inner {
    align-items: center;
  }
  .footer-logo {
    width: 56px;
    height: 56px;
  }
  .hero-card,
  .card,
  .offer-block,
  .final-cta-box { padding: 22px; }
  .offer-content { padding: 10px; }
  .hero-single-inner {
    padding: 10px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }
  .hero h1 .line-1,
  .hero h1 .line-2 {
    white-space: normal;
  }
  .hero h1 .line-1 {
    color: rgba(255,255,255,0.96);
  }
  .eyebrow {
    color: rgba(214, 192, 255, 0.72);
  }
  .hero-text {
    color: rgba(230, 223, 245, 0.88);
  }
  .offer-placeholder {
    padding: 18px;
    background: linear-gradient(180deg, rgba(35, 23, 62, 0.92), rgba(18, 12, 34, 0.92));
  }
  .offer-placeholder-body {
    min-height: 36vh;
    padding: 24px;
    background: rgba(255,255,255,0.025);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  body {
    background: linear-gradient(180deg, #0a0713 0%, #0c0917 46%, #09060f 100%);
  }
  body::before,
  body::after,
  .bg-orb,
  .bg-grid {
    display: none;
  }
  .hero-single-inner {
    padding: 10px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .hero h1 .line-1 {
    color: rgba(255,255,255,0.96);
  }
  .offer-placeholder {
    background: linear-gradient(180deg, rgba(35, 23, 62, 0.92), rgba(18, 12, 34, 0.92));
  }
  .offer-placeholder-body {
    background: rgba(255,255,255,0.025);
  }
}

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