@font-face {
  font-family: 'UNCAGE';
  src: url('../fonts/UNCAGE-SemiBold.woff2') format('woff2'),
       url('../fonts/UNCAGE-SemiBold.woff') format('woff'),
       url('../fonts/UNCAGE-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C5A044;
  --gold-new: #F4E787;
  --gold-light: #D7AE21;
  --gold-mid: #85560C;
  --gold-dark: #D0A71B;
  --dark: #0a0a0f;
  --white: #F4F4F4;
  --gray: #b0b0b0;
  --gray-light: #F4F4F4;
  --header-height: 80px;
  --header-height-mobile: 64px;
  --full-height: calc(100vh - var(--header-height));;
  --full-height-mobile: calc(100vh - var(--header-height-mobile));;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

p {
  line-height: 140%;
  letter-spacing: 0;
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold-new);
}

.nav-links a.active {
  color: var(--gold-new);
}

.nav-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-cta {
  display: inline-block;
  background: var(--white);
  color: #000000;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-family: 'UNCAGE', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #e0e0e0;
}

.nav-cta-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #999999;
  text-align: center;
  margin-top: 6px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================== WAITLIST BUTTON ======================== */
.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  height: 52px;
  font-family: 'UNCAGE', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, #D7AE21 0%, rgba(133, 86, 12, 0.4) 53.62%, #D0A71B 104.23%);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-waitlist-black {
  background: linear-gradient(180deg, #D7AE21 0%, #85560C 53.62%, #D0A71B 104.23%);
}

.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(197,160,68,0.5);
  background: linear-gradient(
    180deg,
    rgba(215, 174, 33, 0.9) 0%,
    rgba(133, 86, 12, 0.9) 40%,
    rgba(208, 167, 27, 0.9) 100%
  );
}

/* ======================== HERO ======================== */
.hero {
  position: relative;
  width: 100%;
  min-height: var(--full-height);
  margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, rgba(0, 0, 0, 0) 21.6%, #010101 120%);
  margin-top: 30%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:linear-gradient(to top, rgba(0, 0, 0, 0) 21.6%, #010101 120%);
  height: 80%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 0px 40px;
  max-width: 800px;
}

.hero-title {
  font-family: 'UNCAGE', sans-serif;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
  margin-bottom: 12px;
  text-align: center;
}

.hero-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 50px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 0 40px 60px;
  max-width: 400px;
  align-self: flex-start;
}

.hero-bottom-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.85rem, 18px, 1.4rem);
  font-weight: 500;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 24px;
}

/* ======================== AUDIENCE & INVESTORS ======================== */
.section-audience {
  min-height:  var(--full-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  background: var(--dark);
  position: relative;
}

.section-see-it::before,
.section-audience::before {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(360deg, #201B12 0%, rgba(1, 1, 1, 0) 20.31%, #010101 120%);
}

.section-audience-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 0 40px;
  text-align: left;
}

.section-heading {
  font-family: 'UNCAGE', sans-serif;
  font-size: clamp(1.6rem, 52px, 3.2rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.section-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.9rem, 22px, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-new);
  margin-bottom: 50px;
  line-height: 140%;
  letter-spacing: 0;
}

.audience-text {
  max-width: 580px;
  margin-bottom: 20px;
  margin-left: 100px;
}

.audience-text p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.88rem, 20px, 1.4rem);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.section-audience .btn-waitlist {
  margin-top: 20px;
  margin-left: 100px;
}

/* ======================== EXPERIENCE ======================== */
.section-experience {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.experience-top {
  position: relative;
  min-height: var(--full-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.experience-top-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience-top-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-top-bg::after {
  content: '';
  position: absolute;
  inset: 0;

}

.experience-top-content {
  position: relative;
  z-index: 1;
  padding: 50px 40px;
  max-width: 400px;
  align-self: flex-start;
}

.experience-top-content p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.experience-top-content p strong {
  color: var(--white);
  font-weight: 400;
}

/* ======================== THREE FEATURES ======================== */
.features-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: none;
}

.feature-card {
  padding: 40px 36px;
  transition: background 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.03);
}

.feature-card h3 {
  font-family: 'UNCAGE', sans-serif;
  font-size: clamp(0.75rem, 24px, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.feature-card p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.82rem, 20px, 1.22rem);
  font-weight: 400;

  color: var(--gray-light);
}

/* ======================== IMMERSIVE (Kids) ======================== */
.section-immersive {
  position: relative;
  min-height: 80vh;
  display: flex;
  overflow: hidden;
}

.section-immersive-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-immersive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-immersive-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(*/
  /*  to right,*/
  /*  rgba(10,10,15,0.92) 0%,*/
  /*  rgba(10,10,15,0.7) 35%,*/
  /*  rgba(10,10,15,0.2) 70%,*/
  /*  rgba(10,10,15,0.1) 100%*/
  /*);*/
}

.section-immersive-content {
  position: relative;
  z-index: 1;
  padding: 40px 40px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-immersive-content p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.82rem, 20px, 1.22rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

/* ======================== SEE IT BEFORE ======================== */
.section-see-it {
  min-height: var(--full-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  background: var(--dark);
  position: relative;
}



.see-it-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 40px 0 auto;
}

.see-it-title {
  font-family: 'UNCAGE', sans-serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 60px;
  text-align: right;
}

.see-it-text {
  max-width: 380px;
  margin-left: auto;
  text-align: left;
}

.see-it-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 24px;
}

.see-it-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.see-it-list li {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  font-weight: 300;
  color: var(--white);
  padding: 8px 0 8px 20px;
  position: relative;
}

.see-it-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2em;
}

