/* GHL Success Path — Enterprise V3: original editorial layout, lime accent.
 * Style vocabulary lifted from Landing Page.html (Buzz-editorial hybrid),
 * recolored lime and extended for the Onboarding OS + clients sections.
 * Depends on colors_and_type.css.
 */

:root {
  /* Lime accent override */
  --ghlsp-gold-500: #D5F25C;
  --ghlsp-gold-400: #E2F87E;
  --ghlsp-gold-600: #7E9A1E;
  --ghlsp-gold-100: #F2FAD2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--paper);
  color: var(--fg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
}

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

img,
svg {
  display: block;
}

::selection {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
}

.gut {
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}

/* ============= NAV (pill) ============= */
.nav {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 18px;
  background: rgba(245, 242, 236, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 21, 38, 0.10);
  border-radius: 999px;
  transition: background .3s, color .3s, border .3s;
}

.nav.dark {
  background: rgba(10, 21, 38, 0.86);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.10);
}

.nav.dark .nav__cta {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
}

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

.nav__logo img {
  height: 28px;
}

.nav.dark .nav__logo img {
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
}

.nav__links a {
  padding: 6px 2px;
  opacity: .82;
  transition: opacity .2s;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__cta {
  background: var(--ghlsp-navy-900);
  color: var(--paper);
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
}

.nav__cta .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-dot);
}

@media (max-width: 800px) {
  .nav__links {
    display: none;
  }
}

/* ============= HERO ============= */
.hero {
  padding: 130px clamp(20px, 3vw, 40px) 64px;
  position: relative;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ghlsp-navy-900);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-dot);
}

@media (prefers-reduced-motion: no-preference) {
  .eyebrow .dot {
    animation: pulse 2.2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.4);
      opacity: .55;
    }
  }
}

.hero__meta-line {
  font-size: 12px;
  color: var(--ink-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__meta-line b {
  color: var(--ghlsp-navy-900);
  font-weight: 600;
}

.hero__meta-line .sep {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink-200);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ghlsp-navy-950);
  margin: 0;
  max-width: 1500px;
}

.hero__title .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ghlsp-navy-900);
}

.hero__title .mark {
  background: var(--ghlsp-gold-500);
  padding: 0 .14em 0.04em;
  color: var(--ghlsp-navy-950);
  display: inline-block;
}

.rot {
  display: inline-block;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  height: 0.92em;
  min-width: 7.4ch;
}

.rot__inner {
  display: flex;
  flex-direction: column;
}

.rot__inner span {
  line-height: 0.92;
}

@media (prefers-reduced-motion: no-preference) {
  .rot__inner {
    animation: rot 11s infinite cubic-bezier(.7, .0, .3, 1);
  }

  @keyframes rot {

    0%,
    18% {
      transform: translateY(0);
    }

    22%,
    40% {
      transform: translateY(-0.92em);
    }

    44%,
    62% {
      transform: translateY(-1.84em);
    }

    66%,
    84% {
      transform: translateY(-2.76em);
    }

    88%,
    100% {
      transform: translateY(-3.68em);
    }
  }
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 56px;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__sub {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ghlsp-navy-900);
}

.hero__sub strong {
  font-weight: 600;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
  border: 0;
  padding: 18px 26px 18px 24px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: -0.005em;
  font-family: var(--font-body);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(165, 200, 50, 0.55);
}

.btn-primary .arr {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ghlsp-navy-950);
  color: var(--ghlsp-gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform .25s;
}

.btn-primary:hover .arr {
  transform: translateX(3px) rotate(-12deg);
}

.btn-primary.dark {
  background: var(--ghlsp-navy-950);
  color: var(--ghlsp-gold-500);
}

.btn-primary.dark .arr {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
}

