:root {
  --ink: #0b1220;
  --forest: #0e2b1b;
  --green: #1a5f3a;
  --orange: #db6b00;
  --orange-soft: #e28933;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero__image,
.hero__overlay,
.hero__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
  transform: scale(1.025);
  filter: saturate(.89) contrast(1.04) brightness(.94);
}

.hero__overlay {
  z-index: -2;
  background: linear-gradient(90deg,
    rgba(7, 17, 14, .97) 0%,
    rgba(8, 25, 18, .90) 31%,
    rgba(9, 25, 19, .60) 52%,
    rgba(11, 18, 32, .15) 74%,
    rgba(11, 18, 32, .02) 100%);
}

.hero__vignette {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,18,32,.35) 0%, transparent 28%, rgba(7,14,18,.48) 100%),
    radial-gradient(circle at 75% 45%, transparent 0 35%, rgba(4,10,10,.28) 100%);
}

.hero__inner {
  min-height: 100svh;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(28px, 4.15vw, 64px) clamp(28px, 5vw, 80px) clamp(28px, 3.6vw, 56px);
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(24px, 2.05vw, 32px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: 1;
}

.wordmark__mark {
  position: relative;
  width: 34px;
  height: 22px;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
  background: var(--orange);
  flex: 0 0 auto;
}

.wordmark__mark::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -13px;
  top: -3px;
  width: 28px;
  height: 28px;
  border-radius: 0 50% 50% 0;
  background: var(--green);
}

.wordmark__mark::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 1px;
  top: 3px;
  width: 18px;
  height: 16px;
  border-radius: 0 50% 50% 0;
  background: var(--ink);
}

.linkedin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease;
}

.linkedin:hover,
.linkedin:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.linkedin svg { width: 19px; height: 19px; fill: currentColor; }

.hero__content {
  margin-top: auto;
  max-width: 1020px;
  padding: 44px 0 clamp(44px, 8vh, 88px);
}

.signal {
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 27px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 0 17px rgba(219,107,0,.43);
}

h1 {
  margin: 0;
  max-width: 1000px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(51px, 6.7vw, 118px);
  font-weight: 600;
  letter-spacing: -.073em;
  line-height: .97;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0,0,0,.20);
}

.footer {
  display: flex;
  align-items: center;
  min-height: 18px;
}

.footer p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .hero__image {
    object-position: 58% 50%;
    transform: scale(1.24);
  }

  .hero__overlay {
    background: linear-gradient(90deg,
      rgba(7,17,14,.96) 0%,
      rgba(8,25,18,.82) 48%,
      rgba(11,18,32,.43) 100%);
  }

  .hero__inner {
    padding: 27px 25px 31px;
  }

  .wordmark { gap: 9px; font-size: 24px; }
  .wordmark__mark { width: 28px; height: 18px; }
  .wordmark__mark::before { left: -11px; top: -3px; width: 24px; height: 24px; }
  .wordmark__mark::after { left: 1px; top: 2px; width: 15px; height: 14px; }
  .linkedin { width: 38px; height: 38px; }
  .linkedin svg { width: 17px; height: 17px; }
  .hero__content { padding-bottom: clamp(38px, 8vh, 68px); }
  .signal { width: 48px; margin-bottom: 22px; }
  h1 { font-size: clamp(47px, 13.2vw, 78px); letter-spacing: -.08em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
