:root {
  color-scheme: dark;
  --bg: #101014;
  --panel: #19191f;
  --text: #f7f3ef;
  --muted: #bcb3c4;
  --line: rgba(247, 243, 239, 0.16);
  --line-dark: rgba(20, 19, 24, 0.14);
  --pink: #d83f87;
  --purple: #7a45c7;
  --blue: #1e86e8;
  --accenture: #a100ff;
  --green: #65d6ad;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(120deg, rgba(216, 63, 135, 0.14), transparent 28%),
    linear-gradient(240deg, rgba(30, 134, 232, 0.16), transparent 30%),
    #101014;
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
  content: "";
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(16, 16, 20, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.accenture-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 800;
}

.brand {
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--pink), var(--purple) 48%, var(--blue));
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
}

.accenture-logo {
  position: relative;
  padding-top: 8px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.accent-arrow {
  position: absolute;
  top: -8px;
  left: 18px;
  color: var(--accenture);
  font-size: 1.35em;
  line-height: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  padding: 112px clamp(20px, 6vw, 80px) 56px;
}

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

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: 8.5rem;
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 13ch;
  font-size: 4.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
}

.subtitle {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 243, 239, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  font-weight: 800;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(161, 0, 255, 0.26),
    transparent 34%
  );
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.button:hover::after {
  opacity: 1;
}

.button.primary {
  background: var(--text);
  color: var(--bg);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.profile-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 25, 31, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.profile-panel::before {
  position: absolute;
  inset: 14px 14px auto auto;
  z-index: 2;
  width: 86px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  content: "";
}

.portrait {
  display: grid;
  min-height: 360px;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.1), rgba(16, 16, 20, 0.62)),
    linear-gradient(135deg, var(--pink), var(--purple) 52%, var(--blue));
}

.portrait span {
  display: grid;
  width: min(54%, 220px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: white;
  font-size: 8rem;
  font-weight: 900;
}

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

.status-grid p {
  margin: 0;
  min-height: 98px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}

.status-grid p:nth-child(even) {
  border-right: 0;
}

.status-grid p:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.status-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.band {
  padding: clamp(58px, 9vw, 110px) clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.facts {
  background: #f3eee8;
  color: #141318;
}

.facts .kicker {
  color: #6c2fb5;
}

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

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

.metrics p {
  margin: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 63, 135, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.7);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: #141318;
  font-size: 2.35rem;
  line-height: 1;
}

.metrics span {
  margin-top: 10px;
  color: rgba(20, 19, 24, 0.66);
  font-weight: 800;
}

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

.fact-list article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.fact-list article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 44px rgba(20, 19, 24, 0.1);
}

.fact-list span {
  color: #6c2fb5;
  font-weight: 900;
}

.fact-list p,
.tribute p {
  color: rgba(20, 19, 24, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.tribute {
  min-height: 58vh;
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(216, 63, 135, 0.2), transparent 35%),
    linear-gradient(270deg, rgba(30, 134, 232, 0.18), transparent 38%),
    #17171d;
}

.tribute p:not(.kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.24rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .profile-panel {
    max-width: 560px;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .fact-list,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

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

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
  }

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

  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .subtitle,
  .tribute p:not(.kicker) {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .portrait {
    min-height: 260px;
  }

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

  .status-grid p,
  .status-grid p:nth-child(even),
  .status-grid p:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-grid p:last-child {
    border-bottom: 0;
  }
}
