/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --green: #39ff14;
  --green-dim: #2bcc10;
  --green-glow: rgba(57, 255, 20, 0.15);
  --text: #e0e0e0;
  --text-muted: #888;
  --radius: 16px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

/* === Layout === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

section { padding: 100px 0; }

/* === Navigation === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(57, 255, 20, 0.08);
}

nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); opacity: 1; }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% 40%, var(--green-glow), transparent),
    radial-gradient(ellipse 300px 300px at 20% 80%, rgba(57, 255, 20, 0.05), transparent),
    radial-gradient(ellipse 300px 300px at 80% 20%, rgba(57, 255, 20, 0.05), transparent);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-family: var(--mono);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(57, 255, 20, 0.3);
  margin-bottom: 24px;
}

.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero .cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.4);
  transform: translateY(-2px);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(57, 255, 20, 0.3);
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(57, 255, 20, 0.05);
  transform: translateY(-2px);
  color: var(--green);
}

/* === Section Headers === */
.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header { margin-bottom: 64px; }

/* === Apps === */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 48px 36px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.app-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(57, 255, 20, 0.15);
  transform: translateY(-4px);
}
.app-card:hover::before { opacity: 1; }

.app-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  object-fit: cover;
}

.app-icon.broooooo {
  background: linear-gradient(135deg, #1a3a1a, #0d1f0d);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.app-icon.odissey {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.app-card h3 {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-live {
  background: rgba(57, 255, 20, 0.1);
  color: var(--green);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.badge-soon {
  background: rgba(255, 200, 0, 0.1);
  color: #ffc800;
  border: 1px solid rgba(255, 200, 0, 0.2);
}

.app-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.app-features li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-left: 20px;
  position: relative;
}

.app-features li::before {
  content: '>';
  position: absolute; left: 0;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 700;
}

/* === About === */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p strong { color: var(--text); }

.values-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 24px;
}

.values-list li {
  padding-left: 24px;
  position: relative;
}

.values-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.values-list li h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.values-list li p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Contact === */
#contact { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.contact-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .3s;
}
.contact-item:hover { border-color: rgba(57, 255, 20, 0.15); }

.contact-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-item p, .contact-item a {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Footer === */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

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

footer .footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color .2s;
}
footer .footer-links a:hover { color: var(--green); opacity: 1; }

footer .legal {
  font-size: 0.75rem;
  color: #555;
}

/* === Legal Pages === */
.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 8px;
  margin-bottom: 48px;
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 740px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
  max-width: 740px;
}

.legal-body li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-body li strong {
  color: var(--text);
}

/* === Responsive === */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.08);
  }
  .nav-toggle { display: block; }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-card { padding: 36px 28px; }

  footer .container { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .hero h1 { letter-spacing: 3px; }
  .btn { padding: 12px 24px; font-size: 0.8rem; }
}