.btn-ghost {
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost .play {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: currentColor;
  opacity: .12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}

.btn-ghost:hover .play {
  opacity: .22;
}

.btn-ghost u {
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.btn-upwork {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: var(--ghlsp-gold-100);
  border: 1px solid rgba(126, 154, 30, .45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ghlsp-navy-950);
  transition: border-color .2s, background .2s;
}

.btn-upwork:hover {
  border-color: var(--ghlsp-gold-600);
  background: var(--ghlsp-gold-400);
}

.btn-upwork .star {
  color: var(--ghlsp-gold-600);
}

.btn-upwork .ext {
  font-size: 11px;
  opacity: .55;
}

/* sticker — top-right, directly below the Upwork pill */
.sticker {
  position: absolute;
  top: 192px;
  right: clamp(20px, 3vw, 40px);
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--ghlsp-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sticker::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px dashed var(--ghlsp-navy-950);
  opacity: .5;
}

.sticker__core {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--ghlsp-navy-950);
  color: var(--ghlsp-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sticker__ring {
  position: absolute;
  inset: 0;
}

.sticker__ring text {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  fill: var(--ghlsp-navy-950);
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .sticker__ring {
    animation: spin 22s linear infinite;
  }

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

@media (max-width: 900px) {
  .sticker {
    display: none;
  }
}

/* ============= TRUST MARQUEE ============= */
.trust {
  background: var(--ink-950);
  color: var(--paper);
  padding: 28px 0;
  overflow: hidden;
}

.trust__title {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ghlsp-gold-500);
  margin-bottom: 18px;
  padding-left: clamp(20px, 3vw, 40px);
}

.marq {
  overflow: hidden;
}

.marq__track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.02em;
}

.marq__track .star {
  color: var(--ghlsp-gold-500);
  font-size: 24px;
}

.marq__track .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--ghlsp-gold-500);
}

@media (prefers-reduced-motion: no-preference) {
  .marq__track {
    animation: slide 38s linear infinite;
  }

  @keyframes slide {
    to {
      transform: translateX(-50%);
    }
  }
}

/* ============= SECTIONS ============= */
.section {
  padding: clamp(80px, 9vw, 140px) clamp(20px, 3vw, 40px);
  position: relative;
}

.section.dark {
  background: var(--ghlsp-navy-950);
  color: var(--paper);
}

.section.ink {
  background: var(--ink-950);
  color: var(--paper);
}

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

.section.lime-tint {
  background: var(--ghlsp-gold-100);
}

.section.lime-tint .shot {
  background: var(--paper-bright);
  box-shadow: inset 0 0 0 1px #0000000e;
}

.section.tint {
  background: var(--ghlsp-navy-100);
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.sec-head .eyebrow {
  color: inherit;
}

.section.dark .eyebrow,
.section.ink .eyebrow {
  color: var(--ghlsp-gold-500);
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 14px 0 0;
  max-width: 16ch;
}

.sec-title .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.sec-title .mark {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
  padding: 0 .14em 0.04em;
}

.sec-intro {
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink-600);
  max-width: 460px;
  align-self: end;
}

.section.dark .sec-intro,
.section.ink .sec-intro {
  color: #B8C2D1;
}

@media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============= PAIN CARDS ============= */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pain {
  background: var(--paper-bright);
  border-radius: 24px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px #00000010;
  transition: transform .3s, box-shadow .3s;
}

.pain:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(10, 21, 38, .25), inset 0 0 0 1px #00000018;
}

.pain__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-400);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pain__num .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-dot);
}

.pain__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.pain__body {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.5;
  margin: 0;
}

.pain__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--ghlsp-navy-950);
  color: var(--ghlsp-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .pain__grid {
    grid-template-columns: 1fr;
  }
}

/* ============= SCALING TRAP ============= */
.trap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trap {
  background: var(--paper-bright);
  border-radius: 24px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px #00000010;
  transition: transform .3s, box-shadow .3s;
}

.trap:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(10, 21, 38, .25), inset 0 0 0 1px #00000018;
}

.trap__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-400);
  margin-bottom: 26px;
}

.trap__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ghlsp-navy-950);
}

.trap__body {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

.trap__cost {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--ghlsp-navy-950);
  color: var(--paper);
  border-radius: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.trap__cost p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 64ch;
}

.trap__cost p .hl {
  color: var(--ghlsp-gold-500);
}

@media (max-width: 900px) {
  .trap__grid {
    grid-template-columns: 1fr;
  }
}

/* trap cards sit on the bright section — use paper so they still read as cards */
.section.paper-bright .trap {
  background: var(--paper);
  box-shadow: inset 0 0 0 1px #00000014;
}

