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

:root {
  --color-purple: #6a3cff;
  --color-purple-dark: #2a1f6f;
  --color-blue: #1f8bff;
  --color-cyan: #00d4ff;
  --color-coral: #ff5e48;
  --color-yellow:#ffc857;
  --color-dark: #030e2e;
  --color-text: #07143f;
  --color-muted: #64708f;
  --color-light: #f7f9ff;
  --color-white: #f4f4f4;
  --font-title: "Space Grotesk", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --transition: 0.32s ease;
  --shadow-soft: 0 24px 70px rgba(18, 31, 84, 0.1);
  --shadow-glow: 0 22px 70px rgba(55, 115, 255, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(
      circle at top right,
      rgba(22, 140, 255, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #fff 0%, #f8faff 54%, #fff 100%);
  color: var(--color-text);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 22px 6vw;
}
.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(86, 110, 180, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 55px rgba(10, 15, 35, 0.473);
}
.navbar-logo {
  width: 120px;
  display: flex;
  align-items: center;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(7, 20, 63, 0.76);
}
.navbar-menu a {
  position: relative;
  transition: var(--transition);
}
.navbar-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
  transition: var(--transition);
}
.navbar-menu a:hover,
.navbar-menu a.is-active {
  color: var(--color-text);
}
.navbar-menu a:hover::after,
.navbar-menu a.is-active::after {
  width: 100%;
}
.navbar-cta {
  padding: 13px 22px;
  border-radius: 999px;
  color: #f2f2f2; 
  font-weight: 900;
  background: linear-gradient(160deg, var(--color-coral), #e6620ac4 );
  transition: var(--transition);
}
.navbar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(22, 140, 255, 0.3);
  box-shadow: 0 16px 34px rgba(184, 116, 14, 0.507);
}


.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 142px 8vw 72px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  right: -260px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 140, 255, 0.12),
    transparent 62%
  );
  pointer-events: none;
}
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-eyebrow,
.section-tag,
.section-heading span {
  display: inline-flex;
  color: var(--color-coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin-top: 18px;
  max-width: 720px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero-content h1 span {
  display: block;
}
.hero-content h1 strong {
  display: block;
  font-weight: 900;
  background: linear-gradient(
    90deg,
    var(--color-purple),
    var(--color-blue),
    var(--color-cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(7, 20, 63, 0.7);
  font-size: 1.08rem;
  line-height: 1.78;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 900;
  transition: var(--transition);
}
.btn-primary {
  color: #fff;
   background: linear-gradient(160deg, var(--color-coral), #e6620ac4 );
  box-shadow: 0 18px 44px rgba(106, 53, 255, 0.24);
}
.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
  border: 1px solid rgba(86, 110, 180, 0.747);
  box-shadow: 0 12px 32px rgba(18, 31, 84, 0.06);
}
.btn:hover {
  transform: translateY(-4px);
}
.logo-hero {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
}

.logo-orb {
  position: relative;
  width: min(450px, 42vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.92) translateY(18px);
  animation:
    logoEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    logoFloat 6s ease-in-out 1s infinite;
}

.logo-orb::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  border: 1px solid rgba(22, 140, 255, 0.2);
  box-shadow:
    0 0 80px rgba(22, 140, 255, 0.16),
    inset 0 0 70px rgba(106, 60, 255, 0.11);
}

.logo-orb::after {
  content: "";
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(106, 60, 255, 0.5),
      transparent 58%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(0, 212, 255, 0.48),
      transparent 58%
    );
  filter: blur(48px);
  opacity: 0.22;
  z-index: -1;
  animation: logoGlow 5s ease-in-out infinite;
}

.logo-orb img {
  position: relative;
  z-index: 2;
  width: 82%;
  filter:
    drop-shadow(0 24px 42px rgba(22, 140, 255, 0.2))
    drop-shadow(0 0 24px rgba(106, 60, 255, 0.12));
}

.orbit-line {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(22, 140, 255, 0.24);
  animation: rotateOrbit 35s linear infinite;
}
.floating-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(86, 110, 180, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  color: var(--color-text);
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(18, 31, 84, 0.1);
  animation: badgeFloat 5.5s ease-in-out infinite;
}
.floating-badge span {
  color: var(--color-purple);
  font-weight: 900;
}
.badge-psychology {
  top: 72px;
  left: 5%;
}
.badge-learning {
  top: 110px;
  right: 0;
  animation-delay: 0.8s;
}
.badge-tech {
  bottom: 146px;
  left: 0;
  animation-delay: 1.2s;
}
.badge-human {
  bottom: 108px;
  right: 2%;
  animation-delay: 1.7s;
}


.journey-section {
  padding: 38px 8vw 90px;
}
.journey-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.journey-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid rgba(86, 110, 180, 0.12);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.journey-card::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -80px;
  width: 210px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 94, 72),
    rgba(255, 200, 87)
  );
}
.journey-card:hover,
.journey-card.is-highlighted {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(18, 31, 84, 0.14);
}
.journey-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
  box-shadow: 0 18px 42px rgba(106, 53, 255, 0.24);
}
.journey-card h3 {
  font-family: var(--font-title);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}
