.s-wrap {
      padding: clamp(4rem,8vw,6.5rem) clamp(1.5rem,6vw,5rem);
      max-width: 1200px; margin: 0 auto;
    }
    .s-label {
      font-size: 7px; letter-spacing: .28em; color: rgba(255,255,255,.9);
      margin-bottom: 2.8rem; display: flex; align-items: center; gap: 14px;
      text-transform: uppercase;
    }
    .s-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07); }
    .s-label span.s-num { color: var(--accent); font-size: 10px; }
    .s-divider { height: 1px; background: rgba(255,255,255,.06); margin: 0 clamp(1.5rem,6vw,5rem); }

    /* ── About ── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,5rem);
      align-items: start;
    }
    .about-heading {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: clamp(2rem,4.5vw,3.4rem); line-height: 1.05;
      letter-spacing: -.02em; color: #fff; margin-bottom: 1.4rem;
    }
    .about-heading em { font-style: italic; font-weight: 400; color: var(--accent); opacity: .7; }
    .about-text {
      font-size: clamp(.82rem,1.2vw,.92rem); color: rgba(180,210,230,.58);
      line-height: 1.85; letter-spacing: .01em; font-weight: 300;
    }
    .about-text p + p { margin-top: 1rem; }
    .spec-list { display: flex; flex-direction: column; gap: 0; }
    .spec-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06);
      overflow: hidden;
    }
    .spec-row:first-child { border-top: 1px solid rgba(255,255,255,.06); }
    .spec-key { font-size: 7.5px; letter-spacing: .2em; color: rgba(255,255,255,.28); text-transform: uppercase; }
    .spec-val { font-size: 7.5px; letter-spacing: .15em; color: var(--accent); text-align: right; }
    .spec-val.typing::after { content: '▌'; animation: blink .7s step-end infinite; }
    @keyframes blink { 50% { opacity: 0; } }

    /* ── Stats bar ── */
    .stat-block {
      display: flex; gap: clamp(2rem,5vw,4rem);
      padding: clamp(2.5rem,5vw,4rem) 0;
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .stat-item { display: flex; flex-direction: column; gap: .4rem; }
    .stat-num {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(1.8rem,4vw,3rem); letter-spacing: -.03em; color: var(--accent);
    }
    .stat-label {
      font-size: 7px; letter-spacing: .18em; color: rgba(255,255,255,.28); text-transform: uppercase;
    }