@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #faf9ff;
  background-color: #060610;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #060610;
}

::-webkit-scrollbar-thumb {
  background: #6d28d9;
  border-radius: 9999px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #faf9ff;
}

p {
  color: #b8b6d8;
  line-height: 1.72;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 260ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: #8b5cf6;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.45), 0 4px 28px rgba(139, 92, 246, 0.38);
}
.btn--primary:hover {
  background: #a78bfa;
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.55), 0 6px 40px rgba(139, 92, 246, 0.55);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.036);
  color: #b8b6d8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.062);
  border-color: rgba(139, 92, 246, 0.24);
  color: #faf9ff;
}
.btn--outline {
  background: transparent;
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.24);
}
.btn--outline:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: #a78bfa;
  color: #c4b5fd;
}
.btn--sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
}
.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.section-header {
  max-width: 740px;
  margin-bottom: 4.8rem;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 3.6rem;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: rgba(139, 92, 246, 0.09);
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: #c4b5fd;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-tag::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: #faf9ff;
}

.section-desc {
  font-size: 1.175rem;
  color: #b8b6d8;
  max-width: 580px;
  line-height: 1.74;
}

.text-accent {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875em;
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes border-spin {
  to {
    --border-angle: 360deg;
  }
}
@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes badge-dot-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.7);
    opacity: 0.35;
  }
}
@keyframes orb-drift-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.06);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}
@keyframes orb-drift-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-50px, 40px) scale(1.09);
  }
  66% {
    transform: translate(30px, -20px) scale(0.95);
  }
}
@keyframes grid-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer-sweep {
  from {
    transform: translateX(-120%) skewX(-12deg);
  }
  to {
    transform: translateX(220%) skewX(-12deg);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 7, 16, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 440ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 440ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  height: 68px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  margin-left: 0.9rem;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #b8b6d8;
  border-radius: 9999px;
  transition: 260ms ease;
}

.header.is-scrolled {
  background: rgba(7, 7, 16, 0.92);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.08), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 7, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-nav-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.mobile-nav__link {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: #b8b6d8;
  letter-spacing: -0.02em;
  transition: color 260ms ease;
}
.mobile-nav__link:hover {
  color: #faf9ff;
}
.mobile-nav__cta {
  margin-top: 1.2rem;
  font-size: 1rem;
}

.logo__mark {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo__text {
  color: #faf9ff;
}
.logo__accent {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__link {
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #b8b6d8;
  transition: color 260ms ease, background 260ms ease;
  letter-spacing: 0.01em;
}
.nav__link:hover {
  color: #faf9ff;
  background: rgba(255, 255, 255, 0.05);
}
.nav__link.is-active {
  color: #c4b5fd;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 7.2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 4.8rem;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.28) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-drift-1 18s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
  animation: orb-drift-2 22s ease-in-out infinite;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: grid-fade-in 2s ease forwards;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: #c4b5fd;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2.4rem;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2.4rem;
}
.hero__title--accent {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title--outline {
  -webkit-text-stroke: 1.5px #8b5cf6;
  color: transparent;
}
@media (max-width: 768px) {
  .hero__title--outline {
    -webkit-text-stroke-width: 1px;
  }
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: #b8b6d8;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 4.8rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__actions {
    margin-bottom: 3.6rem;
  }
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.8rem 2.4rem;
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border-radius: 32px;
  width: fit-content;
}
@media (max-width: 640px) {
  .hero__stats {
    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
  }
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  flex-shrink: 0;
  animation: badge-dot-pulse 2.5s ease-in-out infinite;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat__number {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #faf9ff;
  line-height: 1;
}
@media (max-width: 640px) {
  .stat__number {
    font-size: 1.25rem;
  }
}
.stat__label {
  font-size: 0.7rem;
  font-weight: 500;
  color: #5e5c7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.stat__divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.features {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .features {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
@media (max-width: 768px) {
  .features {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
.features {
  position: relative;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.4rem 2.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 440ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 440ms cubic-bezier(0.4, 0, 0.2, 1), transform 440ms cubic-bezier(0.4, 0, 0.2, 1), border-color 440ms cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.062);
  transform: translateY(-3px);
}
.feature-card:nth-child(1) {
  grid-column: span 4;
}
@media (max-width: 1024px) {
  .feature-card:nth-child(1) {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .feature-card:nth-child(1) {
    grid-column: span 1;
  }
}
.feature-card:nth-child(2) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .feature-card:nth-child(2) {
    grid-column: span 1;
  }
}
@media (max-width: 640px) {
  .feature-card:nth-child(2) {
    grid-column: span 1;
  }
}
.feature-card:nth-child(3) {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .feature-card:nth-child(3) {
    grid-column: span 1;
  }
}
@media (max-width: 640px) {
  .feature-card:nth-child(3) {
    grid-column: span 1;
  }
}
.feature-card:nth-child(4) {
  grid-column: span 4;
}
@media (max-width: 1024px) {
  .feature-card:nth-child(4) {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .feature-card:nth-child(4) {
    grid-column: span 1;
  }
}
.feature-card:nth-child(1) {
  position: relative;
  overflow: hidden;
}
.feature-card:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 20%, rgba(167, 139, 250, 0.07) 40%, rgba(196, 181, 253, 0.12) 50%, rgba(167, 139, 250, 0.07) 60%, transparent 80%);
  transform: translateX(-120%) skewX(-12deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.feature-card:nth-child(1):hover::before {
  animation: shimmer-sweep 0.65s ease forwards;
}
.feature-card:nth-child(1):hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 6px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(139, 92, 246, 0.15);
}
.feature-card:nth-child(2) {
  position: relative;
}
.feature-card:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a78bfa, #c4b5fd, #a78bfa, transparent);
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 9999px 9999px;
  z-index: 1;
}
.feature-card:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.feature-card:nth-child(2):hover::before {
  opacity: 1;
}
.feature-card:nth-child(2):hover::after {
  opacity: 1;
}
.feature-card:nth-child(2):hover {
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 -8px 32px rgba(139, 92, 246, 0.12), 0 4px 24px rgba(0, 0, 0, 0.4);
}
.feature-card:nth-child(3) {
  position: relative;
}
.feature-card:nth-child(3)::before, .feature-card:nth-child(3)::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #a78bfa;
  border-style: solid;
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1), width 440ms cubic-bezier(0.4, 0, 0.2, 1), height 440ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}
.feature-card:nth-child(3)::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 20px 0 0 0;
}
.feature-card:nth-child(3)::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 20px 0;
}
.feature-card:nth-child(3):hover::before, .feature-card:nth-child(3):hover::after {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.feature-card:nth-child(3):hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 6px 40px rgba(0, 0, 0, 0.45);
}
.feature-card:nth-child(4) {
  position: relative;
  overflow: hidden;
}
.feature-card:nth-child(4)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 20%, rgba(167, 139, 250, 0.07) 40%, rgba(196, 181, 253, 0.12) 50%, rgba(167, 139, 250, 0.07) 60%, transparent 80%);
  transform: translateX(-120%) skewX(-12deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.feature-card:nth-child(4):hover::before {
  animation: shimmer-sweep 0.65s ease forwards;
}
.feature-card:nth-child(4):hover {
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 0 56px rgba(139, 92, 246, 0.2), 0 6px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(139, 92, 246, 0.24);
}
.feature-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.24);
  flex-shrink: 0;
  transition: background 260ms ease, box-shadow 260ms ease;
}
.feature-card__icon-wrap svg {
  width: 23px;
  height: 23px;
  color: #a78bfa;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card:hover .feature-card__icon-wrap {
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #faf9ff;
}
.feature-card p {
  font-size: 0.975rem;
  color: #b8b6d8;
  line-height: 1.68;
  flex: 1;
}
.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 7px;
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.13);
  color: #c4b5fd;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 150ms ease, border-color 150ms ease;
}
.tech-tag:hover {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.25);
}

