:root {
  color-scheme: dark;
  --ink: #05080a;
  --ink-2: #081014;
  --panel: rgba(10, 18, 21, 0.78);
  --panel-strong: rgba(14, 25, 28, 0.92);
  --text: #f6f3ea;
  --muted: #a8b5b6;
  --muted-2: #728386;
  --cyan: #45def2;
  --cyan-soft: rgba(69, 222, 242, 0.18);
  --coral: #ff7a62;
  --coral-soft: rgba(255, 122, 98, 0.18);
  --sage: #a8d592;
  --sage-soft: rgba(168, 213, 146, 0.18);
  --line: rgba(219, 247, 249, 0.16);
  --line-strong: rgba(219, 247, 249, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(5, 8, 10, 0.9), rgba(5, 8, 10, 1) 42%),
    linear-gradient(135deg, #05080a, #0b1517 48%, #05080a);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
canvas,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--cyan);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 1rem;
  z-index: 10;
  width: min(calc(100% - 2rem), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 10, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.brand,
.site-nav,
.nav-cta,
.button,
.contact-strip li,
.tool-item,
.flow-card,
.credential-icon {
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 0.6rem;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(69, 222, 242, 0.36);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--sage));
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  padding: 0.5rem 0.1rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-strip a:hover,
.contact-strip a:focus-visible {
  color: var(--cyan);
}

.nav-cta {
  display: inline-flex;
  gap: 0.5rem;
  min-height: 2.4rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-cta svg,
.button svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 180ms ease;
}

.nav-cta:hover svg,
.button:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 45%;
  opacity: 0.78;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.96) 0%, rgba(5, 8, 10, 0.78) 34%, rgba(5, 8, 10, 0.14) 68%),
    linear-gradient(180deg, rgba(5, 8, 10, 0.12), rgba(5, 8, 10, 0.96) 96%);
}

.route-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.74;
  mix-blend-mode: screen;
}

.hero-content {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 80svh;
  margin: 0 auto;
  padding: 6.1rem 0 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(24rem, 0.74fr);
  align-items: center;
  gap: 4rem;
}

.hero-copy {
  max-width: 46rem;
}

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

h1 {
  max-width: 8ch;
  font-size: 5.7rem;
  line-height: 0.92;
  font-weight: 900;
  color: var(--text);
}

.hero-role {
  margin-top: 1.4rem;
  color: var(--cyan);
  font-size: 1.55rem;
  line-height: 1.18;
  font-weight: 800;
}

.hero-summary {
  max-width: 38rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #071013;
  background: linear-gradient(135deg, var(--cyan), #84f0f2 52%, var(--sage));
  box-shadow: 0 18px 50px rgba(69, 222, 242, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 122, 98, 0.64);
  background: rgba(5, 8, 10, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--coral-soft);
}

.contact-strip {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-strip li {
  display: flex;
  gap: 0.75rem;
}

.contact-strip svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  color: var(--cyan);
}

.support-flow {
  position: relative;
  min-height: 28rem;
}

.flow-card {
  position: absolute;
  display: grid;
  gap: 0.1rem;
  min-width: 10rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 13, 16, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.flow-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.flow-card strong {
  color: var(--text);
  font-size: 1rem;
}

.flow-card-a {
  left: 4%;
  top: 4%;
  border-color: rgba(69, 222, 242, 0.34);
}

.flow-card-b {
  right: 5%;
  top: 23%;
  border-color: rgba(255, 122, 98, 0.34);
}

.flow-card-c {
  left: 0;
  bottom: 24%;
  border-color: rgba(255, 122, 98, 0.42);
}

.flow-card-d {
  right: 13%;
  bottom: 4%;
  border-color: rgba(168, 213, 146, 0.42);
}

.signal-band,
.tools-section,
.experience-section,
.credentials-section,
.contact-section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.signal-band {
  padding-top: 1.75rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading p,
.contact-panel > div > p {
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 900;
}

.section-heading h2,
.contact-panel h2 {
  font-size: 2.65rem;
  line-height: 1.05;
  font-weight: 900;
}

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

.strength-card,
.credential-card {
  background: linear-gradient(180deg, rgba(13, 23, 27, 0.94), rgba(8, 16, 18, 0.92));
}

.strength-card {
  min-height: 16rem;
  padding: 1.45rem;
}

.strength-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--cyan);
  margin-bottom: 1.45rem;
}

.strength-card:nth-child(2) svg,
.strength-card:nth-child(4) svg {
  color: var(--sage);
}

.strength-card h3,
.timeline-body h3,
.credential-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.strength-card p,
.timeline-body li,
.credential-card p,
.contact-panel span,
.tool-item em {
  color: var(--muted);
}

.strength-card p,
.credential-card p {
  margin-top: 0.75rem;
}

.tools-section {
  padding-top: 2rem;
}

.tool-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tool-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.8rem;
  min-height: 7rem;
  padding: 1.35rem 1.2rem;
  border-right: 1px solid var(--line);
}

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

