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

:root {
  --green: #00ffb2;
  --teal: #00c9c8;
  --bg: #020d0d;
  --bg2: #041414;
  --bg3: #071e1e;
  --bg4: #0a2626;
  --text: #e8fffe;
  --muted: #6b9e9e;
  --border: rgba(0, 201, 200, 0.15);
  --border2: rgba(0, 255, 178, 0.2);
}

html {
  scroll-behavior: smooth;
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(2, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}

.logo span {
  color: var(--green);
}

.hero {
  padding: 8.6rem 5% 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 201, 200, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0, 255, 178, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 201, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 201, 200, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-mark,
.badge,
h1,
.hero-sub,
.hero-cta-wrap {
  position: relative;
  z-index: 1;
}

.hero-mark {
  margin-bottom: 1.8rem;
}

.hero-mark svg {
  width: 280px;
  max-width: 90vw;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 178, 0.07);
  border: 1px solid rgba(0, 255, 178, 0.25);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 860px;
  margin: 0 auto;
}

h1 .g {
  color: var(--green);
}

h1 .t {
  color: var(--teal);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin: 1.4rem auto 2.2rem;
  font-weight: 400;
}

.hero-cta-wrap {
  margin-bottom: 1.5rem;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00ffb2, #00c9c8);
  color: #020d0d;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 178, 0.3), 0 4px 15px rgba(0, 201, 200, 0.2);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 3rem;
}

.stat-card {
  background: var(--bg2);
  padding: 1.6rem 2.2rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.section {
  padding: 2rem 5%;
}

.section-alt {
  background: var(--bg2);
}

.sec-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.sec-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sec-title .g {
  color: var(--green);
}

.sec-title .t {
  color: var(--teal);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.feat-card {
  background: var(--bg2);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
}

.feat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.feat-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feat-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.4rem;
}

.stars {
  color: var(--green);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

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

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--bg4);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.author-loc {
  font-size: 0.72rem;
  color: var(--muted);
}

.cta-section {
  padding: 3.5rem 5%;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0, 201, 200, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2,
.cta-section p {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.cta-section h2 .g {
  color: var(--green);
}

.cta-section p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.meta-section {
  background: #020d0d;
  border-top: 1px solid rgba(0, 201, 200, 0.1);
  padding: 2rem 5%;
}

.meta-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-card {
  background: #041414;
  border: 1px solid rgba(0, 201, 200, 0.1);
  border-radius: 4px;
  padding: 1rem 1.2rem;
}

.meta-title {
  font-size: 0.7rem;
  color: #00c9c8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.meta-text {
  font-size: 0.8rem;
  color: #6b9e9e;
  line-height: 1.6;
}

.meta-link-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.2rem;
}

.meta-arrow {
  color: #00ffb2;
  font-size: 1rem;
}

.meta-link-row a {
  color: #00ffb2;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.meta-block {
  margin-bottom: 1rem;
}

.meta-para {
  font-size: 0.76rem;
  color: #6b9e9e;
  line-height: 1.7;
}

footer {
  text-align: center;
  padding: 1.5rem 5%;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--bg);
  line-height: 1.8;
}

.foot-note {
  font-size: 0.65rem;
  opacity: 0.45;
}

@media (max-width: 1180px) {
  .testi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem 4%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero {
    padding: 6.2rem 4% 1.5rem;
  }

  h1 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stat-card {
    min-width: calc(50% - 1px);
    padding: 1rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

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

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

  .sec-title {
    font-size: 1.6rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section {
    padding: 2rem 4%;
  }

  .section,
  .meta-section {
    padding: 1.8rem 4%;
  }

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