/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F8F9FA;
  color: #1A1A2E;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__brand {
  font-size: 1rem;
  font-weight: 600;
  color: #0F0F1A;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__back span {
  transition: transform 0.3s ease;
}

.nav__back:hover {
  color: #0F0F1A;
}

.nav__back:hover span {
  transform: translateX(-3px);
}

/* ── Hero ── */
.gp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.gp-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.gp-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 1.5rem;
}

.gp-hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #0F0F1A;
  line-height: 1;
  margin-bottom: 1rem;
}

.gp-hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  color: #6B7280;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}

.gp-hero__lead {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #4B5563;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

.gp-hero__lead strong {
  font-weight: 500;
  color: #0F0F1A;
}

/* ── Section title (shared) ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0F0F1A;
  line-height: 1.15;
}

/* ── Philosophy ── */
.philosophy {
  padding: 8rem 2rem;
}

.philosophy__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__body {
  font-size: 1.125rem;
  font-weight: 300;
  color: #4B5563;
  line-height: 1.9;
  max-width: 680px;
  margin: 2rem auto 5rem;
}

.philosophy__body strong {
  font-weight: 500;
  color: #1A1A2E;
}

.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar {
  text-align: center;
}

.pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F1F5F9;
  color: #3B82F6;
  margin-bottom: 1.5rem;
}

.pillar__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0F0F1A;
  margin-bottom: 0.75rem;
}

.pillar__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #6B7280;
  line-height: 1.7;
}

/* ── Features ── */
.features {
  padding: 6rem 2rem 8rem;
}

.features__header {
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: center;
}

.features__intro {
  font-size: 1.125rem;
  font-weight: 300;
  color: #6B7280;
  margin-top: 1.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.features__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature {
  background: #FFFFFF;
  border: 1px solid #F0F0F3;
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  border-color: #E0E0E6;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.feature--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3B82F6;
  background: #EFF6FF;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.feature__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #0F0F1A;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature__list {
  list-style: none;
  padding: 0;
}

.feature__list li {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4B5563;
  line-height: 1.7;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #93C5FD;
}

.feature__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #FAFBFC;
  overflow: hidden;
  position: relative;
}

/* ── CTA ── */
.cta {
  padding: 8rem 2rem;
  text-align: center;
}

.cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0F0F1A;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta__text {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #6B7280;
  margin-bottom: 2.5rem;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta__btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta__btn--primary {
  color: #FAFBFC;
  background: #0F0F1A;
}

.cta__btn--primary:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 15, 26, 0.15);
}

.cta__btn--secondary {
  color: #0F0F1A;
  background: transparent;
  border: 1px solid #D1D5DB;
}

.cta__btn--secondary:hover {
  border-color: #9CA3AF;
  background: #FFFFFF;
}

/* ── Footer ── */
.footer {
  padding: 4rem 2rem;
  border-top: 1px solid #E5E7EB;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__brand {
  font-size: 1rem;
  font-weight: 600;
  color: #0F0F1A;
  letter-spacing: -0.01em;
}

.footer__copy {
  font-size: 0.8125rem;
  color: #9CA3AF;
}

/* ── Scroll animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .gp-hero {
    min-height: 80vh;
    padding: 7rem 1.5rem 4rem;
  }

  .philosophy {
    padding: 5rem 1.5rem;
  }

  .philosophy__pillars {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features {
    padding: 4rem 1.5rem 5rem;
  }

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

  .feature--wide {
    grid-template-columns: 1fr;
  }

  .feature__visual {
    display: none;
  }

  .cta {
    padding: 5rem 1.5rem;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
