:root {
  --bg: #050505;
  --text: #f5f3ef;
  --muted: rgba(245, 243, 239, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 35%),
    linear-gradient(180deg, #111 0%, var(--bg) 45%, #020202 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 28px clamp(20px, 4vw, 48px) 48px;
}

.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#fff 0.6px, transparent 0.6px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.hero__spotlight {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
  z-index: -1;
}

.hero__spotlight--left {
  top: -12rem;
  left: -10rem;
  background: #8f8f8f;
}

.hero__spotlight--right {
  right: -12rem;
  bottom: -18rem;
  background: #3a3a3a;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.brand__mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text);
  border-radius: 6px;
  box-shadow: inset 0 0 0 5px #050505;
  transform: rotate(45deg);
}

.brand__name {
  font-weight: 800;
}

.topbar__cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, transform 180ms ease;
}

.topbar__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.hero__content {
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
}

.hero__copy {
  width: 100%;
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hero__copy h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.hero__description {
  max-width: 58rem;
  margin: 26px 0 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #050505;
  background: linear-gradient(180deg, #fff 0%, #d9d2c7 100%);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

.button--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero__meta li {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}

.hero__visual {
  display: none;
}

.hero__footer {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  text-align: right;
}

.hero__footer p {
  margin: 0;
  color: rgba(245, 243, 239, 0.42);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero__content {
    padding-top: 42px;
  }

  .hero__copy {
    text-align: center;
    max-width: 100%;
  }

  .hero__description {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__meta {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-inline: 18px;
    padding-bottom: 36px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__cta {
    font-size: 0.88rem;
  }

  .hero__content {
    min-height: auto;
  }

  .hero__copy h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .topbar__cta,
  .button {
    transition: none;
  }
}
