@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.75;
  color: #FFFFFF;
  background-color: #151515;
  overflow-x: hidden;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
}

h4 {
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: #B0B0B0;
}

a {
  color: #4169E1;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #5B84FF;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(21, 21, 21, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  z-index: 1020;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
}
.nav__content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo-text {
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .nav__toggle {
    display: flex;
  }
}
.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__toggle[aria-expanded=true] .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.nav__toggle[aria-expanded=true] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded=true] .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .nav__menu {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(21, 21, 21, 0.98);
    border-bottom: 1px solid #333333;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100vh - 80px);
    justify-content: center;
  }
  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.nav__link {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.25rem 0;
  position: relative;
}
.nav__link:hover, .nav__link.active {
  color: #FFFFFF;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4169E1;
  transition: width all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}
.nav__lang {
  position: relative;
  margin-left: 2rem;
  border-left: 1px solid rgba(51, 51, 51, 0.5);
  padding-left: 1.5rem;
  height: 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .nav__lang {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1.5rem;
  }
}
.nav__lang .lang-toggle-btn {
  background: transparent;
  border: 1px solid #333333;
  color: #FFFFFF;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.5rem;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 500;
}
.nav__lang .lang-toggle-btn:hover {
  border-color: #4169E1;
  background: rgba(65, 105, 225, 0.1);
}
.nav__lang .lang-toggle-btn svg {
  width: 18px;
  height: 18px;
}
.nav__lang .lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1F1F1F;
  border: 1px solid #333333;
  border-radius: 0.5rem;
  padding: 0.25rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1000;
}
@media (max-width: 767px) {
  .nav__lang .lang-dropdown {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    right: auto;
  }
}
.active .nav__lang .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .active .nav__lang .lang-dropdown {
    transform: translateX(-50%) translateY(0);
  }
}
.nav__lang .lang-dropdown .lang-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  color: #B0B0B0;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 500;
}
.nav__lang .lang-dropdown .lang-option:hover {
  background: rgba(65, 105, 225, 0.1);
  color: #FFFFFF;
}
.nav__lang .lang-dropdown .lang-option.active {
  background: rgba(65, 105, 225, 0.15);
  color: #4169E1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  background: #4169E1;
  color: #FFFFFF;
}
.btn--primary:hover:not(:disabled) {
  background: #5B84FF;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.3), 0 0 40px rgba(65, 105, 225, 0.15);
  transform: translateY(-2px);
}
.btn--primary:active:not(:disabled) {
  background: #27408B;
  transform: translateY(0);
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #4169E1;
}
.btn--secondary:hover:not(:disabled) {
  background: rgba(65, 105, 225, 0.1);
  border-color: #5B84FF;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.3), 0 0 40px rgba(65, 105, 225, 0.15);
}
.btn--secondary:active:not(:disabled) {
  background: rgba(65, 105, 225, 0.2);
}
.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn--gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--gold {
  background: #9F7AEA;
  color: #151515;
}
.btn--gold:hover:not(:disabled) {
  background: #B794F4;
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.3), 0 0 40px rgba(159, 122, 234, 0.15);
  transform: translateY(-2px);
}
.btn--gold:active:not(:disabled) {
  background: #6B46C1;
  transform: translateY(0);
}
.btn--full {
  width: 100%;
}

