
/* Agentic Growth Strategies. Dark-ground redesign, Aug 13 2026.
   Manrope kept per brand. Navy ground, teal used as line and glow.
   Left-aligned asymmetric layout, hairline fading rules, outlined buttons. */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #081527;
  --bg-deep: #060F1C;
  --panel: #0C1E36;
  --panel-2: #102540;
  --plate: #12283E;
  --line: rgba(122,160,198,0.16);
  --line-strong: rgba(122,160,198,0.30);
  --teal: #2FB8D8;
  --teal-deep: #14A0C0;
  --teal-glow: #4FD2F0;
  --text: #E7EEF6;
  --text-soft: #C2D2E2;
  --text-muted: #8CA3BC;
  --rule-fade: linear-gradient(90deg, rgba(47,184,216,0.85), rgba(47,184,216,0));
  --hairline-fade: linear-gradient(90deg, rgba(79,210,240,0.45), rgba(79,210,240,0.05) 60%, transparent);
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-soft);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--teal-glow); }
::selection { background: rgba(47,184,216,0.30); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }

.page { position: relative; background:
  radial-gradient(1200px 500px at 85% -100px, rgba(20,160,192,0.10), transparent 60%),
  var(--bg);
}

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,21,39,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(11,37,69,0) 0%, #14A0C0 45%, #2FB8D8 70%, rgba(79,210,240,0.9) 85%, rgba(79,210,240,0) 100%);
}
.site-header .shell {
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.site-logo { display: block; }
.logo-a {
  height: 1.40em;
  width: auto;
  vertical-align: baseline;
  margin-right: -0.12em;
  position: relative;
  bottom: -0.045em;
  filter: drop-shadow(0 2px 3px rgba(2,8,16,0.6)) drop-shadow(0 0 12px rgba(79,210,240,0.38));
}
.logo-name {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.18;
  white-space: nowrap;
  color: #ffffff;
  background: linear-gradient(110deg, #ffffff 60%, #A9E4F4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 2px rgba(2,8,16,0.55));
}
.logo-tag {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--teal-glow);
  white-space: nowrap;
}
.logo-tag::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #14A0C0, rgba(47,184,216,0.10));
  margin: 0 0 6px;
}
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--teal);
  transition: right 0.22s ease;
}
.site-nav a:hover { color: #ffffff; }
.site-nav a:hover::after { right: 0; }
.site-nav a.active { color: var(--teal-glow); }
.site-nav a.active::after { right: 0; background: var(--teal-glow); }
.site-nav a.nav-cta {
  border: 1px solid var(--teal);
  color: var(--teal-glow);
  border-radius: 8px;
  padding: 10px 18px;
  background: linear-gradient(180deg, rgba(47,184,216,0.10), rgba(47,184,216,0.02));
  transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.site-nav a.nav-cta::after { display: none; }
.site-nav a.nav-cta:hover {
  background: rgba(47,184,216,0.12);
  box-shadow: 0 0 22px rgba(47,184,216,0.35);
  color: #ffffff;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  padding: 7px 12px;
  cursor: pointer;
}

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 56px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 78% 18%, rgba(47,184,216,0.16), transparent 62%),
    radial-gradient(520px 380px at 92% 78%, rgba(20,160,192,0.10), transparent 65%);
  animation: glowDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(122,160,198,0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(640px 480px at 82% 40%, rgba(0,0,0,0.9), transparent 70%);
  -webkit-mask-image: radial-gradient(640px 480px at 82% 40%, rgba(0,0,0,0.9), transparent 70%);
  pointer-events: none;
}
@keyframes glowDrift {
  from { transform: translate3d(0,0,0); opacity: 0.85; }
  to   { transform: translate3d(-40px,24px,0); opacity: 1; }
}
.hero .shell { position: relative; z-index: 1; display: flex; gap: 48px; align-items: center; }
.hero-copy { flex: 1.2; min-width: 0; }
.hero-orbit {
  flex: none;
  position: relative;
  width: 330px;
  height: 330px;
  margin-right: 20px;
  opacity: 0.58;
}
.hero-orbit .ring {
  position: absolute;
  border: 1px solid rgba(79,210,240,0.10);
  border-radius: 50%;
}
.hero-orbit .r1 { inset: 0; }
.hero-orbit .r2 { inset: 13%; border-color: rgba(79,210,240,0.13); }
.hero-orbit .r3 { inset: 26%; border-color: rgba(79,210,240,0.16); }
.hero-orbit .r4 { inset: 39%; border-color: rgba(79,210,240,0.20); }
.hero-orbit .axis-h, .hero-orbit .axis-v {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(79,210,240,0.10) 30%, rgba(79,210,240,0.10) 70%, transparent);
}
.hero-orbit .axis-h { left: 0; right: 0; top: 50%; height: 1px; }
.hero-orbit .axis-v { top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(180deg, transparent, rgba(79,210,240,0.10) 30%, rgba(79,210,240,0.10) 70%, transparent); }
.hero-orbit .sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 285deg, rgba(47,184,216,0.02) 300deg, rgba(47,184,216,0.09) 345deg, rgba(79,210,240,0.18) 359deg, transparent 360deg);
  animation: orbitSweep 13s linear infinite;
}
.hero-orbit .sweep::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 1.5px; height: 50%;
  margin-left: -0.75px;
  background: linear-gradient(180deg, rgba(79,210,240,0.50), rgba(79,210,240,0.02));
}
.hero-orbit .core {
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 10px rgba(79,210,240,0.55), 0 0 24px rgba(47,184,216,0.28);
}
.hero-orbit .blip {
  position: absolute;
  width: var(--s, 7px);
  height: var(--s, 7px);
  margin: calc(var(--s, 7px) / -2) 0 0 calc(var(--s, 7px) / -2);
  border-radius: 50%;
  background: var(--teal);
  opacity: var(--dim, 0.28);
  animation: blipPing 13s linear infinite;
}
.hero-orbit .blip.big { background: var(--teal-glow); }
.hero-orbit .blip::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(79,210,240,0.40);
  opacity: 0;
  animation: blipRipple 13s linear infinite;
  animation-delay: inherit;
}
.hero-orbit .blip.big {
  background: var(--teal-glow);
}
@keyframes orbitSweep { to { transform: rotate(360deg); } }
@keyframes blipPing {
  0% { opacity: var(--peak, 1); box-shadow: 0 0 var(--gl, 16px) rgba(79,210,240,0.55); }
  7% { opacity: var(--peak, 1); box-shadow: 0 0 calc(var(--gl, 16px) * 0.75) rgba(79,210,240,0.4); }
  22% { opacity: calc(var(--dim, 0.28) + 0.06); box-shadow: none; }
  96% { opacity: var(--dim, 0.28); box-shadow: none; }
  100% { opacity: var(--peak, 1); box-shadow: 0 0 var(--gl, 16px) rgba(79,210,240,0.55); }
}
@keyframes blipRipple {
  0% { opacity: 0.9; transform: scale(0.4); }
  10% { opacity: 0; transform: scale(1.9); }
  100% { opacity: 0; transform: scale(1.9); }
}
.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
  background: linear-gradient(115deg, #ffffff 55%, #9FE4F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .hero-sub {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: clamp(16.5px, 1.9vw, 19px);
  line-height: 1.6;
  font-weight: 600;
  color: var(--text-soft);
}
.hero .hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.kicker-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.kicker-line .mark { width: 34px; height: 2px; background: var(--teal); }
.kicker-line span {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: 9px;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn-teal {
  background: transparent;
  color: var(--teal-glow);
  border: 1px solid var(--teal);
}
.btn-teal:hover {
  background: rgba(47,184,216,0.14);
  box-shadow: 0 0 28px rgba(47,184,216,0.40);
  color: #ffffff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--text-muted); color: #ffffff; transform: translateY(-1px); }

/* ---------------------------------------------------------------- sections */
.sec { padding: 44px 0 8px; }
.sec-head { display: flex; align-items: baseline; gap: 20px; margin: 0 0 26px; }
.sec-head .idx {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--teal);
}
.sec-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  white-space: nowrap;
}
.sec-head h2 .accent { color: var(--teal-glow); }
.sec-head .rule { flex: 1; height: 1px; background: var(--hairline-fade); position: relative; top: -6px; }

