@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Sora:wght@300;400;500;600&display=swap");

:root {
  --green-strong: #22b76f;
  --green-soft: #6bcd83;
  --navy: #152e52;
  --off-white: #f2f2f2;
  --charcoal: #2d2d2d;
  --dark: #0b1222;
  --glass: rgba(242, 242, 242, 0.08);
  --cursor-x: 50%;
  --cursor-y: 50%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Sora", sans-serif;
  background: radial-gradient(circle at top left, #173a66, var(--dark) 60%),
    linear-gradient(135deg, #0c101c 0%, #0b1222 55%, #0f1d37 100%);
  color: var(--off-white);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background: conic-gradient(
    from 120deg,
    rgba(34, 183, 111, 0.18),
    rgba(21, 46, 82, 0.4),
    rgba(107, 205, 131, 0.16),
    rgba(9, 14, 27, 0.2)
  );
  opacity: 0.6;
  filter: blur(40px);
  animation: drift 22s linear infinite;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--cursor-x) var(--cursor-y),
    rgba(34, 183, 111, 0.18),
    rgba(21, 46, 82, 0.05),
    transparent 60%
  );
  mix-blend-mode: screen;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.35;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 11;
  background: transparent;
  border-bottom: 0;
  padding: 0.9rem 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  opacity: 0;
  animation: none;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(9, 14, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(24px) saturate(140%);
  position: relative;
  overflow: hidden;
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(107, 205, 131, 0.16),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(34, 183, 111, 0.12),
      transparent 40%
    );
  opacity: 0.8;
  pointer-events: none;
}

.nav-shell > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.25rem 0;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
  border-color: transparent;
}

.brand img {
  width: 138px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(107, 205, 131, 0.75));
  animation: logoPulse 4s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--off-white);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(107, 205, 131, 0.5);
  transform: translateY(-1px);
}

.nav-toggle-label {
  pointer-events: none;
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 10px;
  display: inline-block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--off-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon::before {
  top: 0;
}

.nav-toggle-icon::after {
  bottom: 0;
}

.nav-shell.is-open .nav-toggle-icon::before {
  transform: translateY(4px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle-icon::after {
  transform: translateY(-4px) rotate(-45deg);
}

.nav a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.nav a:hover {
  color: var(--green-soft);
  transform: translateY(-1px);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-soft), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.cta {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 205, 131, 0.45);
  background: linear-gradient(
    120deg,
    rgba(34, 183, 111, 0.3),
    rgba(107, 205, 131, 0.2)
  );
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

main {
  position: relative;
  z-index: 3;
}

section {
  padding: 6rem 2.5rem;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.founders {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.founders-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.founders-title-block {
  text-align: left;
  margin: 0;
}

.founders-title-block .eyebrow,
.founders-title-block .founders-title {
  margin: 0;
}

.founders-content .section-title {
  margin: 0;
  max-width: none;
  text-align: left;
}

.founders-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.founders-content p {
  margin: 0;
}

.founders-title {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.25;
}

.founders-lead {
  font-size: 1.1rem;
  color: rgba(242, 242, 242, 0.9);
}

.founders-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.founders-meta span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.founders-meta p {
  color: rgba(242, 242, 242, 0.7);
}

.founders-visual {
  position: relative;
  border-radius: 24px;
  padding: 1.2rem;
  background: linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(9, 14, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
}

.founders-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(107, 205, 131, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(34, 183, 111, 0.12),
      transparent 45%
    );
  pointer-events: none;
}

.founders-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.9s ease forwards;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--green-soft);
}

h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.18;
}

.lead {
  font-size: 1.15rem;
  max-width: 32rem;
  color: rgba(242, 242, 242, 0.85);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--green-strong), var(--green-soft));
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(34, 183, 111, 0.35);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-metrics div {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-soft);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(107, 205, 131, 0.35);
  box-shadow: 0 0 30px rgba(34, 183, 111, 0.3);
  animation: haloSpin 18s linear infinite;
}

.orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(107, 205, 131, 0.4), rgba(21, 46, 82, 0));
  filter: blur(8px);
  animation: pulse 6s ease-in-out infinite;
}

.grid {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.grid-card {
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  background: rgba(15, 25, 45, 0.85);
  border: 1px solid rgba(107, 205, 131, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.grid-card:nth-child(2) {
  animation-delay: 1s;
}

.grid-card:nth-child(3) {
  animation-delay: 2s;
}

.grid-card .label {
  color: var(--green-soft);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.grid-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(107, 205, 131, 0.6);
  box-shadow: 0 26px 50px rgba(34, 183, 111, 0.25);
}

.section-title {
  max-width: 740px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 0.75rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.capabilities {
  background: linear-gradient(180deg, rgba(9, 14, 27, 0.6), rgba(9, 14, 27, 0));
}

.capability-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.capability-grid article {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(242, 242, 242, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.capability-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(107, 205, 131, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.process {
  background: radial-gradient(circle at 20% 20%, rgba(34, 183, 111, 0.1), transparent 60%);
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.step {
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 31, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(107, 205, 131, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.step span {
  font-size: 1.3rem;
  color: var(--green-soft);
  font-weight: 600;
}

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

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.industry-tags span {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.industry-tags span:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 205, 131, 0.6);
  color: var(--green-soft);
}

.partners {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-carousel {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.logo-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

.logo-pill {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.cta-section {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card {
  padding: 2.5rem;
  border-radius: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  background: linear-gradient(135deg, rgba(34, 183, 111, 0.25), rgba(21, 46, 82, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer {
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 18, 0.9);
}

.footer-brand img {
  width: 120px;
  height: auto;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  color: rgba(242, 242, 242, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--green-soft);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes haloSpin {
  0% {
    transform: rotate(0deg) scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: rotate(180deg) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: rotate(360deg) scale(0.95);
    opacity: 0.6;
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateX(-20%);
    opacity: 0.3;
  }
  50% {
    transform: translateX(20%);
    opacity: 0.8;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(107, 205, 131, 0.7));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 22px rgba(107, 205, 131, 1));
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 0 1.75rem;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 1rem;
    border-radius: 28px;
    padding: 1rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    width: 100%;
    display: none;
  }

  .nav-shell.is-open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero {
    padding-top: 3rem;
  }

  .founders {
    gap: 2rem;
  }

  .founders-body {
    gap: 2rem;
  }

  .founders-visual {
    padding: 0.9rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 1.5rem;
  }

  .nav {
    padding: 0 1.1rem;
  }

  .nav-links {
    gap: 0.9rem 1.1rem;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    min-height: 360px;
  }

  .founders-visual {
    border-radius: 20px;
  }

  .logo-pill {
    font-size: 0.92rem;
    padding: 0.7rem 1.3rem;
  }


  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

}
