/* ========== Base Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fff;
}

/* ========== Typography ========== */
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: #444;
}

strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ========== Layout Utilities ========== */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ========== Header ========== */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: #007aff;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-weight: 500;
  color: #333;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007aff;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.apply-btn {
  background: #007aff;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 122, 255, 0.2);
}

.apply-btn:hover {
  background: #005ed1;
  transform: translateY(-1px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-nav.active {
    display: flex;
  }
}

/* ========== Hero (clean, pre-launch style) ========== */
.hero {
  position: relative;
  padding: 9rem 1rem 7rem;
  text-align: center;
  color: #111;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: none; /* removed background image */
}

.hero-overlay {
  display: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.brand-head {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
}

/* Primary CTA (blue pill) */
.cta.pill {
  background: #007aff;
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.4rem;
  border-radius: 9999px;
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.25);
  display: inline-block;
  margin-top: 1rem; /* ensures space below text */
}

.cta.pill:hover {
  background: #005ed1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.35);
}

/* “For Brands” link section */
.for-brands-link {
  margin-top: 4rem; /* more gap between pills */
}

.small-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.cta.secondary.pill {
  border: 2px solid #007aff;
  background: transparent;
  color: #007aff;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.cta.secondary.pill:hover {
  background: #007aff;
  color: #fff;
}



/* ========== Image Sections ========== */
.image-section {
  text-align: center;
  background: #fff;
}

.image-section img {
  max-width: 90%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.02);
}

/* ========== Creator Benefits Section ========== */
.highlight {
  background: #f9fafc;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.creator-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.creator-text h2 {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
  color: #111;
}

.creator-text ul.features li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  color: #444;
}

.creator-image img {
  width: 80%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .creator-benefits {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .creator-image {
    order: -1;
  }
}
/* ========== Survey Section ========== */
#survey {
  background: #f9fafc;
  color: #222; /* Reset text to dark */
  text-align: center;
}

#survey h2 {
  color: #111;
  margin-bottom: 1rem;
  font-size: 2rem;
}

#survey .lead {
  color: #444; /* Makes text readable and soft gray */
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

#survey .cta {
  margin-top: 1rem;
}

/* ========== FAQ ========== */
#faq details {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  transition: all 0.3s ease;
}

#faq details[open] {
  background: #f5f8ff;
  border-color: #007aff;
  box-shadow: 0 5px 15px rgba(0, 122, 255, 0.05);
}

#faq summary {
  font-weight: 600;
  cursor: pointer;
  color: #111;
  transition: color 0.2s ease;
}

#faq summary:hover {
  color: #007aff;
}

#faq p, #faq li {
  color: #444;
}

/* ========== Founder Note ========== */
#founder-note {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
  padding: 5rem 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.founder-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.founder-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #444;
}

.founder-image img {
  width: 80%;
  max-width: 380px;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* ===== Form Section (Modern & Sleek) ===== */
.form-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-top: 1px solid #eee;
  padding: 6rem 1.5rem;
  text-align: center;
}

.form-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #007aff;
  margin-bottom: 1rem;
}

.form-section p {
  color: #555;
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Form Container */
.form-section form {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 30px rgba(0, 122, 255, 0.08);
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-section form:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(0, 122, 255, 0.15);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

input,
select,
textarea {
  margin-top: 0.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid #dcdcdc;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #f9fafc;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #007aff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.12);
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

/* Small label text */
label.small {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  gap: 0.5rem;
}

/* Form Actions / Button */
.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.form-actions .cta.dark {
  background: #007aff;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.2);
}

.form-actions .cta.dark:hover {
  background: #005ed1;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.25);
}

/* Muted text */
.muted {
  color: #888;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .form-section h2 {
    font-size: 2rem;
  }
  .form-section p {
    font-size: 1rem;
  }
  .form-section form {
    padding: 2.5rem 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ========== CTA Buttons ========== */
.cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

/* Blue Pill Button */
.cta.blue-pill {
  background: #007aff;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

.cta.blue-pill:hover {
  background: #005ed1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 122, 255, 0.25);
}


/* ========== Footer ========== */
.site-footer {
  background: #fafbff;
  border-top: 1px solid #eee;
  padding: 2rem 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.footer-nav a {
  color: #007aff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #005ed1;
}

.small.muted {
  color: #888;
}

/* ========== Responsive Tweaks ========== */
@media (max-width: 600px) {
  .brand-head {
    font-size: 2rem;
  }
  .hero {
    padding: 5rem 1rem;
    min-height: 50vh;
  }
  .section {
    padding: 3.5rem 1rem;
  }
}