.page-head {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 320px at 88% 0%, rgba(47,184,216,0.13), transparent 60%);
  pointer-events: none;
}
.page-head .shell { position: relative; }
.page-head h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.page-head h1 .accent { color: var(--teal-glow); }
.page-head .page-sub {
  margin: 16px 0 0;
  max-width: 700px;
  font-size: clamp(16.5px, 1.9vw, 19px);
  font-weight: 600;
  color: var(--text-soft);
}
.page-head .page-sub .accent { color: var(--teal-glow); }

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 820px;
}
.lead b { color: #ffffff; }

/* ------------------------------------------------------------------- cards */
.grid { display: grid; gap: 16px; }
.grid > * { min-width: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.tile {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.030), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-top: 2px solid rgba(47,184,216,0.60);
  border-radius: 12px;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
}
.tile:hover { border-color: var(--line); border-top-color: rgba(47,184,216,0.60); }
.tile .kicker {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--teal);
}
.tile h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
}
.tile .rule { height: 1px; background: var(--rule-fade); margin: 0 0 14px; opacity: 0.5; }
.tile p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--text-soft); }
.tile p + p { margin-top: 9px; }
.tile b, .tile strong { color: #ffffff; font-weight: 800; }
.tile .num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(122,160,198,0.55);
}
a.tile { color: inherit; transition: background 0.18s ease; }
a.tile:hover { background: linear-gradient(180deg, rgba(47,184,216,0.06), rgba(255,255,255,0.012)); }
a.tile .go {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--teal);
  transition: color 0.18s ease;
}
a.tile:hover .go { color: var(--teal-glow); }

