* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #000000;
  color: #dddddd;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================================
   HEADER & NAVIGATION
============================================================================ */
header {
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
  color: white;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  font-size: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
.logo-svg {
  height: 100%;
  width: auto;
  display: block;
  vertical-align: middle;
}
.logo-svg.header-logo {
  height: 100%;
  vertical-align: middle;
}
.language-btn,
.header-login {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 30px;
  line-height: 1;
}
.language-btn {
  background: transparent;
  border: none;
  color: white;
}
.language-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.current-lang {
  color: #dddddd;
}
.chevron {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.language-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.language-dropdown {
  position: relative;
  display: inline-block;
}
.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 0;
  width: max-content;
  min-width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  color: #dddddd;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}
.header-login.btn-solid {
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  min-width: 80px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #0d1117;
  border: none;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
}
.header-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
}

/* ============================================================================
   BUTTONS
============================================================================ */
.btn,
.gradient-btn,
.creator-btn {
  display: inline-block;
}
.btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.12);
}
.btn-solid {
  background-color: white;
  color: black;
}
.gradient-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-color) 100%);
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(1, 110, 174, 0.18);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              background 0.28s ease;
  margin: 16px 0 0 0;
}
.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(1, 110, 174, 0.32),
              0 4px 16px rgba(102, 169, 208, 0.15);
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--hover-color) 100%);
  filter: brightness(1.08);
}

.gradient-btn-help {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-color) 100%);
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(1, 110, 174, 0.18);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              background 0.28s ease;
  margin: 16px 0 0 0;
}
.gradient-btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(1, 110, 174, 0.32),
              0 4px 16px rgba(102, 169, 208, 0.15);
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--hover-color) 100%);
  filter: brightness(1.08);
}

/* ============================================================================
   TYPOGRAPHY
============================================================================ */
h1,
h2 {
  line-height: 1.1;
  margin-bottom: 0;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 40px;
}
.highlight {
  font-weight: 600;
}
.highlightMore {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

/* ============================================================================
   SECTIONS & LAYOUT COMPONENTS
============================================================================ */
section {
  padding: 80px 0 40px;
}
.two-col,
.two-col3060 {
  display: grid;
  gap: 80px;
  align-items: center;
}
.two-col3060 {
  grid-template-columns: 1fr 2fr;
}
.two-col {
  grid-template-columns: 1fr 1fr;
}
.text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.image-col {
  overflow: hidden;
  position: relative;
}
.image-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.9) contrast(1.1) saturate(0.75);
  transition: filter 0.6s ease;
}
.image-col:hover img {
  filter: brightness(1.05) contrast(1.15) saturate(1);
}
.reverse {
  direction: rtl;
}
.reverse > * {
  direction: ltr;
}

/* ============================================================================
   CREATOR CTA SECTION
============================================================================ */
.creator-cta {
  background: linear-gradient(90deg, #000000 0%, var(--contrast-color) 100%);
  color: white;
  padding: 30px 0;
  text-align: left;
  margin-top: 50px;
}
.creator-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.creator-text h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: white;
  line-height: 1.1;
}
.creator-text p {
  font-size: 14px;
  font-weight: 300;
  max-width: 600px;
  margin: 0;
  opacity: 0.95;
}
.creator-btn {
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 500;
  min-width: 160px;
  text-align: center;
  white-space: nowrap;
  background-color: white;
  color: #0d1117;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}
.creator-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  background-color: #0a0a0c;
  color: #aaaaaa;
  padding: 80px 0 40px;
  font-size: 12px;
  border-top: 1px solid #1a1a1e;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 32px;
  margin-bottom: 60px;
}
.footer-brand {
  max-width: 380px;
}
.footer-logo {
  margin-bottom: 20px;
}
.logo-svg {
  height: 22px;
  width: auto;
  display: block;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer-logo .logo-svg {
  opacity: 0.75;
}
.footer-logo:hover .logo-svg,
.logo:hover .logo-svg {
  transform: scale(1.04);
  filter: brightness(1.15);
}
.footer-tagline {
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}
.footer-column h4 {
  color: white;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #ffffff;
}
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}
.social-link {
  display: inline-block;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-link:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}
.icon-circle svg {
  width: 20px;
  height: 20px;
}
.social-link:hover .icon-circle {
  background: #f0f0f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ==============================================
   WAITLIST MODAL
=============================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal.active {
  display: flex;
}
.modal-content {
  background: #111113;
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close-btn:hover {
  color: white;
}
.waitlist-form-container h3 {
  font-size: 32px;
  margin-bottom: 12px;
  text-align: center;
}
.waitlist-form-container p {
  text-align: center;
  margin-bottom: 28px;
  font-size: 15px;
  opacity: 0.9;
}
.waitlist-form-row {
  display: flex;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}
.waitlist-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.email-icon {
  position: absolute;
  left: 16px;
  opacity: 0.6;
}
.waitlist-input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 15px;
}
.waitlist-input-wrapper input:focus {
  outline: none;
  border-color: var(--light-color);
  box-shadow: 0 0 0 3px rgba(102, 169, 208, 0.2);
}
.waitlist-btn-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--light-color) 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.waitlist-btn-round:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(102, 169, 208, 0.4);
}
.hidden {
  display: none;
}


