:root {
    --bg: #f5f4f0;
    --white: #ffffff;
    --dark: #1a1a2e;
    --purple: #6c5ce7;
    --purple-light: #a29bfe;
    --purple-pale: #ede9ff;
    --green: #00b894;
    --orange: #e17055;
    --accent: #fd79a8;
    --text: #2d3436;
    --muted: #636e72;
    --border: rgba(108,92,231,0.12);
    --card-bg: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
  }

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

html {
  scroll-behavior: smooth;
}

  body {
    font-family: 'Geologica', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245,244,240,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    text-decoration: none;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

.logo-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--dark); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-ghost {
    padding: 9px 20px;
    border: none;
    background: transparent;
    color: var(--dark);
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.2s;
  }

  .btn-ghost:hover { background: rgba(0,0,0,0.06); }

  .btn-primary {
    padding: 10px 22px;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: #5a4bd1; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: calc(100vh - 64px);
    padding: 60px 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-left {
    animation: fadeUp 0.7s ease both;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple-pale);
    color: var(--purple);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
  }

  .hero-badge span { font-size: 16px; }

  .hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--purple);
  }

  .hero-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-big {
    padding: 14px 30px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-big:hover { background: #2d3436; transform: translateY(-2px); }

  .btn-video {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Geologica', sans-serif;
  }

  .play-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: transform 0.2s;
  }

  .btn-video:hover .play-circle { transform: scale(1.1); }

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.card-subtitle {
  font-size: 11px;
  color: var(--muted);
}

.card-title-2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.card-subtitle-2 {
  font-size: 11px;
  color: var(--muted);
}

  /* HERO RIGHT */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.7s 0.15s ease both;
  }

  .hero-blob {
    width: 380px;
    height: 380px;
    background: var(--purple-pale);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    position: absolute;
    animation: blobMove 8s ease-in-out infinite;
  }

  @keyframes blobMove {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    50% { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
  }

  .hero-img-wrap {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 360px;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c3b1e1 0%, #a29bfe 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .hero-img-placeholder .big-emoji { font-size: 80px; }
  .hero-img-placeholder p { color: white; font-weight: 500; font-size: 14px; }

  .floating-card {
    position: absolute;
    z-index: 3;
    background: white;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: 0 8px 32px rgba(108,92,231,0.15);
    font-size: 13px;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
  }

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

  .card-joined {
    bottom: 40px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: 0s;
  }

  .avatars {
    display: flex;
  }

  .av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -6px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
  }

  .av:first-child { margin-left: 0; }

  .card-score {
    top: 40px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 1s;
  }

  .score-icon {
    width: 32px;
    height: 32px;
    background: var(--purple-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  

  .floating-icon {
    position: absolute;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    animation: float 4s ease-in-out infinite;
  }

  .icon-tl { top: 10px; right: 10px; background: var(--purple); animation-delay: 0.5s; }
  .icon-br { bottom: 80px; left: -50px; background: var(--green); animation-delay: 1.5s; }

  /* STATS STRIP */
  .stats-strip {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 48px;
  }

  .stats-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

  .stat-item {
    flex: 1;
    padding: 28px 36px;
    border-right: 1px solid var(--border);
    position: relative;
  }

  .stat-item:last-of-type { border-right: none; }

  .stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 14px;
    color: var(--muted);
  }

  .stat-cta {
    display: flex;
    align-items: center;
    padding: 24px 28px;
  }

  .btn-orange {
    padding: 10px 20px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .btn-orange:hover { opacity: 0.88; }

.section {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 48px;
  }

  .section-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .section-heading {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.2;
  }

 
  /* HOW IT WORKS */
  .how-section {
    background: var(--dark);
    padding: 80px 48px;
    margin-bottom: 70px;
  }

  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .how-section .section-label { color: var(--purple-light); }
  .how-section .section-heading { color: white; }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .step-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
  }

  .step-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    margin-bottom: 16px;
  }

  .step-icon { font-size: 28px; margin-bottom: 12px; }

  .step-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  /* MEET */
.meet-grid {
  display: flex;
  justify-content: center;
}

.meet-grid > div {
  max-width: 700px;
  text-align: center;
}

.meet-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0 auto 20px;
}

