/* ─── Electra Cyber Polska — one-pager · SERIOUS BAUHAUS (per-module) ─────────
   Each module designed independently in a shared modernist system:
   flat blocks, sharp edges, oversized Space Grotesk, subtle product/cyber
   background motifs (hex mesh, perimeter rings, node grid, segmentation grid,
   shield watermark). Electra blue + navy.
   Type: Space Grotesk (display) · Manrope (body) · IBM Plex Mono (labels)
──────────────────────────────────────────────────────────────────────────── */

:root {
  --navy:      #16324F;
  --navy-2:    #1E4468;
  --navy-deep: #0F2437;
  --blue:      #3A82CC;
  --blue-deep: #2E6DAE;
  --blue-soft: #7FB1E0;
  --ice:       #E7F0F8;
  --paper:     #F4F8FB;
  --white:     #FFFFFF;
  --ink:       #16324F;
  --text:      #3D4F60;
  --muted:     #6F8195;
  --line:      #16324F;
  --line-soft: #D6E1EC;
  --green:     #2FA36B;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 800px; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.16rem; font-weight: 600; letter-spacing: -0.015em; }

a { color: var(--blue-deep); }

/* ─── Shared helpers (used by modules that don't fully self-scope) ── */

.section { padding: 100px 0 0; }
.section-head { max-width: 720px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--blue);
  padding: 7px 13px; margin-bottom: 22px;
}
.eyebrow-dark { color: var(--white); background: rgba(255, 255, 255, 0.16); }

.lead { max-width: 620px; margin-top: 18px; font-size: 1.08rem; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 15px 28px; border-radius: 0; text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--navy); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--blue); }
.btn-white { background: var(--white); color: var(--blue-deep); }
.btn-white:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }

.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 0;
  background: var(--navy); color: var(--white); flex-shrink: 0;
}
.icon-tile-sm { width: 42px; height: 42px; background: var(--blue); }

a:focus-visible, .btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ─── Topbar (electra-website glass docking nav — preserved) ── */

