:root {
  --neon: #39FF14;
  --ink: #0a0a0a;
  --muted: #5f6368;
  --bg: white;
  --alt: #f7f8f9;
  --card: rgba(255, 255, 255, 0.65);
  --border: rgba(10, 10, 10, 0.10);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);

  /* Helps offset fixed header when jumping to anchors */
  --header-offset: 160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #111;
  line-height: 1.55;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.narrow {
  width: min(900px, 92%);
  margin-inline: auto;
}

.muted { color: var(--muted); }
.small { font-size: 0.95rem; }
.tiny { font-size: 0.85rem; }

.note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

code {
  background: #eef1f3;
  border: 1px solid #dfe4e8;
  border-radius: 6px;
  padding: 2px 6px;
}

/* Fixed header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  padding: 10px 0; /* smaller padding since logo is large */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--neon);
  line-height: 1;
}

/* Logo size (300% bigger-ish) */
.logo img {
  height: 200px;
  width: auto;
  display: block;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}

nav a:hover { opacity: 1; }

.cta-nav {
  background: var(--neon);
  padding: 8px 16px;
  border-radius: 6px;
  color: #000;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;

  /* static background */
  background: url('./assets/new-static-background.png') no-repeat center/cover;

  overflow: hidden;

  /* push content below the fixed header */
  padding: calc(var(--header-offset) + 20px) 0 70px;
}

/* Optional readability overlay (keeps text readable on bright areas) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.65)
  );
  z-index: 1;
  pointer-events: none;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.glow-text {
  color: #000;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
}

.hero p {
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.badge {
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: rgba(255, 255, 255, 0.55);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 0 rgba(57, 255, 20, 0);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 120px 0;
  scroll-margin-top: var(--header-offset);
}

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

.section-head { margin-bottom: 34px; }

.section-head h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 10px;
  max-width: 75ch;
}

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

.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--neon);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(57, 255, 20, 0.65);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.step {
  font-weight: 900;
  color: rgba(0, 0, 0, 0.65);
}

.pill {
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(57, 255, 20, 0.45);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.12);
}

.glass-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.mini {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--muted);
}

.mini li { margin: 8px 0; }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.vision-item {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(57, 255, 20, 0.55);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vision-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vision-item h3 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: #000;
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.35);
}

.vision-item p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.team-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact form {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin: 8px 0;
}

.field input,
.field textarea,
form input,
form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus,
form input:focus,
form textarea:focus {
  border-color: rgba(57, 255, 20, 0.85);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.18);
}

textarea { resize: vertical; }

.full {
  width: 100%;
  border: none;
  cursor: pointer;
}

.contact-info {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  justify-items: start;
}

footer {
  background: #0b0b0b;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  font-weight: 700;
}

.footer-links a:hover { opacity: 1; }

.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  :root { --header-offset: 120px; }

  nav { display: none; }

  .logo img { height: 90px; }

  .hero { padding: calc(var(--header-offset) + 18px) 0 60px; }

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

  .footer-inner { flex-direction: column; }
}