:root {
  --bg: #050608;
  --panel: #0b0f14;
  --line: #1c2735;
  --text: #e7edf8;
  --muted: #9fb0c8;
  --blue: #0f7bff;
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% -8%, rgba(22, 94, 255, 0.19), transparent 40%),
    radial-gradient(circle at 84% 8%, rgba(15, 123, 255, 0.13), transparent 30%),
    var(--bg);
  overflow-x: hidden;
}

.brand-text {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #14a0ff;
  letter-spacing: 0.12em;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 62px,
      rgba(255, 255, 255, 0.02) 63px,
      transparent 64px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 62px,
      rgba(255, 255, 255, 0.018) 63px,
      transparent 64px
    );
}

.about-wrap {
  width: 100%;
  padding: 0 1rem;
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0, rgba(15, 123, 255, 0.12), transparent 46%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero {
  min-height: clamp(220px, 34vw, 430px);
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 88%, rgba(15, 123, 255, 0.22), transparent 40%),
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 62px,
      rgba(255, 255, 255, 0.02) 63px,
      transparent 64px
    );
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.08;
  position: relative;
  z-index: 1;
  background: linear-gradient(92deg, #f8fbff, #dce8ff 34%, #9bc9ff 66%, #f8fbff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .crumb {
  margin: 1rem 0 0;
  position: relative;
  z-index: 1;
  color: #a6b4c8;
}

.hero .crumb a {
  color: var(--blue);
  text-decoration: none;
}

.identity {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: center;
}

.identity-left,
.identity-right,
.evolve,
.values,
.team,
.steps,
.cta {
  padding: clamp(1rem, 3vw, 2rem);
}

.identity-left {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.identity-left img {
  width: min(560px, 88%);
  max-width: 100%;
  object-fit: contain;
  opacity: 0.95;
}

.years-logo {
  width: min(520px, 84%);
  margin-top: 5.5rem;
}

.image-placeholder {
  width: min(560px, 88%);
  min-height: 220px;
  border: 1px dashed rgba(118, 170, 236, 0.55);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #a9bfe0;
  background: linear-gradient(145deg, rgba(14, 18, 24, 0.86), rgba(8, 11, 16, 0.9));
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.years-card {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(167, 88, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(16, 127, 255, 0.2),
    0 8px 26px rgba(13, 18, 33, 0.5);
  background: linear-gradient(160deg, rgba(18, 21, 28, 0.95), rgba(8, 11, 16, 0.96));
  display: grid;
  gap: 0.3rem;
  max-width: 360px;
}

.years-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.years-line .num {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: #0f87ff;
}

.years-line .plus {
  font-size: 2rem;
  color: #2aa0ff;
  font-weight: 700;
}

.years-card p {
  margin: 0;
  color: #d7e5fb;
  line-height: 1.5;
}

.eyebrow {
  margin: 0;
  color: #7ebfff;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.eyebrow::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 2px solid #1388ff;
}

.identity-right h2,
.values-right h2,
.steps-head h2,
.cta h2,
.team h2 {
  margin: 0.8rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.identity-right p,
.values-right p,
.evolve p,
.step-card p,
.cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-list {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #d8e5f8;
  line-height: 1.45;
}

.service-list li::before {
  content: "◉";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f86ff;
}

.evolve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.evolve h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4.2vw, 3.5rem);
  line-height: 1.1;
}

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

.value-cards {
  display: grid;
  gap: 0.9rem;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(19, 23, 29, 0.94), rgba(9, 12, 17, 0.96));
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.8rem;
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(167, 88, 255, 0.3);
  color: #0f86ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(10, 14, 20, 0.9);
}

.value-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.value-card p { margin: 0.6rem 0 0; }

.values-right {
  display: grid;
  gap: 0.9rem;
}

.values-art {
  width: min(560px, 100%);
  justify-self: end;
  opacity: 0.95;
}

.values-art img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.callout {
  border: 1px solid rgba(170, 90, 255, 0.34);
  border-radius: 18px;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(20, 24, 31, 0.95), rgba(8, 11, 16, 0.96));
  max-width: 350px;
}

.callout p {
  margin: 0;
  color: #dce8fb;
  font-weight: 600;
  line-height: 1.5;
}

.callout a {
  display: inline-flex;
  margin-top: 0.8rem;
  text-decoration: none;
  color: #0f87ff;
  font-weight: 700;
}

.team-head {
  text-align: center;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.member {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(18, 22, 29, 0.95), rgba(8, 10, 14, 0.97));
}

.member .avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0c1016, #06080c);
  color: rgba(220, 230, 245, 0.45);
  font-size: 0.86rem;
  padding: 0.8rem;
}

.member .avatar.avatar-photo {
  padding: 0;
}

.member .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--face-x, 50%) var(--face-y, 32%);
  display: block;
  transform: scale(var(--face-scale, 1));
  transform-origin: center;
}

.member-evan {
  --face-y: 24%;
  --face-scale: 0.88;
}

.member-evan .avatar img {
  object-fit: contain;
  object-position: center center;
  transform: none;
  background: #060a10;
}

.member-srinivas {
  --face-y: 30%;
}

.member-ratul {
  --face-y: 30%;
}

.member-jasbir {
  --face-y: 38%;
}

.uf-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  color: #12a4ff;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: 0.14em;
  font-weight: 700;
}

.member h3 {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.9rem);
}

.member p {
  margin: 0.4rem 0 0;
  color: #a8b5cb;
  font-style: italic;
  line-height: 1.4;
}

.steps-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(16, 20, 26, 0.94), rgba(8, 11, 16, 0.97));
  padding: 1rem;
}

.step-card .step-num {
  color: #7fbaff;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-card h3 {
  margin: 0.6rem 0;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.cta {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 123, 255, 0.08), transparent 28%),
    radial-gradient(circle at 70% 30%, rgba(15, 123, 255, 0.18), transparent 36%);
  pointer-events: none;
}

.cta .play {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(69, 151, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #d9e9ff;
  background: rgba(11, 17, 24, 0.9);
}

.cta .small {
  margin: 0;
  color: #dbe8fb;
  font-weight: 600;
}

.cta h2 { margin: 0; }

@media (max-width: 1160px) {
  .identity,
  .evolve,
  .values,
  .steps-head {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-art {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .about-wrap {
    padding: 0 0.45rem;
    gap: 0.8rem;
  }

  .panel {
    border-radius: 16px;
  }

  .identity-left {
    min-height: 280px;
  }

  .years-logo {
    margin-top: 0.8rem;
    width: min(360px, 92%);
  }

  .years-card {
    position: static;
    margin-bottom: 0.8rem;
    max-width: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .member .avatar {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 560px) {
  .about-wrap {
    padding: 0 0.35rem;
    gap: 0.7rem;
  }

  .hero {
    min-height: 180px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .identity-left,
  .identity-right,
  .evolve,
  .values,
  .team,
  .steps,
  .cta {
    padding: 0.9rem;
  }

  .value-card {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .value-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    font-size: 1.45rem;
  }

  .member .avatar {
    width: 104px;
    height: 104px;
  }

  .callout {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .about-wrap {
    padding: 0 0.25rem;
  }

  .panel {
    border-radius: 14px;
  }

  .hero h1 {
    font-size: clamp(1.52rem, 8.6vw, 2.05rem);
  }

  .team-head h2,
  .steps-head h2,
  .identity-right h2,
  .values-right h2 {
    font-size: clamp(1.5rem, 8.2vw, 2rem);
  }
}