.topbar {
  position: sticky; top: 0; z-index: 40;
  padding: 18px 24px 0;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar.is-docked { padding: 0; }
.topbar-inner {
  position: relative; width: 100%; border-radius: 0;
  background: rgba(18, 39, 62, 0.88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px -16px rgba(9, 22, 38, 0.6);
  transition: border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.is-docked .topbar-inner {
  border-radius: 0; background: rgba(13, 30, 49, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -18px rgba(9, 22, 38, 0.8);
}
.topbar-glow {
  position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(110deg, rgba(58, 130, 204, 0.5), rgba(120, 200, 235, 0.25), rgba(58, 130, 204, 0.5), rgba(120, 200, 235, 0.25));
  background-size: 300% 100%; filter: blur(9px); opacity: 0.5;
  z-index: -1; pointer-events: none; animation: navGlow 7s linear infinite;
}
.is-docked .topbar-glow { opacity: 0.28; }
@keyframes navGlow { 0% { background-position: 0% 0; } 100% { background-position: 300% 0; } }
.topbar-content {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 62px; padding: 0 18px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 40px; width: auto; display: block; }
.topnav { display: flex; gap: 2px; margin-left: auto; }
.topnav a {
  color: rgba(255, 255, 255, 0.82); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; padding: 8px 15px; border-radius: 0;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}
.topnav a:hover { color: #fff; background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }
.topbar-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.lang-switch {
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0; padding: 4px 5px;
}
.lang-switch a { color: rgba(255, 255, 255, 0.72); text-decoration: none; padding: 3px 9px; border-radius: 0; transition: color 0.15s ease, background-color 0.15s ease; }
.lang-switch a:hover { color: #fff; }
.lang-switch a.active { color: #fff; background: var(--blue); }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0; background: rgba(255, 255, 255, 0.1); color: #fff; cursor: pointer; flex-shrink: 0;
}
.nav-toggle-close { display: none; }
.menu-open .nav-toggle-open { display: none; }
.menu-open .nav-toggle-close { display: block; }
.mobile-menu {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease; margin: 0;
}
.topbar.menu-open .mobile-menu { max-height: 340px; opacity: 1; margin-top: 10px; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(13, 30, 49, 0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 0; padding: 12px;
  box-shadow: 0 20px 40px -20px rgba(9, 22, 38, 0.7);
}
.mobile-nav a { color: rgba(255, 255, 255, 0.86); text-decoration: none; font-weight: 600; font-size: 0.98rem; padding: 12px 14px; border-radius: 0; }
.mobile-nav a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 35;
  background: rgba(9, 22, 38, 0.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-scrim.is-visible { opacity: 1; visibility: visible; }

/* ============ HERO ============ */
.hero{ position: relative; overflow: hidden; background: var(--paper); padding: 168px 0 96px; border-bottom: 1px solid var(--line-soft); }
.hero__motif{ position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__mesh{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.06; color: var(--navy); }
.hero__rings{ position: absolute; top: 50%; right: -60px; width: min(760px, 68vw); height: auto; transform: translateY(-50%); opacity: 0.09; color: var(--navy); }
.hero__grid{ position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; gap: 64px; }
.hero__eyebrow{ display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-deep); padding: 8px 14px; background: var(--ice); border-left: 3px solid var(--blue); }
.hero__h1{ margin: 26px 0 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 3.7rem); line-height: 1.04; letter-spacing: -0.02em; color: var(--navy-deep); text-wrap: balance; }
.hero__h1 em{ font-style: normal; color: var(--blue); }
.hero__sub{ margin: 22px 0 0; max-width: 46ch; font-family: var(--font-body); font-weight: 400; font-size: 1.075rem; line-height: 1.65; color: var(--text); }
.hero__actions{ margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__btn{ display: inline-flex; align-items: center; justify-content: center; border-radius: 0; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0; text-transform: none; padding: 16px 30px; border: 1px solid transparent; text-decoration: none; transition: background-color .18s ease, color .18s ease, border-color .18s ease; }
.hero__btn--primary{ background: var(--navy); color: var(--white); border-color: var(--navy); }
.hero__btn--primary:hover{ background: var(--blue-deep); border-color: var(--blue-deep); }
.hero__btn--secondary{ background: transparent; color: var(--navy); border-color: var(--line); }
.hero__btn--secondary:hover{ background: var(--navy); color: var(--white); }
.hero__btn:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; }
.hero__points{ margin: 40px 0 0; padding: 24px 0 0; list-style: none; border-top: 1px solid var(--line-soft); display: grid; gap: 14px; }
.hero__points li{ display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--navy-deep); }
.hero__tick{ display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 26px; height: 26px; color: var(--blue); background: var(--ice); border-radius: 0; }
.hero__tick svg{ display: block; }
.hero__visual{ position: relative; display: flex; justify-content: center; }
.hero__stage{ position: relative; width: 100%; max-width: 520px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.hero__stage::before{ content: ""; position: absolute; inset: 6%; border: 1px solid var(--line-soft); border-radius: 50%; z-index: 0; }
.hero__illus{ position: relative; z-index: 1; width: 100%; height: auto; display: block; }
@media (max-width: 960px){
  .hero{ padding: 132px 0 72px; }
  .hero__grid{ grid-template-columns: 1fr; gap: 48px; }
  .hero__visual{ order: -1; }
  .hero__stage{ max-width: 380px; }
  .hero__rings{ top: 30%; right: 50%; transform: translate(50%, -50%); width: min(560px, 92vw); opacity: 0.07; }
  .hero__sub{ max-width: none; }
}
@media (max-width: 520px){ .hero__actions{ flex-direction: column; align-items: stretch; } .hero__btn{ width: 100%; } }

/* ============ STATS ============ */
.stats{ position: relative; isolation: isolate; overflow: hidden; background: var(--navy-deep); margin-top: -64px; padding: 88px 0; border-top: 3px solid var(--blue); }
.stats__bg{ position: absolute; inset: 0; z-index: -1; opacity: 0.12; pointer-events: none; }
.stats__bg svg{ width: 100%; height: 100%; display: block; }
.stats__inner{ position: relative; }
.stats__grid{ display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(127, 177, 224, 0.22); border-radius: 0; }
.stats__item{ position: relative; padding: 40px 40px 44px; border-left: 1px solid rgba(127, 177, 224, 0.22); }
.stats__item:first-child{ border-left: 0; }
.stats__index{ display: inline-block; font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.22em; color: var(--blue-soft); margin-bottom: 22px; }
.stats__index::before{ content: ""; display: inline-block; width: 22px; height: 2px; background: var(--blue); vertical-align: middle; margin-right: 12px; }
.stats__num{ font-family: var(--font-display); font-weight: 700; font-size: clamp(3.4rem, 6.5vw, 5.6rem); line-height: 0.92; letter-spacing: -0.02em; color: var(--white); margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.stats__item:first-child .stats__num{ color: var(--blue-soft); }
.stats__label{ margin: 0; font-family: var(--font-body); font-size: 0.95rem; line-height: 1.5; color: var(--ice); opacity: 0.82; max-width: 34ch; }
@media (max-width: 960px){
  .stats{ margin-top: -40px; padding: 64px 0; }
  .stats__grid{ grid-template-columns: 1fr; }
  .stats__item{ border-left: 0; border-top: 1px solid rgba(127, 177, 224, 0.22); padding: 34px 26px; }
  .stats__item:first-child{ border-top: 0; }
  .stats__num{ font-size: clamp(3rem, 14vw, 4.4rem); }
  .stats__label{ max-width: none; }
}

/* ============ PRODUCT ============ */
.prod{ position:relative; padding:100px 0 96px; background:var(--paper); color:var(--text); overflow:hidden; }
.prod__bg{ position:absolute; inset:0; z-index:0; pointer-events:none; background-image: linear-gradient(var(--navy) 1px,transparent 1px), linear-gradient(90deg,var(--navy) 1px,transparent 1px); background-size:56px 56px; opacity:.06; -webkit-mask-image:radial-gradient(ellipse 90% 70% at 50% 30%,#000 55%,transparent 100%); mask-image:radial-gradient(ellipse 90% 70% at 50% 30%,#000 55%,transparent 100%); }
.prod__inner{ position:relative; z-index:1; }
.prod__head{ max-width:760px; margin-bottom:56px; }
.prod__eyebrow{ display:inline-block; font-family:var(--font-display); font-weight:600; font-size:0.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--blue-deep); padding-bottom:10px; margin-bottom:22px; border-bottom:2px solid var(--blue); background:none; }
.prod__h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(30px,4.2vw,46px); line-height:1.06; letter-spacing:-.02em; color:var(--navy-deep); margin:0 0 20px; }
.prod__lead{ font-size:clamp(16px,1.6vw,18px); line-height:1.65; color:var(--text); margin:0; max-width:640px; }
.prod__topo{ margin-bottom:64px; }
.prod__topo-frame{ background:var(--white); border:1px solid var(--line); border-radius:0; box-shadow:14px 14px 0 -1px rgba(22,50,79,.06); }
.prod__topo-head{ display:flex; align-items:center; gap:14px; font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--navy-deep); padding:18px 26px; border-bottom:1px solid var(--line-soft); background:var(--ice); }
.prod__topo-kicker{ font-family:var(--font-mono); font-weight:500; font-size:11px; letter-spacing:.18em; color:var(--white); background:var(--navy); padding:4px 9px; }
.prod__topo-stage{ padding:40px 26px; background: linear-gradient(var(--line-soft) 1px,transparent 1px) 0 0/100% 34px, var(--white); display:flex; justify-content:center; }
.prod__topo-illus{ display:block; width:100%; max-width:820px; height:auto; }
.prod__topo-foot{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px; padding:18px 26px; border-top:1px solid var(--line-soft); }
.prod__topo-caption{ margin:0; font-size:14px; line-height:1.5; color:var(--muted); max-width:60ch; }
.prod__legend{ display:flex; gap:26px; flex-wrap:wrap; }
.prod__legend-item{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-mono); font-weight:500; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--navy-deep); }
.prod__lg{ display:inline-block; width:22px; height:0; border-top:3px solid; }
.prod__lg--open{ border-color:var(--muted); }
.prod__lg--sec{ border-color:var(--green); }
.prod__features{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line); background:var(--line-soft); }
.prod__feature{ position:relative; background:var(--white); padding:34px 28px 36px; border-top:3px solid var(--navy); outline:1px solid var(--line-soft); transition:background .18s ease; }
.prod__feature:hover{ background:var(--paper); }
.prod__index{ display:block; font-family:var(--font-mono); font-weight:500; font-size:12px; letter-spacing:.18em; color:var(--blue-deep); margin-bottom:24px; }
.prod__tile{ display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:0; background:var(--ice); border:1px solid var(--line); color:var(--navy-deep); margin-bottom:22px; }
.prod__tile svg{ width:24px; height:24px; display:block; }
.prod__f-h{ font-family:var(--font-display); font-weight:600; font-size:18px; line-height:1.25; letter-spacing:-.01em; color:var(--navy-deep); margin:0 0 12px; }
.prod__f-p{ font-size:14.5px; line-height:1.6; color:var(--text); margin:0; }
@media (max-width:1180px){ .prod__features{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:960px){ .prod{ padding:76px 0 72px; } .prod__features{ grid-template-columns:1fr; } .prod__topo-foot{ flex-direction:column; align-items:flex-start; } }

/* ============ SECTORS ============ */
.sect{ background:var(--paper); }
.sect .section-head{ margin-bottom:46px; }
.sect__grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
.sect__card{
  position:relative; overflow:hidden;
  display:flex; flex-direction:column;
  background:var(--white); border:1px solid var(--line-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* left accent bar that fills in on hover */
.sect__card::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:0; background:var(--blue); z-index:2; transition:width .18s ease; }
.sect__art{
  display:flex; align-items:center; justify-content:center;
  min-height:184px; padding:26px 24px;
  background:linear-gradient(180deg, #F3F8FC 0%, var(--ice) 100%);
  border-bottom:1px solid var(--line-soft);
}
.sect__art img{ display:block; width:auto; max-width:100%; max-height:132px; height:auto; transition:transform .2s ease; }
.sect__bar{ display:flex; align-items:center; gap:14px; padding:20px 24px; }
.sect__index{ font-family:var(--font-mono); font-weight:500; font-size:12px; letter-spacing:0.1em; color:var(--blue-deep); flex-shrink:0; }
.sect__label{ font-family:var(--font-display); font-weight:600; font-size:1.06rem; line-height:1.2; letter-spacing:-0.01em; color:var(--navy); }
.sect__card:hover{ transform:translateY(-4px); border-color:#C4D6E6; box-shadow:0 20px 36px -22px rgba(22,50,79,0.42); }
.sect__card:hover::before{ width:5px; }
.sect__card:hover .sect__art img{ transform:scale(1.05); }
@media (max-width: 900px){ .sect__grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width: 540px){ .sect__grid{ grid-template-columns:1fr; } .sect__art{ min-height:200px; } }
@media (prefers-reduced-motion: reduce){ .sect__card, .sect__art img{ transition:none; } .sect__card:hover{ transform:none; } }

/* ============ COMPLIANCE (full-width band) ============ */
.cmp{ position: relative; overflow: hidden; margin-top: clamp(64px, 8vw, 100px); background: var(--navy-deep); background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); padding: clamp(64px, 8vw, 104px) 0; border-top: 3px solid var(--blue); border-bottom: 3px solid var(--blue); }
.cmp__motif{ position: absolute; inset: 0; z-index: 0; opacity: 0.12; pointer-events: none; }
.cmp__motif svg{ width: 100%; height: 100%; display: block; }
.cmp__inner{ position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: start; }
.cmp__head{ max-width: 30ch; }
.cmp__h2{ font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.08; letter-spacing: -0.01em; margin: 18px 0 20px; }
.cmp__lead{ font-family: var(--font-body); color: var(--blue-soft); font-size: 1.02rem; line-height: 1.6; margin: 0; max-width:none; }
.cmp__ledger{ list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(127, 177, 224, 0.28); }
.cmp__row{ position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 22px 4px 22px 2px; border-bottom: 1px solid rgba(127, 177, 224, 0.28); transition: background-color 0.25s ease, padding-left 0.25s ease; }
.cmp__row:hover{ background: rgba(58, 130, 204, 0.10); padding-left: 12px; }
.cmp__idx{ font-family: var(--font-mono); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--blue); min-width: 2.4ch; }
.cmp__std{ font-family: var(--font-mono); font-weight: 500; color: var(--white); font-size: 0.98rem; line-height: 1.45; letter-spacing: 0.01em; }
.cmp__mark{ width: 10px; height: 10px; background: var(--blue); border-radius: 0; flex: none; }
.cmp__row:hover .cmp__mark{ background: var(--blue-soft); }
@media (max-width: 960px){ .cmp__inner{ grid-template-columns: 1fr; gap: 36px; } .cmp__head{ max-width: none; } .cmp__motif{ opacity: 0.09; } }
@media (prefers-reduced-motion: reduce){ .cmp__row{ transition: none; } .cmp__row:hover{ padding-left: 2px; } }

/* ============ AUDIT ============ */
.aud{ --aud-illus-h: 150px; }
.aud .aud__inner{ position: relative; overflow: hidden; border-radius: 0; padding: clamp(56px, 7vw, 104px) clamp(28px, 5vw, 72px); background: linear-gradient(158deg, var(--blue-deep) 0%, var(--navy) 58%, var(--navy-deep) 100%); color: var(--white); }
.aud__motif{ position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(130% 100% at 82% 0%, #000, transparent 72%); mask-image: radial-gradient(130% 100% at 82% 0%, #000, transparent 72%); }
.aud__head{ position: relative; max-width: 760px; }
.aud__h2{ font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.08; letter-spacing: -.01em; margin: .55rem 0 0; }
.aud__lead{ font-family: var(--font-body); color: var(--blue-soft); font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.6; margin: 1rem 0 0; max-width: 62ch; }
.aud__steps{ position: relative; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; margin-top: clamp(40px, 5vw, 64px); }
.aud__link{ align-self: start; width: 56px; height: 2px; margin-top: calc(var(--aud-illus-h) / 2); background: repeating-linear-gradient(90deg, var(--blue-soft) 0 9px, transparent 9px 17px); opacity: .75; }
.aud__step{ position: relative; display: flex; flex-direction: column; }
.aud__illus{ display: flex; align-items: center; justify-content: center; height: var(--aud-illus-h); padding: 22px; background: var(--white); border-radius: 0; border-top: 3px solid var(--blue); transition: transform .25s ease, box-shadow .25s ease; }
.aud__illus img{ max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; }
.aud__step:hover .aud__illus{ transform: translateY(-4px); box-shadow: 0 14px 30px rgba(15, 36, 55, .35); }
.aud__num{ display: block; font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .16em; color: var(--blue-soft); margin-top: 20px; }
.aud__title{ display: block; font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 1.2rem; line-height: 1.25; margin-top: 10px; }
.aud__sub{ display: block; font-family: var(--font-body); color: var(--ice); font-size: .95rem; line-height: 1.55; margin-top: 8px; opacity: .88; }
.aud__cta{ position: relative; margin-top: clamp(40px, 5vw, 64px); }
.aud__btn{ border-radius: 0; letter-spacing: .02em; }
@media (max-width: 960px){ .aud__steps{ grid-template-columns: 1fr; } .aud__link{ width: 2px; height: 36px; margin: 6px 0; justify-self: center; background: repeating-linear-gradient(180deg, var(--blue-soft) 0 9px, transparent 9px 17px); } }
@media (prefers-reduced-motion: reduce){ .aud__illus{ transition: none; } .aud__step:hover .aud__illus{ transform: none; box-shadow: none; } }

/* ============ CLOSING SUITE — ABOUT / CONTACT / FOOTER ============ */
.abt__inner, .cnt__inner, .ftr__inner{ max-width:1180px; margin:0 auto; padding:0 32px; position:relative; z-index:1; }
.abt__eyebrow,.cnt__eyebrow{ display:inline-block; font-family:var(--font-display); font-weight:600; font-size:0.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--blue-deep); padding-left:14px; border-left:3px solid var(--blue); margin-bottom:20px; }
.abt__h2,.cnt__h2{ font-family:var(--font-display); font-weight:700; font-size:clamp(28px,4vw,42px); line-height:1.08; letter-spacing:-.01em; color:var(--navy); margin:0 0 16px; }
.abt__lead,.cnt__lead{ font-family:var(--font-body); font-size:clamp(16px,1.6vw,18px); line-height:1.6; color:var(--text); max-width:60ch; margin:0; }
.abt{ position:relative; background:var(--paper); padding:clamp(72px,9vw,120px) 0; border-top:1px solid var(--line-soft); overflow:hidden; }
.abt::before{ content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(22,50,79,.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(22,50,79,.05) 1px, transparent 1px); background-size:56px 56px; -webkit-mask-image:linear-gradient(180deg,transparent,#000 40%,#000 100%); mask-image:linear-gradient(180deg,transparent,#000 40%,#000 100%); pointer-events:none; }
.abt__head{ margin-bottom:56px; }
.abt__affil{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.abt__card{
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; align-items:flex-start; gap:24px;
  min-height:250px; padding:34px;
  text-decoration:none;
  border:1px solid var(--line-soft);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* brand-tinted grounds that harmonise with each logo */
.abt__card--electra{ background:linear-gradient(150deg, #EEF5FC 0%, #DBEBF8 100%); }
.abt__card--ruby{ background:linear-gradient(150deg, #FBF1F2 0%, #F5E2E4 100%); }
/* top accent bar in the brand colour */
.abt__card::after{ content:""; position:absolute; left:0; top:0; right:0; height:4px; z-index:3; }
.abt__card--electra::after{ background:var(--blue); }
.abt__card--ruby::after{ background:#C2303E; }
/* brand glow + motif */
.abt__glow{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.abt__card--electra .abt__glow{ background:radial-gradient(120% 130% at 108% -10%, rgba(58,130,204,0.28), transparent 55%); }
.abt__card--ruby .abt__glow{ background:radial-gradient(120% 130% at 108% -10%, rgba(194,48,62,0.22), transparent 55%); }
.abt__glow::before{
  content:""; position:absolute; right:-90px; top:-90px; width:260px; height:260px; border-radius:50%;
  border:28px solid rgba(255,255,255,0.28);
  box-shadow:0 0 0 22px rgba(255,255,255,0.16);
}
.abt__cap{ position:relative; z-index:1; font-family:var(--font-display); font-weight:600; font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; }
.abt__card--electra .abt__cap{ color:var(--blue-deep); }
.abt__card--ruby .abt__cap{ color:#B02A37; }
.abt__logo{ position:relative; z-index:1; display:block; height:46px; width:auto; max-width:82%; object-fit:contain; object-position:left center; }
.abt__logo--ruby{ height:54px; }
.abt__link{ position:relative; z-index:1; margin-top:auto; display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:600; font-size:0.95rem; color:var(--navy); }
.abt__link svg{ transition:transform .18s ease; }
.abt__card--electra .abt__link svg{ color:var(--blue); }
.abt__card--ruby .abt__link svg{ color:#C2303E; }
.abt__card:hover{ transform:translateY(-4px); border-color:transparent; box-shadow:0 24px 40px -22px rgba(22,50,79,0.4); }
.abt__card:hover .abt__link svg{ transform:translateX(4px); }
.cnt{ position:relative; background:var(--white); padding:clamp(72px,9vw,120px) 0; border-top:1px solid var(--line-soft); overflow:hidden; }
.cnt::before{ content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(22,50,79,.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(22,50,79,.04) 1px, transparent 1px); background-size:56px 56px; -webkit-mask-image:radial-gradient(120% 90% at 100% 0, #000, transparent 70%); mask-image:radial-gradient(120% 90% at 100% 0, #000, transparent 70%); pointer-events:none; }
.cnt__head{ margin-bottom:44px; }
.cnt__actions{ display:flex; flex-wrap:wrap; align-items:center; gap:28px 40px; padding-top:36px; border-top:1px solid var(--line); }
.cnt__btn{ display:inline-flex; align-items:center; gap:10px; padding:18px 34px; background:var(--navy); color:var(--white); font-family:var(--font-display); font-weight:700; font-size:16px; letter-spacing:.01em; text-decoration:none; border:1px solid var(--navy); transition:background .18s ease, border-color .18s ease; }
.cnt__btn svg{ transition:transform .18s ease; }
.cnt__btn:hover{ background:var(--blue-deep); border-color:var(--blue-deep); }
.cnt__btn:hover svg{ transform:translateX(4px); }
.cnt__email{ font-family:var(--font-display); font-weight:700; font-size:clamp(22px,3.4vw,36px); letter-spacing:-.01em; color:var(--navy); text-decoration:none; border-bottom:2px solid var(--line-soft); padding-bottom:4px; transition:color .18s ease, border-color .18s ease; }
.cnt__email:hover{ color:var(--blue); border-color:var(--blue); }
.ftr{ position:relative; background:var(--navy-deep); color:var(--ice); padding:clamp(64px,8vw,96px) 0 32px; overflow:hidden; }
.ftr::before{ content:""; position:absolute; right:-140px; bottom:-160px; width:560px; height:560px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 560 560'%3E%3Cg fill='none' stroke='%237FB1E0' stroke-width='1'%3E%3Ccircle cx='280' cy='280' r='90'/%3E%3Ccircle cx='280' cy='280' r='150'/%3E%3Ccircle cx='280' cy='280' r='210'/%3E%3Ccircle cx='280' cy='280' r='270'/%3E%3C/g%3E%3C/svg%3E"); background-repeat:no-repeat; opacity:.1; pointer-events:none; }
.ftr::after{ content:""; position:absolute; inset:0; background-image: linear-gradient(to right, rgba(127,177,224,.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(127,177,224,.06) 1px, transparent 1px); background-size:56px 56px; pointer-events:none; }
.ftr__top{ display:grid; grid-template-columns:1.4fr 1fr auto; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(127,177,224,.22); }
.ftr__brand{ max-width:34ch; }
.ftr__logo{ display:inline-block; }
.ftr__logo img{ height:34px; width:auto; display:block; }
.ftr__tagline{ margin:20px 0 0; font-family:var(--font-body); font-size:15px; line-height:1.6; color:var(--blue-soft); }
.ftr__nav{ display:flex; flex-direction:column; gap:12px; }
.ftr__nav a{ font-family:var(--font-mono); font-weight:500; font-size:13px; letter-spacing:.05em; color:var(--ice); text-decoration:none; width:max-content; padding-bottom:2px; border-bottom:1px solid transparent; transition:color .16s ease, border-color .16s ease; }
.ftr__nav a:hover{ color:#fff; border-color:var(--blue); }
.ftr__partner{ display:flex; flex-direction:column; align-items:flex-start; gap:16px; }
.ftr__partner-label{ font-family:var(--font-mono); font-weight:500; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--blue-soft); }
.ftr__partner-logo{ display:inline-block; opacity:0.82; transition:opacity .16s ease; }
.ftr__partner-logo:hover{ opacity:1; }
.ftr__partner-logo img{ height:34px; width:auto; display:block; }
.ftr__bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px 24px; padding-top:28px; }
.ftr__copy{ margin:0; font-family:var(--font-mono); font-size:12px; letter-spacing:.05em; color:var(--muted); }
.ftr__group-link{ font-family:var(--font-mono); font-size:12px; letter-spacing:.05em; color:var(--blue-soft); text-decoration:none; transition:color .16s ease; }
.ftr__group-link:hover{ color:#fff; }
@media (max-width:960px){
  .abt__affil{ grid-template-columns:1fr; }
  .ftr__top{ grid-template-columns:1fr 1fr; gap:40px; }
  .ftr__brand{ grid-column:1 / -1; }
}
@media (max-width:600px){
  .abt__inner,.cnt__inner,.ftr__inner{ padding:0 22px; }
  .cnt__actions{ flex-direction:column; align-items:flex-start; }
  .ftr__top{ grid-template-columns:1fr; }
  .ftr__bottom{ flex-direction:column; align-items:flex-start; }
}
@media (prefers-reduced-motion:reduce){
  .abt__card,.abt__link,.abt__link svg,.cnt__btn,.cnt__btn svg,.cnt__email,.ftr__nav a,.ftr__group-link{ transition:none; }
  .abt__card:hover{ transform:none; }
  .abt__card:hover .abt__link svg,.cnt__btn:hover svg{ transform:none; }
}

/* ─── Global motion + nav responsive ── */
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .topbar, .topbar-inner, .mobile-menu, .nav-scrim, .btn { transition: none; }
  .topbar-glow { animation: none; }
}
@media (max-width: 960px){ .topnav { display: none; } .nav-toggle { display: inline-flex; } }
@media (max-width: 560px){ .container { padding: 0 22px; } .section { padding-top: 76px; } }
