:root {
  color-scheme: dark;
  --ink: #0e1413;
  --ink-2: #121b19;
  --ink-3: #1d2a26;
  --paper: #f4f0df;
  --paper-2: #e7ead7;
  --muted: #a9b6af;
  --line: rgba(244, 240, 223, 0.16);
  --green: #54d89c;
  --amber: #e9bd55;
  --coral: #e56d59;
  --blue: #78a7df;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button {
  font: inherit;
}

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

.site-surface {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 240, 223, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 240, 223, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(84, 216, 156, 0.09), transparent 34%),
    linear-gradient(315deg, rgba(229, 109, 89, 0.08), transparent 36%),
    var(--ink);
  background-size: 78px 78px, 78px 78px, 100% 100%, 100% 100%, 100% 100%;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 32px;
  border-bottom: 1px solid transparent;
  background: rgba(14, 20, 19, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(14, 20, 19, 0.94);
}

.brand,
.nav-links,
.hero-actions,
.button,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(244, 240, 223, 0.18);
  border-radius: 6px;
  background: rgba(244, 240, 223, 0.08);
  color: var(--green);
  font-size: 0.72rem;
}

.nav-links {
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(244, 240, 223, 0.1);
  color: var(--paper);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 90svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: end;
  padding: 142px 32px 54px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(14, 20, 19, 0.98) 0%, rgba(14, 20, 19, 0.78) 43%, rgba(14, 20, 19, 0.34) 100%),
    url("/assets/trazor-ops.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, rgba(14, 20, 19, 0), var(--ink) 94%);
}

.hero-copy {
  width: min(760px, 100%);
  position: relative;
  padding-left: 22px;
}

.hero-copy::before {
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, var(--green), var(--amber) 54%, var(--coral));
  box-shadow: 0 0 28px rgba(84, 216, 156, 0.42);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #85edbb;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  box-shadow: 0 0 18px rgba(84, 216, 156, 0.76);
}

h1 {
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, var(--paper) 48%, #84edba 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 6.1rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: #e3e8dd;
  font-size: 1.18rem;
}

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

.button {
  min-height: 46px;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.button.primary {
  border-color: var(--paper);
  background: linear-gradient(135deg, var(--paper), #ffffff);
  color: #101514;
}

.button.secondary {
  background: rgba(244, 240, 223, 0.08);
  color: var(--paper);
}

.button-icon {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  background: rgba(16, 21, 20, 0.16);
  font-size: 0.72rem;
}

.button.secondary .button-icon {
  background: rgba(244, 240, 223, 0.12);
  color: var(--green);
}

.hero-panel {
  width: min(430px, 100%);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 223, 0.18);
  border-radius: var(--radius);
  background: rgba(14, 20, 19, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-heading {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid rgba(244, 240, 223, 0.12);
}

.panel-heading span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading strong {
  color: var(--paper);
  font-size: 1.08rem;
}

.quick-facts {
  display: grid;
  margin: 0;
}

.quick-facts div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  min-height: 58px;
  align-items: center;
  padding: 13px 18px;
  border-top: 1px solid rgba(244, 240, 223, 0.08);
}

.quick-facts div:first-child {
  border-top: 0;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: var(--paper);
  font-weight: 900;
}

.signal-band {
  padding: 0 32px 32px;
  background: var(--ink);
}

.signal-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.signal-cell {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(84, 216, 156, 0.08), transparent 48%),
    #111918;
}

.signal-cell span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-cell strong {
  color: var(--paper);
  font-size: 1.04rem;
}

.band {
  padding: 86px 32px;
}

.profile-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 20, 19, 0.94), var(--ink-2));
}

.experience-band {
  background: #f1f1df;
  color: #121817;
}

.systems-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(233, 189, 85, 0.08), transparent 45%),
    #121b19;
}

