/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  color: #1f2937;
  overflow-x: hidden;
}

/* Animated Background - скрыт для hero */
.animated-bg {
  display: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s linear infinite;
}

.particle:nth-child(odd) {
  animation-duration: 15s;
  animation-delay: -5s;
}

.particle:nth-child(3n) {
  animation-duration: 25s;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Morphing Shapes */
.morphing-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: morph 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: -7s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 50%;
    transform: scale(1) rotate(0deg);
  }
  25% {
    border-radius: 20% 80% 30% 70%;
    transform: scale(1.1) rotate(90deg);
  }
  50% {
    border-radius: 80% 20% 70% 30%;
    transform: scale(0.9) rotate(180deg);
  }
  75% {
    border-radius: 30% 70% 80% 20%;
    transform: scale(1.05) rotate(270deg);
  }
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08) 0%,
    rgba(49, 46, 129, 0.08) 50%,
    rgba(124, 58, 237, 0.08) 100%
  );
  animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Page Background */
.page-background {
  min-height: 100vh;
  background: #f4f8ff;
  padding: 0;
  position: relative;
}

/* Main Card Wrapper */
.page-wrapper {
  /* max-width: 1200px; */
  max-width: full;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
  overflow: hidden;
}

/* Header */
.site-header {
  padding: 20px 24px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: block;
  height: auto;
}
.header-nav {
  display: flex;
  gap: 20px;
}
.header-nav a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
}
.header-nav a:hover {
  color: #1f2937;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  box-sizing: border-box;
}

.hero-wrapper {
  display: flex;
  margin-left: 120px;
  gap: 80px;
}

.logo-text {
  font-weight: 900;
  text-align: center;
  font-size: 2rem;
}

