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

:root {
  --blue-deep: #1a2c6b;
  --blue-mid: #2550c8;
  --blue-bright: #4a7dff;
  --blue-light: #7aaeff;
  --blue-pale: #dce9ff;
  --blue-bg: #e8f0fe;
  --teal: #3bb6e8;
  --white: #ffffff;
  --dark: #0f1b3d;
  --text-body: #3d4f7a;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 8px 40px rgba(37, 80, 200, 0.13);
  --shadow-lg: 0 20px 70px rgba(37, 80, 200, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 125, 255, 0.1);
  box-shadow: 0 2px 24px rgba(37, 80, 200, 0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 80, 200, 0.28);
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue-mid);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
}
.btn-ghost {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-pale);
}
.btn-ghost:hover {
  border-color: var(--blue-bright);
  background: var(--blue-bg);
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--blue-mid) 0%,
    var(--blue-bright) 100%
  );
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 80, 200, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 80, 200, 0.38);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(15, 27, 61, 0.22);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 27, 61, 0.32);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 64px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f5ff 0%, #e4eeff 55%, #d8ecff 100%);
}

/* Animated blob background */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(74, 125, 255, 0.18) 0%,
    rgba(59, 182, 232, 0.13) 40%,
    transparent 70%
  );
  animation: blobFloat 8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 80, 200, 0.1) 0%,
    transparent 70%
  );
  animation: blobFloat 11s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

/* Grid dots pattern */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(37, 80, 200, 0.07) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(
    135deg,
    rgba(37, 80, 200, 0.12),
    rgba(59, 182, 232, 0.12)
  );
  border: 1.5px solid rgba(74, 125, 255, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.hero-title .accent {
  color: var(--blue-mid);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-actions .btn {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
}
.stat {
  animation: fadeUp 0.8s ease both;
}
.stat:nth-child(2) {
  animation-delay: 0.1s;
}
.stat:nth-child(3) {
  animation-delay: 0.2s;
}
.stat-num {
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-mid);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.03em;
}

/* ── HERO RIGHT — Robot ── */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.robot-wrap {
  position: relative;
  width: 420px;
  height: 480px;
}

/* Floating bubble background */
.robot-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(59, 182, 232, 0.22) 0%,
    rgba(74, 125, 255, 0.15) 50%,
    transparent 75%
  );
  animation: blobFloat 6s ease-in-out infinite;
}

/* Robot SVG */
.robot-svg {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 420px;
  display: block;
  margin: auto;
  filter: drop-shadow(0 24px 48px rgba(37, 80, 200, 0.22));
  animation: robotFloat 4s ease-in-out infinite;
}
@keyframes robotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* Floating icon badges */
.float-badge {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(37, 80, 200, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: floatBadge 5s ease-in-out infinite;
}
.float-badge:nth-child(2) {
  top: 30px;
  right: 20px;
  animation-delay: 0s;
}
.float-badge:nth-child(3) {
  top: 160px;
  left: 10px;
  animation-delay: 1s;
}
.float-badge:nth-child(4) {
  bottom: 120px;
  right: 10px;
  animation-delay: 2s;
}
.float-badge:nth-child(5) {
  bottom: 40px;
  right: 60px;
  animation-delay: 0.5s;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

/* ── FEATURES ── */
.features {
  padding: 100px 64px;
  background: var(--white);
}
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: linear-gradient(145deg, var(--blue-bg) 0%, #f0f6ff 100%);
  border: 1.5px solid rgba(74, 125, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 125, 255, 0.3);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(37, 80, 200, 0.22);
}
.feature-title {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 64px;
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 125, 255, 0.1) 0%,
    transparent 70%
  );
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--teal));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(37, 80, 200, 0.28);
  border: 4px solid var(--white);
}
.step-title {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── BANNER ── */
.banner {
  margin: 0 64px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(74, 125, 255, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(59, 182, 232, 0.12) 0%,
      transparent 45%
    );
}
.banner-text {
  position: relative;
  z-index: 1;
}
.banner-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.banner-title {
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.banner-sub {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.btn-discord {
  background: #5865f2;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(88, 101, 242, 0.4);
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88, 101, 242, 0.5);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

/* ── FOOTER ── */
footer {
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1.5px solid rgba(74, 125, 255, 0.1);
  margin-top: 80px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-deep);
  text-decoration: none;
}
.footer-logo .logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(37, 80, 200, 0.22);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue-mid);
}
.footer-copy {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(61, 79, 122, 0.55);
}
.pricing {
  padding: 100px 64px;
  background: linear-gradient(135deg, #f6f9ff, #eef4ff);
}

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

.price-card {
  background: white;
  border-radius: 28px;
  padding: 45px 28px;
  box-shadow: 0 10px 40px rgba(37, 80, 200, 0.08);
  border: 1px solid rgba(74, 125, 255, 0.12);
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37, 80, 200, 0.18);
}

.price-card.featured {
  border: 2px solid var(--blue-mid);
  transform: scale(1.03);
}

.badge-popular {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
}

.price-title {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--blue-deep);
}

.price-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue-mid);
}

.price-sub {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.price-features li {
  font-size: 0.9rem;
  margin: 10px 0;
  color: var(--text-body);
  font-weight: 600;
}
.price-features li::before {
  content: "✓";
  color: var(--blue-mid);
  margin-right: 8px;
}
.price-actions {
  margin-top: 20px;
}
.price-actions .btn {
  width: 100%;
}

/* ── RESPONSIVENESS ── */
@media (max-width: 1024px) {
  body {
    width: 100%;
  }
  nav {
    width: 100%;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .footer-links {
    display: block !important;
  }
  .footer-links li {
    margin: 10px 0;
  }
}
@media (max-width: 768px) {
  .pricing {
    padding: 20px 35px;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-content: center;
    gap: 28px;
    max-width: 1100px;
    margin: 60px auto 0;
  }
  .price-card {
    padding: 50px 30px;
  }
  .price-card.featured {
    width: 100%;
  }
  .price-features {
    width: 100%;
  }
  .price-features li {
    width: 100%;
  }
  .badge-popular {
    top: 10px;
    font-size: 0.7rem;
    padding: 4px 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 25px;
    justify-content: center;
    text-align: center;
  }
  .hero h1,
  p {
    text-align: center;
  }
  .hero-right {
    display: none;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .features {
    padding: 70px 28px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .how {
    padding: 70px 28px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps::before {
    display: none;
  }
  .banner {
    margin: 0 28px;
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
  }
  .banner-actions {
    flex-direction: column;
    width: 100%;
  }
  footer {
    padding: 32px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
