/* styles.css */

/* --------------------------------------------------
   IMPACT
-------------------------------------------------- */
@font-face {
  font-family: "Impact";
  src: url("https://ik.imagekit.io/w7mufntzo/website/fonts/impact.woff2")
       format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* --------------------------------------------------
   STAGE GROTESK FAMILY
-------------------------------------------------- */

/* Light (300) */
@font-face {
  font-family: "Stage Grotesk";
  src: url("https://ik.imagekit.io/w7mufntzo/website/fonts/StageGrotesk/StageGrotesk-Light.woff2")
       format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular (400) */
@font-face {
  font-family: "Stage Grotesk";
  src: url("https://ik.imagekit.io/w7mufntzo/website/fonts/StageGrotesk/StageGrotesk-Regular.woff2")
       format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: "Stage Grotesk";
  src: url("https://ik.imagekit.io/w7mufntzo/website/fonts/StageGrotesk/StageGrotesk-Medium.woff2")
       format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: "Stage Grotesk";
  src: url("https://ik.imagekit.io/w7mufntzo/website/fonts/StageGrotesk/StageGrotesk-Bold.woff2")
       format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ExtraBold (800) */
@font-face {
  font-family: "Stage Grotesk";
  src: url("https://ik.imagekit.io/w7mufntzo/website/fonts/StageGrotesk/StageGrotesk-ExtraBold.woff2")
       format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #7c8594;
  --color-pink: #FA2763;
  --color-dark: #050608;
  --color-border: #e3e6eb;

  --spinner-color: #9ca3af;
  --spinner-size: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
}

html, body {
  font-family: "Stage Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500; /* Medium */
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

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

.accent {
  color: var(--color-pink) !important;
}

/* Desktop nav hidden by default (mobile-first) */

.nav-desktop {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #3c4047;
}

.nav-link:hover {
  color: var(--color-text);
}

/* Hamburger */

.nav-toggle {
  border: none;
  background: transparent;
  padding: 4px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #111111;
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.btn-primary {
  background-color: var(--color-pink);
  color: #ffffff;
  /* box-shadow: 0 10px 24px rgba(236, 75, 118, 0.3); */
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(236, 75, 118, 0.4);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ========== HEADER ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.logo img {
  height: 32px;
}

/* ========== FOOTER ========== */

.site-footer {
  background-color: #05070b;
  color: #e3e7f0;
  padding-block: 56px 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-tagline {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 300;
  color: #9094A0;
}

.footer-tagline .accent {
  font-weight: 700;  
}

.footer-tagline .strong {
  color: #F7F8F8;
  font-weight: 700;
}

.footer-line {
  color: #9094A0;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
}

.footer-line .accent {
  font-weight: 700;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-waitlist {
  width: 293px
}

.footer-waitlist-label {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #c3cad7;
}

.waitlist-form {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #6D717F;
  overflow: hidden;
  position: relative;
}

.waitlist-form .svg-spinner {
  display: none;
}

.waitlist-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  color: #f5f7fa;
}

.waitlist-input::placeholder {
  color: #6b7280;
}

.waitlist-submit {
  border: none;
  background-color: transparent;
  padding: 0 18px;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-submit .error, .waitlist-submit .success {
  display: none;
}

.footer-waitlist .error-message, .footer-waitlist .success-message {
  color: #FF383C;
  display: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-waitlist .success-message {
  color: #34C759;
}

.footer-divider {
  border: none;
  border-top: 1px solid #252a35;
  margin: 8px 0 0;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #9094A0;
}

.footer-meta a {
  color: inherit;
  /* text-decoration: underline; */
}

/* ========== MOBILE MENU OVERLAY ========== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 999999;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  padding-block: 20px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-menu-close {
  border: none;
  background: transparent;
  cursor: pointer;
}

.close-icon {
  font-size: 26px;
}

.mobile-menu-nav {
  flex: 1;
}

.mobile-menu-link {
  padding-block: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  cursor: pointer;
}

.mobile-menu-divider {
  border: none;
  border-top: 1px solid var(--color-border);
}

.chevron {
  font-size: 20px;
  color: var(--color-muted);
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 24px;
}

/* Disable scroll when menu open */
body.no-scroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-waitlist {
    display: block;
    max-width: 420px;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-header {
    position: sticky;
  }
}