
:root{
  color-scheme: dark;

  --bg: #0B1220;
  --surface: #0F172A;
  --surface-2: #111C33;
  --surface-3: #0D1528;

  --text: #E5E7EB;
  --muted: rgba(229,231,235,.68);

  --border: rgba(255,255,255,.08);
  --border-2: rgba(255,255,255,.12);

  --accent: #3B82F6;
  --accent-2: #2563EB;

  --shadow-sm: 0 10px 24px rgba(0,0,0,.35);
  --shadow: 0 18px 45px rgba(0,0,0,.50);

  --radius: 18px;
  --radius-sm: 14px;

  --ring: 0 0 0 4px rgba(59,130,246,.28);

  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
}

*{ box-sizing: border-box; }
img{ max-width: 100%; height: auto; display: block; }

.about{
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
}

.about-container{
  width: min(80%, 92vw);
  margin: 0 auto;
  padding: 0 12px;
}


.about-hero{
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.about-hero__inner{
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.about-kicker{
  display: inline-flex;
  padding: .38rem .8rem;
  border-radius: 999px;
  font-weight: 950;
  font-size: .85rem;
  letter-spacing: .2px;

  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: rgba(229,231,235,.92);
}

.about-title{
  margin: .8rem 0 .4rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  text-wrap: balance;
}

.about-subtitle{
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  text-wrap: balance;
}

.about-hero__actions{
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}


.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.05rem;
  border-radius: 12px;
  font-weight: 950;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, background .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.about-btn:active{ transform: translateY(1px); }

.about-btn--primary{
  background: var(--accent);
  color: #fff;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 14px 28px rgba(59,130,246,.18);
}
.about-btn--primary:hover{
  background: var(--accent-2);
  transform: translateY(-2px);
}

.about-btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: rgba(229,231,235,.92);
}
.about-btn--ghost:hover{
  background: rgba(255,255,255,.07);
  border-color: var(--border-2);
}

.about-btn--light{
  background: #fff;
  color: #0B1220;
  border-color: rgba(255,255,255,.12);
}
.about-btn--light:hover{ transform: translateY(-2px); }

.about-btn--ghostLight{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.about-btn--ghostLight:hover{ background: rgba(255,255,255,.08); }


.about-section{
  padding: clamp(2.1rem, 4.5vw, 3.5rem) 0;
}

.about-section__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.about-h2{
  margin: 0 0 .6rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.about-muted{
  margin: 0;
  color: var(--muted);
}


.about-grid{
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.about-grid--2{ grid-template-columns: 1fr; }

@media (min-width: 900px){
  .about-grid--2{
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
  }
}

.about-story__content p{
  margin: 0 0 .9rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-bullets{
  margin-top: 1.35rem;
  display: grid;
  gap: .75rem;
}

.about-bullet{
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  color: rgba(229,231,235,.92);
}

.about-story__media{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-story__media img{
  width: 100%;
  height: clamp(260px, 32vw, 460px);
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.about-caption{
  padding: .95rem 1rem;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,.06);
}

.about-stats{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px){
  .about-stats{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.about-stat{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.about-stat:hover{
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}

.about-stat__icon{
  width: 46px;
  height: 46px;
  margin: 0 auto .75rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(59,130,246,.14);
  border: 1px solid rgba(59,130,246,.28);
}

.about-stat__value{
  font-size: 1.65rem;
  font-weight: 950;
  color: #fff;
  margin-bottom: .15rem;
  letter-spacing: -0.02em;
}

.about-stat__label{
  color: var(--muted);
  font-weight: 750;
}

.about-values{
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}

@media (min-width: 700px){
  .about-values{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px){
  .about-values{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.about-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align: center;
}

.about-card:hover{
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}

.about-card h3{
  margin: 0 0 .55rem;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(229,231,235,.95);
}

.about-card p{
  margin: 0;
  color: var(--muted);
}

.about-cta{
  margin: 1.4rem 0 4rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2); 
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-cta__inner{
  padding: clamp(1.5rem, 4vw, 2.75rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-cta__title{
  color: rgba(229,231,235,.98);
}

.about-cta__text{
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.about-cta__actions{
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

:where(.about a, .about button):focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-radius: 12px;
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}
/* Center the "Our Story" block */
.about-story .about-grid--2{
  justify-items: center; /* centers items in the grid area */
}

.about-story__content{
  width: min(860px, 100%); /* keeps a nice readable width */
  margin-inline: auto;
}

/* when the grid switches to 2 columns, make the content span both */
@media (min-width: 900px){
  .about-story__content{
    grid-column: 1 / -1;
  }
}
