/* About page (landing/about.html) */

.about-section #container{ display:flex; flex-direction:column; gap:3rem; }
.about-hero{ display:flex; flex-wrap:wrap; gap:2.5rem; align-items:stretch; justify-content:space-between; }
.monitor-wrap{ position:relative; width:min(520px, 100%); }
.monitor-wrap .monitor{ position:relative; width:100%; }
.monitor-wrap .monitor img.frame{ display:block; width:100%; position:relative; z-index:2; }
.monitor-wrap .screen{ position:absolute; top:-11.5%; left:-4.4%; width:101%; height:86%; z-index:1; overflow:hidden; perspective:1200px; }
.monitor-wrap .screen img{ position:absolute; inset:0; width:120%; height:120%; object-fit:cover; transform-origin:0 0; transform:matrix3d(0.787279, -0.08999, 0, -0.000148, -0.058631, 0.613159, 0, -3e-05, 0, 0, 1, 0, 66.9606, 118.957, 0, 1); opacity:0; transition:opacity 1s ease-in-out; }
.monitor-wrap .screen img.active{ opacity:1; }
.about-text{ flex:1 1 520px; max-width:520px; display:flex; flex-direction:column; gap:1.5rem; padding:2.25rem; border-radius:1.75rem; background:linear-gradient(135deg, rgba(0,136,155,.1), rgba(11,59,64,.05)); box-shadow:0 22px 55px rgba(8,107,120,.16); }
.about-text h1{ margin:0; font-size:clamp(2rem, 4vw, 2.8rem); font-weight:900; color:#0b3b40; }
.about-content{ display:grid; grid-template-columns:minmax(0, 1fr) minmax(0, 220px); gap:1.75rem; align-items:start; }
.about-description{ display:flex; flex-direction:column; gap:1.1rem; }
.about-description p{ margin:0; color:#475569; line-height:1.65; font-size:1.05rem; }
.about-controls{ display:flex; flex-direction:column; gap:1.5rem; }
.section-label{ display:block; font-size:.95rem; font-weight:700; letter-spacing:.02em; text-transform:uppercase; color:#0b3b40; margin-bottom:.65rem; }
.color-swatches{ display:flex; flex-wrap:wrap; gap:.75rem; }
.color-swatch{ width:38px; height:38px; border-radius:50%; border:2px solid transparent; outline:none; cursor:pointer; box-shadow:0 8px 18px rgba(8,107,120,.18); transition:transform .2s ease, box-shadow .2s ease; background:var(--swatch-color, #00889b); }
.color-swatch:focus-visible{ box-shadow:0 0 0 3px rgba(0,136,155,.35); }
.color-swatch:is(:hover, :focus-visible){ transform:translateY(-2px); }
.color-swatch[data-active="true"]{ border-color:#fff; box-shadow:0 0 0 3px rgba(0,136,155,.45); }
.feature-checklist{ display:flex; flex-direction:column; gap:.75rem; }
.feature-item{ display:flex; align-items:center; gap:.9rem; padding:.85rem 1rem; border-radius:1rem; background:#f0fbfc; border:1px solid rgba(0,136,155,.15); }
.feature-item input{ appearance:none; width:20px; height:20px; border-radius:6px; border:2px solid #0b3b40; display:grid; place-items:center; background:#fff; transition:background .2s ease, border-color .2s ease; }
.feature-item input:checked{ background:#0b3b40; border-color:#0b3b40; }
.feature-item input:checked::after{ content:""; width:9px; height:9px; border-radius:2px; background:#fff; }
.feature-item span{ font-size:1rem; color:#0b3b40; font-weight:600; }
.about-benefits{ display:grid; gap:1.25rem; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); }
.benefit-card{ background:#fff; border-radius:1.25rem; padding:1.5rem; box-shadow:0 18px 45px rgba(8,107,120,.12); }
.benefit-card h3{ margin:0 0 .5rem; font-size:1.2rem; color:#0b3b40; }
.benefit-card p{ margin:0; color:#475569; }

.about-section{ padding:3rem 0 4rem; }
.team-section{ padding:0 0 3rem; }
.team-section .shop-header{ margin-bottom:1rem; }
.team-grid{ display:grid; gap:1.75rem; grid-template-columns:repeat(auto-fit,minmax(260px,300px)); justify-content:center; }
.team-card{ background:#fff; border-radius:1.25rem; box-shadow:0 16px 40px rgba(8,107,120,.08); padding:1.5rem; display:flex; flex-direction:column; gap:1rem; max-width:300px; width:100%; margin:0 auto; }
.team-card img{ width:100%; max-height:220px; object-fit:cover; border-radius:1rem; }
.team-card h3{ margin:0; font-size:1.25rem; font-weight:800; color:#0b3b40; }
.team-role{ margin:.35rem 0; color:#00889b; font-weight:700; }
.team-short-bio{ margin:.5rem 0; color:#475569; white-space:pre-line; }
.team-bio{ margin:.5rem 0; color:#334155; }

@media (max-width:640px){
  .monitor-wrap{ margin:0 auto; }
  .monitor-wrap .screen{ top:-25.5%; left:-12.4%; width:104%; height:108%; }
  .about-text{ padding:1.75rem; }
  .about-content{ grid-template-columns:1fr; }
}