/* Hero decorative assets */
.hero {
  /* Linear gradient overlay */
  background: linear-gradient(
    to bottom,
    rgb(240, 240, 240) 0%,
    /* Starts with the base color */ rgb(210, 210, 210) 100%
      /* Fades to a slightly darker, cool gray */
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGUlEQVQoU2P8z8Dwn4GBgYExwDAmGQwAAIbfK8qgkYkSAAAAAElFTkSuQmCC");
  opacity: 0.07;
  mix-blend-mode: soft-light;
}
.decor-blob {
  position: absolute;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
  border-radius: 50%;
}
.blob-a {
  width: 360px;
  height: 360px;
  top: 8%;
  left: -6%;
  background: radial-gradient(
    ellipse,
    rgba(120, 120, 120) 0%,
    rgba(240, 240, 240) 100%
  );
}
.blob-b {
  width: 280px;
  height: 280px;
  bottom: 6%;
  right: -4%;
  background: radial-gradient(
    ellipse,
    rgba(90, 90, 90) 0%,
    rgba(240, 240, 240) 100%
  );
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #7030a0;
  margin-bottom: 0px;
  min-height: 140px;
  line-height: 1.2;
  transition: opacity 0.5s ease-in-out;
}
.hero-title.fading {
  opacity: 0;
}
.title-line {
  display: block;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .highlight {
  background: linear-gradient(45deg, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  border-radius: 2px;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
  }
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 48px;
  color: black;
  font-weight: bold;
  max-width: 680px;
  line-height: 1.2;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 8px 16px;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

.badge-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Problem Highlights */
.problem-highlights {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  flex: 1;
  min-width: 200px;
}

.highlight-icon {
  font-size: 1.5rem;
}

.highlight-text {
  color: #ffffff;
  font-weight: 500;
}

/* Hero Solution */
.hero-solution {
  margin: 30px 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
}

.solution-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-card h3 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.solution-card p {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.2;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-features .feature {
  color: #059669;
  font-weight: 500;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  justify-content: flex-start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #312e81);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7030a0;
  margin-bottom: 8px;
  min-width: 176px;
  display: block;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  max-width: 170px;
  color: black;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 32px;
  border: none;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #7c3aed, #4f46e5);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55),
      0 0 0 1px rgba(124, 58, 237, 0.2);
  }
}

.btn-primary:hover {
  background: linear-gradient(45deg, #6d28d9, #4338ca);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.btn-primary:hover .btn-glow {
  animation: glowMove 1.5s ease-in-out infinite;
  opacity: 1;
}

@keyframes glowMove {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-text {
  position: relative;
  z-index: 1;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-cards {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.card-preview {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.card-preview:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.card-1 {
  top: 0;
  left: 0;
  animation: cardFloat 6s ease-in-out infinite;
  z-index: 3;
}

.card-2 {
  top: 120px;
  right: 0;
  animation: cardFloat 6s ease-in-out infinite reverse;
  z-index: 2;
}

.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: cardFloat 6s ease-in-out infinite 2s;
  z-index: 1;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(2deg);
  }
  66% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #7c3aed, #312e81, #ffd700);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

.card-preview:hover .card-glow {
  opacity: 0.3;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
}

.card-preview .avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #7c3aed, #312e81);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.card-info .name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
}

.card-info .role {
  font-size: 0.85rem;
  color: #6b7280;
}

.coins {
  font-size: 0.8rem;
  color: #7c3aed;
  font-weight: 600;
  margin-top: 4px;
}

/* Connecting Lines */
.connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connections {
  width: 100%;
  height: 100%;
}

.connection-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  stroke-dasharray: 10, 5;
  animation: dashFlow 4s linear infinite;
}

.line-1 {
  animation-delay: 0s;
}
.line-2 {
  animation-delay: -1.3s;
}
.line-3 {
  animation-delay: -2.6s;
}

@keyframes dashFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -15;
  }
}

/* Buttons */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: #312e81;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #2d2a7c;
}

/* About Section */
.about {
  padding: 80px 40px;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(224, 232, 243, 0.6);
  transition: transform 0.3s ease;
}

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

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-card p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Full Width Section */
.full-width-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #111827;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.dark-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.dark-content p {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 60px;
}

/* Talent Carousel */
.talent-carousel {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.talent-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.talent-card .avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed, #312e81);
  border-radius: 50%;
}

.talent-card .info .name {
  font-weight: 700;
  font-size: 1rem;
  color: #1f2937;
}

.talent-card .info .role {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Waitlist Section */
.waitlist {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  padding: 80px 40px;
  text-align: center;
}

.waitlist h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.waitlist-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 60px;
}

/* Role Selection */
.role-selection {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-role {
  padding: 12px 24px;
  background: #e0e7ff;
  color: #4338ca;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  user-select: none;
}

.btn-role:hover {
  background: #c7d2fe;
}

.btn-role input[type="radio"] {
  display: none;
}

/* Active states for role buttons */
.btn-role.active[data-role="student"] {
  background: #7c3aed !important;
  color: #ffffff !important;
}

.btn-role.active[data-role="parent"] {
  background: #312e81 !important;
  color: #ffffff !important;
}

.btn-role.active[data-role="company"] {
  background: #059669 !important;
  color: #ffffff !important;
}

/* Form Styles */
.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  position: relative;
  margin-bottom: 4px;
}

.form-input {
  width: 100%;
  padding: 24px 16px 8px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-input.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.3s ease;
  pointer-events: none;
  background: #ffffff;
  padding: 0 4px;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: 6px;
  font-size: 0.75rem;
  color: #7c3aed;
}

/* Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 24px 16px 8px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

.form-textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-textarea.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-textarea.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  top: 6px;
  font-size: 0.75rem;
  color: #7c3aed;
}

.full-width-group {
  width: 100%;
  margin-bottom: 30px;
}

/* Honeypot field stays invisible for humans */
.honeypot {
  display: none !important;
}

.form-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
  margin-top: 12px;
  font-weight: 500;
}

.btn-loader {
  margin-left: 8px;
}

/* Error Messages */
.field-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  font-weight: 600;
  display: block;
}

/* Bot Check */
.bot-check {
  margin-bottom: 30px;
  text-align: left;
}

.human-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: #1f2937;
  user-select: none;
}

.human-check input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.human-check input[type="checkbox"]:checked + .checkmark {
  background: #7c3aed;
  border-color: #7c3aed;
}