.courses {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .courses {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
@media (max-width: 768px) {
  .courses {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
.courses {
  position: relative;
}
.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .courses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .courses__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

.course-card {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  height: 100%;
  transition: transform 440ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 440ms cubic-bezier(0.4, 0, 0.2, 1), background 440ms cubic-bezier(0.4, 0, 0.2, 1), border-color 440ms cubic-bezier(0.4, 0, 0.2, 1);
}
.course-card--basic {
  position: relative;
}
.course-card--basic::before, .course-card--basic::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #a78bfa;
  border-style: solid;
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1), width 440ms cubic-bezier(0.4, 0, 0.2, 1), height 440ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}
.course-card--basic::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 20px 0 0 0;
}
.course-card--basic::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 20px 0;
}
.course-card--basic:hover::before, .course-card--basic:hover::after {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.course-card--basic:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 6px 40px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.062);
}
.course-card--featured {
  position: relative;
  isolation: isolate;
}
.course-card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 20%, #8b5cf6 40%, #c4b5fd 50%, #8b5cf6 60%, transparent 80%);
  animation: border-spin 4s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1);
}
.course-card--featured:hover::before {
  opacity: 0.8;
}
.course-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.036);
  z-index: -1;
}
.course-card--featured {
  background: linear-gradient(160deg, rgba(109, 40, 217, 0.14) 0%, rgba(139, 92, 246, 0.06) 50%, rgba(6, 6, 16, 0.88) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 0 56px rgba(139, 92, 246, 0.2), 0 6px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}
.course-card--featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.55), 0 0 72px rgba(139, 92, 246, 0.32);
}
.course-card--enterprise {
  position: relative;
}
.course-card--enterprise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a78bfa, #c4b5fd, #a78bfa, transparent);
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 9999px 9999px;
  z-index: 1;
}
.course-card--enterprise::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.course-card--enterprise:hover::before {
  opacity: 1;
}
.course-card--enterprise:hover::after {
  opacity: 1;
}
.course-card--enterprise:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 -8px 32px rgba(139, 92, 246, 0.12), 0 6px 32px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.062);
}
.course-card__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.course-card__tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.course-card--basic .course-card__tier-badge {
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.22);
  color: #94a3b8;
}
.course-card--featured .course-card__tier-badge {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: #c4b5fd;
}
.course-card--enterprise .course-card__tier-badge {
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}
.course-card__popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.2rem;
  border-radius: 9999px;
  background: #8b5cf6;
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.6);
}
.course-card__title {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #faf9ff;
}
.course-card__desc {
  font-size: 1rem;
  color: #b8b6d8;
  line-height: 1.68;
}
.course-card__modules {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1;
}
.course-card__module-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.975rem;
  color: #b8b6d8;
  line-height: 1.45;
}
.course-card__module-item::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%238b5cf6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.course-card__price-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.course-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.course-card__price-amount {
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #faf9ff;
  line-height: 1;
}
.course-card__price-note {
  font-size: 0.85rem;
  color: #5e5c7a;
}
.course-card__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  color: #5e5c7a;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.course-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .faq {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
.faq__list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: box-shadow 260ms ease, border-color 260ms ease;
  position: relative;
}
.faq-item::before, .faq-item::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: #a78bfa;
  border-style: solid;
  opacity: 0;
  transition: opacity 440ms cubic-bezier(0.4, 0, 0.2, 1), width 440ms cubic-bezier(0.4, 0, 0.2, 1), height 440ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}
