:root {
  --bg: #000000;
  --bg2: #090909;
  --bg3: #111111;
  --bg4: #181818;
  --surface: rgba(255, 255, 255, 0.03);
  --surface2: rgba(255, 255, 255, 0.055);
  --surface3: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.15);
  --border3: rgba(255, 255, 255, 0.22);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-tertiary: rgba(255, 255, 255, 0.32);
  --text-muted: rgba(255, 255, 255, 0.18);
  --accent: #ffffff;
  --accent-inv: #000000;
  --grid-line: rgba(255, 255, 255, 0.04);
  --nav-bg: rgba(0, 0, 0, 0.8);
  --card-bg: rgba(255, 255, 255, 0.025);
  --card-hover: rgba(255, 255, 255, 0.048);
  --indigo: #818cf8;
  --indigo-bg: rgba(99, 102, 241, 0.1);
  --indigo-border: rgba(99, 102, 241, 0.22);
  --green: #34d399;
  --green-bg: rgba(52, 211, 153, 0.09);
  --green-border: rgba(52, 211, 153, 0.22);
  --amber: #fbbf24;
  --amber-bg: rgba(251, 191, 36, 0.09);
  --purple: #c084fc;
  --purple-bg: rgba(192, 132, 252, 0.1);
  --hero-glow: radial-gradient(
    ellipse 80% 50% at 50% -5%,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 60%
  );
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.65);
  --tag-bg: rgba(255, 255, 255, 0.06);
  --tag-border: rgba(255, 255, 255, 0.1);
  --tag-text: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] {
  --bg: #fafafa;
  --bg2: #f2f2f3;
  --bg3: #eaeaeb;
  --bg4: #e0e0e2;
  --surface: rgba(255, 255, 255, 0.8);
  --surface2: rgba(255, 255, 255, 0.95);
  --surface3: rgba(0, 0, 0, 0.055);
  --border: rgba(0, 0, 0, 0.085);
  --border2: rgba(0, 0, 0, 0.14);
  --border3: rgba(0, 0, 0, 0.2);
  --text-primary: #09090b;
  --text-secondary: rgba(9, 9, 11, 0.58);
  --text-tertiary: rgba(9, 9, 11, 0.38);
  --text-muted: rgba(9, 9, 11, 0.22);
  --accent: #09090b;
  --accent-inv: #ffffff;
  --grid-line: rgba(0, 0, 0, 0.045);
  --nav-bg: rgba(250, 250, 250, 0.9);
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-hover: rgba(255, 255, 255, 1);
  --indigo: #6366f1;
  --indigo-bg: rgba(99, 102, 241, 0.07);
  --indigo-border: rgba(99, 102, 241, 0.18);
  --green: #059669;
  --green-bg: rgba(5, 150, 105, 0.07);
  --green-border: rgba(5, 150, 105, 0.18);
  --amber: #d97706;
  --amber-bg: rgba(217, 119, 6, 0.07);
  --purple: #9333ea;
  --purple-bg: rgba(147, 51, 234, 0.08);
  --hero-glow: radial-gradient(
    ellipse 80% 50% at 50% -5%,
    rgba(99, 102, 241, 0.06) 0%,
    transparent 60%
  );
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --tag-bg: rgba(0, 0, 0, 0.045);
  --tag-border: rgba(0, 0, 0, 0.09);
  --tag-text: rgba(9, 9, 11, 0.5);
}

/* ═══ RESET ═══ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  transition:
    background 0.3s,
    color 0.3s;
}

/* NOISE */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
}

