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

:root {
  --bg: #0e0e1a;
  --bg-alt: #141425;
  --surface: #1a1a2e;
  --border: #2a2a44;
  --text: #e0e0e0;
  --text-muted: #999;
  --accent: #f72585;
  --accent-hover: #ff3d9a;
  --green: #c2f000;
  --green-hover: #d4ff1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navigation ── */

.nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  background: rgba(14, 14, 26, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.hero-content {
  max-width: 620px;
}

.hero-tag {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Sections ── */

.section {
  padding: 6rem 0;
}

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

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ── About ── */

.about-text {
  max-width: 620px;
}

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

/* ── Offerings ── */

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

a.offering-card {
  text-decoration: none;
  color: inherit;
}

.offering-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.offering-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.offering-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.offering-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.offering-card-wide {
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Offering Links ── */

.offering-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.offering-link:hover {
  color: var(--green-hover);
}

/* ── Subpages ── */

.back-link {
  display: inline-block;
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--green-hover);
}

.page-hero {
  padding: 8rem 0 4rem;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Showcase ── */

.showcase {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.showcase-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.showcase-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── CTA Block ── */

.cta-block {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.cta-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* ── Contact ── */

.contact-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ── */

.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 4rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .offering-card {
    padding: 1.5rem;
  }

  .showcase {
    padding: 1.5rem;
  }

  .cta-block {
    padding: 1.5rem;
  }

  .page-hero {
    padding: 6rem 0 3rem;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links .btn {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.4rem 0.4rem;
    gap: 0.25rem;
  }

  .nav a {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .hero {
    padding: 6rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .offering-card {
    padding: 1.25rem;
  }

  .showcase {
    padding: 1.25rem;
  }

  .page-hero {
    padding: 5rem 0 2rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
}
