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

html, body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: 'Inter Tight', sans-serif;
  background: #BCB5AE;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.frame {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #BCB5AE;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: url(#motion-blur);
  transform: scale(1.04);
  will-change: filter, transform;
  animation: image-in 1.4s ease-out backwards;
}

/* ---- Load-in animations ---- */
@keyframes image-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo,
.tagline,
.coming-soon,
h1,
.mobile-tagline,
.cta {
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.logo        { animation-delay: 0.2s; }
.tagline     { animation-delay: 0.35s; }
.coming-soon { animation-delay: 0.35s; }
h1           { animation-delay: 0.55s; }
.mobile-tagline { animation-delay: 0.65s; }
.cta         { animation-delay: 0.75s; }

header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 56px 0;
}

.logo img {
  height: 28px;
  display: block;
}

.tagline {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  flex: 1;
}

.coming-soon {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

main {
  position: relative;
  z-index: 2;
  padding: 0 56px 64px;
  margin-top: auto;
}

h1 {
  font-size: 96px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 640px;
}

.mobile-tagline {
  display: none;
}

.cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.cta:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

.cta svg {
  width: 18px;
  height: 18px;
}
.top-fade, .bottom-fade { display: none; }

@media (max-width: 900px) {
  .top-fade,
  .bottom-fade {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 128px;
    z-index: 1;
    pointer-events: none;
  }
  .top-fade {
    top: 0;
    background: linear-gradient(to bottom, #BCB5AE 0%, rgba(188, 181, 174, 0) 100%);
  }
  .bottom-fade {
    bottom: 0;
    background: linear-gradient(to top, #BCB5AE 0%, rgba(188, 181, 174, 0) 100%);
  }
  h1 { font-size: 56px; max-width: 360px; }
  header { padding: 32px 24px 0; flex-wrap: wrap; gap: 12px; }
  main { padding: 0 24px 40px; }
  .hero-image { object-position: center center; }
  .coming-soon {
    display: block;
    margin-left: auto;
    font-size: 17px;
    text-align: right;
  }
  .tagline { display: none; }
  .mobile-tagline {
    display: block;
    max-width: 300px;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
  }
  .cta { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image { filter: none; }
  .cta { transition: none; }
  .hero-image,
  .logo,
  .tagline,
  .coming-soon,
  h1,
  .mobile-tagline,
  .cta { animation: none; }
}

/* No blur on touch devices (saves battery / avoids heat) */
@media (hover: none), (pointer: coarse) {
  .hero-image {
    filter: none;
    transform: none;
    will-change: auto;
  }
}
