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

:root {
  --bg: #020617;
  --bg-alt: #020617;
  --bg-soft: #020617;
  --card-bg: #020617;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(148, 163, 184, 0.3);
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.75));
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a 45%, #15803d);
  color: #020617;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.55);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #22c55e, #16a34a);
  transition: width 0.18s ease-out;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.75rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #e5e7eb;
  font-weight: 500;
}

.hero-text {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  box-shadow: 0 14px 35px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text);
  background: rgba(15, 23, 42, 0.6);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.95);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.hero-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-links a {
  color: var(--accent);
  text-decoration: none;
}

.hero-links a:hover {
  text-decoration: underline;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.1), rgba(15, 23, 42, 0.95));
  padding: 1.1rem 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.metric-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 3.2rem 0;
}

.section-alt {
  padding: 3.2rem 0;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
}

.section h3 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.section-intro {
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
  margin-bottom: 1.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.section p {
  margin-bottom: 0.9rem;
}

.list {
  list-style: disc;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.list li + li {
  margin-top: 0.3rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.tag-list li {
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
}

.timeline {
  position: relative;
  margin-top: 1.2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #22c55e, rgba(148, 163, 184, 0.2));
}

.timeline-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #22c55e, #16a34a);
  margin-top: 0.35rem;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.timeline-content h4 {
  font-size: 1rem;
}

.timeline-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.2rem 0 0.4rem;
}

.timeline-content ul {
  list-style: disc;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

.card {
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.3rem 1.2rem 1.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.9);
}

.card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.card-meta {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.media-item {
  border-radius: 1.15rem;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  padding: 1.1rem 1rem;
  background: rgba(15, 23, 42, 0.9);
}

.media-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.media-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-wrap {
  align-items: stretch;
}

.contact-block p {
  font-size: 0.93rem;
  color: var(--muted);
}

.contact-block a {
  color: var(--accent);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 0.8rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  text-decoration: none;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.9);
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--text);
}

.contact-form {
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.2rem 1.1rem;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.1rem 0 1.4rem;
  background: radial-gradient(circle at top, #020617, #000);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.2rem;
  }

  .header-inner {
    padding: 0.7rem 0;
  }

  .container {
    padding: 0 1.1rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .section-alt {
    padding: 2.4rem 0;
  }

  .card,
  .contact-form {
    border-radius: 1.1rem;
  }
}
