/* Base, header, footer, and button styles are in /css2/header-footer.css */

.hero {
  background: #fff;
  position: relative;
  max-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  top: -72px;
  margin-bottom: -72px;
  background-position: 50%;
}
.hero-circle {
  position: absolute;
  inset: 0;
  background: url("/i2/about-circle.png") center / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}
.hero-strips {
  position: absolute;
  inset: 0;
  background: url("/i2/home-strips.png") center / cover no-repeat;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: max(24px, calc((100vw - 1320px) / 2));
  max-width: 1200px;
}
.hero-text {
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 0.5px solid #dff0cf;
  color: var(--green);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #f3f9ed;
  margin-bottom: 28px;
}
.hero h1 {
  color: #000;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
}
.hero p {
  color: var(--gray-75);
  font-size: 18px;
  max-width: 560px;
  margin: 28px 0 0;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-text {
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 0;
  }
  .hero p {
    font-size: 16px;
    max-width: 100%;
    margin: 20px auto 0;
  }
}

/* ── Team section ────────────────────────────── */
.section {
  padding: 110px 0;
}
.team-section {
  background: var(--bg);
  overflow: hidden;
}
.team-heading {
  text-align: center;
  color: #000;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  margin: 0 0 56px;
  letter-spacing: -0.5px;
}
.team-heading-accent {
  color: var(--mint);
}
.team-carousel {
  position: relative;
}
.team-viewport {
  overflow: hidden;
}
.team-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.team-card {
  flex: 0 0 calc((100% - 24px * 3) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
.team-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 39 / 50;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(127.95deg, #efefed 0%, #e6e6e6 100%);
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(
    180deg,
    rgba(96, 195, 173, 0.64) 0%,
    rgba(127, 195, 66, 0.8) 100%
  );
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.team-card:hover .team-card-overlay {
  opacity: 1;
}
.team-card-bio {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.team-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.team-card-name {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  min-height: 1.5em;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.team-card:hover .team-card-name {
  opacity: 1;
}
.team-card-role {
  text-align: center;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.team-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}
.team-nav {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(127, 195, 66, 0.55);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.team-nav:hover {
  background: rgba(127, 195, 66, 0.12);
  border-color: var(--green);
}
.team-nav:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .team-card {
    flex: 0 0 calc((100% - 24px * 2) / 3);
  }
}
@media (max-width: 768px) {
  .team-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .team-heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .team-card {
    flex: 0 0 100%;
  }
}

/* ── Guiding principles section ──────────────── */
.center {
  text-align: center;
}
.principles {
  background: #f2f4f4;
}
.principles-heading {
  font-size: clamp(30px, 3vw, 44px);
  margin: 0 0 18px;
  font-weight: 600;
  line-height: 1.25;
}
.principles-intro {
  max-width: 1000px;
  margin: 0 auto 56px;
  color: var(--gray-75);
  font-size: 16px;
  line-height: 1.7;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(96, 195, 173, 0.16);
  background: linear-gradient(
    285deg,
    rgba(96, 195, 173, 0.08),
    rgba(96, 195, 173, 0.04)
  );
}
.principle-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.principle-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(96, 195, 173, 0.12);
}
.principle-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0f0f0f;
  line-height: 1.3;
}
.principle-card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--gray-75);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Compliance section ──────────────────────── */
.compliance {
  background: var(--bg);
}
.compliance-header {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  display: inline-block;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 12px;
  color: var(--green);
  background: #f3f9ed;
  border: 0.5px solid #dff0cf;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.compliance-title {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.2;
}
.compliance-intro {
  margin: 0 auto;
  max-width: 760px;
  color: var(--gray-75);
  font-size: 16px;
  line-height: 1.65;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.compliance-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 32px;
}
.compliance-badge {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
}
.compliance-card-desc {
  margin: 0;
  font-size: 15px;
  color: var(--gray-75);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── CTA section ─────────────────────────────── */
.cta {
  padding-top: 40px;
}
.muted {
  color: var(--gray-75);
  font-size: 16px;
  line-height: 1.65;
}
.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  padding: 36px;
  background: linear-gradient(303deg, rgba(255, 252, 201, 0.2), rgba(237, 237, 246, 0.2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.cta-box h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
}
.cta-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.cta-deco-right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: auto;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.cta-actions p {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .cta-box {
    grid-template-columns: 1fr;
  }
}
