:root {
  --bg-dark: #0b1420;
  --bg-panel: #050816;
  --bg-light: #f9fafb;
  --accent: #da6b27;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-body: #e5e7eb;
  --border-subtle: #111827;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
}

/* NAV */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(to bottom, rgba(5, 7, 13, 0.9), transparent);
  backdrop-filter: blur(12px);
}

.nav__logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  font-size: 0.85rem;
}

.nav__links a {
  margin-left: 18px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(13, 148, 136, 0.2), transparent),
              linear-gradient(to top, #020617, rgba(2, 6, 23, 0.6));
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  padding: 120px 24px 80px;
  text-align: left;
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text-main);
}

.hero__sub {
  max-width: 32rem;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

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

.btn--ghost {
  border-color: var(--border-subtle);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.6);
}

/* STATS */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
}

.stats__item {
  background: #020617;
  padding: 16px 20px;
}

.stats__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.stats__value {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 6px;
}

.stats__note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* PANELS */

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  background: var(--bg-dark);
}

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

.panel__media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.panel__content h2 {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-top: 0;
}

.panel__content ul {
  padding-left: 1.2rem;
}

.link-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
}

/* EMAIL + FOOTER */

.email {
  padding: 80px 24px;
  background: #020617;
}

.email__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.footer {
  padding: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .nav__links {
    display: none; /* simplify nav on small screens for now */
  }
  .panel {
    grid-template-columns: 1fr;
    padding: 56px 20px;
  }
  .hero__content {
    padding: 96px 16px 72px;
  }
}
