@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes orbDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.04);
  }
  66% {
    transform: translate(-20px, 14px) scale(0.97);
  }
}
@keyframes tickerSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sr-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sr-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sr-left.on,
.sr-right.on {
  opacity: 1;
  transform: none;
}

.page-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.page-hero .violet {
  font-style: italic;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbDrift 18s ease-in-out infinite;
}

.orb-1 {
  width: 560px;
  height: 560px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 65%);
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: 40px;
  left: -80px;
  background: radial-gradient(circle, rgba(157, 102, 245, 0.18) 0%, transparent 65%);
  animation-delay: -7s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.1) 0%, transparent 65%);
  animation-delay: -13s;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  position: relative;
  z-index: 2;
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-label {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-label::before {
  content: "//";
  color: var(--p2);
}

.hero-h {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.97;
  text-transform: uppercase;
}
.hero-h span {
  display: block;
  background: linear-gradient(145deg, var(--txt) 30%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h span.indent {
  padding-left: clamp(40px, 8vw, 120px);
}
.hero-h span.violet {
  background: linear-gradient(145deg, var(--p2) 0%, var(--p3) 80%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-side {
  max-width: 320px;
  padding-bottom: 8px;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.5s ease forwards;
}

.hero-side p {
  font-size: 15px;
  color: rgba(238, 235, 255, 0.55);
  line-height: 1.75;
}

.hero-side-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-bar {
  border-top: 1px solid var(--rim);
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 48px;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-bar-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1px solid var(--rim);
  padding: 0 20px;
}

.hero-bar-stat:last-child {
  border-right: none;
}

.hbs-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--txt) 40%, var(--p3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hbs-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-align: center;
}

.ticker {
  background: var(--bg1);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: tickerSlide 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--p2);
  flex-shrink: 0;
}

.story,
.timeline,
.stack {
  background: var(--bg1);
}

.story::before,
.values::before,
.timeline::before,
.team::before,
.stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--rim) 50%, transparent 90%);
}

.values,
.team,
.cta-banner {
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text p {
  font-size: 15px;
  color: rgba(238, 235, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-visual {
  position: relative;
  height: 480px;
}

.story-img {
  position: absolute;
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.story-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.si-main {
  width: 78%;
  height: 380px;
  top: 0;
  right: 0;
  border: 1px solid var(--rim2);
}

.si-accent {
  width: 54%;
  height: 240px;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(157, 102, 245, 0.3);
}

.story-badge {
  position: absolute;
  bottom: 50px;
  right: -10px;
  z-index: 3;
  background: var(--bg1);
  border: 1px solid rgba(157, 102, 245, 0.4);
  border-radius: var(--r2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sb-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pdim);
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-num {
  font-size: 18px;
  font-weight: 800;
}

.sb-sub {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--muted);
}

.values-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.values-header p {
  max-width: 360px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.val-card {
  border: 1px solid var(--rim);
  border-radius: var(--r2);
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.val-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--pdim);
  border: 1px solid rgba(124, 58, 237, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.val-num {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: italic;
  margin: 15px 0;
  color: var(--p2);
  letter-spacing: 0.06em;
}

.val-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.val-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

.val-card.wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.val-card.wide .val-visual {
  width: 180px;
  height: 130px;
  border-radius: var(--r2);
  overflow: hidden;
  flex-shrink: 0;
}

.val-card.wide .val-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(50%) brightness(0.7);
}

.tl-header,
.team-header {
  margin-bottom: 64px;
}

.tl-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.tl-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  width: 1px;
  background: var(--rim);
}

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 36px 0;
  border-bottom: 1px solid var(--rim);
  position: relative;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 44px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg1);
  border: 2px solid var(--p2);
}

.tl-item:last-child {
  border-bottom: none;
}

.tl-year {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-style: italic;
  color: var(--p2);
}

.tl-body {
  padding-left: 32px;
}

.tl-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

.tl-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  border: 1px solid var(--rim);
  border-radius: var(--r2);
  background: var(--surface);
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
}

.team-info {
  padding: 18px 20px 22px;
}

.team-name {
  font-size: 15px;
  font-weight: 700;
}

.team-role {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: italic;
  color: var(--p2);
}

.team-bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 10px;
}

.team-socials {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.tsoc {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid var(--rim);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
}

.stack-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.stack-sticky {
  position: sticky;
  top: 96px;
}

.stack-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
}

.stack-cats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stack-cat-title {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: italic;
  color: var(--p2);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r1);
  border: 1px solid var(--rim);
  background: var(--surface);
  font-size: 13px;
}

.sp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p2);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rim);
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .eyebrow {
  justify-content: center;
}

.cta-h {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-inner,
  .hero-bar {
    padding-left: 32px;
    padding-right: 32px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stack-layout {
    grid-template-columns: 220px 1fr;
    gap: 52px;
  }
  .cta-inner {
    padding: 100px 32px;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    padding: 0 20px 60px;
  }
  .hero-bar {
    padding: 18px 20px;
  }
  .hero-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-side {
    max-width: 100%;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-visual {
    height: 320px;
  }
  .si-main {
    height: 260px;
  }
  .si-accent {
    height: 180px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .val-card.wide {
    grid-column: span 2;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stack-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .stack-sticky {
    position: static;
  }
  .tl-list::before {
    left: 50px;
  }
  .tl-item {
    grid-template-columns: 100px 1fr;
  }
  .tl-item::before {
    left: 46px;
  }
}
@media (max-width: 640px) {
  .hero-h {
    font-size: 38px;
  }
  .hero-h span.indent {
    padding-left: 28px;
  }
  .hero-bar {
    flex-wrap: wrap;
  }
  .hero-bar-stat {
    min-width: 45%;
    border-right: none;
    border-bottom: 1px solid var(--rim);
    padding: 12px 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .val-card.wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .val-card.wide .val-visual {
    width: 100%;
    height: 140px;
  }
  .tl-item {
    grid-template-columns: 80px 1fr;
  }
  .tl-list::before {
    left: 38px;
  }
  .tl-item::before {
    left: 34px;
  }
  .tl-body {
    padding-left: 20px;
  }
  .story-visual {
    height: 260px;
  }
  .si-main {
    height: 210px;
    width: 84%;
  }
  .si-accent {
    height: 150px;
  }
  .cta-inner {
    padding: 72px 20px;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=about.css.map */