:root {
  color-scheme: dark;
  --bg: #11110f;
  --surface: #191916;
  --surface-hover: #20201c;
  --text: #f2f0e9;
  --muted: #9c9b91;
  --line: #33332e;
  --acid: #d9ff63;
  --coral: #ff715b;
  --page: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 8%, rgb(217 255 99 / 8%), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--acid);
  color: #11110f;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header,
.hero,
.proof-grid,
.competencies,
.experience,
.leadership,
.about,
.outside,
.contacts,
.site-footer {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--acid);
  color: #11110f;
  font-size: 13px;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.62fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  min-height: 680px;
  padding: 104px 0 88px;
}

.hero-copy,
.hero-card {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.section-note,
.hero-card-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgb(255 113 91 / 12%);
}

h1 {
  max-width: 980px;
  margin: 24px 0 32px;
  font-size: clamp(50px, 7.25vw, 108px);
  line-height: 0.97;
}

h1 em,
.contacts h2 em {
  color: var(--acid);
  font-style: normal;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #c2c1b7;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #11110f;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--acid);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 28px;
  border: 1px solid #44443d;
  border-radius: 28px;
  background: linear-gradient(145deg, #22221e, #181815);
  transform: translateY(56px);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -85px;
  width: 220px;
  height: 220px;
  border: 42px solid rgb(217 255 99 / 10%);
  border-radius: 50%;
}

.hero-card-value {
  margin: 24px 0 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero-card-value span {
  color: var(--coral);
}

.hero-card-caption {
  max-width: 250px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-card-tags {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-card-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7c6bd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.proof-grid article {
  min-height: 158px;
  padding: 32px 26px;
  border-right: 1px solid var(--line);
}

.proof-grid article:first-child {
  padding-left: 0;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 12px;
  color: var(--acid);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.proof-grid span {
  max-width: 220px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.competencies,
.leadership,
.about,
.outside,
.contacts {
  padding: 112px 0;
}

.competencies,
.experience,
.about,
.outside,
.contacts {
  border-top: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-header h2,
.about h2,
.outside h2,
.contacts h2 {
  margin: 8px 0 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
}

.section-note {
  padding-bottom: 8px;
  color: var(--acid);
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.competency-card {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.competency-number {
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
}

.competency-card h3 {
  max-width: 220px;
  margin: 72px 0 18px;
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.competency-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.skill-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.skill-groups > div {
  padding: 24px;
  background: var(--bg);
}

.skill-groups h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.skill-groups p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.experience {
  padding: 112px 0 0;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-card {
  display: grid;
  grid-template-columns: 50px 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, padding 180ms ease;
}

.experience-card:hover {
  padding-inline: 32px 16px;
  background: var(--surface-hover);
}

.experience-card--featured {
  background: var(--surface);
}

.experience-index {
  padding-top: 15px;
  color: #68685f;
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
}

.logo-box {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 9px;
  border-radius: 18px;
  background: #f5f3ec;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-box--dark {
  background: #151822;
}

.logo-box--icon-left img {
  object-fit: cover;
  object-position: left center;
}

.logo-box--flush {
  overflow: hidden;
  padding: 0;
}

.logo-box--text {
  background: var(--acid);
  color: #11110f;
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.experience-content {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 92px);
  padding-top: 2px;
}

.experience-period {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experience-heading h3 {
  margin: 0 0 5px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.experience-heading small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0;
}

.experience-role {
  margin: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
}

.experience-points {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  list-style: none;
}

.experience-points li {
  position: relative;
  padding-left: 16px;
}

.experience-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.experience-stack {
  margin: 18px 0 0;
  color: #77766e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.leadership-card {
  display: flex;
  gap: 24px;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.leadership-card--wide {
  grid-column: 1 / -1;
}

.leadership-card h3 {
  margin: 8px 0 14px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(19px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.leadership-card > div:last-child > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.project-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--coral);
  color: #11110f;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 10vw, 160px);
}

.outside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 10vw, 160px);
}

.about-copy > p {
  max-width: 620px;
  margin-bottom: 56px;
  color: #d3d1c8;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.outside-copy > p {
  max-width: 620px;
  margin-bottom: 56px;
  color: #d3d1c8;
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.facts {
  margin: 0;
}

.facts div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
}

.facts dd {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 10vw, 160px);
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  padding-left: 8px;
  color: var(--acid);
}

.contact-links span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-links strong {
  font-size: 14px;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1000px) {
  .competency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .competency-card {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    min-height: auto;
    padding: 80px 0;
  }

  .hero-card {
    min-height: 300px;
    transform: none;
  }

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

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

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

  .proof-grid article:nth-child(3) {
    padding-left: 0;
  }

  .skill-groups {
    grid-template-columns: 1fr;
  }

  .experience-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about,
  .outside,
  .contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand-name,
  .site-nav a:first-child {
    display: none;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(28px, 8.8vw, 52px);
    line-height: 1;
  }

  .section-header h2,
  .about h2,
  .outside h2,
  .contacts h2 {
    font-size: clamp(30px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .hero-card {
    min-height: 280px;
    padding: 24px;
  }

  .hero-card-tags {
    left: 24px;
    bottom: 24px;
  }

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

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:nth-child(3) {
    min-height: 124px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .competencies,
  .leadership,
  .about,
  .outside,
  .contacts {
    padding: 80px 0;
  }

  .experience {
    padding-top: 80px;
  }

  .section-header {
    display: block;
    margin-bottom: 32px;
  }

  .section-note {
    margin-top: 14px;
  }

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

  .competency-card {
    min-height: 250px;
    padding: 24px;
  }

  .competency-card h3 {
    margin-top: 48px;
  }

  .experience-card,
  .experience-card:hover {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 26px 0;
  }

  .experience-index {
    display: none;
  }

  .logo-box,
  .project-mark {
    width: 56px;
    height: 56px;
    padding: 7px;
    border-radius: 14px;
  }

  .logo-box--flush {
    padding: 0;
  }

  .experience-content {
    padding-top: 0;
  }

  .experience-heading h3 {
    font-size: 18px;
  }

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

  .leadership-card,
  .leadership-card--wide {
    grid-column: auto;
    min-height: auto;
    padding: 22px;
  }

  .facts div {
    display: block;
  }

  .facts dd {
    margin-top: 5px;
    text-align: left;
  }

  .contact-links a {
    display: block;
  }

  .contact-links strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 4px;
  }
}

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

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