/* People feature row (Home): Mike leads, Phil advises */
.people-tile { grid-column: 1 / -1; }
.duo-note {
  margin: 22px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}
.duo-note .dn-mike { color: var(--teal-glow); }
.duo-note .dn-phil { color: var(--text-muted); }
.duo { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; margin-top: 4px; }
.person { display: flex; gap: 18px; align-items: center; }
.person img { flex: none; border-radius: 10px; border: 1px solid var(--line-strong); object-fit: cover; object-position: top; filter: saturate(0.92); }
.person.mike img { width: 170px; height: 192px; }
.person.phil img { width: 96px; height: 110px; }
.person .p-role {
  display: block;
  margin: 0 0 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--teal-glow);
}
.person.phil .p-role { color: var(--text-muted); }
.person.phil p { color: var(--text-muted); }
.person.phil p b { color: var(--text-soft); }
.duo .person + .person { border-left: 1px solid var(--line); padding-left: 28px; }

/* ------------------------------------------------------- statement / cta */
.statement {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(760px 300px at 50% 120%, rgba(20,160,192,0.22), transparent 65%),
    var(--bg-deep);
  padding: 48px 28px;
  margin: 52px 0 0;
  text-align: center;
}
.statement p {
  margin: 0 auto;
  max-width: 880px;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  color: #ffffff;
}
.statement .accent { color: var(--teal-glow); }

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 28px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(820px 380px at 50% 130%, rgba(47,184,216,0.20), transparent 62%),
    var(--bg-deep);
}
.cta-band h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.cta-band p { margin: 0 auto; max-width: 760px; font-size: 17px; font-weight: 600; color: var(--text-soft); }
.cta-band p .accent { color: var(--teal-glow); font-weight: 800; }
.cta-band .hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------------ footer */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 22px 28px 14px;
}
.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { display: block; }
.footer-logo .logo-name { font-size: 19px; }
.footer-logo .logo-tag { font-size: 8.5px; margin-top: 3px; }
.footer-contact { text-align: right; font-size: 14.5px; font-weight: 700; line-height: 1.8; color: var(--text-soft); }
.footer-contact a { color: var(--teal); }
.footer-contact a:hover { color: var(--teal-glow); }
.footer-meta {
  width: 100%;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------- checklist */
.check-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 30px;
}
.check-list {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 34px;
  row-gap: 15px;
}
.check-item { display: flex; gap: 13px; align-items: baseline; }
.check-item .check {
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal-glow);
  font-size: 10.5px;
  font-weight: 800;
  text-align: center;
  line-height: 18px;
  position: relative;
  top: 3px;
}
.check-item .check-text { font-size: 15px; line-height: 1.6; color: var(--text-soft); }
.check-item .check-text b { color: #ffffff; }

/* ----------------------------------------------------------------- engine */
.engine {
  position: relative;
  border: 1px solid rgba(47,184,216,0.35);
  border-radius: 14px;
  background:
    radial-gradient(560px 240px at 12% 0%, rgba(47,184,216,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  box-shadow: 0 0 44px rgba(20,160,192,0.14);
  padding: 30px 32px 32px;
}
.engine .engine-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--bg);
  border: 1px solid rgba(47,184,216,0.55);
  border-radius: 999px;
  padding: 3px 16px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-glow);
}
.engine-cols { display: grid; grid-template-columns: 1.2fr 1fr 0.85fr; gap: 0; }
.engine-col { padding: 6px 24px 0; min-width: 0; }
.engine-col:first-child { padding-left: 0; }
.engine-col + .engine-col { border-left: 1px solid var(--line); }
.engine-label {
  margin: 0 0 0;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal-glow);
}
.engine-label::after {
  content: "";
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--teal);
  margin: 8px 0 11px;
}
.engine-col p { margin: 0; font-size: 14.8px; line-height: 1.62; color: var(--text-soft); }

