:root {
  --bg: #0f1117;
  --panel: #141922;
  --panel-soft: #171d27;
  --text: #e8edf2;
  --muted: #9ca8b6;
  --divider: #1e2530;
  --accent: #00c8c8;
  --accent-soft: rgba(0, 200, 200, 0.12);
  --shadow: rgba(0, 0, 0, 0.34);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

.site-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(30, 37, 48, 0.74);
  background: rgba(15, 17, 23, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 10px 16px;
  color: var(--accent);
  background: rgba(0, 200, 200, 0.06);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent);
  color: #061113;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--divider);
  background: var(--panel);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

main {
  overflow: hidden;
}

.hero {
  max-width: var(--max-width);
  min-height: 92vh;
  margin: 0 auto;
  padding: 164px 24px 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: end;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(3.2rem, 6.8vw, 6.9rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.8vw, 4rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-subline {
  max-width: 720px;
  margin: 28px 0 0;
  color: #c8d2dd;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #071112;
}

.button.secondary {
  border-color: var(--divider);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  border-left: 2px solid var(--accent);
  padding: 24px 0 24px 24px;
}

.hero-panel span,
.role,
.account-grid span,
.contact-options small,
.site-footer small {
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-panel p {
  margin: 16px 0 0;
  color: #c3ced9;
}

.ticker {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  border-block: 1px solid var(--divider);
  background: rgba(0, 200, 200, 0.035);
}

.ticker::before,
.ticker::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  content: "";
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 18px 0;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  animation: ticker 34s linear infinite;
}

.ticker-track.is-paused {
  animation-play-state: paused;
}

.ticker span::after {
  margin-left: 36px;
  color: rgba(232, 237, 242, 0.34);
  content: "·";
}

.content-section {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 48px;
  padding: 104px 24px;
  border-top: 1px solid var(--divider);
}

.section-body {
  min-width: 0;
}

.copy-stack {
  display: grid;
  max-width: 850px;
  gap: 18px;
  margin-top: 34px;
  color: #c7d1db;
  font-size: 1.04rem;
}

.copy-stack p {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.stats article,
.focus-grid article,
.account-grid article,
.contact-options a {
  border: 1px solid var(--divider);
  background: rgba(20, 25, 34, 0.78);
  box-shadow: 0 22px 58px var(--shadow);
}

.stats article {
  padding: 24px;
}

.stats strong {
  display: block;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 42px;
}

.timeline article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  border-top: 1px solid var(--divider);
  padding: 26px 0;
}

.timeline time {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.timeline p {
  margin: 8px 0 0;
  color: #c5cfda;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.chips span {
  border: 1px solid rgba(0, 200, 200, 0.55);
  padding: 10px 14px;
  color: var(--accent);
  background: var(--accent-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  font-weight: 700;
}

.focus-grid,
.account-grid,
.contact-options {
  display: grid;
  gap: 16px;
}

.focus-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.focus-grid article {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.focus-grid article:hover,
.account-grid article:hover,
.contact-options a:hover {
  border-color: rgba(0, 200, 200, 0.56);
  transform: translateY(-3px);
}

.focus-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
}

.focus-grid p {
  margin: 12px 0 0;
  color: #bfccd7;
}

.account-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.account-grid article {
  min-height: 118px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.account-grid strong,
.contact-options strong {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.1rem;
}

.account-grid span {
  display: block;
  margin-top: 18px;
  font-size: 0.88rem;
}

.contact-section {
  padding: 104px 24px;
  background: var(--panel-soft);
}

.contact-card {
  max-width: var(--max-width);
  margin: 0 auto;
  border: 1px solid var(--divider);
  padding: clamp(28px, 5vw, 58px);
  background: #10141c;
}

.contact-card h2 {
  margin-top: 12px;
}

.contact-options {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.contact-options a {
  min-width: 0;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-options span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(0, 200, 200, 0.5);
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.contact-options small {
  display: block;
  max-width: 100%;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 24px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-top: 180px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 79px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--divider);
    padding: 10px;
    background: #10141c;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .content-section,
  .contact-section {
    padding-inline: 20px;
  }

  .hero-grid,
  .content-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .content-section {
    gap: 18px;
    padding-block: 84px;
  }

  .section-label {
    position: static;
  }

  .hero-panel {
    max-width: 520px;
  }

  .focus-grid,
  .account-grid,
  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 136px;
  }

  .stats,
  .focus-grid,
  .account-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline time {
    text-align: left;
  }

  .ticker-track {
    animation-duration: 42s;
  }

  .site-footer {
    display: block;
  }
}

@media (max-width: 375px) {
  .site-nav {
    padding-inline: 16px;
  }

  .hero,
  .content-section,
  .contact-section,
  .site-footer {
    padding-inline: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}


/* ── Open to Opportunities tag ─────────────────────────────────────── */
.open-to-opps {
  font-size: 0.9rem;
  color: #00c8c8;
  border-left: 2px solid #00c8c8;
  padding: 0.5rem 1rem;
  margin: 0 auto 2rem;
  max-width: 520px;
  text-align: left;
  line-height: 1.65;
  opacity: 0.88;
}
