
    /* Base Reset */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background: #0f172a; color: #f1f5f9; line-height: 1.6; }
    a { color: inherit; text-decoration: none; }

    /* Sticky Nav + CTA */
    header {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(30,41,59,0.95); display: flex; align-items: center;
      justify-content: space-between; padding: 1rem 2rem;
      backdrop-filter: blur(10px);
    }
    .logo { font-size: 1.25rem; font-weight: 700; color: #38bdf8 }
    nav a { margin-left: 1.5rem; font-weight: 500; transition: color 0.3s; }
    nav a:hover { color: #38bdf8; }

    .sticky-cta {
      position: fixed; bottom: 20px; right: 20px;
      background: #22c55e; color: white;
      padding: 0.75rem 1.25rem;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      font-weight: 600;
      display: none;
      cursor: pointer;
    }
html {
  scroll-behavior: smooth;
}
.hero-infobox {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: rgba(15, 23, 42, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  padding: 1.5rem;
  max-width: 350px;
  color: #fff;
  z-index: 2;
}

.hero-infobox h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #38bdf8;
}

.hero-infobox .feature-box {
  background: #1e293b;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.hero-infobox .bonus {
  background-color: #15803d;
  color: #fff;
  font-weight: bold;
}


.hero-infobox h4 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #22c55e;
}

.hero-infobox ul {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.hero-infobox ul li {
  padding-left: 1rem;
margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.bonus-box {
  margin-top: 1rem;
  background: #15803d;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(34,197,94,0.5);
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  background: #334155;
  margin: 1rem 0;
}



.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  text-align: center;
  padding: 2rem;
  background: url('a.jpg') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.5), rgba(20,20,20,0.3));
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  z-index: 0;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-infobox {
  animation: fadeInRight 1.2s ease-out both;
}
.hero-infobox .feature-box {
  transition: transform 0.3s ease, background-color 0.3s;
}

.hero-infobox .feature-box:hover {
  transform: scale(1.03);
  background-color: #334155;
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
  }
}

.hero-infobox {
  animation: fadeInRight 1.2s ease-out both, glowPulse 3s ease-in-out infinite;
}



@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInSlide 0.8s ease-out forwards;
  will-change: opacity, transform;
}

/* Delay per line */
.feature-0 { animation-delay: 0.2s; }
.feature-1 { animation-delay: 0.4s; }
.feature-2 { animation-delay: 0.6s; }
.feature-3 { animation-delay: 0.8s; }
.feature-4 { animation-delay: 1.0s; }
.feature-5 { animation-delay: 1.2s; }
.feature-6 { animation-delay: 1.4s; }
.feature-7 { animation-delay: 1.6s; }
.feature-8 { animation-delay: 1.8s; }

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px); /* slight upward movement */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-in-out both;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #000;
}

.hero-subtitle {
  font-size: 2.6rem;
  margin-bottom: 4rem;
  color: #e2e8f0;
}

.hero-btn {
  padding: 0.8rem 2rem;
  background: #22c55e;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 0 10px #22c55e;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #16a34a;
  box-shadow: 0 0 20px #22c55e;
}

.scroll-down {
  font-size: 2rem;
  color: #ffffff;
  margin-top: 30px;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

    .sticky-cta.show { display: block; }

    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,20,0.6);
    }
    .hero-content { position: relative; z-index: 1; }
    .hero h1 { font-size: 2.75rem; letter-spacing: 1px; margin-bottom: 1rem; color: #38bdf8; text-shadow: 0 2px 4px rgba(0,0,0,0.7); }
    .hero p.subtitle { font-size: 1.2rem; margin-bottom: 1.5rem; }
    .hero .cta-btn {
      background-color: #22c55e;
      color: #fff;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(34,197,94,0.6);
      transition: transform 0.2s;
    }
    .hero .cta-btn:hover { transform: translateY(-2px) scale(1.02); }
    .hero .badge {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background: #2563eb;
      color: #fff;
      border-radius: 20px;
      font-weight: 600;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%,100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
/* Nav Links for Desktop */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f172a;
  color: white;
}

.masterclass-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 60px;
  flex-wrap: wrap;
}

.left-content {
  max-width: 500px;
}