/* ============= PILLARS (light cards) ============= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pillar {
  background: var(--paper-bright);
  border-radius: 24px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px #00000010;
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(10, 21, 38, .25), inset 0 0 0 1px #00000018;
}

.pillar__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  letter-spacing: -.04em;
  color: var(--ghlsp-gold-600);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  color: var(--ghlsp-navy-950);
}

.pillar__title .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

.pillar__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0 0 28px;
}

.pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(10, 21, 38, .12);
  padding-top: 22px;
}

.pillar__list li {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ghlsp-navy-900);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pillar__list li::before {
  content: '+';
  color: var(--ghlsp-gold-600);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  flex: 0 0 12px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ============= PHASES (implementation framework) ============= */
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.phase {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  box-shadow: inset 0 0 0 1px #0000000e;
  transition: background .4s, color .4s, transform .4s;
}

.phase:hover {
  background: var(--ghlsp-navy-950);
  color: var(--paper);
  transform: translateY(-6px);
}

.phase:hover .phase__num {
  color: var(--ghlsp-gold-500);
}

.phase:hover .phase__title {
  color: var(--paper);
}

.phase:hover .phase__list li {
  color: #DCE5F0;
}

.phase:hover .phase__cta {
  color: var(--ghlsp-gold-500);
  border-color: rgba(255, 255, 255, .18);
}

.phase__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phase__num .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-dot);
}

.phase__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 4px;
  color: var(--ghlsp-navy-950);
}

.phase__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.phase__list li {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-600);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.phase__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--ghlsp-gold-500);
  margin-top: 7px;
  flex: 0 0 5px;
}

.phase__cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--ink-200);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s, border-color .3s;
}

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

@media (max-width: 560px) {
  .phases {
    grid-template-columns: 1fr;
  }
}

/* ============= DEV ROWS (technical backbone) ============= */
.devs {
  display: flex;
  flex-direction: column;
}

.dev {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr;
  gap: clamp(16px, 3vw, 56px);
  align-items: baseline;
  padding: 30px 4px;
  border-bottom: 1px solid rgba(10, 21, 38, 0.14);
  transition: background .25s;
}

.dev:first-child {
  border-top: 1px solid rgba(10, 21, 38, 0.14);
}

.dev .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ghlsp-gold-600);
}

.dev h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ghlsp-navy-950);
}

.dev p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}

@media (max-width: 720px) {
  .dev {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* pillar footer link */
.pillar__cta {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 21, 38, .12);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ghlsp-gold-600);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pillar__cta .arr {
  transition: transform .25s;
}

.pillar:hover .pillar__cta .arr {
  transform: translateX(4px);
}

/* ============= ONBOARDING OS / LOOM ============= */
.loomframe {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ghlsp-navy-950);
  box-shadow: 0 30px 60px -20px rgba(10, 21, 38, .35);
}

.loomframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.os__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: stretch;
}

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

.os__pillar {
  background: var(--paper-bright);
  border-radius: 20px;
  padding: 24px;
  box-shadow: inset 0 0 0 1px #0000000e;
}

.os__pillar .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--ghlsp-gold-600);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.os__pillar .tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-dot);
}

.os__pillar h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: var(--ghlsp-navy-950);
}

.os__pillar p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-600);
  margin: 0;
}

.os__sidekick {
  background: var(--ghlsp-navy-950);
  color: var(--paper);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.os__sidekick h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -.015em;
  margin: 0;
}

.os__sidekick p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #B8C2D1;
  margin: 0;
  flex: 1;
}

.os__sidekick .btn-primary {
  padding: 13px 18px 13px 16px;
  font-size: 13px;
  justify-content: center;
}

.os__sidekick .btn-primary .arr {
  width: 22px;
  height: 22px;
  font-size: 11px;
}

.os__buy {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  transition: border-color .2s, color .2s;
}

.os__buy:hover {
  border-color: var(--ghlsp-gold-500);
  color: var(--ghlsp-gold-500);
}

@media (max-width: 900px) {
  .os__row {
    grid-template-columns: 1fr;
  }

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

/* ============= TRUSTED CLIENTS (tsm-style cards) ============= */
.tsm__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tsm__grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.tsm {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px #00000014;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tsm.dark {
  background: var(--ghlsp-navy-950);
  color: var(--paper);
}

.tsm.gold {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
}

.tsm__type {
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
  font-weight: 600;
}

.tsm__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
}

