:root {
  --ink: #101014;
  --ink-soft: #292833;
  --muted: #696978;
  --white: #ffffff;
  --wash: #f6f7fb;
  --panel: #fbfbfd;
  --violet: #5c55f6;
  --violet-soft: #efedff;
  --coral: #f16445;
  --coral-soft: #fff0ea;
  --teal: #159c8a;
  --teal-soft: #e9f7f4;
  --gold: #d79c28;
  --line: #e4e3ea;
  --line-strong: #d0ced9;
  --shadow: 0 24px 64px rgba(24, 23, 36, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  background: var(--white);
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--violet);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 90;
  pointer-events: none;
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  pointer-events: auto;
}

.nav-bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(16, 16, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(24, 23, 36, 0.06);
  animation: navDrop 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .nav-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 16, 20, 0.16);
  box-shadow: 0 16px 42px rgba(24, 23, 36, 0.09);
}

.brand-mark {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: conic-gradient(from 90deg, var(--coral), var(--violet), var(--teal), var(--coral));
  box-shadow: 0 0 0 6px rgba(92, 85, 246, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-links button,
.mobile-panel nav a,
.mobile-panel nav button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-links a,
.nav-links button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(16, 16, 20, 0.68);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--wash);
}

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

.nav-links .nav-cta:hover {
  background: var(--violet);
  transform: translateY(-1px);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--wash);
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
  background: rgba(16, 16, 20, 0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: min(430px, 100%);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(24, 23, 36, 0.16);
  transform: translateY(-10px) scale(0.98);
  transition: transform 220ms ease;
}

.mobile-menu.active .mobile-panel {
  transform: translateY(0) scale(1);
}

.mobile-panel-header {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 2px 2px 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-panel-header .brand-mark {
  min-height: 42px;
  font-size: 1rem;
}

.close-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: inherit;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.close-button::before,
.close-button::after {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.close-button:hover {
  background: var(--wash);
  transform: rotate(6deg);
}

.mobile-panel nav {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.mobile-panel nav a,
.mobile-panel nav button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.mobile-panel nav a::after,
.mobile-panel nav button::after {
  content: ">";
  color: var(--coral);
  font-family: "Archivo", sans-serif;
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.mobile-panel nav a:hover,
.mobile-panel nav button:hover {
  padding-left: 10px;
  color: var(--violet);
  background: linear-gradient(90deg, rgba(239, 237, 255, 0.72), transparent);
}

.mobile-panel nav a:hover::after,
.mobile-panel nav button:hover::after {
  transform: translateX(3px);
}

.mobile-panel nav button {
  margin-top: 12px;
  min-height: 48px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.mobile-panel nav button::after {
  margin-left: 8px;
  color: var(--white);
}

.mobile-panel nav button:hover {
  padding-left: 6px;
  background: var(--violet);
  color: var(--white);
}

main {
  overflow: hidden;
}

.section {
  padding: 100px 24px;
}

.section.tight {
  padding-top: 76px;
  padding-bottom: 76px;
}

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

.section.wash,
.section.dark {
  background: var(--wash);
  color: var(--ink);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-family: "Newsreader", serif;
  font-size: 0.96rem;
  font-weight: 650;
}

.section-title,
.large-title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  line-height: 1.04;
}

.section-title {
  max-width: 780px;
  font-size: 2.85rem;
}

.large-title {
  font-size: 3.75rem;
}

.section-copy {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.8;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero {
  position: relative;
  min-height: 740px;
  padding: 128px 24px 44px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(92, 85, 246, 0.06) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, rgba(21, 156, 138, 0.06) 0 1px, transparent 1px 118px),
    var(--white);
  color: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  right: -8vw;
  top: 112px;
  z-index: -1;
  width: 46vw;
  max-width: 680px;
  height: 420px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(92, 85, 246, 0.16) 28% 48%, transparent 48%),
    linear-gradient(28deg, transparent 0 62%, rgba(241, 100, 69, 0.15) 62% 74%, transparent 74%);
  content: "";
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: riseIn 700ms 80ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 6.55rem;
  font-weight: 800;
  line-height: 0.92;
}

.hero-manifesto {
  max-width: 790px;
  margin: 24px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.08;
}

.hero-lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-note {
  max-width: 620px;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  font-family: "Newsreader", serif;
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.6;
}

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

.button {
  min-height: 50px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(24, 23, 36, 0.1);
}

.button.primary {
  background: var(--violet);
  color: var(--white);
}

.button.primary:hover {
  background: #4943df;
}

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

.button.ghost,
.button.dark-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button.ghost:hover,
.button.dark-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button::after {
  content: ">";
  font-weight: 800;
  transition: transform 180ms ease;
}

.button:hover::after {
  transform: translateX(3px);
}

.hero-portrait {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
  animation: portraitIn 760ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-portrait::before {
  position: absolute;
  inset: 14px 14px auto auto;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(24, 23, 36, 0.1);
  content: "Clarity / Momentum";
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--teal));
  content: "";
  animation: accentWipe 900ms 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.02);
  transition: filter 220ms ease, transform 420ms ease;
}

.hero-portrait:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.018);
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.proof-item {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(24, 23, 36, 0.04);
  animation: riseIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.proof-item:nth-child(1) {
  animation-delay: 220ms;
}

.proof-item:nth-child(2) {
  animation-delay: 300ms;
}

.proof-item:nth-child(3) {
  animation-delay: 380ms;
}

.proof-item:nth-child(4) {
  animation-delay: 460ms;
}

.proof-item strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1.06rem;
  line-height: 1.18;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.intro-band {
  padding: 46px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(239, 237, 255, 0.9), rgba(255, 255, 255, 0.95) 48%, rgba(233, 247, 244, 0.9)),
    var(--white);
  color: var(--ink);
}

