/* ==========================================================================
   bzzir — Coming Soon · Full-bleed hero image style
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --white: #ffffff;

  --font-body: 'Space Grotesk', sans-serif;

  --transition: 250ms ease;
  --touch-min: 44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  height: -webkit-fill-available;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

.page {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   Hero — Full bleed background image
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  padding: 1.5rem;
  padding-top: max(1.5rem, env(safe-area-inset-top));
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  top: 0;
  height: min(30%, 220px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero::after {
  bottom: 0;
  height: min(38%, 280px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Everything inside hero sits above the overlay */
.nav,
.hero__content,
.hero__footer {
  position: relative;
  z-index: 2;
}

.hero__particles {
  position: absolute;
  top: 50%;
  right: 30%;
  width: clamp(180px, 40vw, 320px);
  height: clamp(180px, 40vw, 320px);
  transform: translate(50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Nav (inside hero)
   -------------------------------------------------------------------------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav__logo-link {
  display: inline-flex;
  border-radius: 2px;
}

.nav__logo-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
}

.nav__logo {
  height: 2rem;
  width: auto;
  display: block;
}

.nav__social {
  display: flex;
  gap: 1rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--transition);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.nav__link:hover { opacity: 0.7; }

.nav__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Hero content
   -------------------------------------------------------------------------- */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding-bottom: 2rem;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.hero__title {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(1.75rem, 7vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  display: inline-block;
  min-height: calc(0.9375rem * 1.5 * 2);
}

.hero__desc::after {
  content: '|';
  color: rgba(255, 255, 255, 0.6);
  animation: blink-cursor 0.7s step-end infinite;
  margin-left: 2px;
}

@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* --------------------------------------------------------------------------
   Hero footer
   -------------------------------------------------------------------------- */
.hero__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.foot__copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.foot__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.foot__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.foot__link:hover {
  color: var(--white);
}

.foot__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ==========================================================================
   Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .hero {
    padding: 2rem 3rem;
  }

  .nav__social {
    gap: 1.5rem;
  }

  .hero__content {
    padding-bottom: 2.5rem;
  }

  .hero__footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
  }
}

/* ==========================================================================
   Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  .hero {
    padding: 2.5rem 4rem;
  }

  .nav__logo {
    height: 1.75rem;
  }

  .hero__content {
    padding-bottom: 3rem;
    gap: 1.25rem;
  }
}

/* Desktop landscape: shift eye to the right so text has clean space */
@media (min-width: 1024px) and (orientation: landscape) {
  .hero__bg {
    object-position: right center;
  }
}

/* ==========================================================================
   Large (1440px+)
   ========================================================================== */
@media (min-width: 1440px) {
  .hero {
    padding: 3rem 6rem;
  }
}

/* ==========================================================================
   Reduced motion — disable cursor blink
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero__desc::after {
    animation: none;
  }
}