.human-check input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}

.full-width {
  width: 100%;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 40px auto 0;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.success-message p {
  color: #6b7280;
  margin-bottom: 20px;
}

.position-info {
  background: #f0f9ff;
  padding: 12px 20px;
  border-radius: 99px;
  color: #0369a1;
  font-weight: 600;
}

#positionNumber {
  color: #7c3aed;
  font-weight: 800;
}

/* Press Section */
.press-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-top: 3px solid #dc2626;
}

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

.press-intro {
  font-size: 1.2rem;
  color: #374151;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
}

.press-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.press-news h3,
.press-contacts h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.press-points {
  list-style: none;
  padding: 0;
}

.press-points li {
  color: #374151;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
  font-size: 1rem;
}

.press-points li strong {
  color: #111827;
}

.press-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #dc2626;
}

.contact-item strong {
  color: #1f2937;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 12px;
}

.contact-item p {
  color: #6b7280;
  margin-bottom: 8px;
}

.contact-item a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.press-materials {
  margin-bottom: 80px;
}

.press-materials h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.material-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.material-item:hover {
  border-color: #dc2626;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.material-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.material-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.material-item p {
  color: #6b7280;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.material-link {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #dc2626;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.material-link:hover {
  color: #b91c1c;
  border-color: #b91c1c;
}

.press-facts {
  margin-bottom: 80px;
}

.press-facts h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.fact-card {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.fact-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.fact-text {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.press-sources {
  background: #f9fafb;
  padding: 40px;
  border-radius: 16px;
  border-left: 4px solid #dc2626;
}

.press-sources h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
}

.sources-list {
  list-style: none;
  padding: 0;
}

.sources-list li {
  color: #374151;
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
  font-size: 1rem;
}

.sources-list li::before {
  content: "📄";
  position: absolute;
  left: 0;
}

.sources-list strong {
  color: #1f2937;
}

/* Footer */
.footer {
  background: #111827;
  color: #ffffff;
  padding: 40px 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-logo p {
  color: #d1d5db;
  font-size: 0.95rem;
}

.footer-logo h3 {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Scroll Animations */
.step-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.step-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about h2,
.waitlist h2,
.waitlist-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about h2.animate-in,
.waitlist h2.animate-in,
.waitlist-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for step cards */
.step-card:nth-child(1).animate-in {
  transition-delay: 0.1s;
}
.step-card:nth-child(2).animate-in {
  transition-delay: 0.2s;
}
.step-card:nth-child(3).animate-in {
  transition-delay: 0.3s;
}
.step-card:nth-child(4).animate-in {
  transition-delay: 0.4s;
}

/* Morphing background effects */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(49, 46, 129, 0.05) 0%,
      transparent 50%
    );
  animation: morphBackground 20s ease-in-out infinite;
}

@keyframes morphBackground {
  0%,
  100% {
    background-position: 0% 0%, 100% 100%;
  }
  50% {
    background-position: 100% 100%, 0% 0%;
  }
}

/* Enhanced waitlist section */
.waitlist {
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      rgba(124, 58, 237, 0.03) 0%,
      rgba(49, 46, 129, 0.03) 100%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 215, 0, 0.02) 0%,
      transparent 70%
    );
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none; /* do not block clicks */
  z-index: 0;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* Enhanced form interactions */
