/* ============================================================
   Simply ICT — design system
   Dark, premium, electric-accent. No frameworks, no webfonts.
   Fonts: system stack. Swap in brand fonts via @import if desired.
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #060b16;
  --bg-2: #0a1322;
  --surface: #0c1626;
  --surface-2: #101d31;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(148, 163, 184, 0.28);

  /* Text */
  --text: #eaf1fb;
  --text-soft: #c3cee0;
  --muted: #8ea0b8;

  /* Accent */
  --a1: #3b82f6;
  --a2: #22d3ee;
  --a-grad: linear-gradient(120deg, #3b82f6 0%, #22d3ee 100%);
  --a-ink: #0a1220;
  --glow: rgba(59, 130, 246, 0.35);
  --glow-2: rgba(34, 211, 238, 0.25);

  /* Shape & type */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --shadow: 0 18px 44px -18px rgba(2, 6, 16, 0.7);
  --shadow-a: 0 14px 34px -14px rgba(59, 130, 246, 0.5);
  --container: 1160px;
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; font-weight: 750; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: var(--a2); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: #7dd3fc; }
::selection { background: rgba(59, 130, 246, 0.4); color: #fff; }
:focus-visible { outline: 2px solid var(--a2); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
.icon { width: 1.25em; height: 1.25em; flex: none; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--a-grad); color: #fff; font-weight: 700;
  padding: 10px 16px; border-radius: 8px; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 650; font-size: 1rem;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--a-grad); color: #fff; box-shadow: var(--shadow-a); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(59, 130, 246, 0.65); }
.btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--text); border-color: var(--line-strong); backdrop-filter: blur(6px); }
.btn-ghost:hover { color: #fff; border-color: rgba(125, 211, 252, 0.5); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--a2); border-color: rgba(34, 211, 238, 0.4); }
.btn-outline:hover { border-color: var(--a2); color: #7dd3fc; transform: translateY(-2px); }
.btn-sm { padding: 9px 15px; font-size: 0.92rem; border-radius: 10px; }
.btn-lg { padding: 15px 26px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9); }
.topbar { background: linear-gradient(90deg, rgba(59, 130, 246, 0.16), rgba(34, 211, 238, 0.08)); border-bottom: 1px solid var(--line); font-size: 0.86rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 6px; color: var(--text-soft); }
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-links a, .topbar-address, .topbar-hours { display: inline-flex; align-items: center; gap: 7px; color: inherit; }
.topbar-links a { color: var(--text-soft); }
.topbar-links a:hover { color: #fff; }
.topbar-links .icon, .topbar-hours .icon { color: var(--a2); width: 14px; height: 14px; }
.topbar-address .icon { color: var(--a2); width: 14px; height: 14px; }
.topbar-hours { color: var(--muted); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 13px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.brand-mark { width: 40px; height: 40px; filter: drop-shadow(0 6px 14px var(--glow)); flex: none; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { font-family: var(--display); font-size: 1.42rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-text span { background: var(--a-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.desktop-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.desktop-nav .nav-item { position: relative; }
.desktop-nav .nav-item > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 9px;
  color: var(--text-soft); font-weight: 550; font-size: 0.98rem;
}
.desktop-nav .nav-item > a:hover, .desktop-nav .nav-item.is-root-active > a { color: #fff; background: rgba(255, 255, 255, 0.06); }
.desktop-nav .nav-item > a[aria-current] { color: var(--a2); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 240px; margin: 0; padding: 8px; list-style: none;
  background: rgba(13, 22, 38, 0.98); border: 1px solid var(--line-strong); border-radius: 14px;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-item.has-children:hover .dropdown, .nav-item.has-children:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px; border-radius: 9px; color: var(--text-soft); font-size: 0.95rem;
}
.dropdown a:hover, .dropdown a.is-active { background: rgba(59, 130, 246, 0.14); color: #fff; }
.dropdown a.is-active::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--a2); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-strong); color: var(--text);
  cursor: pointer;
}
.burger .icon { width: 22px; height: 22px; }

.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 150;
  background: var(--bg-2); border-left: 1px solid var(--line-strong);
  padding: 18px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.28s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav[hidden] { display: none; }
html.js .mobile-nav[hidden] { display: block; }
html:not(.js) .mobile-nav { display: none; }
@media (max-width: 980px) {
  html:not(.js) .mobile-nav {
    display: block; position: static; inset: auto; width: auto; transform: none;
    background: transparent; border: none; box-shadow: none; padding: 2px 0 18px;
    overflow: visible;
  }
  html:not(.js) .mobile-nav .mobile-head, html:not(.js) .burger { display: none; }
  html:not(.js) .desktop-nav { display: none; }
}
.mobile-head { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li > a {
  display: block; padding: 13px 8px; color: var(--text); font-weight: 650; font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .m-sub { margin: 2px 0 8px 12px; }
.mobile-nav .m-sub a { display: block; padding: 9px 8px; color: var(--text-soft); border-left: 2px solid var(--line-strong); }
.mobile-nav .m-sub a.is-active { color: var(--a2); border-left-color: var(--a2); }
.mobile-foot { display: grid; gap: 10px; margin-top: 18px; }
.mobile-foot .btn { width: 100%; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: clip; }
.hero-home { padding-block: clamp(64px, 9vw, 120px) clamp(56px, 8vw, 100px); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.o1 { width: 520px; height: 520px; left: -160px; top: -180px; background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 65%); }
.o2 { width: 620px; height: 620px; right: -180px; bottom: -260px; background: radial-gradient(circle, rgba(34, 211, 238, 0.32), transparent 65%); }
.bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 78%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--text-soft); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 0.92rem; }
.hero-ticks span { display: inline-flex; align-items: center; gap: 7px; }
.hero-ticks .icon { width: 16px; height: 16px; color: #34d399; }

.hero-visual { position: relative; }
.hv-frame {
  position: relative; border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(16, 29, 49, 0.92), rgba(9, 16, 30, 0.9));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 22px;
}
.hv-top { display: flex; gap: 8px; margin-bottom: 20px; }
.hv-top span { width: 11px; height: 11px; border-radius: 50%; background: rgba(148, 163, 184, 0.3); }
.hv-top span:first-child { background: #f87171; } .hv-top span:nth-child(2) { background: #fbbf24; } .hv-top span:nth-child(3) { background: #34d399; }
.hv-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.hv-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52, 211, 153, 0.12); color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.3); border-radius: 999px;
  padding: 6px 12px; font-size: 0.82rem; font-weight: 650;
}
.hv-chip .icon { width: 14px; height: 14px; }
.hv-dot { width: 44px; height: 44px; border-radius: 12px; background: conic-gradient(from 180deg, #3b82f6, #22d3ee, #3b82f6); opacity: 0.9; box-shadow: 0 0 24px var(--glow); }
.hv-gauge { margin: 14px 0 16px; }
.hv-gauge i { display: block; height: 9px; border-radius: 99px; background: linear-gradient(90deg, #3b82f6, #22d3ee); width: var(--w); box-shadow: 0 0 18px var(--glow); }
.hv-gauge em { display: flex; justify-content: space-between; font-style: normal; font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.hv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hv-mini {
  border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, 0.03);
  padding: 12px 10px; font-size: 0.78rem; color: var(--text-soft); line-height: 1.4; text-align: center;
}
.hv-mini .icon { width: 18px; height: 18px; margin: 0 auto 7px; color: var(--a2); }
.hv-float {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13, 22, 38, 0.97); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 10px 15px; font-size: 0.85rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow); backdrop-filter: blur(8px); animation: float 6s ease-in-out infinite;
}
.hv-float .icon { color: var(--a2); width: 16px; height: 16px; }
.hv-float.f1 { bottom: -18px; left: -26px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Stats ---------- */
.stats-section { border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 12px; }
.stat-num { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1; letter-spacing: -0.03em; background: var(--a-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { display: block; margin-top: 10px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 92px); }
.section-tight { padding-block: 8px; }
.section-alt { background: linear-gradient(180deg, rgba(16, 29, 49, 0.35), rgba(16, 29, 49, 0.12)); border-block: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem; font-weight: 700;
  color: var(--a2); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--a-grad); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head .lead, .lead { color: var(--text-soft); font-size: 1.1rem; margin-top: 14px; }
.prose { max-width: 720px; }
.prose p { color: var(--text-soft); font-size: 1.05rem; }
.prose h2 { margin-top: 1.4em; }
.center-prose { margin-inline: auto; text-align: center; }

/* ---------- Pillars (home services) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  padding: 28px; color: var(--text);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, 0.45); box-shadow: 0 26px 50px -26px rgba(34, 211, 238, 0.35); color: var(--text); }
.pillar-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.pillar-arrow { color: var(--muted); transition: transform 0.22s ease, color 0.22s ease; }
.pillar:hover .pillar-arrow { transform: translateX(4px); color: var(--a2); }
.pillar p { color: var(--text-soft); font-size: 0.98rem; }
.pillar ul { list-style: none; margin: 4px 0 22px; padding: 0; display: grid; gap: 9px; }
.pillar ul li { display: flex; gap: 9px; color: var(--text-soft); font-size: 0.94rem; align-items: flex-start; }
.pillar ul li .icon { width: 15px; height: 15px; color: #34d399; margin-top: 5px; }
.pillar-cta { margin-top: auto; font-weight: 700; color: var(--a2); display: inline-flex; align-items: center; gap: 8px; }
.pillar-cta .icon { transition: transform 0.2s ease; }
.pillar:hover .pillar-cta .icon { transform: translateX(4px); }

/* ---------- Generic cards ---------- */
.cards { display: grid; gap: 18px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.card {
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  padding: 26px; color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.97rem; margin-bottom: 0; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(59, 130, 246, 0.13); border: 1px solid rgba(59, 130, 246, 0.28);
  color: var(--a2);
}
.card-icon .icon { width: 25px; height: 25px; }
.card:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.4); }
.card-link { display: flex; flex-direction: column; color: var(--text); text-decoration: none; }
.card-link:hover { color: var(--text); box-shadow: 0 24px 46px -26px rgba(34, 211, 238, 0.4); }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; }
.card-go { color: var(--muted); opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s, color 0.2s; }
.card-link:hover .card-go { opacity: 1; transform: none; color: var(--a2); }
.mini-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.mini-list li { display: flex; gap: 8px; font-size: 0.92rem; color: var(--text-soft); align-items: flex-start; }
.mini-list .icon { width: 15px; height: 15px; color: #34d399; margin-top: 4px; }
.card-more { margin-top: auto; padding-top: 18px; font-weight: 700; color: var(--a2); display: inline-flex; align-items: center; gap: 7px; }
.card-links { margin-top: 16px; display: flex; gap: 16px; flex-wrap: wrap; }
.arrow-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 650; color: var(--a2); }
.arrow-link .icon { width: 15px; height: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { border-left: 2px solid var(--line-strong); padding: 6px 0 6px 24px; position: relative; }
.step::before { content: ""; position: absolute; left: -5px; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--a-grad); }
.step-n { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--a2); letter-spacing: 0.06em; }
.step h3 { margin: 6px 0 8px; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Support card / split ---------- */
.support-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.35); border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.14), rgba(34, 211, 238, 0.08));
  padding: 28px;
}
.support-card .card-icon { margin: 0; background: rgba(34, 211, 238, 0.16); border-color: rgba(34, 211, 238, 0.4); color: var(--a2); }
.support-card h3 { margin-bottom: 4px; }
.support-card p { color: var(--text-soft); margin: 0; }
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.checklist-wrap h3 { margin-bottom: 16px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); font-size: 1rem; }
.checklist .icon { width: 19px; height: 19px; color: #34d399; margin-top: 3px; }
.side-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); padding: 26px; position: sticky; top: 108px;
}
.side-card h3 { margin-bottom: 14px; }
.side-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 4px; }
.side-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 12px; border-radius: 10px; color: var(--text-soft); font-weight: 550;
}
.side-list a:hover { background: rgba(59, 130, 246, 0.1); color: #fff; }
.side-list a.is-here { color: var(--a2); background: rgba(59, 130, 246, 0.13); }
.side-list .icon { width: 15px; height: 15px; opacity: 0.6; }
.side-card .btn { width: 100%; }

/* ---------- Media / photo placeholders ---------- */
.media {
  position: relative; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-lg); overflow: hidden; min-height: 380px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(59, 130, 246, 0.25), transparent 55%),
    radial-gradient(120% 100% at 85% 90%, rgba(34, 211, 238, 0.18), transparent 55%),
    linear-gradient(160deg, #0d1b31, #0a1322);
}
.media-about { min-height: 460px; }
.media-emblem { color: rgba(148, 163, 184, 0.5); }
.media-emblem .icon { width: 56px; height: 56px; }
.media-note {
  position: absolute; inset: auto 12px 12px auto;
  font-size: 0.7rem; letter-spacing: 0.04em; color: var(--muted);
  background: rgba(6, 11, 22, 0.72); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 999px; max-width: 70%; text-align: right;
}

