/* ── Hero ── */

.hero {
  background: var(--hero-both);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-both-veil);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7eb3ff;
  background: rgba(100, 160, 255, 0.12);
  border: 1px solid rgba(100, 160, 255, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto 0.75rem;
}

.hero .location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.25rem;
}

.learn-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #0057ff, #0041cc);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 87, 255, 0.55);
}

/* ── Who We Are ── */

.who-we-are {
  padding: 7rem 2rem 6rem;
  background: linear-gradient(160deg, #f0f5ff 0%, #fafbff 60%, #f5f0ff 100%);
  position: relative;
  overflow: hidden;
}

.who-we-are::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #111111 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.who-we-are::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(0, 87, 255, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(120, 0, 255, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.who-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.18);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.who-we-are h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #111111;
}

.who-we-are p {
  font-size: 1.05rem;
  color: #444;
  max-width: 640px;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.team-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.25rem;
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 0.25rem;
}

.team-title {
  font-size: 0.85rem;
  color: #444444;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.team-location {
  font-size: 0.8rem;
  color: #999;
}

.team-linkedin {
  display: inline-flex;
  margin-top: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.team-linkedin:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.team-linkedin img {
  width: 22px;
  height: 22px;
}

/* ── We Are Hiring ── */

.hiring {
  background: var(--hero-both);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.hiring::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-both-veil);
  pointer-events: none;
}

.hiring-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-eyebrow-light {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7eb3ff;
  background: rgba(100, 160, 255, 0.12);
  border: 1px solid rgba(100, 160, 255, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hiring h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hiring-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.job-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.job-card:hover {
  border-color: rgba(100, 160, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.job-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.job-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.job-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, #0057ff, #0041cc);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 3px 14px rgba(0, 87, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.job-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 87, 255, 0.5);
}

/* ── FAQs ── */

.faqs {
  background: linear-gradient(160deg, #f0f5ff 0%, #fafbff 60%, #f5f0ff 100%);
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.faqs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(0, 87, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(120, 0, 255, 0.03) 0%, transparent 45%);
  pointer-events: none;
}

.faqs-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faqs h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 3rem;
  color: #111111;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item summary {
  list-style: none;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #0057ff;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.975rem;
  color: #444;
  line-height: 1.75;
  padding: 0 2rem 1.5rem 0;
  max-width: 620px;
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .hiring h2,
  .faqs h2 {
    font-size: 1.75rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