.faq-item::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 20px 0 0 0;
}
.faq-item::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 20px 0;
}
.faq-item:hover::before, .faq-item:hover::after {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.faq-item[data-open=true] {
  border-color: rgba(139, 92, 246, 0.24);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 0 56px rgba(139, 92, 246, 0.2), 0 6px 40px rgba(0, 0, 0, 0.5);
}
.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.15);
}
.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 1.8rem 2.4rem;
  cursor: pointer;
  user-select: none;
}
.faq-item__summary h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #faf9ff;
  line-height: 1.4;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e5c7a;
  transition: all 260ms ease;
}
.faq-item__icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
  transition: transform 440ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[data-open=true] .faq-item__icon {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.24);
  color: #a78bfa;
}
.faq-item[data-open=true] .faq-item__icon svg {
  transform: rotate(45deg);
}
.faq-item__body {
  overflow: hidden;
  height: 0;
}
.faq-item__body-inner {
  padding: 0 2.4rem 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item__body-inner p {
  padding-top: 1.5rem;
  font-size: 0.975rem;
  color: #b8b6d8;
  line-height: 1.72;
}

.contact {
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .contact {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
@media (max-width: 768px) {
  .contact {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
.contact__inner {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4.8rem 3.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact__inner {
    padding: 3.6rem 2.4rem;
  }
}
@media (max-width: 640px) {
  .contact__inner {
    padding: 3rem 1.8rem;
  }
}
.contact__inner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.contact__content {
  position: relative;
  z-index: 1;
}
.contact__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.contact__desc {
  font-size: 1rem;
  color: #b8b6d8;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 3rem;
}
.contact__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #b8b6d8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 260ms ease;
}
.contact__link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  flex-shrink: 0;
}
.contact__link:hover {
  color: #faf9ff;
  border-color: rgba(139, 92, 246, 0.24);
  background: rgba(139, 92, 246, 0.07);
  transform: translateY(-2px);
}

.contact__info {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #5e5c7a;
  font-size: 0.9rem;
}
.contact__info svg {
  width: 15px;
  height: 15px;
  stroke: #5e5c7a;
  flex-shrink: 0;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}
@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer__copy {
  font-size: 0.8125rem;
  color: #5e5c7a;
  letter-spacing: 0.01em;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.footer__link {
  font-size: 0.825rem;
  color: #5e5c7a;
  transition: color 150ms ease;
  letter-spacing: 0.01em;
}
.footer__link:hover {
  color: #b8b6d8;
}

.course-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .course-hero {
    padding-top: 110px;
    padding-bottom: 4.8rem;
  }
}
.course-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.course-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.course-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.25) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  animation: orb-drift-1 20s ease-in-out infinite;
}
.course-hero__orb--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  bottom: 0;
  left: -60px;
  animation: orb-drift-2 24s ease-in-out infinite;
}
.course-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 100%);
}
.course-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .course-hero__inner {
    grid-template-columns: 1fr;
  }
}
.course-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.course-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #5e5c7a;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 260ms ease;
  width: fit-content;
  margin-bottom: 0.6rem;
}
.course-hero__back::before {
  content: "←";
}
.course-hero__back:hover {
  color: #b8b6d8;
}
.course-hero__tier {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.32rem 0.9rem;
  border-radius: 9999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  width: fit-content;
}
.course-hero__tier--basic {
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.22);
  color: #94a3b8;
}
.course-hero__tier--pro {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: #c4b5fd;
}
.course-hero__tier--enterprise {
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}
.course-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.course-hero__desc {
  font-size: 1.15rem;
  color: #b8b6d8;
  line-height: 1.74;
  max-width: 580px;
}
.course-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.course-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: #5e5c7a;
  letter-spacing: 0.03em;
}
.course-hero__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
}

