:root {
  --background: #fbfaf6;
  --foreground: #171532;
  --card: #ffffff;
  --card-foreground: #171532;
  --popover: #ffffff;
  --popover-foreground: #171532;
  --primary: #2c2860;
  --primary-foreground: #ffffff;
  --secondary: #f3f1e9;
  --secondary-foreground: #2c2860;
  --muted: #f0eee6;
  --muted-foreground: #68657a;
  --accent: #f9cf3d;
  --accent-foreground: #2c2860;
  --destructive: #b42318;
  --border: #dedce7;
  --input: #d7d4df;
  --ring: #2c2860;
  --radius: 0.9rem;
  --navy: #2c2860;
  --navy-deep: #171532;
  --yellow: #f9cf3d;
  --off-white: #fbfaf6;
  --soft-white: #f3f1e9;
  --ink-muted: #68657a;
  --font-display: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial,
    sans-serif;
  --font-body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

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

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

button {
  border: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--yellow);
  color: var(--navy-deep);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

main {
  overflow-x: hidden;
  overflow-x: clip;
}

.section-shell {
  width: min(1240px, calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  padding: 8px 12px 8px 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(44, 40, 96, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(23, 21, 50, 0.08);
  backdrop-filter: blur(18px);
}

.header-brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 52px;
  overflow: hidden;
}

.header-logo {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(23, 21, 50, 0.72);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--yellow);
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-linkedin {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(44, 40, 96, 0.14);
  border-radius: 13px;
  color: var(--navy);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-linkedin:hover,
.header-linkedin:focus-visible {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: var(--yellow);
}

.header-linkedin svg {
  width: 18px;
  height: 18px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 13px;
  background: var(--navy);
  color: white;
  font-size: 0.86rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
}

.header-cta svg {
  width: 17px;
}

.mobile-menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: white;
  cursor: pointer;
}

.mobile-sheet-overlay {
  position: fixed;
  z-index: 48;
  inset: 0;
  visibility: hidden;
  background: rgba(17, 16, 36, 0.46);
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.mobile-sheet-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-sheet {
  position: fixed;
  z-index: 49;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 320ms ease;
  width: min(92vw, 430px) !important;
  border: 0 !important;
  background: var(--navy) !important;
  color: white;
  padding: 30px !important;
}

.mobile-sheet.is-open {
  visibility: visible;
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-sheet > button {
  position: absolute;
  top: 27px;
  right: 25px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  opacity: 1;
  background: transparent;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.mobile-sheet-brand {
  display: flex;
  width: calc(100% - 60px);
  min-height: 44px;
  align-items: center;
  padding: 5px 12px;
  border-radius: 12px;
  background: white;
}

.mobile-sheet-logo {
  width: 148px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
}

.mobile-nav a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mobile-nav a span {
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.mobile-nav a svg {
  width: 21px;
}

.mobile-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 750;
}

.mobile-contact-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.mobile-linkedin-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.78rem;
  font-weight: 720;
}

.mobile-linkedin-link svg {
  width: 17px;
  height: 17px;
}

.mobile-linkedin-link svg:first-child {
  color: var(--yellow);
}

.mobile-sheet-foot {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 36px 54px;
  min-height: 780px;
  padding: 186px max(36px, calc((100vw - 1240px) / 2)) 48px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(249, 207, 61, 0.12),
      transparent 25%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
}

.header-clearance {
  min-height: 132px;
  background: var(--off-white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(44, 40, 96, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 40, 96, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-rule {
  position: absolute;
  top: 114px;
  right: max(36px, calc((100vw - 1240px) / 2));
  left: max(36px, calc((100vw - 1240px) / 2));
  height: 1px;
  background: rgba(44, 40, 96, 0.12);
}

.hero-copy,
.hero-visual,
.hero-foot {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 23px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-eyebrow-text {
  min-width: 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
}

.hero h1,
.section-heading h2,
.positioning-copy h2,
.roadmap-intro h2,
.events-copy h2,
.engagement-card h2,
.partnership-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 740px;
  color: var(--navy-deep);
  font-size: clamp(3.8rem, 6.1vw, 6.75rem);
  line-height: 0.92;
}

.hero h1 em {
  position: relative;
  color: var(--navy);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -3px;
  bottom: 5px;
  left: 0;
  height: 17px;
  content: "";
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #555167;
  font-size: clamp(1.05rem, 1.45vw, 1.27rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 34px;
}

.button-primary,
.button-quiet {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  font-size: 0.88rem;
  font-weight: 760;
}

.button-primary {
  padding: 0 23px;
  border-radius: 13px;
  background: var(--navy);
  color: white;
  box-shadow: 0 16px 35px rgba(44, 40, 96, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(44, 40, 96, 0.23);
}

.button-quiet {
  min-height: 48px;
  border-bottom: 1px solid rgba(44, 40, 96, 0.3);
  color: var(--navy);
}

.button-primary svg,
.button-quiet svg,
.text-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.button-primary:hover svg,
.button-quiet:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 470px;
}

.strategy-map {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
}

.strategy-map::before,
.strategy-map::after {
  position: absolute;
  z-index: 0;
  content: "";
  border-radius: 50% 12% 50% 50%;
  filter: drop-shadow(0 16px 24px rgba(44, 40, 96, 0.12));
}

.strategy-map::before {
  top: 8%;
  right: 4%;
  width: 42%;
  height: 70%;
  transform: rotate(26deg);
  background: var(--navy);
  animation: shape-float 8s ease-in-out infinite;
}

.strategy-map::after {
  bottom: 4%;
  left: 3%;
  width: 36%;
  height: 64%;
  transform: rotate(21deg);
  background: var(--yellow);
  animation: shape-float-reverse 9s ease-in-out infinite;
}

.map-glow {
  position: absolute;
  top: 18%;
  left: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: white;
  box-shadow: 0 30px 80px rgba(23, 21, 50, 0.1);
}

.map-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(44, 40, 96, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-orbit-one {
  width: 67%;
  height: 67%;
  border-style: dashed;
  animation: orbit-spin 28s linear infinite;
}

.map-orbit-two {
  width: 47%;
  height: 47%;
  border-color: rgba(44, 40, 96, 0.13);
}

.map-orbit-three {
  width: 83%;
  height: 83%;
  border-color: rgba(44, 40, 96, 0.12);
  border-style: dashed;
  animation: orbit-spin-reverse 38s linear infinite;
}

.map-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  transform: translate(-50%, -50%);
  border: 9px solid white;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  text-align: center;
  box-shadow: 0 25px 50px rgba(44, 40, 96, 0.23);
  animation: core-breathe 4.8s ease-in-out infinite;
}

.map-core span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-core strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.orbit-word {
  --orbit-card-top: 10%;
  --orbit-delay: 0s;
  --orbit-duration: 22s;

  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  animation: orbit-label-spin var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
}

.orbit-word-card {
  position: absolute;
  top: var(--orbit-card-top);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  padding: 10px 12px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(44, 40, 96, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 710;
  box-shadow: 0 10px 30px rgba(23, 21, 50, 0.09);
  backdrop-filter: blur(8px);
  will-change: transform;
  animation: orbit-label-counter var(--orbit-duration) linear infinite;
  animation-delay: var(--orbit-delay);
}

.orbit-word-card span {
  color: var(--navy);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.orbit-word-one {
  --orbit-card-top: 8%;
  --orbit-delay: -3s;
  --orbit-duration: 24s;
}

.orbit-word-two {
  --orbit-card-top: 16%;
  --orbit-delay: -11s;
  --orbit-duration: 19s;
}

.orbit-word-three {
  --orbit-card-top: 3%;
  --orbit-delay: -20s;
  --orbit-duration: 30s;
}

.orbit-word-four {
  --orbit-card-top: 21.5%;
  --orbit-delay: -6s;
  --orbit-duration: 16s;
}

.strategy-map:hover .orbit-word,
.strategy-map:hover .orbit-word-card {
  animation-play-state: paused;
}

.map-signal {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(249, 207, 61, 0.22);
  animation: signal-pulse 2.2s ease-out infinite;
}

.signal-one {
  top: 24%;
  left: 23%;
}

.signal-two {
  right: 20%;
  bottom: 30%;
  animation-delay: 0.7s;
}

.signal-three {
  bottom: 19%;
  left: 35%;
  animation-delay: 1.3s;
}

.hero-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(44, 40, 96, 0.13);
}

.hero-foot > div:first-child {
  display: grid;
  gap: 5px;
}

.hero-foot-label {
  color: var(--ink-muted);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.hero-foot-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.hero-foot-pills span {
  padding: 8px 11px;
  border: 1px solid rgba(44, 40, 96, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #5f5b70;
  font-size: 0.68rem;
  font-weight: 650;
}

.positioning-section {
  display: grid;
  grid-template-columns: 0.55fr 1.65fr 0.35fr;
  gap: 40px;
  align-items: start;
  padding-block: 116px;
}

.section-kicker {
  padding-top: 10px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.positioning-copy h2 {
  max-width: 850px;
  color: var(--navy-deep);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 1.02;
}

.positioning-copy p {
  max-width: 740px;
  margin: 30px 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.positioning-mark {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 2.2rem;
  animation: mark-breathe 4s ease-in-out infinite;
}

.services-section {
  padding-block: 40px 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.roadmap-intro h2,
.events-copy h2,
.engagement-card h2,
.partnership-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.55rem, 4.5vw, 4.65rem);
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--ink-muted);
  line-height: 1.72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(44, 40, 96, 0.17);
  border-left: 1px solid rgba(44, 40, 96, 0.17);
}

.service-grid--1-columns {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 520px);
  margin-inline: auto;
}

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

.service-card {
  position: relative;
  min-height: 355px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid rgba(44, 40, 96, 0.17);
  border-bottom: 1px solid rgba(44, 40, 96, 0.17);
  background: rgba(255, 255, 255, 0.54);
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.service-card::after {
  position: absolute;
  right: -65px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  transform: scale(0);
  transform-origin: center;
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover {
  z-index: 2;
  background: white;
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(23, 21, 50, 0.1);
}

.service-card:hover::after {
  transform: scale(1);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(44, 40, 96, 0.14);
  border-radius: 50%;
  background: white;
  color: var(--navy);
}

.service-icon svg {
  width: 19px;
}

.service-card h3 {
  max-width: 310px;
  margin: 58px 0 14px;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-card p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-card a {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 760;
}

.service-card a svg {
  width: 17px;
}

.roadmap-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.roadmap-section::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 540px;
  height: 540px;
  content: "";
  border: 1px solid rgba(249, 207, 61, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(249, 207, 61, 0.025),
    0 0 0 140px rgba(249, 207, 61, 0.02);
}

.roadmap-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(290px, 0.42fr);
  gap: 30px 90px;
  align-items: end;
}

.roadmap-intro .eyebrow,
.roadmap-intro h2 {
  grid-column: 1;
}

.roadmap-intro .eyebrow {
  margin-bottom: -6px;
}

.roadmap-intro h2 {
  max-width: 780px;
}

.roadmap-intro > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.roadmap-shell {
  position: relative;
  z-index: 1;
  margin-top: 76px;
}

.roadmap-track {
  position: absolute;
  top: 62px;
  right: 2%;
  left: 2%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.roadmap-track span {
  display: block;
  width: var(--roadmap-progress);
  height: 3px;
  margin-top: -1px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(249, 207, 61, 0.65);
  transition: width 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.roadmap-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.roadmap-steps button {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 0 8px 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 220ms ease;
}

.roadmap-steps button::after {
  width: 14px;
  height: 14px;
  content: "";
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  outline: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.roadmap-steps button span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.roadmap-steps button.is-active {
  color: white;
}

.roadmap-steps button.is-active::after {
  transform: scale(1.45);
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(249, 207, 61, 0.16);
}

.roadmap-steps button:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.roadmap-detail {
  display: grid;
  grid-template-columns: 0.28fr 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 230px;
  margin-top: 26px;
  padding: 38px 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.roadmap-detail-index {
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

.roadmap-detail-copy {
  animation: detail-enter 480ms ease both;
}

.roadmap-detail-copy p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-detail-copy h3 {
  margin: 0 0 11px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 620;
}

.roadmap-detail-copy span {
  display: block;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.roadmap-detail > svg {
  width: 50px;
  height: 50px;
  color: var(--yellow);
}

.events-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
  padding-block: 132px;
}

.events-copy h2 {
  max-width: 520px;
}

.events-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(44, 40, 96, 0.28);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 760;
}

.event-lifecycle {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 48px;
}

.lifecycle-line {
  position: absolute;
  top: 33px;
  bottom: 33px;
  left: 16px;
  width: 1px;
  background: rgba(44, 40, 96, 0.2);
}

.lifecycle-line::after {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 38%;
  content: "";
  border-radius: 999px;
  background: var(--yellow);
  animation: lifecycle-travel 4.5s ease-in-out infinite;
}

.event-lifecycle article {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px 22px;
  padding: 25px 28px;
  border: 1px solid rgba(44, 40, 96, 0.13);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 35px rgba(23, 21, 50, 0.045);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.event-lifecycle article::before {
  position: absolute;
  top: 30px;
  left: -38px;
  width: 11px;
  height: 11px;
  content: "";
  border: 3px solid var(--off-white);
  border-radius: 50%;
  background: var(--navy);
  outline: 1px solid var(--navy);
}

.event-lifecycle article:hover {
  transform: translateX(7px);
  border-color: rgba(44, 40, 96, 0.28);
}

.event-lifecycle article > span {
  grid-row: 1 / 3;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-lifecycle strong {
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.event-lifecycle p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

.engagement-section {
  padding-bottom: 130px;
}

.engagement-card {
  display: grid;
  grid-template-columns: 70px 1.2fr 0.8fr;
  gap: 35px 50px;
  align-items: start;
  padding: 62px;
  border-radius: 28px;
  background: var(--soft-white);
}

.engagement-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
}

.engagement-icon svg {
  width: 25px;
}

.engagement-card h2 {
  max-width: 720px;
  font-size: clamp(2.3rem, 3.7vw, 4rem);
}

.engagement-card > p {
  margin: 47px 0 0;
  color: var(--ink-muted);
  line-height: 1.75;
}

.engagement-models {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.engagement-models div {
  display: grid;
  min-height: 118px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(44, 40, 96, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.4;
}

.engagement-models div span {
  color: var(--navy);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.partnership-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
}

.partnership-section::before {
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 620px;
  height: 620px;
  content: "";
  border: 140px solid var(--yellow);
  border-radius: 48% 52% 60% 40%;
  opacity: 0.08;
  transform: rotate(30deg);
}

.partnership-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.partnership-quote {
  min-height: 480px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 160px 22px 160px 22px;
  background: rgba(255, 255, 255, 0.06);
}

.partnership-quote svg {
  width: 46px;
  height: 46px;
  color: var(--yellow);
}

.partnership-quote p {
  margin: 72px 0 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.75rem);
  line-height: 1.23;
}

.partnership-copy h2 {
  max-width: 700px;
}

.partnership-points {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.partnership-points div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.partnership-points svg {
  flex: 0 0 20px;
  width: 20px;
  color: var(--yellow);
}

.partnership-points strong {
  color: white;
}

.proof-note {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.74rem;
  line-height: 1.55;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
  align-items: center;
  padding-block: 135px;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.about-shape {
  position: absolute;
  top: 50%;
  width: 52%;
  height: 78%;
  border-radius: 58% 42% 55% 45%;
  transform: translateY(-50%);
}

.about-shape-yellow {
  left: 4%;
  background: var(--yellow);
  animation: about-float-left 9s ease-in-out infinite;
}

.about-shape-navy {
  right: 5%;
  background: var(--navy);
  animation: about-float-right 8s ease-in-out infinite;
}

.about-shape-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44%;
  height: 58%;
  place-content: center;
  gap: 16px;
  padding: 24px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 30px 70px rgba(23, 21, 50, 0.15);
}

.about-shape-center svg {
  width: 32px;
  height: 32px;
  margin-inline: auto;
}

.about-shape-center span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-copy h2 {
  max-width: 670px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--ink-muted);
  line-height: 1.78;
}

.contact-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.contact-section::before {
  position: absolute;
  top: -220px;
  left: 38%;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(249, 207, 61, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(249, 207, 61, 0.025),
    0 0 0 180px rgba(249, 207, 61, 0.02);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
  line-height: 1.72;
}

.contact-location {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 52px;
}

.contact-location > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--yellow);
}

.contact-location div {
  display: grid;
  gap: 4px;
}

.contact-location span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-location strong {
  font-size: 0.9rem;
}

.contact-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.78rem;
  font-weight: 720;
}

.contact-linkedin svg {
  width: 17px;
  height: 17px;
}

.contact-linkedin svg:first-child {
  color: var(--yellow);
}

.contact-linkedin svg:last-child {
  margin-left: 3px;
}

.contact-form-card {
  min-height: 570px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: white;
  color: var(--navy-deep);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-deep);
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.contact-select {
  width: 100%;
  min-height: 50px;
  border-color: #dedce7;
  border-radius: 10px;
  background: #faf9f6;
  box-shadow: none;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-field [data-slot="native-select-wrapper"] {
  width: 100%;
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border-radius: 11px;
  background: var(--navy);
  font-weight: 760;
}

.form-submit:hover,
.success-reset:hover {
  background: var(--navy-deep);
}

.recaptcha-status {
  min-height: 18px;
  margin: 0 0 12px;
  color: #8f1d14;
  font-size: 0.72rem;
  line-height: 1.45;
}

.form-privacy {
  margin: 12px 0 0;
  color: #858294;
  font-size: 0.67rem;
  text-align: center;
}

.form-success {
  display: grid;
  min-height: 480px;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
}

.form-success > span svg {
  width: 29px;
  height: 29px;
}

.form-success > p:first-of-type {
  margin: 0;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-success h3 {
  max-width: 440px;
  margin: 10px 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.form-success > p:last-of-type {
  max-width: 430px;
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.success-reset {
  margin-top: 28px;
  background: var(--navy);
}

.site-footer {
  padding-block: 62px 26px;
  background: #111024;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top > div:first-child {
  display: grid;
  gap: 14px;
}

.footer-brand-logo {
  width: 185px;
  padding: 7px 11px;
  border-radius: 9px;
  background: white;
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 18px 28px;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 650;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-linkedin svg {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
}

.footer-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.7rem;
}

.gozad-credit {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gozad-logo-wrap {
  display: grid;
  width: 102px;
  height: 33px;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: white;
}

.gozad-logo-wrap img {
  width: 84px;
  height: auto;
  object-fit: contain;
}

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

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

.service-card:nth-child(2),
.service-card:nth-child(5) {
  transition-delay: 70ms;
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  transition-delay: 140ms;
}

@keyframes orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes orbit-label-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-label-counter {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes core-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 25px 50px rgba(44, 40, 96, 0.23);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.045);
    box-shadow:
      0 28px 60px rgba(44, 40, 96, 0.28),
      0 0 0 14px rgba(249, 207, 61, 0.08);
  }
}

@keyframes shape-float {
  0%,
  100% {
    transform: rotate(26deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(22deg) translate3d(6px, -12px, 0);
  }
}

@keyframes shape-float-reverse {
  0%,
  100% {
    transform: rotate(21deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(25deg) translate3d(-8px, 10px, 0);
  }
}

@keyframes about-float-left {
  0%,
  100% {
    transform: translateY(-50%) rotate(-4deg);
  }
  50% {
    transform: translateY(calc(-50% - 10px)) rotate(1deg);
  }
}

@keyframes about-float-right {
  0%,
  100% {
    transform: translateY(-50%) rotate(4deg);
  }
  50% {
    transform: translateY(calc(-50% + 10px)) rotate(-1deg);
  }
}

@keyframes signal-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 207, 61, 0.5);
  }
  70%,
  100% {
    box-shadow: 0 0 0 15px rgba(249, 207, 61, 0);
  }
}

@keyframes mark-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.08) rotate(8deg);
  }
}

@keyframes detail-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lifecycle-travel {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: 62%;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-trigger {
    display: inline-flex;
    justify-self: end;
    width: 46px;
    height: 46px;
    border-color: rgba(44, 40, 96, 0.15);
    border-radius: 12px;
    color: var(--navy);
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
    padding-top: 170px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.5vw, 5.6rem);
  }

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

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

  .events-section {
    gap: 60px;
  }

  .engagement-card {
    grid-template-columns: 70px 1fr;
  }

  .engagement-card > p {
    grid-column: 2;
    margin: 0;
  }

  .engagement-models {
    grid-column: 1 / -1;
  }

  .partnership-inner,
  .about-section,
  .contact-inner {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 40px, 680px);
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
    padding-left: 14px;
    border-radius: 16px;
  }

  .header-brand {
    width: 158px;
    height: 45px;
  }

  .header-logo {
    width: 152px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    min-height: auto;
    padding: 150px 20px 38px;
  }

  .hero-rule {
    top: 100px;
    right: 20px;
    left: 20px;
  }

  .hero-copy,
  .hero-foot {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 600px);
    min-height: 510px;
    margin: -10px auto 0;
  }

  .strategy-map {
    width: min(100%, 500px);
  }

  .hero-foot {
    margin-top: 12px;
  }

  .positioning-section,
  .section-heading,
  .roadmap-intro,
  .events-section,
  .partnership-inner,
  .about-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .positioning-section {
    gap: 25px;
    padding-block: 90px;
  }

  .positioning-mark {
    display: none;
  }

  .section-heading {
    gap: 25px;
  }

  .roadmap-intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .roadmap-track {
    top: 59px;
  }

  .roadmap-steps button {
    font-size: 0.72rem;
  }

  .roadmap-detail {
    grid-template-columns: 0.25fr 1fr;
  }

  .roadmap-detail > svg {
    display: none;
  }

  .events-section,
  .about-section,
  .contact-inner {
    gap: 70px;
  }

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

  .partnership-quote {
    min-height: 390px;
  }

  .about-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

}

@media (max-width: 620px) {
  .section-shell {
    width: calc(100% - 32px);
  }

  .hero {
    gap: 20px;
    padding: 134px 16px 34px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.61rem;
    line-height: 1.5;
  }

  .hero-eyebrow {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .hero-eyebrow > span:first-child {
    width: 18px;
    margin-top: 0.55em;
  }

  .hero-eyebrow-text {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13.2vw, 4rem);
    line-height: 0.96;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 br {
    display: initial;
  }

  .hero h1 em {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 em::after {
    bottom: 2px;
    height: 11px;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
  }

  .button-primary,
  .button-quiet {
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .button-primary {
    min-height: 50px;
    padding-inline: 18px;
    border-radius: 11px;
    box-shadow: 0 11px 28px rgba(44, 40, 96, 0.16);
  }

  .button-quiet {
    min-height: 42px;
    padding: 0 4px 6px;
  }

  .hero-visual {
    width: 100%;
    min-height: clamp(330px, 95vw, 405px);
    margin: 8px auto 0;
    padding-block: 6px;
  }

  .strategy-map {
    width: min(82vw, 350px);
    max-width: none;
  }

  .map-core {
    width: clamp(88px, 25vw, 104px);
    height: clamp(88px, 25vw, 104px);
    border-width: 6px;
  }

  .orbit-word-card {
    gap: 5px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 0.58rem;
  }

  .orbit-word-card span {
    font-size: 0.48rem;
  }

  .orbit-word-one {
    --orbit-card-top: 10%;
  }

  .orbit-word-two {
    --orbit-card-top: 18%;
  }

  .orbit-word-three {
    --orbit-card-top: 6%;
  }

  .orbit-word-four {
    --orbit-card-top: 23%;
  }

  .hero-foot {
    display: grid;
    gap: 22px;
  }

  .hero-foot-pills {
    justify-content: start;
  }

  .positioning-section {
    padding-block: 76px;
  }

  .positioning-copy h2,
  .section-heading h2,
  .roadmap-intro h2,
  .events-copy h2,
  .engagement-card h2,
  .partnership-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .services-section {
    padding-bottom: 90px;
  }

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

  .service-card {
    min-height: 320px;
    padding: 25px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .service-card a {
    right: 25px;
    bottom: 23px;
    left: 25px;
  }

  .roadmap-section {
    padding-block: 68px;
  }

  .roadmap-intro h2 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .roadmap-intro > p:last-child {
    line-height: 1.6;
  }

  .roadmap-shell {
    margin-top: 38px;
  }

  .roadmap-track {
    display: none;
  }

  .roadmap-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    padding: 0;
    overflow: visible;
  }

  .roadmap-steps button {
    display: flex;
    min-width: 0;
    min-height: 42px;
    gap: 7px;
    align-items: center;
    justify-content: center;
    padding: 9px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.69rem;
    line-height: 1.15;
  }

  .roadmap-steps button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .roadmap-steps button::after {
    display: none;
  }

  .roadmap-steps button.is-active {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--navy-deep);
  }

  .roadmap-steps button.is-active span {
    color: var(--navy);
  }

  .roadmap-detail {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    margin-top: 16px;
    padding: 22px 18px;
    border-radius: 16px;
  }

  .roadmap-detail-index {
    align-self: start;
    font-size: 2.65rem;
  }

  .roadmap-detail-copy h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
  }

  .roadmap-detail-copy span {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .events-section {
    padding-block: 90px;
  }

  .event-lifecycle {
    padding-left: 29px;
  }

  .event-lifecycle article {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .event-lifecycle article > span {
    grid-row: auto;
  }

  .event-lifecycle article::before {
    left: -19px;
  }

  .lifecycle-line {
    left: 15px;
  }

  .engagement-section {
    padding-bottom: 90px;
  }

  .engagement-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }

  .engagement-card > p,
  .engagement-models {
    grid-column: 1;
  }

  .engagement-models {
    grid-template-columns: 1fr;
  }

  .engagement-models div {
    min-height: 86px;
  }

  .partnership-section {
    padding-block: 90px;
  }

  .partnership-quote {
    min-height: 350px;
    padding: 38px 30px;
    border-radius: 105px 18px 105px 18px;
  }

  .partnership-quote p {
    margin-top: 55px;
  }

  .about-section {
    padding-block: 90px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-shape-center {
    width: 50%;
    height: 52%;
  }

  .about-shape-center span {
    font-size: 0.88rem;
  }

  .contact-section {
    padding-block: 90px;
  }

  .contact-inner {
    gap: 55px;
  }

  .contact-form-card {
    min-height: 0;
    padding: 25px 20px;
  }

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

  .form-field-full {
    grid-column: 1;
  }

  .footer-top,
  .footer-bottom {
    display: grid;
  }

  .footer-top nav {
    justify-content: start;
  }

  .footer-bottom {
    gap: 20px;
  }

  .gozad-credit {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    padding: 6px 8px 6px 12px;
    border-radius: 14px;
  }

  .header-brand {
    width: 146px;
  }

  .header-logo {
    width: 140px;
  }

  .hero {
    padding: 126px 14px 30px;
  }

  .hero-rule {
    top: 92px;
    right: 14px;
    left: 14px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 3.15rem);
    letter-spacing: -0.06em;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .mobile-contact-link {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .roadmap-steps button {
    min-height: 40px;
    padding-inline: 7px;
    font-size: 0.64rem;
  }

  .roadmap-steps button span {
    font-size: 0.52rem;
  }

  .roadmap-detail {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 19px 15px;
  }

  .roadmap-detail-index {
    font-size: 2.25rem;
  }

  .hero-visual {
    min-height: 320px;
  }

  .strategy-map {
    width: min(77vw, 300px);
  }

  .orbit-word-card {
    padding: 6px 7px;
    font-size: 0.52rem;
  }

  .orbit-word-card span {
    font-size: 0.44rem;
  }

  .map-core span {
    font-size: 0.52rem;
  }

  .map-core strong {
    font-size: 1.08rem;
  }
}

.admin-bar .site-header {
  top: 50px;
}

.form-field input,
.form-field textarea,
.contact-select {
  padding: 12px 14px;
  border: 1px solid #dedce7;
  color: var(--navy-deep);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus,
.contact-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44, 40, 96, 0.1);
}

.form-submit,
.success-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 0;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

.success-reset {
  min-height: 48px;
  border-radius: 10px;
}

.form-alert {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(180, 35, 24, 0.25);
  border-radius: 9px;
  background: rgba(180, 35, 24, 0.06);
  color: #8f1d14;
  font-size: 0.82rem;
  line-height: 1.5;
}

.ssp-honeypot,
.roadmap-data {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.content-fallback {
  min-height: 70vh;
  padding-block: 160px 90px;
}

.content-fallback h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.05em;
}

/* Branded shell for The Events Calendar archive and single-event views. */
.events-directory-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 82px;
  background: var(--navy);
  color: white;
}

.events-directory-hero::before,
.events-directory-hero::after {
  position: absolute;
  border: 1px solid rgba(249, 207, 61, 0.24);
  border-radius: 50%;
  content: "";
}

.events-directory-hero::before {
  top: -310px;
  right: -170px;
  width: 660px;
  height: 660px;
}

.events-directory-hero::after {
  top: -205px;
  right: -65px;
  width: 450px;
  height: 450px;
  border-color: rgba(255, 255, 255, 0.09);
}

.events-directory-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 72px;
}

.events-directory-hero__copy {
  max-width: 790px;
}

.events-directory-hero__copy .eyebrow {
  margin-bottom: 23px;
}

.events-directory-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 6.6vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.events-directory-hero__copy > p:last-child {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.72;
}

.events-directory-back {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 720;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.events-directory-back svg {
  width: 17px;
  height: 17px;
}

.events-directory-back:hover,
.events-directory-back:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy-deep);
}

.stageset-events-content {
  padding-block: 74px 112px;
}

.stageset-events-content > .tribe-common {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--font-body);
}

.stageset-events-content .tribe-common-l-container {
  max-width: none;
  padding: 0 !important;
}

.stageset-events-content .tribe-events-c-events-bar {
  overflow: hidden;
  border: 1px solid rgba(44, 40, 96, 0.14) !important;
  border-radius: 17px;
  background: white;
  box-shadow: 0 16px 44px rgba(23, 21, 50, 0.06);
}

.stageset-events-content .tribe-common-c-btn,
.stageset-events-content .tribe-common-c-btn:focus,
.stageset-events-content .tribe-common-c-btn:hover {
  border-radius: 11px;
  background: var(--navy) !important;
  color: white !important;
}

.stageset-events-content .tribe-events-calendar-list__event-row {
  margin: 18px 0 !important;
  padding: 26px 24px;
  border: 1px solid rgba(44, 40, 96, 0.12);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 35px rgba(23, 21, 50, 0.045);
}

.stageset-events-content .tribe-events-calendar-list__event-title-link,
.stageset-events-content .tribe-events-c-top-bar__datepicker-button,
.stageset-events-content .tribe-events-c-nav__today {
  color: var(--navy-deep) !important;
}

.stageset-events-content .tribe-common-c-btn-border,
.stageset-events-content .tribe-common-c-btn-border-small {
  border-color: var(--navy) !important;
  border-radius: 11px;
  color: var(--navy) !important;
}

.stageset-events-content .tribe-common-anchor-thin-alt {
  border-color: var(--yellow) !important;
}

body.single-tribe_events #tribe-events-pg-template {
  width: min(1120px, calc(100% - 72px));
  max-width: none;
  min-height: 70vh;
  margin-inline: auto;
  padding: 156px 0 105px;
}

body.single-tribe_events #tribe-events-content {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(44, 40, 96, 0.13);
  border-radius: 26px;
  background: white;
  box-shadow: 0 22px 65px rgba(23, 21, 50, 0.07);
}

body.single-tribe_events .tribe-events-back a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(44, 40, 96, 0.15);
  border-radius: 9px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 720;
}

body.single-tribe_events .tribe-events-single-event-title {
  margin-top: 30px;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

body.single-tribe_events .tribe-events-schedule {
  color: var(--ink-muted);
}

body.single-tribe_events .tribe-events-single-section {
  border: 0;
  border-radius: 17px;
  background: var(--soft-white);
}

body.single-tribe_events .tribe-events-single-section-title {
  color: var(--navy-deep);
}

@media (max-width: 860px) {
  .events-directory-hero {
    padding: 134px 0 62px;
  }

  .events-directory-hero::before {
    top: -260px;
    right: -290px;
  }

  .events-directory-hero__inner {
    display: grid;
    gap: 34px;
  }

  .events-directory-hero__copy h1 {
    max-width: 620px;
    font-size: clamp(3.15rem, 11vw, 5.1rem);
  }

  .events-directory-back {
    justify-self: start;
  }

  .stageset-events-content {
    padding-block: 52px 82px;
  }

  body.single-tribe_events #tribe-events-pg-template {
    width: min(100% - 40px, 680px);
    padding: 132px 0 78px;
  }
}

@media (max-width: 520px) {
  .events-directory-hero {
    padding: 120px 0 48px;
  }

  .events-directory-hero__copy .eyebrow {
    margin-bottom: 17px;
  }

  .events-directory-hero__copy h1 {
    font-size: clamp(2.75rem, 13.5vw, 3.65rem);
  }

  .events-directory-hero__copy > p:last-child {
    margin-top: 22px;
    font-size: 0.92rem;
  }

  .stageset-events-content .tribe-events-calendar-list__event-row {
    padding: 19px 13px;
  }

  body.single-tribe_events #tribe-events-pg-template {
    width: calc(100% - 28px);
    padding: 118px 0 60px;
  }

  body.single-tribe_events #tribe-events-content {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 62px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
