/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #0b1f1c;
  --ink-soft: #34493f;
  --paper: #f6f4ee;
  --paper-2: #ffffff;
  --teal-950: #071e1c;
  --teal-900: #0b2e2a;
  --teal-800: #0f3d38;
  --teal-500: #1f9e8c;
  --teal-400: #3fd8c4;
  --teal-300: #7fe6d6;
  --gold: #d9a441;
  --border: rgba(11, 31, 28, 0.1);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */
.sitenav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(7, 30, 28, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(246, 244, 238, 0.08);
}

.sitenav__brand {
  display: flex;
  align-items: center;
}

.sitenav__logo {
  height: 30px;
  width: auto;
  display: block;
}

.sitenav__links {
  display: flex;
  gap: 32px;
}

.sitenav__links a {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.sitenav__links a:hover { opacity: 1; }

/* ---------- SECTION 1: HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 120% at 20% 15%, #123e38 0%, var(--teal-950) 55%, #051411 100%);
  color: var(--paper);
  padding: 140px 32px 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 50% 45%, rgba(5, 20, 17, 0.88) 0%, rgba(5, 20, 17, 0.55) 55%, rgba(5, 20, 17, 0.25) 100%),
    linear-gradient(180deg, rgba(5, 20, 17, 0.55) 0%, rgba(5, 20, 17, 0.15) 30%, rgba(5, 20, 17, 0.25) 70%, rgba(5, 20, 17, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 18px;
}

.eyebrow--dark { color: var(--teal-500); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.hero__mission-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero__mission {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: rgba(246, 244, 238, 0.92);
  max-width: 640px;
  margin: 0 auto 46px;
}

.hero__cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--teal-400);
  color: var(--teal-950);
}

.btn--primary:hover {
  background: var(--teal-300);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(246, 244, 238, 0.4);
  color: var(--paper);
}

.btn--ghost:hover {
  border-color: var(--paper);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(246, 244, 238, 0.45);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-300);
  animation: scrollcue 1.8s ease-in-out infinite;
}

@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- SECTION 2: ABOUT ---------- */
.about {
  background: var(--paper-2);
  padding: 130px 0;
}

.about h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 34px;
  max-width: 760px;
}

.about p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 24px;
}

.about .lead {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}

.about .closing-statement {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--teal-800);
  border-left: 3px solid var(--teal-400);
  padding-left: 24px;
  margin-top: 40px;
}

.drivers {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  margin: 40px 0 44px;
  max-width: 760px;
}

.drivers__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-800);
  margin-bottom: 20px;
}

.drivers__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.drivers__list li:first-child { border-top: none; padding-top: 0; }
.drivers__list li:last-child { padding-bottom: 0; }

.drivers__icon {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--teal-400);
}

/* ---------- SECTION 3: TEAM ---------- */
.team {
  position: relative;
  background: var(--teal-950);
  color: var(--paper);
  padding: 130px 0;
  overflow: hidden;
}

.team__accent {
  display: none;
  position: absolute;
  top: -80px;
  right: -40px;
  width: 460px;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 60% 40%, black 0%, black 35%, transparent 72%);
  mask-image: radial-gradient(circle at 60% 40%, black 0%, black 35%, transparent 72%);
}

@media (min-width: 1200px) {
  .team__accent { display: block; }
}

.team h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 64px;
  max-width: 620px;
}

.team__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: rgba(246, 244, 238, 0.04);
  border: 1px solid rgba(246, 244, 238, 0.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  background: rgba(246, 244, 238, 0.07);
}

.team-card__photo {
  width: 104px;
  height: 104px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-800));
  overflow: hidden;
  border: 1px solid rgba(246, 244, 238, 0.18);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.team-card__title {
  font-size: 0.92rem;
  color: rgba(246, 244, 238, 0.6);
  margin-bottom: 20px;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-300);
  padding: 8px 16px;
  border: 1px solid rgba(127, 230, 214, 0.35);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.team-card__linkedin:hover {
  background: var(--teal-300);
  color: var(--teal-950);
}

/* ---------- SECTION 4: FOOTER ---------- */
.site-footer {
  position: relative;
  background: var(--teal-900);
  color: rgba(246, 244, 238, 0.85);
  padding: 90px 0 0;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 46, 42, 0.35) 0%, var(--teal-900) 75%);
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 244, 238, 0.12);
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}

.footer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--paper);
  max-width: 320px;
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 16px;
}

.footer__list li {
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.footer__list a:hover { color: var(--teal-300); }

.footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--paper);
  transition: color 0.2s ease;
}

.footer__linkedin:hover { color: var(--teal-300); }

.footer__bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 26px 32px;
  font-size: 0.85rem;
  color: rgba(246, 244, 238, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .sitenav { padding: 18px 20px; }
  .sitenav__links { gap: 20px; }
  .team__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .about, .team { padding: 90px 0; }
}

@media (max-width: 480px) {
  .sitenav__brand { font-size: 1rem; }
  .sitenav__links { gap: 14px; }
  .sitenav__links a { font-size: 0.8rem; }
  .hero { padding-top: 120px; }
  .drivers { padding: 28px 24px; }
}
