:root {
  --ink: #071322;
  --deep: #020812;
  --navy: #06172a;
  --navy-2: #09233d;
  --line: rgba(0, 178, 255, 0.34);
  --cyan: #10b7ff;
  --cyan-2: #1686d9;
  --text: #edf7ff;
  --muted: #b8c9d9;
  --panel: rgba(7, 24, 42, 0.82);
  --white: #f5f8fb;
  --paper: #ffffff;
  --paper-text: #0a1b2f;
  --gold: #d89b2a;
  --shadow: 0 18px 55px rgba(2, 12, 25, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--deep);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #07111d;
}

body::-webkit-scrollbar-thumb {
  background: #1588ce;
  border-radius: 999px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(100%, 1160px);
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 42px;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  color: var(--cyan);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: none;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #d6e7f8;
  font-size: 13px;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:first-child,
.site-nav a:hover {
  color: var(--cyan);
}

.nav-contact {
  display: inline-flex;
  min-width: 128px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cyan);
  border-radius: 999px;
  color: #e8f7ff;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 92px 42px 44px;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.98), rgba(3, 14, 29, 0.92) 42%, rgba(4, 19, 37, 0.82)),
    linear-gradient(135deg, transparent 0 18%, rgba(16, 183, 255, 0.18) 18.2% 18.5%, transparent 18.8% 44%, rgba(16, 183, 255, 0.18) 44.2% 44.5%, transparent 44.8%),
    radial-gradient(circle at 84% 20%, rgba(14, 154, 230, 0.18), transparent 34%),
    #020812;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.56;
  pointer-events: none;
  background-image:
    linear-gradient(24deg, transparent 0 48%, rgba(29, 177, 255, 0.45) 48.2% 48.4%, transparent 48.7%),
    linear-gradient(154deg, transparent 0 56%, rgba(29, 177, 255, 0.32) 56.2% 56.4%, transparent 56.7%),
    radial-gradient(circle at 50% 28%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 18%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 26%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 89% 13%, var(--cyan) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 47%, var(--cyan) 0 2px, transparent 3px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -90px;
  width: 620px;
  height: 360px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
  background-image: radial-gradient(var(--cyan) 1px, transparent 1px);
  background-size: 14px 14px;
  transform: skewY(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto;
  min-height: 384px;
  grid-template-columns: minmax(430px, 0.95fr) minmax(410px, 1.05fr);
  gap: 18px;
  align-items: end;
}

.hero-copy {
  max-width: 560px;
  padding-bottom: 16px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(40px, 4.8vw, 50px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 25px;
  color: #e4eef8;
  font-size: 16px;
}

.capabilities {
  display: grid;
  max-width: 585px;
  margin-bottom: 24px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.capabilities span {
  position: relative;
  min-height: 34px;
  padding-left: 18px;
  color: #d3e6f7;
  font-size: 11px;
}

.capabilities span::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 740;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.nav-contact:hover {
  transform: translateY(-1px);
}

.button.primary {
  min-width: 218px;
  background: linear-gradient(180deg, #24aef4, #127bd0);
  box-shadow: 0 11px 28px rgba(12, 137, 222, 0.28);
}

.button.secondary {
  min-width: 160px;
  border: 1px solid rgba(92, 186, 240, 0.72);
  color: #e6f5ff;
}

.button.secondary::after {
  margin-left: 16px;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: 384px;
  align-items: end;
  justify-items: center;
}

.hero-media img {
  position: relative;
  z-index: 3;
  width: auto;
  height: 386px;
  max-width: none;
  border-radius: 0;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.42));
  -webkit-mask-image: linear-gradient(to bottom, #000 0 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0 84%, transparent 100%);
}

.quote-card {
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 4;
  width: min(248px, 45%);
  padding: 22px 24px 22px;
  border: 1px solid rgba(71, 170, 232, 0.28);
  border-radius: 8px;
  background: rgba(4, 18, 35, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quote-mark {
  display: block;
  height: 28px;
  color: #bcd9ed;
  font-size: 54px;
  font-weight: 900;
  line-height: 0.8;
}

.quote-card p {
  margin-bottom: 17px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.quote-card strong {
  display: block;
  color: #ffffff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 22px;
  font-weight: 400;
  transform: rotate(-8deg);
}

.problem-band {
  padding: 10px 42px 8px;
  background: linear-gradient(180deg, #061525, #020b17);
}

.section-title {
  margin: 0 auto 22px;
  color: var(--paper-text);
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.2;
}

.section-title h2::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 32px;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: translateX(-50%);
}

.section-title.light {
  margin-bottom: 24px;
  color: #ffffff;
}

.section-title.left {
  margin: 0 0 14px;
  text-align: left;
}

.section-title.left h2::after {
  left: 0;
  transform: none;
}

.problem-grid {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-item {
  min-height: 102px;
  padding: 0 12px;
  border-right: 1px solid rgba(115, 173, 211, 0.22);
  text-align: center;
}

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

.line-icon,
.card-icon,
.award-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border: 3px solid var(--cyan);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
}

.problem-item h3 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.28;
}

.problem-item p {
  margin-bottom: 0;
  color: #cbd8e4;
  font-size: 12px;
  line-height: 1.36;
}

.credentials {
  padding: 18px 42px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 249, 0.96)),
    #f5f8fb;
}

.card-grid {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.credential-card {
  display: flex;
  min-height: 0;
  height: 166px;
  flex-direction: column;
  align-items: center;
  padding: 13px 11px 10px;
  border: 1px solid #dce6ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 36px rgba(23, 47, 70, 0.12);
  color: var(--paper-text);
  text-align: center;
}

.credential-card .card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
  border-width: 2px;
  font-size: 12px;
}

.credential-card h3 {
  margin-bottom: 7px;
  color: #061a31;
  font-size: 13px;
  line-height: 1.25;
}

.credential-card p {
  margin-bottom: 8px;
  color: #1d3044;
  font-size: 10.5px;
  line-height: 1.34;
}

.credential-card strong {
  margin-top: auto;
  color: #0b1a31;
  font-size: 17px;
}

.career {
  display: grid;
  padding: 10px 42px 8px;
  background: #ffffff;
  color: var(--paper-text);
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.9fr);
  gap: 22px;
}

.career-panel,
.academic-panel {
  width: min(100%, 700px);
}

.career-panel {
  justify-self: end;
  padding-left: 12px;
}

.academic-panel {
  border-left: 1px solid #d9e2eb;
  padding-left: 22px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 12px;
}

.timeline::before {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8px;
  height: 1px;
  background: #889aaa;
  content: "";
}

.timeline-point {
  position: relative;
  display: grid;
  min-height: 38px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.timeline-point::after {
  position: absolute;
  bottom: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #061a31;
  content: "";
}

.timeline-point strong {
  font-size: clamp(14px, 1.7vw, 19px);
  line-height: 1.2;
}

.timeline-point span {
  max-width: 86px;
  color: #253b52;
  font-size: 8px;
}

.experience-line {
  margin: 0;
  color: #08345c;
  font-size: 13px;
  font-weight: 740;
  text-align: center;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.recognition-grid article {
  min-height: 70px;
}

.award-icon {
  float: left;
  width: 34px;
  height: 34px;
  margin: 0 10px 20px 0;
  border-color: var(--gold);
  color: var(--gold);
  font-size: 16px;
}

.recognition-grid h3 {
  margin-bottom: 6px;
  color: #09223c;
  font-size: 13px;
}

.recognition-grid p {
  color: #233950;
  font-size: 9px;
  line-height: 1.25;
}

.recognition-grid a,
.site-footer a:hover {
  color: var(--cyan-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stats-band {
  display: grid;
  padding: 8px 42px;
  background:
    linear-gradient(90deg, rgba(3, 14, 27, 0.98), rgba(6, 27, 47, 0.95)),
    radial-gradient(circle at 88% 20%, rgba(26, 163, 229, 0.22), transparent 35%),
    #03101f;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat {
  min-height: 54px;
  border-right: 1px solid rgba(179, 219, 243, 0.28);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 760;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #c6d4df;
  font-size: 12px;
}

.support {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 174px;
  padding: 14px 34px 12px;
  background:
    linear-gradient(90deg, rgba(2, 10, 20, 0.98) 0 46%, rgba(4, 16, 30, 0.88) 70%, rgba(4, 16, 30, 0.58)),
    #040d18;
  grid-template-columns: 280px 390px minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
}

.support-copy {
  position: relative;
  z-index: 2;
}

.support h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
}

.support-copy p {
  max-width: 360px;
  margin-bottom: 9px;
  color: #d2e0ec;
  font-size: 12px;
  line-height: 1.34;
}

.support-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 3px;
  color: #e7f3fb;
  font-size: 11px;
  list-style: none;
}

.support-copy li {
  position: relative;
  padding-left: 21px;
}

.support-copy li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #03213b;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.conversation-card {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(74, 173, 235, 0.4);
  border-radius: 8px;
  background: rgba(2, 15, 28, 0.76);
  grid-template-columns: 66px 1fr;
  gap: 16px;
}

.conversation-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}

.conversation-card h2 {
  margin-bottom: 7px;
}

.conversation-card p {
  max-width: 490px;
  margin-bottom: 12px;
  color: #d5e2ed;
  font-size: 11px;
  line-height: 1.34;
}

.desk-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 155px;
  min-width: 220px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.88;
}

.site-footer {
  display: grid;
  padding: 14px 42px 10px;
  background: #020a14;
  color: #b9ccdc;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 24px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 6px;
  color: #b9ccdc;
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 0;
  color: #8fa4b7;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    left: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 24px;
    background: #020812;
    transform: none;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 0;
    padding: 58px 24px 34px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .capabilities {
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    min-height: 360px;
  }

  .quote-card {
    right: 50%;
    top: auto;
    bottom: 8px;
    width: min(92%, 360px);
    transform: translateX(50%);
  }

  .problem-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-item {
    border-right: 0;
    border-bottom: 1px solid rgba(115, 173, 211, 0.22);
    padding: 22px;
  }

  .career,
  .support,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .career-panel,
  .academic-panel {
    width: 100%;
  }

  .academic-panel {
    border-left: 0;
    padding-left: 0;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    height: 42px;
  }

  .nav-contact {
    width: 100%;
    max-width: 240px;
  }

  .site-nav {
    gap: 10px 12px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: 30px;
  }

  .hero-lead {
    max-width: 320px;
    font-size: 14px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 48px 20px 24px;
  }

  .hero-grid {
    height: auto;
    gap: 22px;
  }

  .eyebrow {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .button {
    width: min(100%, 260px);
    min-width: 0;
  }

  .capabilities,
  .problem-grid,
  .card-grid,
  .timeline,
  .recognition-grid,
  .stats-band,
  .conversation-card {
    grid-template-columns: 1fr;
  }

  .capabilities span {
    min-height: auto;
    text-align: left;
  }

  .hero-media img {
    width: min(100%, 300px);
    height: auto;
    max-width: 100%;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
    transform: none;
  }

  .timeline {
    gap: 18px;
    padding-bottom: 0;
  }

  .timeline::before,
  .timeline-point::after {
    display: none;
  }

  .timeline-point {
    min-height: auto;
    padding: 14px;
    border: 1px solid #dce6ef;
    border-radius: 8px;
  }

  .stat,
  .stat:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(179, 219, 243, 0.22);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .support,
  .credentials,
  .career,
  .problem-band,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