.purchase-card {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: sticky;
  top: 88px;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 0 56px rgba(139, 92, 246, 0.2), 0 6px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(139, 92, 246, 0.24);
}
@media (max-width: 1024px) {
  .purchase-card {
    position: static;
    max-width: 420px;
  }
}
.purchase-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.purchase-card__amount {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #faf9ff;
}
.purchase-card__note {
  font-size: 0.88rem;
  color: #5e5c7a;
}
.purchase-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.purchase-card__include-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;
  color: #b8b6d8;
}
.purchase-card__include-item::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%238b5cf6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.purchase-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.purchase-card .btn {
  justify-content: center;
}

.course-content {
  padding-top: 6rem;
  padding-bottom: 7.2rem;
}
.course-content__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.6rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .course-content__grid {
    grid-template-columns: 1fr;
  }
}
.course-content__main {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.content-block__heading {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.content-block__text {
  font-size: 1.05rem;
  color: #b8b6d8;
  line-height: 1.76;
  margin-bottom: 1.5rem;
}
.content-block__text:last-child {
  margin-bottom: 0;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.module-item {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: background 260ms ease, border-color 260ms ease;
}
.module-item:hover {
  background: rgba(255, 255, 255, 0.062);
  border-color: rgba(139, 92, 246, 0.24);
}
.module-item__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #5e5c7a;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 2px;
}
.module-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.module-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: #faf9ff;
  line-height: 1.35;
}
.module-item__desc {
  font-size: 0.9rem;
  color: #5e5c7a;
  line-height: 1.5;
}
.module-item__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: #a78bfa;
  letter-spacing: 0.04em;
}

