/**
 * We Support Web — About Page
 * Page-specific styles only.
 * Base: nav, buttons, footer, section-head, eyebrow, cta-band, reveal
 * are all inherited from front-page.css.
 */

/* ============================================================
   HERO
   ============================================================ */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(45,215,143,.20), rgba(45,215,143,0) 70%);
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(31,110,140,.14), rgba(31,110,140,0) 70%);
  pointer-events: none;
}
.about-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.about-hero h1 {
  margin: 22px 0 24px;
}
.about-hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-hero .lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 36px;
}
.about-hero .lead strong {
  color: var(--ink);
  font-weight: 600;
}

/* stat strip */
.about-stats {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}
@media (min-width: 760px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}
.about-stat .v {
  font-family: 'Noto Sans Mono', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--teal);
  letter-spacing: -.02em;
}
.about-stat .v .suffix {
  color: var(--mint-600);
}
.about-stat .k {
  margin-top: 8px;
  font-size: .86rem;
  color: var(--muted);
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .story-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
}
.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.story-copy p strong {
  color: var(--ink);
  font-weight: 600;
}
.story-copy .kicker {
  font-family: 'Noto Sans Mono', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.25rem;
  margin: 6px 0 18px;
  line-height: 1.35;
}

/* journey timeline */
.journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--mint), var(--teal));
}
.jrow {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}
.jrow .node {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--teal);
  position: relative;
  z-index: 1;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.jrow:hover .node {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--mint-600);
}
.jrow .jc h4 {
  font-family: 'Noto Sans Mono', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.jrow .jc p {
  font-size: .92rem;
  color: var(--muted);
}
.jrow .jc .when {
  font-family: 'M PLUS 1 Code', monospace;
  font-size: .68rem;
  color: var(--teal);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

/* ============================================================
   AI + HUMAN BAND
   ============================================================ */
.human {
  background: var(--teal-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.human::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(45,215,143,.18), transparent 70%);
}
.human .container { position: relative; z-index: 1; }
.human .wrap { max-width: 840px; }
.human h2 { color: #fff; margin-bottom: 22px; }
.human h2 .grad {
  background: linear-gradient(110deg, var(--mint), #9AF1C6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.human p { color: rgba(255,255,255,.80); font-size: 1.1rem; margin-bottom: 18px; }
.human p strong { color: #fff; font-weight: 600; }
.balance {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}
@media (min-width: 760px) {
  .balance { grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
}
.bcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 24px;
  backdrop-filter: blur(6px);
}
.bcard .bh { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bcard .bi {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(45,215,143,.16);
  color: var(--mint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bcard h4 {
  font-family: 'Noto Sans Mono', sans-serif;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}
.bcard ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.bcard li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: rgba(255,255,255,.78); }
.bcard li svg { flex-shrink: 0; margin-top: 3px; color: var(--mint); }
.plus {
  display: grid;
  place-items: center;
  font-family: 'Noto Sans Mono', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--mint);
  padding: 6px 0;
}

/* ============================================================
   MISSION / VISION
   ============================================================ */
.mv { background: var(--bg); }
.mv-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .mv-grid { grid-template-columns: 1fr 1fr; } }
.mv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 34px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.mv-card::after {
  content: "";
  position: absolute;
  inset: auto auto -40% -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(45,215,143,.12), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.mv-card:hover::after { opacity: 1; }
.mv-card .ic {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--mint-100), #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.mv-card.vision .ic { background: linear-gradient(135deg, #E0F0F5, #fff); }
.mv-card .mono { color: var(--teal); display: block; margin-bottom: 10px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; position: relative; z-index: 1; }
.mv-card p { color: var(--muted); font-size: 1.02rem; position: relative; z-index: 1; margin-bottom: 12px; }
.mv-card p:last-child { margin-bottom: 0; }

/* ============================================================
   WHAT MAKES US DIFFERENT (comparison)
   ============================================================ */
.different {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cmp { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .cmp { grid-template-columns: repeat(3, 1fr); } }
.cmp-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  background: #fff;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.cmp-card .tag {
  font-family: 'M PLUS 1 Code', monospace;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmp-card h3 { font-size: 1.2rem; margin: 10px 0 16px; }
.cmp-card p { color: var(--muted); font-size: .95rem; }
.cmp-card.them { opacity: .82; }
.cmp-card.them .focus {
  font-family: 'Noto Sans Mono', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}
.cmp-card.us {
  border-color: transparent;
  background: linear-gradient(180deg, #fff, #F6FAFA);
  box-shadow: 0 0 0 2px var(--mint), var(--shadow-md);
}
.cmp-card.us:hover { transform: translateY(-4px); box-shadow: 0 0 0 2px var(--mint), var(--shadow-lg); }
.cmp-card .cmp-badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--mint);
  color: var(--teal-900);
  font-family: 'M PLUS 1 Code', monospace;
  font-size: .68rem;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.cmp-card .icowrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.cmp-card.them .icowrap { background: #F2F6F6; color: var(--muted); }
.cmp-card.us .icowrap { background: var(--mint-100); color: var(--mint-600); }
.cmp-card.us .focus {
  font-family: 'Noto Sans Mono', sans-serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.15rem;
}
.different .closer {
  margin-top: 32px;
  padding: 24px 28px;
  background: #F6FAFA;
  border: 1px dashed var(--line);
  border-radius: 16px;
  font-size: 1.02rem;
  color: var(--ink);
  max-width: 840px;
}
.different .closer strong { color: var(--teal); }

/* ============================================================
   CORE VALUES
   ============================================================ */
.values { background: var(--bg); }
.val-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .val-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .val-grid { grid-template-columns: repeat(3, 1fr); } }
.val {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.val:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.val .num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'M PLUS 1 Code', monospace;
  font-size: .72rem;
  color: var(--line);
  transition: color .25s;
  font-weight: 500;
}
.val:hover .num { color: var(--mint); }
.val .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint-100), #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 20px;
  transition: transform .25s;
}
.val:hover .ic { transform: rotate(-6deg) scale(1.05); }
.val:nth-child(2) .ic { background: linear-gradient(135deg, #E0F0F5, #fff); }
.val:nth-child(3) .ic { background: linear-gradient(135deg, #FFF1E5, #fff); }
.val:nth-child(4) .ic { background: linear-gradient(135deg, #ECEAFB, #fff); }
.val:nth-child(5) .ic { background: linear-gradient(135deg, #E6FAF1, #fff); }
.val:nth-child(6) .ic { background: linear-gradient(135deg, #EAF2F5, #fff); }
.val h3 { margin-bottom: 8px; }
.val p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.closing {
  background: #fff;
  border-top: 1px solid var(--line);
}
.evolve {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}
.evolve .chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .92rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.evolve .chip svg { color: var(--mint-600); }
