/* ============================================================
   NOVA STRATEGIC — Shared design system
   Simple. Blunt. Accountable.
   ============================================================ */

:root {
  /* Brand palette — exact hex, no variations */
  --purple:      #28184A;
  --purple-deep: #1E1035;
  --orange:      #FF6D00;
  --orange-dark: #E55F00;
  --pink:        #E2B5DF;
  --teal:        #18A2B8;
  --white:       #FFFFFF;
  --off:         #FAF9FC;
  --border:      #E8E4F0;

  --pink-dim:    rgba(226,181,223,0.72);
  --line-dark:   rgba(255,255,255,0.10);
  --fill-dark:   rgba(255,255,255,0.045);

  --maxw: 1180px;
  --pad: clamp(22px, 5vw, 56px);
  --section-y: clamp(72px, 10vw, 130px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  color: var(--purple);
  background: var(--white);
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: -0.005em;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); }
.section--off  { background: var(--off); }
.section--dark { background: var(--purple); color: var(--white); }

/* ---------- Type ---------- */
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.overline::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.75;
}
.section--dark .overline { color: var(--pink-dim); }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.07; margin: 0; }

.h-hero {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(28px, 4vw, 41px);
  line-height: 1.1;
  margin: 0 0 22px;
  text-wrap: balance;
}
.h-sub {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.68;
  color: rgba(40,24,74,0.72);
  max-width: 56ch;
}
.section--dark .lead { color: rgba(255,255,255,0.74); }

.body-copy p { margin: 0 0 1.15em; max-width: 62ch; }
.body-copy p:last-child { margin-bottom: 0; }
.text-accent { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 500;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease), transform .22s var(--ease),
              border-color .22s var(--ease), color .22s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--purple); border-color: rgba(40,24,74,0.28); }
.btn--ghost:hover { background: var(--purple); color: var(--white); border-color: var(--purple); transform: translateY(-2px); }
.section--dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.34); }
.section--dark .btn--ghost:hover { background: var(--white); color: var(--purple); border-color: var(--white); }
.btn .arr { transition: transform .22s var(--ease); font-size: 1.05em; }
.btn:hover .arr { transform: translate(3px, -3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30,16,53,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center;
  font-weight: 800; font-size: 21px; line-height: 1;
  flex: none;
  box-shadow: 0 4px 14px rgba(255,109,0,0.35);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.06; }
.brand__name { color: var(--white); font-weight: 600; font-size: 16.5px; letter-spacing: 0.01em; }
.brand__tag  { color: var(--pink-dim); font-size: 10px; font-weight: 500; letter-spacing: 0.4px; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  color: rgba(255,255,255,0.80);
  font-size: 14.5px; font-weight: 500;
  position: relative; padding-block: 4px;
  white-space: nowrap;
  transition: color .18s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1.5px; background: var(--orange);
  transition: width .24s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--white); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: .25s var(--ease); }

@media (max-width: 940px) {
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--purple-deep);
    padding: 18px var(--pad) 30px;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform .32s var(--ease);
  }
  .nav__links[data-open="true"] { transform: translateY(0); }
  .nav__links a { font-size: 18px; padding-block: 10px; width: 100%; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .brand__tag { display: none; }
}

/* ---------- Orange tagline bar ---------- */
.tagbar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: clamp(11px, 1.4vw, 14px);
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero { background: var(--purple); color: var(--white); position: relative; overflow: hidden; }
.hero__glow {
  position: absolute; pointer-events: none;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,109,0,0.16), transparent 62%);
  top: -260px; right: -180px;
}
.hero__glow2 {
  position: absolute; pointer-events: none;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,162,184,0.13), transparent 64%);
  bottom: -280px; left: -160px;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 70px); align-items: center;
  padding-block: clamp(64px, 9vw, 110px);
}
.hero__copy { }
.hero .lead { color: rgba(255,255,255,0.76); margin: 24px 0 34px; }
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(40,24,74,0.10); border-color: var(--pink); }

/* truth cards */
.truth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.truth { padding: 30px 28px; }
.truth__k { font-weight: 700; font-size: 18px; margin-bottom: 8px; letter-spacing: -0.02em; }
.truth__k b { color: var(--orange); font-weight: 700; }
.truth p { margin: 0; color: rgba(40,24,74,0.66); font-size: 15px; line-height: 1.62; }
@media (max-width: 820px) { .truth-grid { grid-template-columns: 1fr; } }