.meet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.meet-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 8px;
}

.meet-title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.meet-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

.meet-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
}
  /* TESTIMONIALS */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  

  .stars { color: #fdcb6e; font-size: 14px; margin-bottom: 12px; }

  .testi-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
  }

.testi-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
}

  .testi-name { font-size: 14px; font-weight: 500; color: var(--dark); }
  .testi-score { font-size: 12px; color: var(--muted); }

  /* CTA */
  .cta-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 48px;
  }

  .cta-card {
    background: var(--purple);
    border-radius: 28px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -80px; right: -60px;
  }

  .cta-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -60px; left: -40px;
  }

  .cta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative; z-index: 1;
  }

  .cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    position: relative; z-index: 1;
  }

  .btn-white {
    padding: 14px 36px;
    background: white;
    color: var(--purple);
    border: none;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative; z-index: 1;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-white:hover { opacity: 0.9; transform: translateY(-2px); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-copy { font-size: 13px; color: var(--muted); }

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

  .footer-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--dark); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }


/* THEME BUTTON */
.theme-toggle {
  display: flex;
  align-items: center;
}

#themeBtn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.25s;
}

#themeBtn:hover {
  transform: scale(1.08);
}

/* DARK THEME */
body.dark-theme {
  --bg: #0f1117;
  --white: #181c25;
  --dark: #ffffff;
  --text: #f1f1f1;
  --muted: #a0a7b5;
  --border: rgba(255,255,255,0.08);
  --card-bg: #181c25;

  background: var(--bg);
  color: var(--text);
}

body.dark-theme nav {
  background: rgba(15,17,23,0.85);
}

body.dark-theme .subj-card,
body.dark-theme .testi-card,
body.dark-theme .floating-card {
  background: #181c25;
  color: white;
}

body.dark-theme .step-card {
  background: rgba(255,255,255,0.04);
}

body.dark-theme footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}

body.dark-theme .btn-big {
  background: #6c5ce7;
  color: white;
}

body.dark-theme .btn-big:hover {
  background: #5a4bd1;
}

body.dark-theme .testi-name,
body.dark-theme .subj-name,
body.dark-theme .card-title,
body.dark-theme .card-title-2,
body.dark-theme .meet-name,
body.dark-theme .ms-num,
body.dark-theme .hero-title,
body.dark-theme .logo {
  color: white;
}

body.dark-theme .testi-score,
body.dark-theme .subj-desc,
body.dark-theme .subj-count,
body.dark-theme .card-subtitle,
body.dark-theme .card-subtitle-2,
body.dark-theme .hero-desc,
body.dark-theme .meet-desc,
body.dark-theme .meet-title,
body.dark-theme .ms-label,
body.dark-theme .footer-copy,
body.dark-theme .footer-links a,
body.dark-theme .nav-links a {
  color: #a0a7b5;
}


/* Extracted inline styles */

.inline-style-3 { background:#6c5ce7 }
.inline-style-4 { background:#00b894 }
.inline-style-5 { background:#e17055 }
.inline-style-11 { background:#ede9ff }
.inline-style-12 { background:#d4f7ec }
.inline-style-13 { background:#fde8e4 }
.inline-style-14 { background:#e3f2fd }
.inline-style-15 { background:#fde8f0 }
.inline-style-16 { background:#e0f9f9 }
.inline-style-20 { background:#fdcb6e;color:#2d3436 }

/* MOBILE */
@media (max-width: 768px) {

  nav {
    padding: 0 20px;
    height: 70px;
  }

  .nav-links {
  display: flex;
  gap: 14px;
}

.nav-links a {
  font-size: 12px;
}

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 60px;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-right {
    transform: scale(0.9);
  }

  .hero-blob {
    width: 300px;
    height: 300px;
  }

  .card-score {
    left: -10px;
    top: 20px;
  }

  .card-joined {
    right: -10px;
    bottom: 20px;
  }


  .icon-br {
    left: -10px;
  }

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

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

  .section,
  .cta-section {
    padding: 0 20px;
  }

  .section-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .meet-grid > div {
    max-width: 100%;
  }

  .meet-stats {
    flex-direction: column;
    gap: 18px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 1.3;
  }

  footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

}