.tool-item span {
  grid-row: span 2;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
}

.tool-item:nth-child(2) span,
.tool-item:nth-child(5) span {
  background: var(--sage);
}

.tool-item:nth-child(3) span {
  background: var(--coral);
}

.tool-item strong {
  align-self: end;
  line-height: 1.2;
}

.tool-item em {
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.3;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.46fr) minmax(0, 1fr);
  gap: 4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pinned-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  left: 10.5rem;
  top: 0.7rem;
  bottom: 0.7rem;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--coral), var(--sage));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 9rem 1.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0 0 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-date {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  margin-top: 0.22rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(69, 222, 242, 0.12);
}

.timeline-item:nth-child(2) .timeline-dot {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 122, 98, 0.12);
}

.timeline-item:nth-child(3) .timeline-dot {
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(168, 213, 146, 0.12);
}

.timeline-body {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child .timeline-body {
  padding-bottom: 0;
  border-bottom: 0;
}

.company {
  margin-top: 0.25rem;
  color: var(--cyan);
  font-weight: 800;
}

.timeline-body ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.credentials-section {
  padding-bottom: 2rem;
}

.credential-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.credential-card {
  min-height: 16rem;
  padding: 1.5rem;
}

.credential-card-wide {
  background:
    linear-gradient(120deg, rgba(69, 222, 242, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(13, 23, 27, 0.94), rgba(8, 16, 18, 0.92));
}

.credential-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(69, 222, 242, 0.36);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cyan);
  font-weight: 950;
}

.credential-card:nth-child(2) .credential-icon {
  background: var(--coral);
}

.credential-card:nth-child(3) .credential-icon {
  background: var(--sage);
}

.support-mindset {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(69, 222, 242, 0.08), transparent 36%),
    linear-gradient(270deg, rgba(255, 122, 98, 0.08), transparent 38%);
}

.support-mindset p {
  width: min(calc(100% - 2rem), 58rem);
  margin: 0 auto;
  padding: 4.5rem 0;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 850;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(69, 222, 242, 0.12), transparent 35%),
    linear-gradient(300deg, rgba(255, 122, 98, 0.12), transparent 44%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.contact-panel span {
  display: block;
  max-width: 38rem;
  margin-top: 0.9rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero,
  .hero-content {
    min-height: 80svh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
    padding-top: 6.8rem;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 10, 0.9) 0%, rgba(5, 8, 10, 0.58) 48%, rgba(5, 8, 10, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 8, 10, 0.94), rgba(5, 8, 10, 0.22));
  }

  h1 {
    font-size: 4.7rem;
  }

  .support-flow {
    min-height: 15rem;
  }

  .flow-card {
    position: static;
    display: inline-grid;
    min-width: 8.8rem;
    margin: 0.3rem;
    vertical-align: top;
  }

  .strength-grid,
  .credential-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .tool-item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .experience-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pinned-heading {
    position: static;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 0.6rem;
    width: min(calc(100% - 1rem), var(--max));
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 2.2rem;
    padding: 0 0.72rem;
  }

  .hero,
  .hero-content {
    min-height: 80svh;
  }

  .hero-art {
    object-position: 56% 35%;
    opacity: 0.58;
  }

  .hero-content {
    width: min(calc(100% - 1.25rem), var(--max));
    padding: 6.2rem 0 2rem;
  }

  h1 {
    max-width: 7ch;
    font-size: 3.85rem;
  }

  .hero-role {
    font-size: 1.35rem;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 3.05rem;
  }

  .contact-strip {
    font-size: 0.94rem;
  }

  .support-flow {
    display: none;
  }

  .flow-card {
    margin: 0;
    min-width: 0;
    padding: 0.78rem;
  }

  .flow-card span {
    font-size: 0.78rem;
  }

  .flow-card strong {
    font-size: 0.92rem;
  }

  .signal-band,
  .tools-section,
  .experience-section,
  .credentials-section,
  .contact-section {
    width: min(calc(100% - 1.25rem), var(--max));
    padding: 4rem 0;
  }

  .signal-band {
    padding-top: 2rem;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: 2rem;
  }

  .strength-grid,
  .credential-layout,
  .tool-rail {
    grid-template-columns: 1fr;
  }

  .strength-card,
  .credential-card {
    min-height: 0;
  }

  .tool-item,
  .tool-item:nth-child(2n),
  .tool-item:last-child {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .tool-item:first-child {
    border-top: 0;
  }

  .timeline::before {
    left: 0.46rem;
  }

  .timeline-item {
    grid-template-columns: 1.25rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .timeline-date {
    grid-column: 2;
    order: 1;
    color: var(--sage);
  }

  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    order: 0;
  }

  .timeline-body {
    grid-column: 2;
    order: 2;
  }

  .support-mindset p {
    width: min(calc(100% - 1.25rem), 58rem);
    padding: 3.2rem 0;
    font-size: 1.45rem;
  }

  .contact-panel {
    padding: 1.1rem;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max));
    flex-direction: column;
  }
}

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

  .route-canvas {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
