/* ========= Responsive About Page ========= */

/* Fluid gutters for the whole page */
:root{
    --page-pad-x: clamp(16px, 4vw, 32px);
  }
  
  /* ---------- HERO ---------- */
  .about-hero{
    padding: clamp(56px, 8vw, 96px) var(--page-pad-x) clamp(32px, 6vw, 56px);
    text-align: center;
    background:
      radial-gradient(1200px 500px at 50% -240px, rgba(49,161,196,.12), transparent 70%),
      #0f1015;
  }
  .about-hero h1{
    margin: 0 0 .6rem;
    color:#fff;
    font-weight:900;
    letter-spacing:.3px;
    font-size: clamp(1.9rem, 4.4vw, 3rem);
    line-height: 1.12;
  }
  .about-hero p.lead{
    margin: 0 auto;
    max-width: 62ch;                 /* comfortable text width */
    color:#cfd3de;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.65;
    opacity:.92;
  }
  .about-cta{
    margin-top: 1.25rem;
    padding: 0 var(--page-pad-x);
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ---------- SECTIONS ---------- */
  .section, #modes, #faq{
    padding: clamp(40px, 6vw, 72px) var(--page-pad-x);
    background: radial-gradient(1200px 500px at 50% -240px, rgba(49,161,196,.12), transparent 80%), #16181f;
  }
  .section.alt{ background:#191922; }
  
  .section h1,
  .section h2{
    margin: 0 auto 1rem;
    text-align: center;
    font-weight: 900;
    color:#fff;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.2;
  }
  .section p.section-lead{
    margin: 0 auto 1.5rem;
    max-width: 68ch;
    text-align: center;
    color:#cfd3de;
    opacity:.92;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.7;
  }
  
  /* ---------- GRIDS ---------- */
  /* Auto-fit columns from 280px up — no manual breakpoints needed */
  .grid{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Values layout: icon + text; centers nicely on small screens */
  .values .card{
    display: flex;
    gap: .9rem;
    align-items: flex-start;
  }

  

  .values .icon{
    width: 38px; height: 38px; flex: 0 0 38px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(49,161,196,.14);
    border: 1px solid rgba(49,161,196,.35);
  }
  @media (max-width: 640px){
    .values .card{ align-items: center; text-align: center; }
    .values .icon{ margin-inline: auto; }
  }
  
  /* ---------- CARDS ---------- */
  .card{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: clamp(14px, 2vw, 20px);
    color:#cfd3de;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
  }
  .card h3{
    margin: .2rem 0 .5rem;
    color:#fff;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  }
  .card p{ margin: 0; opacity:.92; }
  .card .meta{ font-size: .9rem; opacity:.86; }
  
  /* ---------- TIMELINE / MILESTONES ---------- */
  .timeline{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
  }
  .milestone{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .milestone .label{ color:#fff; font-weight: 800; }
  .badge{
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.12);
    color:#ffd9a6; background: rgba(255,169,40,.12);
  }
  .badge.ok{ color:#b9fbc0; background: rgba(76,175,80,.15); border-color: rgba(76,175,80,.3); }
  .badge.wip{ color:#a0e9ff; background: rgba(49,161,196,.18); border-color: rgba(49,161,196,.35); }
  .badge.soon{ color:#ffd9a6; background: rgba(255,169,40,.12); border-color: rgba(255,169,40,.35); }
  
  /* Stack badge below label on narrow screens so it never squishes */
  @media (max-width: 520px){
    .milestone{ flex-direction: column; align-items: flex-start; }
  }
  
  /* ---------- FAQ ---------- */
  .faq{ max-width: 900px; margin: 0 auto; }
  .faq details{
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    color:#cfd3de;
  }
  .faq summary{
    cursor: pointer;
    color:#fff;
    font-weight: 800;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
  }
  .faq p{ margin: .6rem 0 0; line-height: 1.65; }
  
  /* ---------- STAFF ---------- */
  .staff-grid{ /* auto-fit just like other grids */
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    max-width: 900px; margin: 0 auto;
  }
  .staff-card{
    text-align: center;
    padding: 18px;
    display: flex; flex-direction: column; align-items: center; gap: .45rem;
  }
  .staff-card img{ border-radius: 12px; width: 80px; height: 80px; object-fit: cover; }
  .role{ color:#ffa928; font-weight: 800; }
  
  /* ---------- Utility ---------- */
  .ip-copy{
    display:inline-flex; align-items:center; gap:.5rem;
    margin-top: .6rem;
    padding: .55rem .9rem;
    border-radius: 12px;
    background: rgba(255,169,40,.12);
    border: 1px solid rgba(255,169,40,.35);
    color:#ffd9a6; font-weight: 800; text-decoration: none;
  }
  .ip-copy:hover{ filter: brightness(1.05); }
  
  /* Big screens: let the radial glow breathe a bit more */
  @media (min-width: 1400px){
    .about-hero{
      background:
        radial-gradient(1600px 600px at 50% -260px, rgba(49,161,196,.12), transparent 70%),
        #0f1015;
    }
  }
  