.for-whom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 640px) {
  .for-whom {
    grid-template-columns: 1fr;
  }
}

.for-whom-card {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.for-whom-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.for-whom-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.for-whom-card p {
  font-size: 0.9rem;
  color: #b8b6d8;
  line-height: 1.6;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.14);
  color: #b8b6d8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 260ms ease;
}
.tool-badge span {
  font-size: 1.1rem;
}
.tool-badge:hover {
  background: rgba(139, 92, 246, 0.13);
  border-color: rgba(139, 92, 246, 0.24);
  color: #faf9ff;
}

.payment-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.payment-main {
  flex: 1;
  padding-top: 110px;
  padding-bottom: 7.2rem;
}

.payment-hero {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.6rem;
}
.payment-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #5e5c7a;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 260ms ease;
  margin-bottom: 1.8rem;
}
.payment-hero__back::before {
  content: "←";
}
.payment-hero__back:hover {
  color: #b8b6d8;
}
.payment-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.32rem 0.9rem;
  border-radius: 9999px;
  background: rgba(139, 92, 246, 0.09);
  border: 1px solid rgba(139, 92, 246, 0.24);
  color: #c4b5fd;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.payment-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.payment-hero__desc {
  font-size: 1.05rem;
  color: #b8b6d8;
  line-height: 1.7;
}

.payment-frame {
  max-width: 680px;
  margin: 0 auto;
}
.payment-frame__wrap {
  background: rgba(255, 255, 255, 0.036);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.4rem;
  position: relative;
  min-height: 520px;
  border-color: rgba(139, 92, 246, 0.24);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.24), 0 0 56px rgba(139, 92, 246, 0.2), 0 6px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.payment-frame__iframe {
  width: 100%;
  flex: 1;
  min-height: 480px;
  border: none;
  border-radius: 14px;
  background: transparent;
}
.payment-frame__placeholder {
  position: absolute;
  inset: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border: 1px dashed rgba(139, 92, 246, 0.22);
  border-radius: 14px;
  color: #5e5c7a;
}
.payment-frame__placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}
.payment-frame__placeholder p {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #5e5c7a;
}
.payment-frame__note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
}
.payment-frame__note svg {
  width: 16px;
  height: 16px;
  stroke: #a78bfa;
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}
.payment-frame__note p {
  font-size: 0.85rem;
  color: #5e5c7a;
  line-height: 1.5;
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 7.2rem;
}
.legal-page__inner {
  max-width: 780px;
  margin: 0 auto;
}
.legal-page__header {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 3.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-page__back {
  color: #5e5c7a;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 260ms ease;
  width: fit-content;
  margin-bottom: 0.6rem;
}
.legal-page__back:hover {
  color: #b8b6d8;
}
.legal-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 0.9rem;
}
.legal-page__meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: #5e5c7a;
  letter-spacing: 0.04em;
}
.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 1.2rem;
  color: #faf9ff;
}
.legal-section p {
  font-size: 1rem;
  color: #b8b6d8;
  line-height: 1.76;
  margin-bottom: 0.9rem;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1.2rem;
}
.legal-section ul li {
  font-size: 1rem;
  color: #b8b6d8;
  line-height: 1.68;
  position: relative;
}
.legal-section ul li::before {
  content: "—";
  position: absolute;
  left: -1.2rem;
  color: #5e5c7a;
}
.legal-section a {
  color: #a78bfa;
  text-decoration: underline;
  text-decoration-color: rgba(167, 139, 250, 0.3);
  transition: color 260ms ease;
}
.legal-section a:hover {
  color: #c4b5fd;
}
.legal-section strong {
  color: #faf9ff;
  font-weight: 600;
}

/*# sourceMappingURL=main.css.map */