.left-content h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.highlight {
  color: #3b82f6;
  font-weight: 700;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-row {
  background-color: #1e293b;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.feature-row:hover {
  background-color: #334155;
  cursor: pointer;
}

.feature-row span {
  margin-left: 10px;
}

.bonus-row {
  background-color: #15803d;
  font-weight: bold;
  color: white;
}

.bonus-row:hover {
  background-color: #166534;
}

.right-image-container {
  max-width: 600px;
  flex: 1;
  margin-top: 150px; /* Push image slightly lower */
}

.right-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;       /* Removes rounded border */
  box-shadow: none;       /* Removes any drop shadows */
  display: block;
}



    /* Sections */
    .section { padding: 3rem 1rem; max-width: 1000px; margin: auto; }
    .section h2 {
      margin-bottom: 1.5rem;
      font-size: 1.75rem;
      color: #38bdf8;
      text-align: center;
    }

    /* Feature Cards */
    .cards {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .card {
      background: #1e293b;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s;
    }
    .card:hover { transform: translateY(-4px); }

    /* Demo Chart */
    .demo-chart {
      background: #1e293b;
      border-radius: 12px;
      padding: 2rem;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      font-style: italic;
      margin: 1.5rem 0;
    }

.live-demo-hero {
  position: relative;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  z-index: 0;
}

.demo-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
  animation: fadeInUp 1.2s ease-out both;
}

.demo-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #38bdf8;
  text-shadow: 0 0 10px #000;
}

.demo-content p {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
  animation: zoomIn 1s ease-in-out both;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
#mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #0A192F;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

#mute-btn:hover {
  background: #00FF85;
  color: black;
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .demo-content h2 {
    font-size: 1.8rem;
  }
  .demo-content p {
    font-size: 1rem;
  }
}

.floating-cta {
  margin-top: 30px;
  text-align: center;
  animation: fadeInUp 1s ease-in-out both;
}

.cta-floating-btn {
  background-color: #22c55e;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.7);
}
.cta-floating-btn {
  animation: pulseBtn 2.5s infinite;
}

@keyframes pulseBtn {
  0%, 100% {
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 1);
  }
}

  .instructor-section {
    background: #0f172a;
    padding: 80px 20px;
    color: #e2e8f0;
    text-align: center;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #fff;
  }
  .section-title .highlight {
    color: #38bdf8;
  }

  .instructor-card {
    background: #1e293b;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .instructor-header .instructor-icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .instructor-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }

  .instructor-title {
    font-size: 1rem;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .instructor-body p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
  }

  .instructor-highlight {
  background: linear-gradient(90deg, #22c55e, #34d399); /* smooth green gradient */
  color: #ffffff;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  font-weight: 700;
  font-size: 1.1rem;
  max-width: 820px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
  .bold-green {
    font-weight: 800;
    color: #fff;
  }

  .instructor-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }

  .stat-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }

  .stat-card:hover {
    background-color: #1e3a8a;
    transform: translateY(-5px);
  }

  .stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
  }

  .stat-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
  }

  @media (max-width: 768px) {
    .instructor-body p {
      text-align: center;
    }
  }
.testimonials {
  padding: 4rem 2rem;
  text-align: center;
  background: transparent;
  color: #e2e8f0;
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials .star-icon {
  font-size: 2rem;
  margin-right: 0.6rem;
}

.testimonials .highlight-blue {
  color: #38bdf8;
}

.testimonials .subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-box {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  max-width: 350px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.1);
  border: 1px solid transparent;
  transition: transform 0.3s, border 0.3s, box-shadow 0.3s;
  position: relative;
  text-align: left;
}

.testimonial-box:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.testimonial-box .quote {
  font-size: 1.8rem;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.testimonial-box .content {
  font-style: italic;
  line-height: 1.6;
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-box .author {
  font-weight: 600;
  color: #f1f5f9;
  font-size: 0.95rem;
  border-left: 3px solid #38bdf8;
  padding-left: 0.6rem;
}

body {
  background-color: #0b132b;
  color: white;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.stats-section {
  background-color: #0f172a;
  padding: 60px 20px;
  border-top: 1px solid #1e293b;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  flex: 1;
  min-width: 150px;
  max-width: 240px;
  padding: 1rem;
  border-radius: 10px;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-card p {
  font-size: 1rem;
  color: #cbd5e1;
}

/* Hover Effect */
.stat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
}

/* Scroll Fade-in */
.fade-stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile View */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}


.core-services-section {
  padding: 60px 20px;
  text-align: center;
  background: #0a0f1a;
  color: #fff;
}

.core-services-section h2 {
  font-size: 2.5rem;
  color: #00aaff;
  margin-bottom: 10px;
}

.core-services-section .subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #1b2433;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #1e90ff, #00c2ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.hover-note {
  display: block;
  color: #00aaff;
  font-size: 0.85rem;
  margin-top: 10px;
}

.service-popup {
  display: none;
  background: #fff;
  color: #000;
  text-align: left;
  position: absolute;
  bottom: -170px;
  left: 0;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-popup {
  display: block;
}

.service-popup h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #000;
}

.service-popup ul {
  padding-left: 20px;
  margin: 0;
  font-size: 0.9rem;
}

.cta-container {
  margin-top: 50px;
}
.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  background: #00c851;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00993e;
}