/* ---------- Pull quote ---------- */
.pullquote {
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 30px;
  margin: 0;
}
.pullquote p {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.pullquote cite {
  font-style: normal; font-size: 14px; font-weight: 500;
  color: var(--teal); letter-spacing: 0.3px;
}
.section--dark .pullquote cite { color: var(--pink); }

/* ---------- Proof cards (clients) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.proof { overflow: hidden; display: flex; flex-direction: column; }
.proof__photo {
  aspect-ratio: 4 / 3; background: var(--off);
  display: grid; place-items: center; position: relative;
  border-bottom: 1px solid var(--border);
}
.proof__head { background: var(--purple); color: #fff; padding: 20px 24px; }
.proof__name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.proof__role { color: var(--pink); font-size: 12.5px; font-weight: 500; margin-top: 3px; letter-spacing: 0.2px; }
.proof__body { padding: 22px 24px 26px; font-size: 14.5px; line-height: 1.62; color: rgba(40,24,74,0.72); flex: 1; }
.proof__body p { margin: 0; }
.ba__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(40,24,74,0.4); margin-bottom: 5px;
}
.ba__label--after { color: var(--orange); }
.ba p { color: rgba(40,24,74,0.72); }

/* ---------- PBI score bars ---------- */
.pbi { display: grid; gap: 20px; }
.pbi__row { display: grid; grid-template-columns: auto 1fr 44px; gap: 14px; align-items: center; }
.pbi__label { font-weight: 500; font-size: 15px; }
.pbi__track { height: 8px; background: rgba(255,255,255,0.14); border-radius: 99px; overflow: hidden; min-width: 40px; }
.pbi__fill {
  height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
  transition: width 1.1s var(--ease);
  box-shadow: 0 0 8px rgba(24,162,184,0.5);
}
.pbi__val { font-weight: 700; font-size: 15px; text-align: right; font-variant-numeric: tabular-nums; }
.section--dark .pbi__track { background: rgba(255,255,255,0.08); }
@media (max-width: 620px) {
  .pbi__row { grid-template-columns: 1fr 44px; grid-template-areas: "label val" "track track"; row-gap: 9px; }
  .pbi__label { grid-area: label; } .pbi__val { grid-area: val; } .pbi__track { grid-area: track; }
}

/* ---------- Placeholders ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(40,24,74,0.035) 0 12px, rgba(40,24,74,0.06) 12px 24px);
  color: rgba(40,24,74,0.5);
  display: grid; place-items: center; text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px;
}
.ph--dark {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.07) 12px 24px);
  color: rgba(255,255,255,0.5);
}
.ph__icon { width: 34px; height: 34px; margin-bottom: 9px; opacity: 0.5; }

/* ---------- Steps / process ---------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 26px;
  padding: 28px 0; border-top: 1px solid var(--border);
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step__n {
  font-weight: 800; font-size: 19px; color: var(--orange);
  font-variant-numeric: tabular-nums;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: grid; place-items: center;
}
.step h4 { font-size: 18.5px; margin-bottom: 6px; letter-spacing: -0.02em; }
.step p { margin: 0; color: rgba(40,24,74,0.66); font-size: 15px; line-height: 1.6; max-width: 60ch; }

/* ---------- Price tag ---------- */
.price { font-weight: 800; color: var(--orange); font-size: clamp(40px, 6vw, 60px); letter-spacing: -0.04em; line-height: 1; }

/* ---------- CTA close band ---------- */
.closeband { border-top: 4px solid var(--orange); background: var(--off); }

/* ---------- Footer ---------- */
.footer { background: var(--purple-deep); color: rgba(255,255,255,0.7); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 64px 40px; }
.footer h5 { color: #fff; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 16px; font-weight: 600; }
.footer a { display: block; padding: 5px 0; font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color .18s; }
.footer a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid var(--line-dark); padding-block: 22px 40px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Generic two-col ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.eyebrow-page { font-size: 13px; color: var(--teal); font-weight: 600; letter-spacing: 1px; }
