:root {
  color-scheme: dark;
  --ink: #f4f1e8;
  --muted: #b8b2a3;
  --dim: #827c70;
  --paper: #090908;
  --panel: #12110f;
  --panel-2: #191713;
  --line: rgba(244, 241, 232, 0.14);
  --gold: #d89a30;
  --gold-soft: #f2c56f;
  --teal: #68d7ce;
  --blue: #426bd9;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 154, 48, 0.12), transparent 26%),
    radial-gradient(circle at 86% 22%, rgba(104, 215, 206, 0.1), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: #fff;
}

.brand {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 1.6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 999px;
  background: rgba(9, 9, 8, 0.58);
  backdrop-filter: blur(18px);
}

.nav-links a {
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(244, 241, 232, 0.84);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a:hover {
  background: rgba(244, 241, 232, 0.1);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  min-height: 100vh;
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: 118px clamp(22px, 5vw, 72px) 72px;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(32px, 4.8vw, 58px);
}

.hero-copy p {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-copy strong {
  display: inline-flex;
  margin-top: 28px;
  border-left: 4px solid var(--gold);
  padding: 10px 0 10px 18px;
  color: var(--teal);
  font-size: 19px;
}

.hero-art {
  margin: 0;
}

.hero-art img {
  display: block;
  width: min(440px, 100%);
  margin-left: auto;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

section {
  padding: 92px clamp(22px, 5vw, 72px);
}

.statement {
  display: grid;
  gap: 24px;
  background: #11100e;
}

.statement h2,
.paradigm h2 {
  max-width: 980px;
  font-size: clamp(24px, 2.8vw, 36px);
}

.statement p,
.paradigm p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(22px, 2.3vw, 30px);
}

.roles {
  background: var(--paper);
}

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

.role-grid article,
.timeline article,
.experience-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.role-grid article {
  min-height: 300px;
  padding: 24px;
}

.role-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 154, 48, 0.12);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
}

h3 {
  margin: 22px 0 10px;
  font-size: 17px;
  line-height: 1.18;
}

.role-grid p,
.timeline p,
.experience-list li {
  color: var(--muted);
}

.role-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 760;
}

.development {
  background: #0f100f;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--gold), var(--teal));
  content: "";
  transform: translateX(-50%);
}

.timeline article {
  position: relative;
  width: calc(50% - 42px);
  padding: 24px;
}

.timeline article:nth-child(even) {
  margin-left: calc(50% + 42px);
}

.timeline article::after {
  position: absolute;
  top: 32px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.timeline article:nth-child(odd)::after {
  right: -52px;
}

.timeline article:nth-child(even)::after {
  left: -52px;
  background: var(--teal);
}

.timeline span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline p + p {
  margin-top: 14px;
}

.old-paradigm {
  background: #16130d;
}

.experience-list {
  display: grid;
  gap: 14px;
}

.experience-list article {
  padding: 26px;
}

.experience-list h3 {
  margin-top: 0;
  color: var(--gold-soft);
}

.experience-list ul,
.experience-list ol {
  margin: 0;
  padding-left: 22px;
}

.experience-list li + li {
  margin-top: 13px;
}

.paradigm {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(135deg, rgba(216, 154, 48, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(104, 215, 206, 0.12), transparent 30%),
    #090908;
}

.widget-cta {
  display: flex;
  justify-content: center;
  padding-top: 46px;
  padding-bottom: 46px;
  background: #090908;
}

.widget-cta button {
  min-height: 48px;
  border: 1px solid rgba(242, 197, 111, 0.6);
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(135deg, rgba(216, 154, 48, 0.22), rgba(104, 215, 206, 0.1));
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.widget-cta button:hover {
  border-color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(216, 154, 48, 0.34), rgba(104, 215, 206, 0.16));
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px clamp(22px, 5vw, 72px) 34px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art img {
    width: min(360px, 100%);
    margin: 0;
  }

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

  .timeline::before {
    left: 14px;
  }

  .timeline article,
  .timeline article:nth-child(even) {
    width: auto;
    margin-left: 42px;
  }

  .timeline article:nth-child(odd)::after,
  .timeline article:nth-child(even)::after {
    left: -38px;
    right: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px;
  }

  .hero,
  section {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .statement h2,
  .paradigm h2,
  .section-heading h2 {
    font-size: 23px;
  }

  .section-heading {
    display: block;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .role-grid article,
  .timeline article,
  .experience-list article {
    min-height: auto;
    padding: 20px;
  }
}