/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-popup {
    position: relative;
    bottom: auto;
    margin-top: 10px;
  }

  .service-card:hover .service-popup {
    display: block;
  }
}
/* Animation Delay Classes */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ========= About Section — AlgoXpert ========= */

/* Palette to match your blue/dark theme */
:root{
  --bg-0:#0b132b;         /* page bg */
  --bg-1:#0f172a;         /* hero/about panel bg */
  --bg-2:#111827;         /* card bg */
  --ink-0:#f8fafc;
  --ink-1:#cbd5e1;
  --ink-2:#94a3b8;
  --sky:#38bdf8;          /* accent blue */
  --pill-1:#16a34a;       /* belief gradient start */
  --pill-2:#22c55e;       /* belief gradient end */
  --ring:rgba(56,189,248,.25);
  --shadow:0 10px 30px rgba(0,0,0,.35);
}

.about{
  background: var(--bg-0);
  color: var(--ink-0);
  padding: clamp(56px, 7vw, 96px) 16px;
}

.about__wrap{
  max-width: 1080px;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(17,24,39,.6), rgba(17,24,39,.35));
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(56,189,248,.08);
}

/* ===== About Section Styling ===== */
.about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) 20px;
  text-align: center;
}

.about-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.about-icon {
  font-size: 28px;
}

.about-title {
  color: #fff;
}

.about-title .highlight {
  color: #0ea5e9; /* blue accent */
}

.about-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.about-intro p {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-intro .highlight {
  color: #0ea5e9;
}

/* Mobile first, adjust spacing for desktop */
@media (min-width: 768px) {
  .about-section {
    text-align: left;
  }

  .about-header {
    text-align: left;
  }
}
/* Belief pill */
.about__belief{
  margin: clamp(18px, 3vw, 28px) auto;
  padding: clamp(16px, 2.8vw, 22px) clamp(18px, 3.2vw, 28px);
  max-width: 980px;
  background: linear-gradient(90deg, var(--pill-1), var(--pill-2));
  color: #eafff2;
  border-radius: 14px;
  font-size: clamp(15px, 2.5vw, 18px);
  text-align: center;
  box-shadow: 0 12px 30px rgba(34,197,94,.28);
  border: 1px solid rgba(255,255,255,.08);
}
.about__belief strong{ font-weight:800; }
.about__belief em{ font-style: normal; font-weight: 800; }

/* Body text */
.about__body{
  max-width: 860px;
  margin: 0 auto clamp(22px,3.6vw,36px);
  color: var(--ink-1);
  font-size: clamp(16px, 2.5vw, 18px);
}
.about__body p + p{ margin-top: 10px; }


.about__icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(56,189,248,.35), rgba(56,189,248,.15));
  border: 1px solid rgba(56,189,248,.25);
  margin-bottom: 12px;
  font-size: 22px;
}

/* ========= Compact Feature List (matches screenshot) ========= */

.about__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: clamp(16px, 2.6vw, 26px);
  padding-top: clamp(12px, 2vw, 18px);
  border-top: 1px solid rgba(56,189,248,.08);
}

@media (min-width: 900px){
  .about__list{
    grid-template-columns: 1fr 1fr;   /* two columns on desktop */
    column-gap: 48px;
  }
}