/* ==============================================
   HELP CENTER
=============================================== */

.help-form {
  max-width: 480px;
  margin: 0 auto;
  padding-top:20px;
}

.help-form-row {
  margin-bottom: 24px;
}

.help-form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #dddddd;
}

.help-form-input-wrapper {
  position: relative;
}

.help-form-input-wrapper input,
.help-form-input-wrapper textarea,
.help-form-input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 48px;     /* space for icon on email */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: white;
  font-size: 15px;
  transition: all 0.2s;
}

.help-form-input-wrapper textarea {
  border-radius: 16px;              /* less rounded for textarea */
  padding: 16px;
  resize: vertical;
  min-height: 140px;
}

/* Email icon positioning */
.email-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  pointer-events: none;
}

/* Remove left padding on fields without icon */
.help-form-input-wrapper select,
.help-form-input-wrapper textarea {
  padding-left: 16px;
}


/* Your existing select styling */
.help-form-input-wrapper select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: white;
  font-size: 15px;
  appearance: none;               /* remove default arrow if you want custom one later */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M2 4l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

/* Dark options - this works best in Firefox & partially in Chrome */
select option {
  background-color: #1a1a1a;      /* very dark gray */
  color: #e0e0e0;                 /* light text */
}


/* Focus states */
.help-form-input-wrapper input:focus,
.help-form-input-wrapper select:focus,
.help-form-input-wrapper textarea:focus {
  outline: none;
  border-color: #7ABDE0;
  box-shadow: 0 0 0 3px rgba(122, 189, 224, 0.2);
}


/* ============================================================================
   LEGAL PAGES STYLING
============================================================================ */
.legal-section {
  /*max-width: 820px;*/
  margin: 0 auto;
}
.legal-section h1 {
  font-size: 42px;
  margin-bottom: 16px;
  text-align: center;
}
.last-updated {
  text-align: center;
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 48px;
}
.legal-content {
  font-size: 16px;
  line-height: 1.7;
  color: #dddddd;
}
.legal-content h2 {
  font-size: 26px;
  margin: 48px 0 16px;
  color: white;
}
.legal-content p {
  margin-bottom: 20px;
}

/* ============================================================================
   RESPONSIVE – MOBILE (≤900px)
============================================================================ */
@media (max-width: 900px) {
  header {
    padding: 12px 0;
  }
  .header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 54px;
    padding: 12px 16px;
  }
  .logo {
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .logo-svg.header-logo {
    height: 100% !important;
    width: auto !important;
    display: block !important;
  }
  .header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .header-login.btn-solid {
    height: 36px !important;
    min-width: 80px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    vertical-align: middle !important;
  }

  /* ──────────────────────────────────────────────
     IMPROVED MOBILE LAYOUT - IMAGE ABOVE TEXT
  ────────────────────────────────────────────── */
  .two-col,
  .two-col3060,
  .reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .image-col {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;           /* ← most recommended: fills nicely, may crop a bit */
    /* object-fit: contain;      ← alternative: shows full image, may have letterbox */
    display: block;
    border-radius: 12px;
  }

  .text-col {
    padding: 16px 0 32px;
    gap: 16px;
  }

  /* Order: image first, then text (most common mobile pattern) */
  .two-col .image-col,
  .two-col3060 .image-col {
    order: -1;
  }

  .reverse .image-col {
    order: -1; /* still image first even in reversed sections */
  }

  h1,
  h2,
  .text-col,
  .creator-text,
  .footer-tagline,
  .footer-column h4,
  .footer-column a,
  .footer-column li {
    text-align: center;
  }
  h1 {
    font-size: 36px;
    margin-top: 10px;
  }
  h2 {
    font-size: 34px;
  }
  section {
    padding-top: 80px;
  }

  /* Centered buttons */
  .gradient-btn {
    margin: 16px auto 0 !important;
    display: block;
    text-align: center;
  }
  .creator-btn {
    display: block !important;
    margin: 0 auto 0 !important;
    width: fit-content;
    min-width: 220px;
  }

  /* Footer mobile adjustments */
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .footer-column:nth-child(2) { order: 1; }
  .footer-column:nth-child(3) { order: 2; }
  .footer-column:nth-child(4) { order: 3; }
  .footer-column:nth-child(1) {
    order: 4;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo .logo-svg {
    height: 32px;
    margin-bottom: 16px;
  }
  .footer-tagline,
  .footer-brand p {
    max-width: 380px;
    margin: 0 auto;
  }
  .footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    margin-bottom: 32px;
  }
  .footer-logo {
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
    margin-top: 20px;
  }
.two-col3060 {
	position: relative;
	gap: 0;
}

/* Hero mobile overlap */
  .two-col3060 {
	position: relative;
	gap: 0;
	}

.two-col3060 .image-col {
	padding-bottom: 0;
	height: 60vh;
	min-height: 360px;
	overflow: hidden;
	background: #000;
	}
.two-col3060 .text-col {
margin-top: -70%;
background: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, transparent 100%);
padding: 68px 24px 64px;
border-radius: 24px 24px 0 0;
z-index: 2;
}

.two-col3060 .image-col img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: 50% 40%;
display: block;
}
  
}