.journey-card p {
  margin-top: 14px;
  color: rgb(7, 20, 63);
  line-height: 1.7;
}
.journey-card {
  display: flex;
  flex-direction: column;
}

.journey-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-purple);
  font-weight: 900;
}

.origin-gallery {
  position: relative;
  min-height: 560px;
}

.origin-photo {
  position: absolute;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.9);
  background: #eef2f8;
  box-shadow: 0 24px 60px rgba(18, 31, 84, 0.14);
}

.origin-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.origin-photo-main {
  top: 40px;
  right: 30px;
  width: min(430px, 75%);
  height: 430px;
  border-radius: 42px;
  transform: rotate(2deg);
}

.origin-photo-top {
  top: 0;
  left: 20px;
  width: 220px;
  height: 185px;
  border-radius: 28px;
  transform: rotate(-6deg);
}

.origin-photo-bottom {
  left: 60px;
  bottom: 15px;
  width: 250px;
  height: 200px;
  border-radius: 30px;
  transform: rotate(5deg);
}

.origin-gallery-caption {
  position: absolute;
  right: 0;
  bottom: 5px;
  max-width: 290px;
  padding: 18px 20px;
  border: 1px solid rgba(106, 60, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(18, 31, 84, 0.1);
  backdrop-filter: blur(16px);
}

.origin-gallery-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-coral);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.origin-gallery-caption strong {
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .origin-gallery {
    min-height: 500px;
  }

  .origin-photo-main {
    right: 5%;
  }
}

@media (max-width: 620px) {
  .origin-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .origin-photo {
    position: static;
    width: 100%;
    height: 220px;
    transform: none;
  }

  .origin-photo-main {
    grid-column: 1 / -1;
    height: 300px;
  }

  .origin-gallery-caption {
    position: static;
    grid-column: 1 / -1;
    max-width: none;
  }
}

.origin-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
  padding: 90px 8vw 120px;
  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(106, 53, 255, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #f4f7ff 0%, #fff 100%);
}
.origin-timeline {
  max-width: 430px;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  margin-top: 24px;
}
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 58px;
  width: 1px;
  height: calc(100% - 30px);
  background: linear-gradient(
    180deg,
    rgba(106, 53, 255, 0.35),
    rgba(0, 212, 255, 0.08)
  );
}
.timeline-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(106, 53, 255, 0.16);
  color: var(--color-coral);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(18, 31, 84, 0.08);
}
.timeline-item h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.timeline-item p {
  margin-top: 6px;
  color: rgba(7, 20, 63, 0.64);
  line-height: 1.65;
}
.origin-people {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: end center;
}
.people-blob {
  position: absolute;
  width: min(520px, 80%);
  height: 420px;
  bottom: 28px;
  border-radius: 48% 52% 42% 58%;
  background: linear-gradient(
    135deg,
    rgba(106, 53, 255, 0.18),
    rgba(0, 212, 255, 0.2)
  );
}
.founders-photo-composition {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.founder-placeholder {
  width: 210px;
  height: 330px;
  display: grid;
  place-items: center;
  border-radius: 120px 120px 34px 34px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 0 28px 70px rgba(18, 31, 84, 0.16);
}
.founder-one {
  background: linear-gradient(160deg, #fff, #e6eeff 32%, #6a35ff);
  color: var(--color-purple-dark);
}
.founder-two {
  height: 360px;
  background: linear-gradient(160deg, #fff, #dff8ff 32%, #00aef5);
  color: var(--color-purple-dark);
}
.origin-floating-card {
  position: absolute;
  right: 2%;
  bottom: 84px;
  z-index: 4;
  width: min(245px, 60%);
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(86, 110, 180, 0.12);
  box-shadow: var(--shadow-soft);
}
.origin-floating-card span {
  color: var(--color-purple);
  font-weight: 900;
}
.origin-floating-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-title);
  font-size: 1.45rem;
}
.origin-floating-card p {
  margin-top: 10px;
  color: rgba(7, 20, 63, 0.64);
  line-height: 1.55;
}

.fronts-section,
.about-section {
  padding: 110px 8vw;
  background: #fff;
}
.section-heading {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-heading h2 {
  margin-top: 14px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.section-heading p {
  margin-top: 20px;
  color: rgba(7, 20, 63, 0.66);
  line-height: 1.75;
}
.fronts-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(86, 110, 180, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(18, 31, 84, 0.06);
}
.fronts-grid article {
  min-height: 230px;
  padding: 34px;
  background: linear-gradient(
  180deg,
  rgba(247, 249, 255, 0.96),
  rgba(239, 244, 255, 0.88)
);
  border-right: 1px solid rgba(86, 110, 180, 0.1);
}
.fronts-grid article:last-child {
  border-right: none;
}
.front-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
  box-shadow: 0 18px 42px rgba(106, 53, 255, 0.18);
}
.fronts-grid h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
}
.fronts-grid p {
  margin-top: 12px;
  color: rgba(7, 20, 63, 0.62);
  line-height: 1.65;
}
.about-section {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(106, 53, 255, 0.08),
      transparent 26%
    ),
    #fff;
}
.founders-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.founder-card {
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(106, 53, 255, 0.16);
  box-shadow: var(--shadow-soft);
  text-align: center;

}

