:root {
  --night: #0a1628;
  --night-mid: #12233a;
  --foam: #e7eef5;
  --harmattan: #e8b86d;
  --lime: #c8f560;
  --coral: #e85d4c;
  --mute: rgba(231, 238, 245, 0.72);
  --font-display: "Unbounded", "Futura", sans-serif;
  --font-body: "Figtree", "Gill Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foam);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  background:
    radial-gradient(100% 70% at 80% 0%, rgba(232, 184, 109, 0.16), transparent 50%),
    radial-gradient(80% 50% at 0% 60%, rgba(200, 245, 96, 0.08), transparent 45%),
    linear-gradient(165deg, #07101c 0%, var(--night) 45%, #0d1c32 100%);
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.65), transparent);
  transition: backdrop-filter 0.4s var(--ease), background 0.4s var(--ease);
}

.site-nav.is-scrolled {
  backdrop-filter: blur(12px);
  background: rgba(10, 22, 40, 0.88);
  border-bottom: 1px solid rgba(231, 238, 245, 0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

.nav-links a:hover {
  color: var(--lime);
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 16, 28, 0.94) 0%, rgba(10, 22, 40, 0.4) 45%, rgba(10, 22, 40, 0.35) 100%),
    url("assets/hero-snagxy-likeness.png") center 22% / cover no-repeat;
  transform: scale(1.03);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1%, -0.5%, 0); }
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 6vh, 4rem);
  max-width: 40rem;
  animation: rise 1.1s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.brand-mark {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--harmattan);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1rem;
  color: var(--mute);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.cta-primary {
  background: var(--lime);
  color: var(--night);
}

.cta-primary:hover {
  background: #d4ff7a;
}

.cta-ghost {
  border-color: rgba(231, 238, 245, 0.35);
  color: var(--foam);
  background: transparent;
}

.cta-ghost:hover {
  border-color: var(--harmattan);
  color: var(--harmattan);
}

.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 5vw, 4rem);
}

.section-lagos,
.section-album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .section-lagos,
  .section-album {
    grid-template-columns: 1fr;
  }

  .section-album .album-visual {
    order: -1;
  }
}

.section-text h2,
.features-head h2,
.wait-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  letter-spacing: 0.02em;
}

.section-text p,
.features-head p,
.wait-panel > p {
  margin: 0;
  max-width: 34rem;
  color: var(--mute);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
}

.section-visual,
.album-visual {
  position: relative;
  min-height: clamp(280px, 42vw, 520px);
  overflow: hidden;
  background: var(--night-mid);
}

.album-visual {
  min-height: clamp(260px, 40vw, 480px);
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 1;
}

.section-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 55%, rgba(200, 245, 96, 0.12));
}

.section-features {
  display: grid;
  gap: 2rem;
}

.section-hands {
  display: grid;
  gap: 1.75rem;
  padding-top: clamp(3rem, 8vh, 5rem);
  border-top: 1px solid rgba(231, 238, 245, 0.1);
}

.hands-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--harmattan);
}

.hands-tagline {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  color: var(--foam);
}

.hands-story p {
  margin: 0;
  max-width: 34rem;
  color: var(--mute);
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.product-card {
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgba(18, 35, 58, 0.65);
  border: 1px solid rgba(231, 238, 245, 0.12);
  border-radius: 2px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.product-card:hover {
  border-color: rgba(232, 184, 109, 0.45);
  transform: translateY(-2px);
}

.product-code {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--lime);
}

.product-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--harmattan);
  color: var(--night);
}

.product-card h3 {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.product-card p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 1.45;
}

.product-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--foam);
}

.product-price span {
  font-size: 0.72rem;
  color: var(--mute);
  font-family: var(--font-body);
  font-weight: 400;
}

.shop-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(231, 238, 245, 0.45);
  letter-spacing: 0.04em;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(231, 238, 245, 0.14);
}

.feature-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  column-gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(231, 238, 245, 0.14);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--harmattan);
  align-self: center;
}

.feature-row strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
}

.feature-row span:last-child {
  font-size: 0.9rem;
  color: var(--mute);
}

.section-wait {
  padding-bottom: clamp(5rem, 12vh, 8rem);
}

.wait-panel {
  max-width: 34rem;
  padding-top: 1rem;
}

.wait-form {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wait-form input {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(231, 238, 245, 0.22);
  background: rgba(18, 35, 58, 0.75);
  color: var(--foam);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.wait-form input:focus {
  border-color: var(--lime);
}

.wait-form button {
  padding: 0.9rem 1.3rem;
  border: 0;
  background: var(--harmattan);
  color: var(--night);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}

.wait-form button:hover {
  background: #f0c984;
}

.form-note {
  margin-top: 1rem;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer {
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 2.5rem;
  border-top: 1px solid rgba(231, 238, 245, 0.1);
  font-size: 0.82rem;
  color: rgba(231, 238, 245, 0.55);
}

.site-footer p {
  margin: 0 0 0.4rem;
}

.site-footer strong {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--harmattan);
}

.fine {
  font-size: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-text h2,
.features-head h2 {
  position: relative;
}

.section-text h2::after,
.features-head h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.75rem;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease) 0.15s;
}

.reveal.is-in h2::after,
.features-head.reveal.is-in h2::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    animation: none;
  }

  .hero-copy,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .section-text h2::after,
  .features-head h2::after {
    transform: scaleX(1);
  }
}
