/* Elev8d Media — single-screen landing page */

:root{
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.78);
  --fine: rgba(255,255,255,0.62);

  /* Accent: adjust later if needed */
  --accent: #00d084; /* restrained green */

  /* Overlay tuning */
  --overlay-1: rgba(0,0,0,0.62);
  --overlay-2: rgba(0,0,0,0.35);

  --max: 980px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #0b0f0e;
}

.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
  background:
    url("/assets/images/landing/landing.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 30% 40%, rgba(0,0,0,0.00) 0%, var(--overlay-2) 45%, var(--overlay-1) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.55) 100%);
}

.hero__content{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;

  padding: clamp(24px, 5vw, 72px);
  max-width: var(--max);
}

.hero__kicker{
  margin: 0;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.hero__title{
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  font-weight: 800;
  text-wrap: balance;
}

.hero__subtitle{
  margin: 0;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 62ch;
  text-wrap: pretty;
}

.hero__meta{
  margin-top: 10px;
}

.hero__contact{
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hero__contact .label{
  color: var(--fine);
}

.hero__contact .value{
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
}

.hero__fineprint{
  margin: 28px 0 0 0;
  font-size: 12px;
  color: var(--fine);
}

.accent {
  color: #e6007e; /* Elev8d hot pink */
}

.footer-meta {
  position: absolute;
  bottom: 4vh;
  left: 6vw;
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer-meta a {
  color: inherit;
  text-decoration: none;
}


/* Optional: subtle accessibility improvement for users with reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__bg{ transform: none; }
}

/* Small screens: keep it left aligned with breathing room */
@media (max-width: 520px){
  .hero__content{ padding: 22px; }
  .hero__kicker{ letter-spacing: 0.18em; }
}