/* ---------- Team ---------- */
.member-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { text-align: center; }
.member-photo {
  position: relative; aspect-ratio: 1; border-radius: var(--r-lg); margin-bottom: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.4); overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 15%, rgba(59, 130, 246, 0.28), transparent 55%),
    linear-gradient(160deg, #101d31, #0a1322);
}
.member-photo .media-note { inset: auto 8px 8px auto; font-size: 0.62rem; }
.member-role { color: var(--a2); font-weight: 650; margin-bottom: 4px; font-size: 0.95rem; }
.member-bio { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ---------- Hero inner ---------- */
.hero-inner {
  padding-block: clamp(40px, 6vw, 72px) clamp(36px, 5vw, 60px);
  background:
    radial-gradient(90% 140% at 85% -20%, rgba(59, 130, 246, 0.22), transparent 60%),
    linear-gradient(180deg, #0a1526, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero-inner h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.hero-inner .lead { max-width: 46em; }
.crumbs { margin-bottom: 22px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; font-size: 0.84rem; color: var(--muted); }
.crumbs li { display: flex; align-items: center; gap: 6px; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line-strong); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--a2); }
.crumbs span { color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-section { padding-block: clamp(44px, 6vw, 70px); }
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  border: 1px solid rgba(34, 211, 238, 0.3); border-radius: var(--r-lg);
  background:
    radial-gradient(90% 160% at 90% -40%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(70% 160% at 0% 140%, rgba(59, 130, 246, 0.22), transparent 60%),
    linear-gradient(120deg, #0d1b31, #0b1628);
  padding: clamp(28px, 4.5vw, 52px);
  box-shadow: var(--shadow);
}
.cta-copy h2 { margin-bottom: 8px; }
.cta-copy p { color: var(--text-soft); margin: 0; font-size: 1.05rem; max-width: 46em; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.detail-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 12px; }
.detail-card { display: flex; gap: 16px; align-items: flex-start; }
.detail-card .card-icon { margin: 0; flex: none; width: 46px; height: 46px; }
.detail-card .card-icon .icon { width: 22px; height: 22px; }
.detail-card h3 { margin-bottom: 2px; font-size: 1.02rem; }
.detail-card p { margin: 0; color: var(--muted); }
.detail-card a { color: var(--text); font-weight: 600; }
.detail-card a:hover { color: var(--a2); }
.contact-note {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  padding: 16px 18px; font-size: 0.95rem; color: var(--text-soft);
}
.contact-note p { margin: 0; }
.contact-note a { font-weight: 700; }
.form-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.form-card > p { color: var(--text-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; color: var(--text-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.98rem; color: var(--text);
  background: rgba(6, 11, 22, 0.6); border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 12px 14px; transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238ea0b8' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--a2); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18); }
.field input[aria-invalid="true"] { border-color: #f87171; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 14px 0 0; }
.field-error { color: #fca5a5; font-size: 0.82rem; margin-top: 5px; display: none; }
.field.has-error .field-error { display: block; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 0.95rem; }
.form-status.is-ok { display: block; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.4); color: #6ee7b7; }
.form-status.is-err { display: block; background: rgba(248, 113, 113, 0.12); border: 1px solid rgba(248, 113, 113, 0.4); color: #fca5a5; }

/* ---------- Legal ---------- */
.legal-note {
  display: inline-block; font-size: 0.85rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; margin-bottom: 22px;
}
.legal.prose h2 { font-size: 1.25rem; margin-top: 1.6em; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #050a13; padding-block: clamp(48px, 6vw, 72px) 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.f-brand .brand { margin-bottom: 16px; }
.f-brand p { color: var(--muted); font-size: 0.95rem; max-width: 30em; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px; color: var(--text-soft);
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s, color 0.18s, transform 0.18s;
}
.social:hover { color: #fff; border-color: var(--a2); transform: translateY(-2px); }
.social .icon { width: 18px; height: 18px; }
.f-col h3 { font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.f-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.f-col a { color: var(--text-soft); font-size: 0.96rem; }
.f-col a:hover { color: #fff; }
.f-contact ul li { color: var(--text-soft); font-size: 0.96rem; display: flex; gap: 9px; align-items: flex-start; }
.f-contact .icon { width: 16px; height: 16px; color: var(--a2); margin-top: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted); font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { color: var(--muted); }
.footer-bottom nav a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .hv-float.f1 { left: 8px; }
  .cards-2, .cards-3 { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .support-card { grid-template-columns: 1fr; }
  .topbar-hours { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards-2, .cards-3, .pillars, .steps, .member-grid, .form-row { grid-template-columns: 1fr; }
  .topbar-links { gap: 12px; font-size: 0.8rem; }
  .topbar-address { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-ticks { gap: 10px; flex-direction: column; }
  .nav-inner { gap: 10px; }
  .brand-text { font-size: 1.25rem; }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.honey { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Structural helpers ---------- */
.m-item { list-style: none; }
.hv-body { display: flex; flex-direction: column; }
.split-main > :not(:last-child) { margin-bottom: 1.6em; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info > .lead { color: var(--muted); }

/* ---------- 404 ---------- */
.nf { display: flex; align-items: center; min-height: 62vh; text-align: center; background:
  radial-gradient(90% 140% at 50% -10%, rgba(59, 130, 246, 0.18), transparent 60%),
  linear-gradient(180deg, #0a1526, var(--bg)); }
.nf-inner { max-width: 640px; }
.nf-code {
  font-family: var(--display); font-weight: 800; font-size: clamp(4.5rem, 14vw, 8rem);
  line-height: 1; margin: 0 0 10px; letter-spacing: -0.04em;
  background: var(--a-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nf .lead { color: var(--text-soft); }
.nf .hero-actions { justify-content: center; }
.nf-links { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin-top: 30px; font-weight: 600; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-section, .skip-link, .btn, .crumbs { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .section { padding-block: 12px; }
  .container { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}