/* GRID BG */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* GLOW ORB */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeL {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeR {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sp {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(90px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(90px) rotate(-360deg);
  }
}

@keyframes counter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp 0.6s ease both;
}

.fl {
  animation: fadeL 0.6s ease both;
}

.fr {
  animation: fadeR 0.6s ease both;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.16s;
}

.d3 {
  animation-delay: 0.24s;
}

.d4 {
  animation-delay: 0.32s;
}

.d5 {
  animation-delay: 0.4s;
}

.d6 {
  animation-delay: 0.48s;
}

.sp {
  animation: sp 2s ease-in-out infinite;
}

/* scroll reveal */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rev-l {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rev-r {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rev.in,
.rev-l.in,
.rev-r.in {
  opacity: 1;
  transform: translate(0);
}

/* Theme toggle */
.tt {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: all 0.2s;
}

.tt:hover {
  border-color: var(--border2);
  color: var(--text-primary);
  background: var(--surface2);
}

.tt .is,
.tt .im {
  position: absolute;
  transition: all 0.3s;
}

[data-theme="dark"] .is {
  opacity: 1;
  transform: scale(1);
}

[data-theme="dark"] .im {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .is {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

[data-theme="light"] .im {
  opacity: 1;
  transform: scale(1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: var(--accent);
  color: var(--accent-inv);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-outline:hover {
  border-color: var(--border2);
  color: var(--text-primary);
  background: var(--surface);
}

/* ═══ HERO ═══ */
.hero {
  padding: 132px 24px 100px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--hero-glow);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: "Geist Mono", monospace;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 108px);
  letter-spacing: -5px;
  line-height: 0.93;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--text-tertiary);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ORBITING DOT */
.orbit-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border2);
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--indigo);
  margin: -4px 0 0 -4px;
  animation: orbit 6s linear infinite;
}

/* ═══ STATS STRIP ═══ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: var(--surface2);
}

.stat-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -2.5px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.stat-label strong {
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══ SECTION COMMONS ═══ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
  position: relative;
  z-index: 1;
}

.section-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.section-divider {
  height: 1px;
  background: var(--border);
}

/* ═══ STORY / MISSION ═══ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.mission-text p strong {
  color: var(--text-primary);
  font-weight: 500;
}

.mission-text p:last-child {
  margin-bottom: 0;
}

/* Mission visual — abstract art */
.mission-visual {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══ VALUES BENTO ═══ */
.values-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.value-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: var(--card-bg);
  transition:
    border-color 0.22s,
    transform 0.25s,
    background 0.22s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    var(--glow-clr, rgba(99, 102, 241, 0.06)) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.value-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  background: var(--card-hover);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.value-num {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
  position: absolute;
  top: 20px;
  right: 22px;
  letter-spacing: 0.06em;
}

.value-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══ TIMELINE ═══ */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.tl-item {
  position: relative;
  margin-bottom: 48px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  background: var(--bg);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.tl-item:hover .tl-dot {
  border-color: var(--indigo);
  background: var(--indigo);
}

.tl-year {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tl-heading {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.tl-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.tl-tag {
  display: inline-flex;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "Geist Mono", monospace;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  color: var(--tag-text);
}

/* ═══ TEAM ═══ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card-bg);
  transition:
    border-color 0.22s,
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
}

.team-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.team-photo {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.team-info {
  padding: 18px 20px;
}

.team-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.team-role {
  font-size: 12px;
  color: var(--text-tertiary);
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 14px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.skill-pill {
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-family: "Geist Mono", monospace;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  color: var(--tag-text);
}

.team-links {
  display: flex;
  gap: 8px;
  padding: 0 20px 18px;
}

.team-link {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: all 0.15s;
}

.team-link:hover {
  border-color: var(--border2);
  color: var(--text-primary);
  background: var(--surface2);
}

/* ═══ CULTURE SECTION ═══ */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.culture-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: var(--card-bg);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.culture-card:hover {
  border-color: var(--border2);
  background: var(--card-hover);
}

.culture-emoji {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.culture-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: -0.3px;
}

.culture-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* CULTURE — full-width big card */
.culture-big {
  grid-column: span 2;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  background: var(--card-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  transition: border-color 0.2s;
}

.culture-big:hover {
  border-color: var(--border2);
}

/* ═══ TECH STACK ═══ */
.tech-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
  margin-top: 40px;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.tech-track {
  display: flex;
  width: max-content;
  gap: 10px;
}

.tech-track.left {
  animation: scrollLeft 28s linear infinite;
}

.tech-track.right {
  animation: scrollRight 24s linear infinite;
  margin-top: 10px;
}

.tech-track:hover {
  animation-play-state: paused;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: default;
  transition: all 0.15s;
}

.tech-pill:hover {
  border-color: var(--border2);
  color: var(--text-primary);
  background: var(--surface2);
}

.tech-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══ CTA FINAL ═══ */
.cta-section {
  border-top: 1px solid var(--border);
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section h2 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 76px);
  letter-spacing: -3.5px;
  line-height: 0.97;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.cta-section h2 span {
  color: var(--text-tertiary);
}

.cta-section p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.65;
}

/* ═══ FOOTER ═══ */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-family: "Geist Mono", monospace;
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}
/* edits */
.story-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.testimonial-comments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.footer-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Geist Mono";
}
[data-theme="light"] .footer-text {
 color: rgba(9, 9, 11, 0.35);
}
/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .culture-big {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .culture-big {
    grid-column: span 1;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-bento {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    letter-spacing: -3px;
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .story-timeline {
    grid-template-columns: none;
  }
}
@media (max-width: 525px) {
  .stat-cell {
    padding: 25px 25px;
  }
}
@media (max-width: 770px) {
  .testimonial-comments {
    grid-template-columns: none;
  }
}