.intro-band .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.intro-statement {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
}

.intro-band p:not(.intro-statement) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-grid.offset {
  margin-top: 48px;
}

.service-card,
.experience-card,
.role-card,
.engagement-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 44px rgba(24, 23, 36, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--teal));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 260ms ease;
  content: "";
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(24, 23, 36, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.dark-card {
  background: linear-gradient(145deg, var(--violet-soft), var(--white));
}

.service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}

.service-card:nth-child(2) .service-number,
.service-card:nth-child(5n) .service-number {
  background: var(--coral);
}

.service-card:nth-child(3) .service-number {
  background: var(--teal);
}

.service-card h3 {
  margin: 28px 0 0;
  font-family: "Newsreader", serif;
  font-size: 1.72rem;
  font-weight: 650;
  line-height: 1.12;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.feature-strip article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(24, 23, 36, 0.035);
}

.feature-strip strong {
  display: block;
  color: var(--coral);
  font-family: "Newsreader", serif;
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.2;
}

.feature-strip article:nth-child(2) strong {
  color: var(--violet);
}

.feature-strip article:nth-child(3) strong {
  color: var(--teal);
}

.feature-strip p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.experience-card {
  min-height: 230px;
  padding: 24px;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(24, 23, 36, 0.035);
  transition: transform 200ms ease, border-color 200ms ease;
}

.experience-card:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
}

.experience-card span,
.role-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-family: "Newsreader", serif;
  font-size: 0.96rem;
  font-weight: 650;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-section {
  padding: 104px 24px;
  background: var(--white);
}

.quote-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: center;
}

.quote-panel blockquote {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 3.45rem;
  font-weight: 800;
  line-height: 1.06;
}

.quote-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.quote-panel p + p {
  margin-top: 18px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.engagement-card {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
  transition: transform 200ms ease, background 200ms ease;
}

.engagement-card:hover {
  transform: translateY(-3px);
  background: var(--teal-soft);
}

.engagement-card strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.18;
}

.cta-band {
  padding: 86px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 118px),
    var(--ink-soft);
  color: var(--white);
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 34px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.04;
}

.cta-band p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.site-footer {
  padding: 34px 24px;
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--ink);
}

.sticky-mobile-cta {
  position: fixed;
  z-index: 80;
  inset: auto 12px 12px;
  display: none;
  transform: translateY(120%);
  transition: transform 220ms ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-mobile-cta button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(24, 23, 36, 0.22);
}

.subhero {
  padding: 138px 24px 72px;
  background:
    linear-gradient(90deg, rgba(92, 85, 246, 0.06) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, rgba(21, 156, 138, 0.06) 0 1px, transparent 1px 118px),
    var(--white);
  color: var(--ink);
}

.subhero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: end;
}

.subhero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1;
}

.subhero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.download-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 23, 36, 0.04);
}

.download-panel p {
  margin: 0 0 18px;
  font-size: 0.96rem;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.role-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  padding: 26px;
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.role-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(24, 23, 36, 0.06);
}

.role-card h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.08;
}

.role-meta {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.role-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.role-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.expertise-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 44px;
}

.expertise-board div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.expertise-board strong {
  display: block;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}

.expertise-board p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 16, 20, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  transition: transform 220ms ease;
}

.modal-overlay.active .modal-panel {
  transform: translateY(0);
}

.modal-panel .close-button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.modal-panel h2 {
  margin: 0;
  padding-right: 46px;
  font-family: "Archivo", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.04;
}

.modal-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
  font-weight: 800;
}

.contact-list a::after {
  content: ">";
  color: var(--coral);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(1.4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes accentWipe {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero-inner,
  .section-grid,
  .intro-band .section-inner,
  .quote-panel,
  .cta-band .section-inner,
  .subhero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 4.85rem;
  }

  .hero-manifesto {
    font-size: 2.15rem;
  }

  .hero-portrait {
    min-height: 420px;
  }

  .hero-proof,
  .service-grid,
  .feature-strip,
  .experience-grid,
  .engagement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subhero h1 {
    font-size: 3.65rem;
  }

  .download-panel {
    max-width: 420px;
  }

  .role-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 12px;
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .nav-bar {
    min-height: 58px;
    padding-left: 16px;
  }

  .section {
    padding: 72px 18px;
  }

  .section.tight {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero {
    padding: 104px 18px 26px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-manifesto,
  .section-title {
    font-size: 2.05rem;
  }

  .large-title,
  .cta-band h2,
  .quote-panel blockquote {
    font-size: 2.2rem;
  }

  .hero-lede,
  .lede,
  .section-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    min-height: 360px;
  }

  .hero-proof,
  .service-grid,
  .feature-strip,
  .experience-grid,
  .engagement-grid,
  .expertise-board {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 96px;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
  }

  .quote-section {
    padding: 76px 18px;
  }

  .cta-band {
    padding: 72px 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .subhero {
    padding: 116px 18px 62px;
  }

  .subhero h1 {
    font-size: 2.55rem;
  }

  .role-card {
    padding: 22px;
  }

  .role-card h2 {
    font-size: 1.35rem;
  }

  .modal-panel {
    padding: 28px 20px 22px;
  }

  .modal-panel h2 {
    font-size: 2rem;
  }

  .contact-list a {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