.form-input:focus {
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.btn-role.active {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* Success animation */
.success-message {
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Problem Section */
.problem-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(239, 68, 68, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(251, 191, 36, 0.1) 0%,
      transparent 50%
    );
  animation: problemBackground 20s ease-in-out infinite;
}

@keyframes problemBackground {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #ffffff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Темный заголовок для светлых секций */
.solution-section .section-title,
.about .section-title,
.about h2,
.press-section .section-title {
  background: linear-gradient(135deg, #1f2937 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
}

.problem-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.problem-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ef4444;
  margin: 12px 0;
}

.problem-note {
  font-style: italic;
  color: #fbbf24;
  margin-top: 12px;
  font-weight: 500;
}

.problem-card ul {
  list-style: none;
  padding: 0;
}

.problem-card li {
  color: #e5e7eb;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.problem-card li::before {
  content: "•";
  color: #7c3aed;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Crisis Timeline */
.crisis-timeline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.crisis-timeline h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #ef4444, #fbbf24);
  z-index: 1;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-date {
  background: linear-gradient(45deg, #7c3aed, #4f46e5);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}

.timeline-content h4 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Solution Section */
.solution-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    );
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.solution-overview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.solution-main h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #dc2626, #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-main p {
  font-size: 1.2rem;
  color: #6b7280;
  line-height: 1.7;
}

.trust-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.flow-step {
  text-align: center;
  flex: 1;
}

.flow-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.flow-text {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.9rem;
}

.flow-arrow {
  font-size: 1.5rem;
  color: #7c3aed;
  font-weight: bold;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.benefit-card li {
  color: #6b7280;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  font-size: 0.95rem;
}

.benefit-card li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #dc2626, #1e40af);
  border-radius: 50%;
  color: #ffffff;
}

.feature-text {
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}

.feature-text strong {
  font-weight: 700;
  color: #ffffff;
}

/* Scroll Animations for New Elements */
.problem-card,
.benefit-card,
.section-title {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.problem-card.animate-in,
.benefit-card.animate-in,
.section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for new elements */
.problem-card:nth-child(1).animate-in {
  transition-delay: 0.1s;
}
.problem-card:nth-child(2).animate-in {
  transition-delay: 0.2s;
}
.problem-card:nth-child(3).animate-in {
  transition-delay: 0.3s;
}
.problem-card:nth-child(4).animate-in {
  transition-delay: 0.4s;
}

.benefit-card:nth-child(1).animate-in {
  transition-delay: 0.1s;
}
.benefit-card:nth-child(2).animate-in {
  transition-delay: 0.2s;
}
.benefit-card:nth-child(3).animate-in {
  transition-delay: 0.3s;
}
.benefit-card:nth-child(4).animate-in {
  transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-wrapper {
    margin-left: 0px;
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px 40px;
    gap: 40px;
    min-height: auto;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-cards {
    max-width: 300px;
  }

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

  .about {
    padding: 40px 20px;
  }

  .waitlist {
    padding: 40px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .role-selection {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .talent-carousel {
    animation: none;
    justify-content: center;
  }

  .animated-bg {
    background-size: 200% 200%;
  }

  /* Problem Section Mobile */
  .problem-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .problem-card {
    padding: 20px;
  }

  .crisis-timeline {
    padding: 20px;
  }

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline::before {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #7c3aed, #ef4444, #fbbf24);
  }

  .timeline-item {
    text-align: left;
  }

  .timeline-date {
    margin-bottom: 10px;
    align-self: flex-start;
  }

  .timeline-content {
    margin-top: 10px;
    text-align: left;
  }

  /* Solution Section Mobile */
  .solution-section {
    padding: 60px 20px;
  }

  .solution-overview {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .solution-main h3 {
    font-size: 2rem;
  }

  .trust-flow {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 20px;
    text-align: center;
  }

  .benefit-card ul {
    text-align: center;
  }

  .benefit-card li {
    padding-left: 0;
    margin-bottom: 10px;
  }

  .benefit-card li::before {
    display: none;
  }

  /* Hero Mobile Updates */
  .hero-badge {
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .problem-highlights {
    flex-direction: column;
    gap: 15px;
  }

  .highlight-item {
    min-width: auto;
  }

  .hero-solution {
    margin: 20px 0;
  }

  .solution-card {
    padding: 20px;
  }

  /* Press Section Mobile */
  .press-section {
    padding: 60px 20px;
  }

  .press-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .press-materials h3,
  .press-facts h3 {
    font-size: 1.5rem;
  }

  .materials-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact-card {
    padding: 20px;
  }

  .press-sources {
    padding: 24px;
  }
}

.article-link-wrapper {
  margin-top: 30px;
  margin-left: 10px;
}

.article-link {
  color: black;
  font-weight: 900;
}

.purple {
  color: #7030a0;
}