.engine-connectors { position: relative; height: 34px; }
.engine-connectors .down-center,
.engine-connectors .down-left,
.engine-connectors .down-right {
  position: absolute;
  width: 1.5px;
  background: rgba(47,184,216,0.55);
  transform: translateX(-0.75px);
}
.engine-connectors .down-center { left: 50%; top: 0; height: 18px; }
.engine-connectors .across {
  position: absolute;
  left: 25%; right: 25%; top: 18px;
  height: 1.5px;
  background: rgba(47,184,216,0.55);
}
.engine-connectors .down-left { left: 25%; top: 18px; height: 16px; }
.engine-connectors .down-right { left: 75%; top: 18px; height: 16px; }

.product-name { color: #ffffff; font-weight: 800; }

.at-ags {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--teal);
}

/* -------------------------------------------------------------------- bios */
.bio { padding: 8px 0 10px; }
.bio::after { content: ""; display: block; clear: both; }
.bio .bio-photo {
  float: left;
  width: 440px;
  max-width: 44%;
  margin: 6px 36px 18px 0;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  filter: saturate(0.94);
}
.bio.bio-secondary .bio-photo { width: 250px; max-width: 30%; }
.bio-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin: 0 0 6px; }
.bio-head h3 { margin: 0; font-size: 30px; font-weight: 800; letter-spacing: -0.01em; color: #ffffff; }
.bio-role {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-glow);
}
.bio-rule { height: 1px; background: var(--hairline-fade); margin: 12px 0 22px; }
.bio-text p { margin: 0; font-size: 15.8px; line-height: 1.68; color: var(--text-soft); }
.bio-text p + p { margin-top: 12px; }
.bio-divider { height: 1px; background: var(--hairline-fade); margin: 44px 0; }

/* ------------------------------------------------------------------- forms */
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,184,216,0.18);
  background: rgba(255,255,255,0.05);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

.closer-line {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 30px 0 0;
}
.closer-line .accent { color: var(--teal-glow); }
.center { text-align: center; }

/* ----------------------------------------------------------------- reveals */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.rv.in { opacity: 1; transform: none; }
.grid .rv:nth-child(2) { transition-delay: 0.08s; }
.grid .rv:nth-child(3) { transition-delay: 0.16s; }
.grid .rv:nth-child(4) { transition-delay: 0.08s; }
.grid .rv:nth-child(5) { transition-delay: 0.16s; }
.grid .rv:nth-child(6) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero::before { animation: none; }
  .hero-orbit .sweep, .hero-orbit .blip, .hero-orbit .blip::after { animation: none; }
  .hero-orbit .blip { opacity: calc(var(--dim, 0.28) + 0.35); }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------- page bars */
.page-bar {
  background: var(--bg-deep);
  color: var(--text-muted);
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  padding: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-top: 1px solid rgba(47,184,216,0.4);
  border-bottom: 1px solid rgba(47,184,216,0.4);
  margin: 48px 0 0;
}

/* ------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .engine-cols { grid-template-columns: 1fr; }
  .engine-col { padding: 6px 0 0; }
  .engine-col + .engine-col { border-left: none; border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
  .engine-connectors { display: none; }
  .duo { grid-template-columns: 1fr; }
  .duo .person + .person { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  .bio .bio-photo { width: 300px; max-width: 46%; margin-right: 26px; }
  .bio.bio-secondary .bio-photo { width: 220px; max-width: 34%; }
  .sec-head h2 { white-space: normal; }
}
@media (max-width: 760px) {
  .bio .bio-photo, .bio.bio-secondary .bio-photo { float: none; width: 100%; max-width: 420px; margin-right: 0; }
  .bio.bio-secondary .bio-photo { max-width: 290px; }
}
@media (max-width: 1240px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 28px 18px;
    box-shadow: 0 24px 40px rgba(2,8,16,0.6);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 2px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav a.nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 860px) {
  .hero .shell { flex-direction: column; align-items: flex-start; }
  .hero-orbit { display: none; }
}
@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
  .hero { padding: 44px 0 44px; }
  .logo-tag { display: none; }
  .logo-name { font-size: 17.5px; }
  .sec { padding: 36px 0 8px; }
  .people-photos .ph-mike img { width: 180px; height: 206px; }
  .people-photos .ph-phil img { width: 136px; height: 160px; }
}
