:root {
  --ink: #0b1b2c;
  --ink-2: #12293f;
  --paper: #f5f2ea;
  --white: #fffdf8;
  --soft: #e9edf2;
  --line: #d7d5ce;
  --muted: #5f6975;
  --blue: #4169e1;
  --blue-dark: #3152bb;
  --coral: #ff7358;
  --mint: #83e6c2;
  --max: 1180px;
  --radius: 10px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3 {
  line-height: 1.07;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--white);
}

.site-header::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: -8rem;
  bottom: -14rem;
  border: 1px solid rgba(131, 230, 194, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(131, 230, 194, 0.035), 0 0 0 8rem rgba(131, 230, 194, 0.025);
  pointer-events: none;
}

.nav-shell,
.hero-shell,
.signal-grid,
.section,
.closing-section,
.site-footer {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav-links > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.7);
  transition: color 160ms ease;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
  min-height: 42rem;
  padding-block: 5.5rem 6.5rem;
}

.eyebrow,
.section-index,
.proof-label,
.credential-label,
.role-company {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--mint);
  margin-bottom: 1.45rem;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(131, 230, 194, 0.12);
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.15rem, 7vw, 6.25rem);
  font-weight: 770;
  letter-spacing: -0.065em;
}

.hero-lede {
  max-width: 710px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: var(--ink);
}

.button-primary:hover {
  background: #ff8a73;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.button-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--ink);
}

.hero-location {
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.candidate-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.candidate-card::before {
  content: "";
  position: absolute;
  inset: 0.8rem auto 0.8rem -0.35rem;
  width: 3px;
  border-radius: 3px;
  background: var(--mint);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.candidate-statement {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.candidate-details {
  margin: 0;
}

.candidate-details div {
  padding: 0.92rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.candidate-details dt {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.candidate-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.55rem 1.35rem;
  border-right: 1px solid var(--line);
}

.signal-item:first-child {
  padding-left: 0;
}

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

.signal-item strong {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.signal-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.section-light {
  background: var(--paper);
}

.section-ink,
.section-soft {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - var(--max)) / 2));
}

.section-ink {
  background: var(--ink-2);
  color: var(--white);
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.25rem;
}

.section-index {
  color: var(--blue);
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0.7rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.055em;
}

.section-heading > div > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.section-heading-inverse .section-index {
  color: var(--mint);
}

.section-heading-inverse > div > p {
  color: rgba(255, 255, 255, 0.62);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-card {
  min-height: 20rem;
  padding: 1.6rem 1.6rem 1.8rem;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.fit-card:first-child {
  padding-left: 0;
}

.fit-card:last-child {
  border-right: 0;
}

.fit-card:hover {
  background: rgba(255, 255, 255, 0.45);
}

.card-number,
.path-number {
  display: inline-grid;
  width: 2.1rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.fit-card h3 {
  max-width: 14rem;
  margin: 5rem 0 0.9rem;
  font-size: 1.6rem;
}

.fit-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.buyer-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.buyer-path li {
  min-height: 17rem;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.buyer-path li:first-child {
  padding-left: 0;
}

.buyer-path li:last-child {
  border-right: 0;
}

.buyer-path .path-number {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--mint);
}

.buyer-path div {
  margin-top: 4.25rem;
}

.buyer-path h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

.buyer-path p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.proof-card {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(11, 27, 44, 0.08);
}

.proof-card-wide {
  grid-column: span 1;
}

.proof-card-accent {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.proof-card-accent p,
.proof-card-accent .proof-label {
  color: rgba(255, 255, 255, 0.76);
}

.proof-card-accent .mini-tags li {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.proof-label {
  margin-bottom: auto;
  color: var(--blue);
}

.proof-card h3 {
  max-width: 28rem;
  margin: 3.5rem 0 0.85rem;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.proof-card > p:not(.proof-label) {
  max-width: 37rem;
  font-size: 0.94rem;
}

.mini-tags,
.tool-list {
  list-style: none;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
}

.mini-tags li {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.background-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.role {
  padding: 0 0 2.25rem;
  border-bottom: 1px solid #c9ced6;
  margin-bottom: 2.25rem;
}

.role-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.role-company {
  margin-bottom: 0.35rem;
  color: var(--blue);
}

.role h3 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.role-date {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
}

.role > p {
  max-width: 690px;
  margin-bottom: 0;
}

.credentials-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.credential-block {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.credential-block:first-child {
  padding-top: 0;
}

.credential-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.credential-label {
  color: var(--mint);
}

.credential-block h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.credential-block p:not(.credential-label) {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.credential-block p:last-child {
  margin-bottom: 0;
}

.tool-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.tool-list li::before {
  content: "→";
  margin-right: 0.55rem;
  color: var(--coral);
}

.closing-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-block: 1.5rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
}

.closing-copy {
  max-width: 760px;
}

.eyebrow-dark {
  color: var(--ink);
}

.closing-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  letter-spacing: -0.055em;
}

.closing-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-block: 2rem 3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .hero-shell,
  .background-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 3rem;
  }

  .candidate-card {
    max-width: 38rem;
  }

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

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

  .signal-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .signal-item:nth-child(3) {
    padding-left: 0;
  }

  .buyer-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-path li:nth-child(2) {
    border-right: 0;
  }

  .buyer-path li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .buyer-path li:nth-child(3) {
    padding-left: 0;
  }

  .closing-section {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero-shell,
  .signal-grid,
  .section,
  .closing-section,
  .site-footer {
    width: min(calc(100% - 2rem), var(--max));
  }

  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    padding-block: 4.25rem 5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .section-ink,
  .section-soft {
    width: 100%;
    padding-inline: 1rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .fit-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .fit-card,
  .fit-card:first-child {
    min-height: 16rem;
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fit-card:last-child {
    border-bottom: 0;
  }

  .fit-card h3 {
    margin-top: 3rem;
  }

  .proof-card {
    min-height: 19rem;
  }

  .role-header,
  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .brand > span:last-child {
    display: none;
  }

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

  .signal-grid,
  .buyer-path {
    grid-template-columns: 1fr;
  }

  .signal-item,
  .signal-item:first-child,
  .signal-item:nth-child(3) {
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .buyer-path li,
  .buyer-path li:first-child,
  .buyer-path li:nth-child(3) {
    min-height: auto;
    padding: 1.4rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .buyer-path li:last-child {
    border-bottom: 0;
  }

  .buyer-path div {
    margin-top: 2.5rem;
  }
}

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

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

@media print {
  .site-header,
  .section-ink,
  .credentials-card,
  .closing-section {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .nav-links,
  .hero-actions,
  .closing-section .button {
    display: none;
  }
}
