.page-hero {
  padding: 6rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(218, 108, 174, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(75, 204, 206, 0.1) 0%, transparent 55%);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  margin-bottom: 1.4rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.origin-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.origin-visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 108, 174, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.origin-van {
  width: 100%;
  max-width: 440px;
  display: block;
  animation: vanDrive 2.4s ease-in-out infinite;
  filter: drop-shadow(0 22px 50px rgba(218, 108, 174, 0.35));
  position: relative;
  z-index: 1;
}

@keyframes vanDrive {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(-3px, -2px) rotate(-0.5deg);
  }
  50% {
    transform: translate(0, -4px) rotate(0);
  }
  75% {
    transform: translate(3px, -2px) rotate(0.5deg);
  }
}

.origin-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.origin-copy p:last-child {
  margin-bottom: 0;
}

.origin-copy strong {
  color: var(--white);
}

.pull-quote {
  border-left: 4px solid var(--pink);
  padding: 1.2rem 1.8rem;
  margin: 2.5rem 0;
  background: rgba(218, 108, 174, 0.07);
  border-radius: 0 10px 10px 0;
}

.pull-quote p {
  font-size: 1.25rem !important;
  font-style: italic;
  color: var(--white) !important;
  line-height: 1.55;
  margin: 0 !important;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.value-icon {
  font-family: "Bangers", cursive;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.value-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.founder-section {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: center;
}

.founder-card {
  flex: 1;
  min-width: 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(75, 204, 206, 0.08);
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--pink), var(--lime));
}

.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Bangers", cursive;
  font-size: 3rem;
  color: var(--dark);
  border: 4px solid var(--dark);
  box-shadow: 0 0 0 3px var(--teal);
}

.founder-name {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.founder-role {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
}

.founder-bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--pink), var(--lime));
  opacity: 0.4;
}

.tl-item {
  display: flex;
  gap: 2.2rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.tl-dot {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bangers", cursive;
  font-size: 1.5rem;
  border: 3px solid rgba(0, 0, 0, 0.5);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.tl-dot svg {
  width: 28px;
  height: 28px;
  display: block;
}

.tl-dot-monkey {
  overflow: visible;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.tl-dot-monkey img {
  width: 72px;
  height: 72px;
  display: block;
  margin: -11px;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.5));
}

.tl-dot.t {
  background: var(--teal);
  color: var(--dark);
}

.tl-dot.p {
  background: var(--pink);
  color: var(--white);
}

.tl-dot.l {
  background: var(--lime);
  color: var(--dark);
}

.tl-body {
  padding-top: 0.3rem;
}

.tl-year {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-bottom: 0.3rem;
}

.tl-title {
  font-family: "Bangers", cursive;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tl-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .founder-section {
    flex-wrap: wrap;
  }

  .founder-card {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 600px) {
  .founder-section {
    flex-direction: column;
  }

  .founder-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 960px) {
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .origin-visual {
    display: none;
  }

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

@media (max-width: 560px) {
  .page-hero {
    padding: 4rem 1.5rem 3rem;
  }
}
