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



/* ===== CONTACT SECTION SLEEK STYLE ===== */
.contact-section {
  background: #f6f8fa;
  padding: 6rem 1rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: #007aff;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
  justify-items: center;
  align-items: stretch; /* makes all items same height */
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 25px rgba(0, 122, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 360px;
  width: 100%;  /* ensures cards stretch in grid */
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 122, 255, 0.15);
}

.contact-card h3 {
  color: #007aff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-card .email,
.contact-card .press-link {
  display: block;
  margin-bottom: 0.5rem;
  color: #005ed1;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card .email:hover,
.contact-card .press-link:hover {
  color: #003f8a;
}

.contact-card .small {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ===== SEND US A MESSAGE SECTION ===== */
.form-section {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 6rem 1rem;
  text-align: center;
}

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

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

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

input,
select,
textarea {
  padding: 1rem 1.1rem;
  border: 1px solid #dcdcdc;
  border-radius: 1rem;
  font-size: 1rem;
  background: #f9fafc;
  font-family: "Inter", system-ui, sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

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

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

.full {
  grid-column: 1/-1;
}

.cta-pill {
  display: inline-block;
  align-self: center;
  margin-top: 1.75rem;
  background: #007aff;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.2);
}

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

.form-success {
  color: #007aff;
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 600px) {
  .form-section h2 {
    font-size: 2rem;
  }
  .contact-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;
  }
}