/* ======================== CTA / TV ======================== */
.section-cta {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
}

.section-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.5);
}

.cta-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  width: 100%;
  max-width: 488px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  margin-left: auto;
  margin-right: 10%;
}

.cta-logo-img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}

.cta-card p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.cta-card .btn-waitlist {
  width: 100%;
}

.cta-card .btn-waitlist:hover {
  filter: brightness(1.1);
}

/* ======================== FOOTER ======================== */
.footer {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--dark);
}

.footer-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.footer-top {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-top:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ======================== MOBILE MENU ======================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'UNCAGE', sans-serif;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu a.mobile-active {
  color: var(--gold);
}

/* ======================== ANIMATIONS ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .navbar {
    padding: 14px 24px;
  }

  .cta-card {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
  /* 1. Загальні блоки */
  .hero {
    min-height: var(--full-height-mobile);
    padding: 40px 20px 40px;
  }

  .section-audience,
  .section-see-it {
    min-height: var(--full-height-mobile);
    padding: 80px 28px;
  }

  .section-audience-inner {
    margin: 0;
  }

  .section-audience .btn-waitlist {
    margin-left: unset;
  }


  .section-cta {
    min-height: var(--full-height-mobile);
    padding: 60px 20px;
  }

  /* 2. Navbar */
  .burger {
    display: flex;
    margin-left: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
  }

  .nav-cta {
    background: transparent !important;
    color: var(--white) !important;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
  }


  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -250px;
  }

  .nav-cta-sub {
    font-size: 10px;
    color: var(--gray);
    margin-top: 2px;
    text-transform: lowercase;
  }

  /* 3. Hero */
  .hero-content {
    padding: 20px 0px 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-bottom {
    padding: 0 20px 0px;
    text-align: center;
    align-self: center;
  }
  .hero-bottom-text {
    font-size: clamp(0.85rem, 16px, 1.4rem);
  }

  /* 4. Audience & Investors */
  .section-heading,
  .see-it-title {
    font-size: 28px;
    text-align: left;
    margin-bottom: 16px;
  }

  .section-tagline {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .audience-text {
    margin-left: unset;
  }


  .audience-text p,
  .see-it-text p {
    font-size: 16px;
    color: var(--white);
    text-align: left;
  }

  .see-it-inner {
    text-align: left;
  }

  .see-it-text {
    margin-left: 0;
  }

  .see-it-list li {
    font-size: 16px;
    color: var(--white);
    text-align: left;
  }

  /* 5. Блок з дівчиною (Experience) */
  .experience-top {
    min-height: var(--full-height-mobile);
    position: relative;
  }

  .experience-top-bg {
    position: relative;
    height: 85vh;
    flex-shrink: 0;
  }

  .experience-top-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% 20% !important;
  }

  .experience-top-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(10,10,15,0.5) 0%,
      rgba(10,10,15,0.1) 30%,
      rgba(10,10,15,0.2) 50%,
      rgba(10,10,15,0.7) 75%,
      rgba(10,10,15,0.95) 100%
    );
  }

  .experience-top-content {
    display: block;
    padding: 20px 20px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    max-width: 100%;
  }

  .experience-top-content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
  }

  .features-row {
    grid-template-columns: 1fr;
    padding: 0 20px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    gap: 0;
  }

  .feature-card {
    padding: 0;
    background: transparent !important;
    text-align: left;
  }

  .feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    color: var(--white);
  }

  .feature-card p {
    display: none;
  }

  .feature-card:not(:last-child)::after {
    content: '.';
    display: block;
    color: var(--white);
    font-size: 14px;
    margin: 2px 0 8px;
  }

  /* 6. Діти з мікрофонами (Immersive) */
  .section-immersive {
    min-height: auto;
    flex-direction: column;
    position: relative;
  }

  .section-immersive-bg {
    position: relative;
    height: 85vh;
    flex-shrink: 0;
  }

  .section-immersive-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 25% !important;
  }




  .section-immersive-content {
    padding: 20px 20px 30px;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    max-width: 70%;
    justify-content: center;
  }

  .section-immersive-content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    text-align: left;
  }

  /* 7. CTA (Телевізор) */
  .section-cta {
    padding: 40px 16px;
  }

  .cta-card {
    padding: 40px 24px;
    border-radius: 24px;
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-logo-img {
    width: 200px;
  }

  .cta-card p {
    font-size: 16px;
    color: #444;
  }

  /* 8. Кнопки */
  .btn-waitlist {
    width: 100%;
    max-width: 100%;
    height: 48px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* 9. Footer */
  .footer {
    padding: 24px 20px;
  }
}