/* Single row */
.about__row{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px 14px;
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(56,189,248,.04), rgba(56,189,248,.02));
  border: 1px solid rgba(56,189,248,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about__row:hover{
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.25);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* Small emoji dot (like your screenshot) */
.about__dot{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 22px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 25%, rgba(56,189,248,.25), rgba(56,189,248,.08));
  border: 1px solid rgba(56,189,248,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* Text block */
.about__rowBody h4{
  margin: 2px 0 4px;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  color: #e5f3ff;
  letter-spacing: .2px;
}

.about__rowBody p{
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.55;
}

/* Subtle stagger-in animation if motion allowed */
@media (prefers-reduced-motion: no-preference){
  .about__row{
    animation: fadeUp .55s ease both;
  }
  .about__row:nth-child(1){ animation-delay: .03s; }
  .about__row:nth-child(2){ animation-delay: .08s; }
  .about__row:nth-child(3){ animation-delay: .13s; }
  .about__row:nth-child(4){ animation-delay: .18s; }
}


/* Motion preferences */
@media (prefers-reduced-motion: no-preference){
  .about__wrap,
  .about__belief,
  .about__card{
    animation: fadeUp .7s ease both;
  }
  
}
.contact-section {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: auto;
}

.contact-title {
    font-size: 1.8rem;
    color: #00b4d8;
    margin-bottom: 1rem;
}

.contact-title .icon {
    font-size: 1.6rem;
    margin-right: 0.3rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-info li {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact-info a {
    color: #00b4d8;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.limited {
    color: #ff4d4d;
    font-weight: bold;
}

.join-btn {
    background-color: #28a745;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.note {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #cccccc;
}


@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: translateY(0); }
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}
.form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
}
.form input {
  margin-top: 0.25rem;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
.form input:focus { outline: 2px solid #38bdf8; }
.form .cta-btn {
  width: 100%;
  text-align: center;
}
.custom-form {
  max-width: 400px;
  margin: auto;
  display: grid;
  gap: 1.2rem;
}

.custom-form label {
  font-weight: 600;
  color: #f1f5f9;
}

.custom-form input {
  background: #1e293b;
  border: 1px solid #334155;
  color: #f1f5f9;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: outline 0.2s ease;
}

.custom-form input:focus {
  outline: 2px solid #38bdf8;
}

.custom-form button {
  background-color: #22c55e;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-form button:hover {
  background-color: #16a34a;
}

:root{
  --bg: #0f172a;
  --panel: #121b2f;
  --panel-2: #151f36;
  --text: #e5f0ff;
  --muted: #b7c6de;
  --blue: #38bdf8;
  --green: #22c55e;
  --green-2: #16a34a;
  --ring: rgba(56,189,248,.28);
  --card-ring: rgba(56,189,248,.18);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Base */
*{box-sizing:border-box}
body{background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.55}

/* Section shell */
.post-reg{
  display:grid;
  place-items:center;
  padding:40px 20px 28px;
}

.post-reg__wrap{
  width:min(1100px,92vw);
  background:linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  position:relative;
}

.post-reg__wrap:before{
  content:"";
  position:absolute; inset:-1px;
  border-radius:calc(var(--radius) + 2px);
  pointer-events:none;
  background:
    radial-gradient(80% 50% at 50% 0%, var(--card-ring), transparent 70%);
  filter:blur(6px);
  z-index:0;
}

.post-reg__title{
  text-align:center;
  margin:22px 18px 8px;
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.2px;
  color:#d8ebff;
}

/* Steps */
.post-reg__steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:6px;
  list-style:none;
  margin: 6px 14px 16px;
  padding:16px;
  border:1px solid rgba(56,189,248,.18);
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.step{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 16px;
  border-radius:12px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.step:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.02);
  box-shadow: 0 8px 20px rgba(3, 169, 244, .08);
}

.step__bullet{
  flex:0 0 auto;
  width:34px; height:34px;
  display:grid; place-items:center;
  font-weight:800;
  border-radius:10px;
  color:#fff;
  background: linear-gradient(180deg, #3ea8ff, #0076d4);
  box-shadow: 0 4px 10px rgba(0, 118, 212, .35), inset 0 0 0 2px rgba(255,255,255,.12);
}

.step__text{
  margin:0; font-size:0.98rem; color:var(--muted); font-weight:600;
}

/* Footer */
.site-footer{
  padding:22px 16px 70px;
  text-align:center;
  color:#9fb2cb;
}

.site-footer__legal{
  margin:0 0 8px; font-size:.95rem;
}

.site-footer__links{
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}
.site-footer__links a{
  color:var(--blue); text-decoration:none; font-weight:600;
  border-bottom:1px dashed transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-footer__links a:hover{
  color:#7fd7ff; border-color:#7fd7ff;
}

/* Modals (pure CSS :target) */
.modal{
  position:fixed; inset:0; display:none; z-index:999;
}
.modal:target{ display:block; }

.modal__backdrop{
  position:absolute; inset:0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
}

.modal__box{
  position:relative; width:min(680px, 90vw);
  margin: min(22vh, 160px) auto 0;
  background: #16243b;
  border:1px solid rgba(255,255,255,.08);
  color:var(--text);
  padding:20px 22px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: modalIn .2s ease-out;
}

@keyframes modalIn{
  from { opacity:0; transform: translateY(6px) scale(.98); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.modal__title{
  display:flex; align-items:center; gap:10px;
  margin:0 28px 10px 0;
  font-size:1.05rem;
}
.modal__icon{ filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }

.modal__close{
  position:absolute; top:10px; right:10px;
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  background: #0f1a2f; color:#cfe7ff; font-size:20px; line-height:1;
  cursor:pointer; transition:transform .2s ease, background .2s ease;
}
.modal__close:hover{ transform: rotate(90deg); background:#102040; }

/* Responsive */
@media (max-width: 860px){
  .post-reg__steps{ grid-template-columns: 1fr; gap:10px; }
  .step{ padding:14px 12px; }
  .step__bullet{ width:32px; height:32px; border-radius:9px; }
  .post-reg__title{ font-size:1.05rem; }
  .site-footer{ padding-bottom: 90px; }
}


/* Mobile CTA styles */
.mobile-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #22c55e;
  color: white;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
  display: none; /* Hidden by default */
}

/* Hover effect */
.mobile-cta:hover {
  background-color: #16a34a;
}

/* Show only on screens smaller than 768px */
@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}