.section {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
}
.section--alt {
  background: #1F1F1F;
}
.section__header {
  text-align: center;
  margin-bottom: 6rem;
}
.section__title {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .section__title {
    font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  }
}
.section__subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  color: #B0B0B0;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: calc(80px + 6rem);
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(65, 105, 225, 0.15) 0%, transparent 70%), radial-gradient(circle at 70% 60%, rgba(159, 122, 234, 0.1) 0%, transparent 70%);
  opacity: 0.6;
}
.hero__network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(65, 105, 225, 0.03) 2px, rgba(65, 105, 225, 0.03) 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(65, 105, 225, 0.03) 2px, rgba(65, 105, 225, 0.03) 4px);
  opacity: 0.3;
}
.hero__content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.2fr 1fr;
  }
}
.hero__text {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__name {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.hero__roles {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  color: #9F7AEA;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.025em;
}
.hero__headline {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__subheadline {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  color: #B0B0B0;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.hero__contact {
  margin-bottom: 3rem;
}
.hero__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9F7AEA;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  background: rgba(159, 122, 234, 0.1);
  border: 1px solid rgba(159, 122, 234, 0.3);
  border-radius: 0.75rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__email:hover {
  background: rgba(159, 122, 234, 0.2);
  border-color: #9F7AEA;
  transform: translateY(-2px);
}
.hero__email::before {
  content: "✉";
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
}
.hero__cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}
.hero__portrait {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.hero__portrait img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__portrait-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-indicator {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid #B0B0B0;
  border-radius: 9999px;
  position: relative;
}
.hero__scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #4169E1;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.about__content {
  max-width: 1000px;
  margin: 0 auto;
}
.about__story {
  margin-bottom: 6rem;
}
.about__story p {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.about__story p:last-child {
  margin-bottom: 0;
}
.about__pillars {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about__pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pillar:hover {
  border-color: #444444;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.pillar {
  text-align: center;
}
.pillar__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(65, 105, 225, 0.1);
  border-radius: 1rem;
}
.pillar__icon svg {
  width: 32px;
  height: 32px;
  color: #4169E1;
}
.pillar__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 0.5rem;
}
.pillar__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  color: #808080;
  margin: 0;
}

.nexa__content {
  max-width: 1000px;
  margin: 0 auto;
}
.nexa__features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .nexa__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .nexa__features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nexa__features {
  margin-bottom: 4rem;
}
.nexa__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.nexa__cta {
  text-align: center;
}

.feature {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.feature:hover {
  border-color: #4169E1;
  box-shadow: 0 0 20px rgba(65, 105, 225, 0.2), 0 0 40px rgba(65, 105, 225, 0.1);
}
.feature__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(65, 105, 225, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.feature__icon svg {
  width: 28px;
  height: 28px;
  color: #4169E1;
}
.feature__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 1rem;
}
.feature__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  color: #808080;
  margin: 0;
}

.chip {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(65, 105, 225, 0.1);
  border: 1px solid rgba(65, 105, 225, 0.3);
  border-radius: 9999px;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 500;
  color: #4169E1;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.chip:hover {
  background: rgba(65, 105, 225, 0.2);
  border-color: #4169E1;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .ecosystem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ecosystem__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ecosystem-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ecosystem-card:hover {
  border-color: #444444;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.ecosystem-card {
  text-align: center;
}
.ecosystem-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(65, 105, 225, 0.1);
  border-radius: 1rem;
}
.ecosystem-card__icon svg {
  width: 36px;
  height: 36px;
  color: #4169E1;
}
.ecosystem-card__title {
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.ecosystem-card__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  color: #B0B0B0;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.ecosystem-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 600;
  color: #4169E1;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ecosystem-card__link:hover {
  color: #5B84FF;
  gap: 1rem;
}
.ecosystem-card__link--soon {
  color: #808080;
  cursor: not-allowed;
}
.ecosystem-card__link--soon:hover {
  color: #808080;
  gap: 0.5rem;
}

.philanthropy__content {
  max-width: 1000px;
  margin: 0 auto;
}
.philanthropy__story {
  text-align: center;
  margin-bottom: 6rem;
}
.philanthropy__story p {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}
.philanthropy__impact {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .philanthropy__impact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .philanthropy__impact {
    grid-template-columns: repeat(3, 1fr);
  }
}
.philanthropy__impact {
  margin-bottom: 4rem;
}
.philanthropy__cta {
  text-align: center;
}

