*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #eef2f6;
  --surface:       #ffffff;
  --surface-2:     #f6f8fb;
  --border:        rgba(15,23,42,.10);
  --border-strong: rgba(15,23,42,.18);
  --text:          #101726;
  --muted:         #5f6977;
  --faint:         #8591a1;
  --accent:        #01696f;
  --accent-h:      #0c4e54;
  --accent-glow:   rgba(1,105,111,.15);
  --shadow:        0 8px 30px rgba(15,23,42,.07);
  --radius:        10px;
  --wrap:          1000px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.ff-wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}

/* ─── Hero ─── */
.ab-hero {
  background: linear-gradient(160deg, #07101d 0%, #0c1e34 60%, #071a18 100%);
  color: #eaf0f6;
  padding: 20px 0 40px;
  position: relative; overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 90% 120%, rgba(1,105,111,.22) 0%, transparent 70%),
    radial-gradient(ellipse 250px 180px at 5% -10%, rgba(78,201,208,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ab-hero-inner { position: relative; }

.ab-breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; color: rgba(234,240,246,.45); margin-bottom: 18px;
}
.ab-breadcrumb a:hover { color: rgba(234,240,246,.75); }

.ab-kicker {
  display: inline-block; margin-bottom: 14px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(78,201,208,.10);
  border: 1px solid rgba(78,201,208,.22);
  color: #8ee8ed;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
}

.ab-hero h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.75rem, 1.1rem + 2.2vw, 2.9rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 12px; color: #eaf0f6;
}
.ab-hero .ab-lead {
  max-width: 64ch;
  color: rgba(234,240,246,.68); font-size: 1rem; line-height: 1.75;
  margin-bottom: 28px;
}

/* ─── Stat bar ─── */
.ab-stats {
  display: flex;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); overflow: hidden;
}
.ab-stat {
  flex: 1; padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ab-stat:last-child { border-right: none; }
.ab-stat-value {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #8ee8ed; line-height: 1;
}
.ab-stat-label {
  font-size: .75rem; color: rgba(234,240,246,.45);
  text-transform: uppercase; letter-spacing: .06em;
  font-weight: 600; margin-top: 3px;
}

/* ─── Body ─── */
.ab-body { padding: 40px 0 72px; }

/* ─── Mission section ─── */
.ab-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 28px;
}
.ab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.ab-card--accent {
  background: linear-gradient(160deg, rgba(1,105,111,.08), rgba(1,105,111,.02));
  border-color: rgba(1,105,111,.22);
}
.ab-card-icon {
  font-size: 1.8rem; margin-bottom: 12px; line-height: 1;
}
.ab-card h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.ab-card p {
  font-size: .93rem; color: var(--muted); line-height: 1.75;
}
.ab-card p + p { margin-top: 10px; }

/* ─── Feature grid ─── */
.ab-section-heading {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--text); margin-bottom: 6px;
}
.ab-section-sub {
  font-size: .92rem; color: var(--muted); margin-bottom: 20px;
}

.ab-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.ab-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: border-color .15s, box-shadow .15s;
}
.ab-feature:hover {
  border-color: rgba(1,105,111,.30);
  box-shadow: 0 12px 40px rgba(1,105,111,.08);
}
.ab-feature-icon {
  font-size: 1.5rem; margin-bottom: 10px; line-height: 1;
}
.ab-feature h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: .95rem; font-weight: 800;
  color: var(--text); margin-bottom: 6px;
}
.ab-feature p {
  font-size: .85rem; color: var(--muted); line-height: 1.65;
}

/* ─── Brands section ─── */
.ab-brands-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px; margin-bottom: 28px;
}
.ab-brands-section h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 14px;
}
.ab-brand-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ab-brand-chip {
  padding: 6px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: .82rem; font-weight: 700; color: var(--muted);
}

/* ─── Disclaimer / legal ─── */
.ab-disclaimer {
  background: rgba(15,23,42,.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.ab-disclaimer h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--faint); margin-bottom: 10px;
}
.ab-disclaimer p {
  font-size: .86rem; color: var(--muted); line-height: 1.75;
}
.ab-disclaimer p + p { margin-top: 8px; }
.ab-disclaimer a { color: var(--accent); font-weight: 600; }

/* ─── CTA strip ─── */
.ab-cta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  background: linear-gradient(100deg, #07101d 0%, #0b1f1e 100%);
  border-radius: var(--radius);
  padding: 28px 32px; margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.ab-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 300px 200px at 100% 50%, rgba(1,105,111,.25) 0%, transparent 70%);
  pointer-events: none;
}
.ab-cta-text { position: relative; }
.ab-cta-text h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 800; color: #eaf0f6;
  margin-bottom: 4px;
}
.ab-cta-text p { font-size: .9rem; color: rgba(234,240,246,.60); }
.ab-cta-btns {
  display: flex; gap: 10px; flex-wrap: wrap; position: relative;
}
.ab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 42px; padding: 0 18px;
  border-radius: 6px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: .92rem; font-weight: 700;
  transition: background .15s;
}
.ab-btn--primary { background: var(--accent); color: #fff; }
.ab-btn--primary:hover { background: var(--accent-h); }
.ab-btn--ghost { border: 1px solid rgba(255,255,255,.18); color: #eaf0f6; }
.ab-btn--ghost:hover { background: rgba(255,255,255,.06); }

/* ─── Responsive ─── */
@media (max-width: 840px) {
  .ab-features { grid-template-columns: 1fr 1fr; }
  .ab-mission  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ab-features { grid-template-columns: 1fr; }
  .ab-stats    { flex-wrap: wrap; }
  .ab-stat     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .ab-stat:last-child { border-bottom: none; }
  .ab-cta      { flex-direction: column; align-items: flex-start; }
}