:root {
  --bg: #020913;
  --bg-elevated: rgba(6, 24, 18, 0.96);
  --accent: #4ade80; /* soft neon green */
  --accent-soft: rgba(34, 197, 94, 0.28);
  --accent-deep: #15803d;
  --text: #e5f5e9;
  --muted: #9fb3a4;
  --border-subtle: rgba(55, 94, 74, 0.8);
  --shadow-soft: 0 22px 55px rgba(2, 6, 8, 0.95);
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.28), transparent 60%),
    radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.35), transparent 55%),
    radial-gradient(circle at top, #020617, #020913 55%, #020617 100%);
  color: var(--text);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.13;
  mix-blend-mode: soft-light;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}

main {
  width: 100%;
  max-width: 1060px;
  margin: 96px auto 40px;
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1060px, 100% - 32px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.55), transparent 65%),
    rgba(8, 25, 19, 0.96);
  border: 1px solid rgba(74, 222, 128, 0.45);
  box-shadow: 0 16px 40px rgba(2, 6, 8, 0.95);
  backdrop-filter: blur(18px);
}

.nav-left {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.nav-left span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.18s ease-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: #052e16;
  background: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-text {
  padding: 26px 26px 26px 0;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2.4rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

h1 .accent {
  background: linear-gradient(120deg, #bbf7d0, #4ade80, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.65);
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 22px 55px rgba(21, 128, 61, 0.8);
}

.btn.ghost {
  background: rgba(6, 24, 18, 0.85);
  border-color: rgba(55, 94, 74, 0.9);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(6, 24, 18, 1);
  border-color: var(--accent);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
}

.hero-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(6, 24, 18, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: var(--muted);
}

.hero-card {
  position: relative;
  padding: 20px 20px 18px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.5), transparent 60%),
    radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.45), transparent 60%),
    var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 200deg,
    rgba(34, 197, 94, 0.28), transparent 35%,
    rgba(22, 163, 74, 0.22), transparent 70%);
  opacity: 0.7;
  mix-blend-mode: soft-light;
  animation: rotateGlow 40s linear infinite;
  z-index: -1;
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

.avatar-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 2px solid rgba(6, 24, 18, 0.95);
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #14532d);
}

.avatar-circle img,
.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-meta {
  list-style: none;
  font-size: 0.8rem;
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(4, 21, 15, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.hero-meta li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hero-meta li + li {
  margin-top: 6px;
}

.label {
  color: var(--muted);
}

.value {
  font-weight: 500;
}

.panel {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(4, 21, 15, 0.96);
  border: 1px solid rgba(37, 99, 65, 0.9);
  box-shadow: 0 18px 42px rgba(2, 6, 8, 0.95);
}

.panel h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.panel p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.panel p + p {
  margin-top: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 6px;
}

.chip {
  font-size: 0.8rem;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(6, 24, 18, 0.98);
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.hint {
  font-size: 0.8rem;
  margin-top: 4px;
}

.cards .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(74, 222, 128, 0.28), transparent 60%),
    rgba(4, 21, 15, 0.98);
  border: 1px solid rgba(34, 197, 94, 0.5);
  font-size: 0.86rem;
  color: var(--muted);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.18s ease, background 0.18s ease;
}

.card h3 {
  font-size: 0.96rem;
  margin-bottom: 6px;
  color: var(--text);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(2, 6, 8, 0.98);
  border-color: var(--accent);
  background: rgba(4, 21, 15, 1);
}

.contact-list {
  list-style: none;
  margin-top: 8px;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(37, 99, 65, 0.7);
}

.contact-list li:last-child {
  border-bottom: none;
}

.footer {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(37, 99, 65, 0.8);
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer .dot {
  opacity: 0.6;
}

@media (max-width: 860px) {
  body {
    padding: 18px 16px 24px;
  }

  .nav {
    padding-inline: 16px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 4px 9px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.4fr);
  }

  .hero-card {
    order: -1;
  }

  main {
    margin-top: 88px;
  }

  .cards .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .hero-text {
    padding-right: 0;
  }

  h1 {
    font-size: 2.1rem;
  }

  .nav-left {
    font-size: 0.82rem;
  }

  .nav-links {
    display: none;
  }
}