.impact-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.impact-card:hover {
  border-color: #9F7AEA;
  box-shadow: 0 0 20px rgba(159, 122, 234, 0.2), 0 0 40px rgba(159, 122, 234, 0.1);
}
.impact-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(159, 122, 234, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.impact-card__icon svg {
  width: 28px;
  height: 28px;
  color: #9F7AEA;
}
.impact-card__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 1rem;
  color: #9F7AEA;
}
.impact-card__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  color: #B0B0B0;
  margin: 0;
}

.counseling__services {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .counseling__services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .counseling__services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.counseling__services {
  margin-bottom: 6rem;
}
.counseling__cta {
  text-align: center;
}

.service-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-card:hover {
  border-color: #444444;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card__number {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
  z-index: 0;
}
.service-card__title {
  position: relative;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  margin-bottom: 1rem;
  z-index: 1;
}
.service-card__desc {
  position: relative;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  color: #B0B0B0;
  z-index: 1;
}

.investment__content {
  max-width: 1000px;
  margin: 0 auto;
}
.investment__story {
  margin-bottom: 6rem;
  text-align: center;
}
.investment__story p {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}
.investment__timeline {
  position: relative;
  padding-left: 2rem;
}
.investment__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 100%;
  background: #333333;
}

.timeline-item {
  position: relative;
  padding-bottom: 4rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item__marker {
  position: absolute;
  top: 0;
  left: -32px;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: #151515;
  border: 2px solid #4169E1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-item__number {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 700;
  color: #4169E1;
}
.timeline-item__content {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #333333;
  margin-left: 1.5rem;
}
@media (min-width: 768px) {
  .timeline-item__content {
    margin-left: 3rem;
  }
}
.timeline-item__title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #4169E1;
}
.timeline-item__desc {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  margin: 0;
}

.footer {
  background: #1F1F1F;
  border-top: 1px solid #333333;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__content {
  gap: 4rem;
}
@media (min-width: 1024px) {
  .footer__col--main {
    grid-column: span 1.5;
  }
}
.footer__name {
  font-size: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
  margin-bottom: 0.25rem;
}
.footer__tagline {
  color: #9F7AEA;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  margin-bottom: 1.5rem;
}
.footer__mission {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  margin-bottom: 1.5rem;
}
.footer__email a {
  color: #FFFFFF;
}
.footer__email a:hover {
  color: #4169E1;
}
.footer__heading {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: #B0B0B0;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
}
.footer__links a:hover {
  color: #4169E1;
  padding-left: 0.25rem;
}
.footer__links--social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links--social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.modal__container {
  position: relative;
  background: #151515;
  border: 1px solid #333333;
  border-radius: 1rem;
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  z-index: 1;
  transform: translateY(20px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.active .modal__container {
  transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #B0B0B0;
  cursor: pointer;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__close:hover {
  color: #4169E1;
}
.modal__title {
  margin-bottom: 0.5rem;
}
.modal__desc {
  margin-bottom: 2rem;
}

.form {
  display: grid;
  gap: 1.5rem;
}
.form__group {
  display: grid;
  gap: 0.25rem;
}
.form__label {
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 500;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 1rem;
  background: #1F1F1F;
  border: 1px solid #333333;
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: #4169E1;
  box-shadow: 0 0 0 2px rgba(65, 105, 225, 0.2);
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 639px) {
  .modal__container {
    padding: 1.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */

/* ============================================
   NEW SECTIONS: MAP & REVIEWS
   ============================================ */

.hero__map {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.hero__map iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.hero__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9F7AEA;
    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
    font-weight: 500;
    text-decoration: none;
    transition: all 300ms ease;
}

.hero__link:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.spacer {
    margin: 0 10px;
    color: #333;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(30,30,30,0.8);
    border: 1px solid #333;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 300ms ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    border-color: #4169E1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.1);
}

.review-card__stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card__text {
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-card__author {
    font-weight: 600;
    color: #9F7AEA;
    text-align: right;
}

.reviews__cta {
    text-align: center;
}

