:root {
  --bg: #071225;
  --surface: #0d1b33;
  --surface-alt: #0a162b;
  --text: #eaf2ff;
  --muted: #a8bbd9;
  --line: #213b63;
  --accent: #3f8cff;
  --accent-2: #5ea3ff;
  --accent-3: #7bb6ff;
  --glow: rgba(94, 163, 255, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 10% 0%, #10284c 0, transparent 42%),
    radial-gradient(circle at 100% 20%, #122f58 0, transparent 36%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  padding: 0.92rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(9, 20, 38, 0.85), 0 8px 18px rgba(0, 0, 0, 0.35);
}

.brand-name,
h1,
h2,
h3 {
  font-family: "IBM Plex Sans", "Inter", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.brand-name {
  margin: 0;
  font-weight: 700;
}

.brand-type {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--text);
}

.cta {
  text-decoration: none;
  color: #041022;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 0.62rem 0.98rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--glow);
}

.hero {
  padding: 6rem 0 4.2rem;
}

.hero-team {
  padding-bottom: 1.8rem;
}

.section-team {
  padding-top: 1.2rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.14;
  margin: 0;
  max-width: 20ch;
  font-weight: 700;
}

.lead {
  margin: 1.2rem 0 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.principles {
  margin-top: 2.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.principles article,
.params-grid article,
.leader-card {
  background: linear-gradient(180deg, #10213f 0%, #0b1a33 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.principles article:hover,
.params-grid article:hover,
.leader-card:hover {
  transform: translateY(-4px);
  border-color: #3f66a0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.principles h2 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #0a1830 0%, #091426 100%);
  border-block: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 1.1rem;
  font-size: 1.56rem;
  font-weight: 700;
}

.structured-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.structured-list li {
  margin: 0;
  color: #d6e6ff;
  background: #0d1e3a;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.structured-list li:hover {
  transform: translateX(3px);
  border-color: #4b76b5;
}

.params-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.params-grid article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2b71c4 0%, #3b8ef3 55%, #6aaeff 100%);
  color: #f2f7ff;
  border-color: transparent;
}

.params-grid article::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.param-label {
  margin: 0;
  color: #dbe9ff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.param-value {
  margin: 0.3rem 0 0;
  font-weight: 700;
  font-size: 1.02rem;
}

.params-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.strip-item {
  padding: 1rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item-a {
  background: #e8eef8;
  color: #13243f;
}

.strip-item-b {
  background: #091427;
  color: #dce9ff;
}

.strip-item-c {
  background: #1f5f95;
  color: #eef6ff;
}

.strip-item-d {
  background: #62a9eb;
  color: #082247;
}

.params-strip .param-label {
  color: inherit;
  opacity: 0.8;
}

.params-strip .param-value {
  font-size: 1.6rem;
  line-height: 1.1;
}

.params-rail {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.rail-item {
  padding: 1rem 1.1rem;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rail-item:first-child {
  padding-left: clamp(1.2rem, 3vw, 2.8rem);
}

.rail-item:last-child {
  padding-right: clamp(1.2rem, 3vw, 2.8rem);
}

.rail-item-a {
  background: #e8eef8;
  color: #13243f;
}

.rail-item-b {
  background: #091427;
  color: #dce9ff;
}

.rail-item-c {
  background: #1f5f95;
  color: #eef6ff;
}

.rail-item-d {
  background: #62a9eb;
  color: #082247;
}

.params-rail .param-label {
  color: inherit;
  opacity: 0.8;
}

.params-rail .param-value {
  font-size: 1.6rem;
  line-height: 1.1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-alt-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-alt-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #0b1b35 0%, #11284d 100%);
  padding: 1rem;
}

.team-alt-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.team-alt-head h3 {
  margin: 0;
}

.team-alt-head .role {
  margin: 0.2rem 0 0;
}

.team-alt-body p {
  margin: 0 0 0.65rem;
}

.team-alt-body p:last-child {
  margin-bottom: 0;
}

.leader-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
}

.leader-photo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.leader-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.role {
  margin: 0.2rem 0 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.leader-card p {
  margin-top: 0;
}

.bio-spacer {
  min-height: 0.45rem;
  line-height: 0.45rem;
}

blockquote {
  margin: 0;
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--accent-2);
  background: linear-gradient(180deg, #0f203e 0%, #0b1b35 100%);
  border-radius: 0 10px 10px 0;
  color: #dce9ff;
}

.map-wrap {
  position: relative;
  width: 100vw;
  margin: 1.2rem 0 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  padding: 1rem 0;
}

.map-image {
  width: min(980px, 96vw);
  height: auto;
  margin: 0 auto;
  display: block;
}

.map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f6f8fc;
  top: 7px;
  left: 7px;
}

.pin-green {
  background: #22a05f;
}

.pin-red {
  background: #de2f37;
}

.pin-michigan {
  left: 61.3%;
  top: 22.6%;
}

.pin-texas {
  left: 41.9%;
  top: 55.7%;
}

.pin-miami {
  left: 73.9%;
  top: 66.8%;
}

.map-label {
  position: absolute;
  color: #111827;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.label-michigan {
  left: 63.6%;
  top: 31.2%;
}

.label-texas {
  left: 43.2%;
  top: 66.3%;
}

.label-miami {
  left: 67.3%;
  top: 79.4%;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  animation: revealUp 560ms ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .principles,
  .params-grid,
  .about-grid,
  .team-alt-grid,
  .params-strip,
  .params-rail {
    grid-template-columns: 1fr;
  }

  .strip-item {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .rail-item {
    height: auto;
    min-height: 120px;
  }

  .leader-card {
    grid-template-columns: 92px 1fr;
  }

  .map-pin {
    width: 20px;
    height: 20px;
  }

  .map-pin::after {
    width: 7px;
    height: 7px;
    top: 6px;
    left: 6px;
  }

  .leader-photo {
    width: 104px;
    height: 104px;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
