@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-light: #D7AE21;
  --gold-mid: #85560C;
  --gold-dark: #D0A71B;
  --dark: #0a0a0f;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-light: #d0d0d0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: #222;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.body-dark {
  background: var(--dark);
  color: var(--white);
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
  background: linear-gradient(
    180deg,
    #000000 0%,
    #4d4d4d 70%,
    #000000 100%
  );
  border-bottom: none;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 60px;
  width: auto;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none; font-size: 14px;
  font-weight: 400; letter-spacing: 0.5px; transition: color 0.3s; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta-wrap { display: flex; flex-direction: column; align-items: center; }
.nav-cta {
  display: inline-block; background: var(--white); color: #000;
  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-size: 10px; font-weight: 300; color: var(--gold); 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); }

/* ======================== 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); }

/* ======================== WAITLIST FORM ======================== */
.waitlist-section {
  padding: 120px 20px 80px;
  background: var(--white);
  min-height: 100vh;
}

.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
}

.waitlist-title {
  font-family: 'UNCAGE', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label:first-child,
.group-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-style: italic;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: #bbb;
  font-weight: 300;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px; height: 20px;
  border: 1.5px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--gold);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px; height: 20px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  border-color: var(--gold);
  background: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

/* Submit button */
.btn-submit {
  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, rgba(215,174,33,0.85) 0%, rgba(133,86,12,0.85) 40%, rgba(208,167,27,0.85) 100%);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(197,160,68,0.5);
  background: linear-gradient(180deg, rgba(215,174,33,1) 0%, rgba(133,86,12,1) 40%, rgba(208,167,27,1) 100%);
}

/* ======================== SUCCESS PAGE ======================== */
.success-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.success-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.success-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.success-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.3) 0%,
    rgba(10,10,15,0.5) 60%,
    var(--dark) 100%
  );
}

.success-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  max-width: 750px;
}

.success-title {
  font-family: 'UNCAGE', sans-serif;
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 140%;
  margin-bottom: 30px;
}

.success-link {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}

.success-link:hover {
  color: var(--gold);
}

.success-spacer {
  min-height: 40vh;
  background: var(--dark);
}

/* ======================== FOOTER ======================== */
.footer {
  padding: 30px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #eee;
  background: var(--white);
}

.footer-dark {
  border-top-color: rgba(255,255,255,0.06);
  background: var(--dark);
}

.footer-left { display: flex; flex-direction: column; gap: 4px; }

.footer-press,
.footer-copy {
  font-size: 12px;
  color: #999;
}

.footer-dark .footer-press,
.footer-dark .footer-copy {
  color: var(--gray);
}

.footer-top {
  width: 36px; height: 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #999;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-dark .footer-top {
  border-color: rgba(255,255,255,0.15);
  color: var(--gray);
}

.footer-top:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .navbar {
    height: 80px;
    padding: 0 20px;
  }

  .nav-logo img {
    height: 44px;
  }
}

@media (max-width: 768px) {
  .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;
  }
  .nav-cta-sub { font-size: 10px; color: var(--gray); margin-top: 2px; text-transform: lowercase; }

  .waitlist-section { padding: 100px 16px 60px; }
  .waitlist-title { font-size: 28px; margin-bottom: 36px; }

  .success-hero { min-height: 40vh; }
  .success-title { font-size: 20px; }

  .footer { padding: 24px 20px; }
}