@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0a0a09;
  --cream: #f4f3ef;
  --green: #c7ff3d;
  --line: rgba(244, 243, 239, .22);
  --muted: rgba(244, 243, 239, .68);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  overflow: hidden;
  background: var(--black);
}

.hero__content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 72px);
  background:
    radial-gradient(circle at 90% 52%, rgba(199,255,61,.07), transparent 28%),
    var(--black);
}

.brand {
  display: inline-flex;
  width: max-content;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 800;
  letter-spacing: .34em;
  line-height: 1;
}

.hero__copy {
  max-width: 760px;
  margin: auto 0;
  padding: clamp(56px, 7vh, 100px) 0;
}

.eyebrow {
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: clamp(.75rem, 0.8vw, 0.9rem);
  font-weight: 500;
  letter-spacing: .22em;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 7.8rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 800;
  text-wrap: balance;
}

h1 span {
  color: var(--green);
}

.intro {
	max-width: 540px;
	margin: clamp(30px, 4vw, 48px) 0 0;
	color: var(--muted);
	font-size: clamp(2rem, 1.25vw, 1.3rem);
	line-height: 1.55;
	font-weight: normal;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 0;
  margin-top: clamp(28px, 3vw, 44px);
  max-width: 650px;
}

.services span {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-left: 1px solid var(--line);
  color: var(--cream);
  font-family: "DM Mono", monospace;
  font-size: clamp(.7rem, 0.8vw, 0.9rem);
  letter-spacing: .12em;
  line-height: 1.2;
}

.services span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: clamp(.9rem, 1.1vw, 1.2rem);
  letter-spacing: .2em;
}

.hero__footer .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(199,255,61,.65);
}

.hero__visual {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,9,.08), transparent 24%),
    linear-gradient(0deg, rgba(10,10,9,.18), transparent 30%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.98) contrast(1.02);
}

@media (max-width: 980px) {
  .hero {
    display: block;
    min-height: 100svh;
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .hero__visual img {
    object-position: 58% center;
  }

  .hero__visual::after {
    background:
      linear-gradient(90deg, rgba(10,10,9,.94) 0%, rgba(10,10,9,.78) 42%, rgba(10,10,9,.18) 100%),
      linear-gradient(0deg, rgba(10,10,9,.72) 0%, transparent 42%);
  }

  .hero__content {
    min-height: 100svh;
    background: transparent;
    padding: clamp(24px, 5vw, 48px);
  }

  .hero__copy {
    max-width: 680px;
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media (max-width: 620px) {
  .hero__visual img {
    object-position: 63% center;
  }

  .hero__visual::after {
    background:
      linear-gradient(90deg, rgba(10,10,9,.97) 0%, rgba(10,10,9,.88) 54%, rgba(10,10,9,.35) 100%),
      linear-gradient(0deg, rgba(10,10,9,.86) 0%, transparent 55%);
  }

  .hero__content {
    padding: 24px 22px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
    line-height: .9;
  }

  .intro {
    max-width: 330px;
    font-size: 1rem;
  }

  .services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
  }

  .services span,
  .services span:first-child {
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }

  .hero__footer {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    animation: reveal .8s ease-out both;
  }

  .hero__visual img {
    animation: image-in 1.2s ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes image-in {
    from {
      opacity: 0;
      transform: scale(1.025);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
