@import 'style.css';
@import 'navbar.css';
@import 'footer.css';
@import 'privacy-policy.css';
@import 'terms-and-condition.css';

:root {
  --bg: #0e0f14;
  --bg-soft: #141622;
  --surface: #1b1f2e;
  --text: #e8ecf1;
  --muted: #a6b0c3;
  --brand: #7c5cff;
  --brand-2: #00e1ff;
  --accent: #ff6b6b;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --card: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --header-bg: rgba(20, 22, 34, 0.95);
  --header-border: rgba(255, 255, 255, 0.08);
  --link: rgba(232, 236, 241, 0.88);
  --link-hover: #ffffff;
}

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

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 80% -10%, rgba(124, 92, 255, 0.15), transparent 60%),
    radial-gradient(1200px 800px at 0% 0%, rgba(0, 225, 255, 0.12), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

main {
  animation: fadeInUp 0.8s ease-out;
}

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

.section {
  padding: 96px 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
}




.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  color: #cfd2ff;
  border: 1px solid rgba(124, 92, 255, 0.35);
  font-size: 14px;
  font-weight: 500;
}

/* Animations */
@keyframes meshShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate3d(0, -2%, 0) scale(1.02);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 2%, 0) scale(1.01);
    opacity: 0.95;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────
   RESPONSIVE DESIGN (4-BREAKPOINT SYSTEM)
────────────────────────────── */

/* 💻 Large Desktop (>1250px) */
/* Default layout — no overrides needed */

/* 🧩 Small Desktop / Large Tablet Landscape (1025px–1250px) */
@media (max-width: 1250px) and (min-width: 1025px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  }

  .section:first-of-type {
    padding-top: 140px;
  }
}

/* 📱 Mobile + Tablet Unified (480px–1024px) */
@media (max-width: 1024px) and (min-width: 480px) {
  .container {
    padding: 0 22px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .section {
    padding: 80px 0;
  }

  .section:first-of-type {
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
  }

  h3 {
    font-size: 1.35rem;
  }

  .lead {
    font-size: 1rem;
    max-width: 100%;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* 📞 Mobile Portrait (≤479px) */
@media (max-width: 479px) {
  .section {
    padding: 64px 0;
  }

  .section:first-of-type {
    padding-top: 100px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  h2 {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  h3 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.25rem;
  }

  .badge {
    font-size: 13px;
    padding: 6px 14px;
  }

  .btn {
    padding: 9px 18px;
    font-size: 0.9rem;
  }
}