.founder-photo {
  width: 100%;
  aspect-ratio: 5 / 5;
  overflow: hidden;
  border-radius: 24px;
  background: #eee;
  object-position: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.founder-card h3 {
  font-family: var(--font-title);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}
.founder-card p {
  margin-top: 14px;
  color: rgba(7, 20, 63, 0.66);
  line-height: 1.75;
}
.founder-card a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 22px auto 0;
  border-radius: 12px;
  color: var(--color-purple);
  background: #f4f7ff;
  font-weight: 900;
}



.site-footer {
  padding: 70px 8vw 30px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 212, 255, 0.12),
      transparent 26%
    ),
    #06112f;
}
.footer-brand img {
  width: 165px;
  margin-bottom: 20px;
}
.footer-brand p {
  max-width: 330px;
  line-height: 1.7;
}
.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}
.footer-column h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}
.footer-column a:hover {
  color: var(--color-yellow);
}
.footer-bottom {
  grid-column: 1/-1;
  padding-top: 26px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom div {
  display: flex;
  gap: 18px;
}


@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.34;
    transform: scale(1.05);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rotateOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cardPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
.openable-card.is-highlighted {
  animation: cardPulse 0.9s ease;
  box-shadow:
    0 0 0 4px rgba(0, 212, 255, 0.16),
    var(--shadow-soft);
}


body.menu-open {
  overflow: hidden;
}

.mobile-menu-toggle,
.mobile-menu-close {
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(86, 110, 180, 0.14);
  border-radius: 50%;
  background: rgba(247, 249, 255, 0.9);
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.mobile-menu-toggle .material-symbols-rounded {
  transition: transform 0.28s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .material-symbols-rounded {
  transform: rotate(90deg);
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 14px 30px rgba(18, 31, 84, 0.12);
}

.mobile-menu-toggle:focus-visible,
.mobile-menu-close:focus-visible,
.mobile-menu-nav a:focus-visible {
  outline: 3px solid rgba(31, 139, 255, 0.34);
  outline-offset: 4px;
}

.mobile-menu-toggle .material-symbols-rounded,
.mobile-menu-close .material-symbols-rounded {
  font-size: 28px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(3, 14, 46, 0.56);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(390px, 88vw);
  height: 100dvh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 212, 255, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 15% 100%,
      rgba(106, 60, 255, 0.08),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.98);
  box-shadow: -28px 0 70px rgba(3, 14, 46, 0.2);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s ease;
}

.mobile-menu-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(86, 110, 180, 0.12);
}

.mobile-menu-logo {
  width: 128px;
  display: flex;
  align-items: center;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 249, 255, 0.94);
  transition:
    transform var(--transition),
    background var(--transition);
}

.mobile-menu-close {
  opacity: 0;
  transform: rotate(-18deg) scale(0.9);
}

.mobile-menu-drawer.is-open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition:
    opacity 0.28s ease 0.08s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    background var(--transition);
}