.tsm__desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: .82;
}

@media (max-width: 900px) {

  .tsm__grid,
  .tsm__grid.three {
    grid-template-columns: 1fr;
  }
}

/* ============= COMMITMENTS (risk, reversed) ============= */
.commits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(10, 21, 38, 0.14);
  border: 1px solid rgba(10, 21, 38, 0.14);
  border-radius: 18px;
  overflow: hidden;
}

.commit {
  background: var(--paper-bright);
  padding: 32px 28px 36px;
}

.commit__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ghlsp-gold-600);
  margin-bottom: 20px;
}

.commit h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -.015em;
  margin: 0 0 10px;
  color: var(--ghlsp-navy-950);
}

.commit p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}

@media (max-width: 980px) {
  .commits {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .commits {
    grid-template-columns: 1fr;
  }
}

/* ============= MID-PAGE CTA STRIP ============= */
.midcta {
  background: var(--ink-950);
  color: var(--paper);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.midcta h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.0;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 22ch;
}

.midcta h3 .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--ghlsp-gold-500);
}

.midcta__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.midcta__side small {
  font-size: 12.5px;
  color: #9BA6B5;
}

/* ============= TESTIMONIAL SCREENSHOTS ============= */
.shot {
  background: var(--paper);
  border-radius: 20px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px #00000014;
}

.shot image-slot {
  width: 100%;
  height: 300px;
}

.shot__cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px 2px;
  font-size: 12px;
  color: var(--ink-400);
}

.shot__cap b {
  color: var(--ghlsp-navy-900);
  font-weight: 600;
  font-size: 12.5px;
}

.proof__upwork {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--ink-600);
  flex-wrap: wrap;
}

.proof__upwork .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ghlsp-navy-950);
  color: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 12.5px;
}

.proof__upwork .badge .star {
  color: var(--ghlsp-gold-500);
}

/* ============= FINAL CTA BAND (lime) ============= */
.ctaband {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
  padding: clamp(80px, 12vw, 180px) clamp(20px, 3vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ctaband::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .4), transparent 60%);
  pointer-events: none;
}

.ctaband h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 168px);
  letter-spacing: -.05em;
  line-height: .9;
  margin: 0 0 24px;
  position: relative;
}

.ctaband h2 .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

.ctaband p {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ghlsp-navy-900);
  position: relative;
}

.ctaband__steps {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.ctaband__step {
  background: rgba(10, 21, 38, 0.06);
  border: 1px solid rgba(10, 21, 38, 0.14);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.ctaband__step b {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--ghlsp-navy-950);
  color: var(--ghlsp-gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
}

.ctaband .btn-primary {
  background: var(--ghlsp-navy-950);
  color: var(--ghlsp-gold-500);
  position: relative;
}

.ctaband .btn-primary .arr {
  background: var(--ghlsp-gold-500);
  color: var(--ghlsp-navy-950);
}

.ctaband__note {
  font-size: 13px !important;
  color: rgba(10, 21, 38, .65) !important;
  margin-top: 18px !important;
}

/* ============= FOOTER ============= */
.foot {
  background: var(--ink-950);
  color: var(--paper);
  padding: 80px clamp(20px, 3vw, 40px) 32px;
}

.foot__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.foot__brand img {
  height: 38px;
  filter: brightness(0) invert(1);
}

.foot__tag {
  margin-top: 20px;
  max-width: 360px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #B8C2D1;
}

.foot__col h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ghlsp-gold-500);
  margin: 0 0 16px;
}

.foot__col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #DCE5F0;
  transition: color .2s;
}

.foot__col a:hover {
  color: var(--ghlsp-gold-500);
}

.foot__huge {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(96px, 18vw, 280px);
  letter-spacing: -.05em;
  line-height: .85;
  color: var(--ghlsp-gold-500);
  margin: 56px 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* Mobile */
@media (max-width: 767px) {
    .foot__huge {
      display: none !important;
    }
    .foot__bot {
      padding-top: 30px !important;
    }
}

.foot__huge .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
}

.foot__bot {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8E97A4;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .foot__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============= ANIM ============= */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
  }

  .fade-up.in {
    opacity: 1;
    transform: none;
  }
}