.proof-band {
  background:
    linear-gradient(135deg, rgba(84, 216, 156, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(120, 167, 223, 0.1), transparent 35%),
    #f4f0df;
  color: #141918;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(84, 216, 156, 0.18), transparent 44%),
    #24382f;
}

.split-layout,
.section-head,
.timeline,
.proof-grid,
.contact-layout,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: start;
}

.section-copy p {
  max-width: 660px;
  color: var(--muted);
}

.experience-band .section-kicker,
.proof-band .section-kicker {
  color: #27765b;
}

.experience-band .section-head {
  margin-bottom: 28px;
}

.cv-summary {
  display: grid;
  gap: 12px;
}

.cv-summary div,
.system-card,
.proof-card,
.timeline-body {
  border-radius: var(--radius);
}

.cv-summary div {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid rgba(244, 240, 223, 0.14);
  background: rgba(244, 240, 223, 0.06);
}

.cv-summary span {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: rgba(84, 216, 156, 0.14);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
}

.cv-summary strong {
  color: var(--paper);
}

.cv-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-date {
  position: sticky;
  top: 92px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 6px;
  background: #111817;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-body {
  padding: 24px;
  border: 1px solid rgba(17, 24, 23, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(19, 25, 24, 0.08);
}

.role-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.role-line h3 {
  margin-bottom: 0;
}

.role-line span {
  color: #337d63;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.timeline-body p,
.timeline-body li,
.proof-card p {
  color: #49544f;
}

.timeline-body ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 18px;
}

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

.system-card {
  min-height: 184px;
  padding: 20px;
  border: 1px solid rgba(244, 240, 223, 0.14);
  background: rgba(244, 240, 223, 0.06);
}

.system-card span {
  display: inline-grid;
  min-width: 32px;
  height: 30px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 6px;
  background: rgba(233, 189, 85, 0.16);
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
}

.system-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.proof-card {
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 23, 0.14);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(19, 25, 24, 0.08);
}

.proof-card strong {
  display: block;
  margin-bottom: 14px;
  color: #121817;
  font-size: 1.04rem;
}

.contact-layout {
  align-items: center;
}

.contact-layout h2 {
  max-width: 720px;
}

.contact-actions {
  width: min(500px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  justify-self: end;
}

.social-button {
  width: 100%;
  min-height: 68px;
  justify-content: flex-start;
  padding: 15px 16px;
}

.social-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(244, 240, 223, 0.12);
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-text {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.contact-text strong {
  font: inherit;
}

.contact-text small {
  color: rgba(244, 240, 223, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 30px 32px;
  border-top: 1px solid var(--line);
  background: rgba(14, 20, 19, 0.78);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--paper);
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eef0e3;
  color: #101514;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 20px;
  }

  .nav-links {
    max-width: 430px;
  }

  .hero {
    min-height: 86svh;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 128px 20px 42px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(14, 20, 19, 0.94) 0%, rgba(14, 20, 19, 0.78) 54%, rgba(14, 20, 19, 0.48) 100%),
      url("/assets/trazor-ops.png");
    background-position: 62% center;
  }

  .hero-panel {
    justify-self: start;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .signal-band {
    padding: 0 20px 20px;
  }

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

  .band {
    padding: 64px 20px;
  }

  .split-layout,
  .contact-layout,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .contact-layout {
    gap: 30px;
  }

  .timeline-date {
    position: static;
  }

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

  .contact-actions {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    min-height: 64px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding-inline: 6px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 138px;
  }

  .hero-copy {
    padding-left: 18px;
  }

  h1 {
    font-size: 3.12rem;
  }

  h2 {
    font-size: 1.62rem;
  }

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

  .button,
  .hero-actions {
    width: 100%;
  }

  .quick-facts div,
  .cv-summary div,
  .role-line,
  .system-grid,
  .proof-grid,
  .signal-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    gap: 4px;
  }

  .cv-summary span {
    grid-row: auto;
  }

  .role-line {
    display: grid;
  }

  .role-line span {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