.mobile-menu-close:hover {
  transform: rotate(6deg) scale(1.03);
  background: #eef3ff;
}

.mobile-menu-nav {
  display: grid;
  gap: 6px;
  padding: 34px 0;
}

.mobile-menu-nav a {
  position: relative;
  padding: 16px 14px;
  border-radius: 16px;
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 700;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.mobile-menu-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-purple),
    var(--color-cyan)
  );
  transition: width var(--transition);
}

.mobile-menu-nav a:hover {
  color: var(--color-purple-dark);
  background: rgba(106, 60, 255, 0.06);
  transform: translateX(4px);
}

.mobile-menu-nav a:hover::after {
  width: 42px;
}

.mobile-menu-nav a {
  opacity: 0;
  transform: translateX(22px);
}

.mobile-menu-drawer.is-open .mobile-menu-nav a {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.34s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    color var(--transition),
    background var(--transition);
}

.mobile-menu-drawer.is-open .mobile-menu-nav a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-menu-drawer.is-open .mobile-menu-nav a:nth-child(2) {
  transition-delay: 0.13s;
}

.mobile-menu-drawer.is-open .mobile-menu-nav a:nth-child(3) {
  transition-delay: 0.18s;
}

.mobile-menu-drawer.is-open .mobile-menu-nav a:nth-child(4) {
  transition-delay: 0.23s;
}

.mobile-menu-cta {
  min-height: 52px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(160deg, var(--color-coral), #e6620ac4);
  font-weight: 900;
  opacity: 0;
  transform: translateY(14px);
  cursor: default;
}

.mobile-menu-drawer.is-open .mobile-menu-cta {
  opacity: 0.72;
  transform: translateY(0);
  transition:
    opacity 0.34s ease 0.28s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}


@media (max-width: 1060px) {
  .navbar-menu,
  .navbar > .navbar-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .logo-hero {
    min-height: 420px;
  }
  .logo-orb {
    width: min(430px, 82vw);
  }
  .floating-badge {
    position: relative;
    inset: auto;
    margin: 8px;
  }
  .logo-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }
  .origin-section {
    grid-template-columns: 1fr;
  }
  .origin-timeline {
    max-width: 100%;
  }
  .journey-grid,
  .fronts-grid,
  .founders-grid,

  .site-footer {
    grid-template-columns: 1fr;
  }
  .fronts-grid article {
    border-right: none;
    border-bottom: 1px solid rgba(86, 110, 180, 0.1);
  }
  .fronts-grid article:last-child {
    border-bottom: none;
  }

}
@media (max-width: 620px) {
  .site-header {
    padding: 14px;
  }
  .navbar {
    padding: 10px 12px;
  }
  .navbar-logo {
    width: 118px;
  }
  .mobile-menu-drawer {
    width: min(360px, 92vw);
    padding: 20px;
  }

  .mobile-menu-logo {
    width: 116px;
  }
  .hero-section,
  .origin-section,
  .fronts-section,
  .about-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-content h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }
  .journey-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .journey-card,
  .founder-card,

  .origin-people {
    min-height: 430px;
  }
  .founder-placeholder {
    width: 145px;
    height: 245px;
    font-size: 2rem;
  }
  .founder-two {
    height: 270px;
  }
  .origin-floating-card {
    right: 0;
    bottom: 20px;
    width: 220px;
  }

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

.footer-disabled {
    color: rgba(255, 255, 255, 0.42);
    cursor: default;
}

.navbar-cta[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.72;
}


@media (prefers-reduced-motion: reduce) {
  .logo-orb,
  .logo-orb::after,
  .orbit-line {
    animation: none;
  }

  .mobile-menu-overlay,
  .mobile-menu-drawer,
  .mobile-menu-toggle,
  .mobile-menu-close,
  .mobile-menu-nav a {
    transition: none;
  }

  .logo-orb {
    opacity: 1;
    transform: none;
  }
}

.material-symbols-rounded {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;

  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 32;
}

.timeline-icon .material-symbols-rounded {
  font-size: 26px;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.journey-icon .material-symbols-rounded,
.front-icon .material-symbols-rounded {
  transition: transform 0.3s ease;
}

.journey-card:hover .material-symbols-rounded,
.fronts-grid article:hover .material-symbols-rounded {
  transform: scale(1.08) rotate(-4deg);
}

.reveal {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-left {
  transform: translateX(-48px);
}

.reveal-right {
  transform: translateX(48px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 620px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(32px);
  }

  .reveal {
    transition-duration: 0.62s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}