:root {
  --navy: #0A2540;
  --navy-dark: #061726;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --light: #F1F5F9;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-muted: #475569;
  --green: #16A34A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo-wrap { display: flex; flex-direction: column; text-decoration: none; }
.logo-mark { display: flex; align-items: baseline; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; line-height: 1; letter-spacing: -0.02em; }
.logo-mark .nav-bit { color: var(--navy); }
.logo-mark .it-bit { color: var(--orange); }
.logo-tagline { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px; color: var(--navy); letter-spacing: 0.18em; margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 18px; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--orange-dark); }
@media (max-width: 800px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 15px 26px; border-radius: 6px; font-weight: 600; text-decoration: none; font-size: 16px; transition: transform 0.15s ease, background 0.15s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

/* ---- HERO / BANNER ---- */
.svc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; background: var(--orange);
  opacity: 0.08; border-radius: 50%; filter: blur(80px);
}
.svc-hero .container { position: relative; z-index: 1; }
.svc-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(38px, 6vw, 68px); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 14px; max-width: 880px; }
.svc-hero-tagline { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,0.82); max-width: 720px; line-height: 1.6; margin-bottom: 24px; }
.svc-tiers { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 24px; font-weight: 600; letter-spacing: 0.02em; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .current { color: rgba(255,255,255,0.5); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ---- BODY ---- */
.svc-body { padding: 56px 24px 80px; }
.svc-block { margin-bottom: 48px; }
.svc-h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(26px, 3.4vw, 38px); color: var(--navy); line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.01em; }
.svc-h2 a { color: var(--navy); text-decoration: none; }
.svc-h2 a:hover { color: var(--orange); }
.svc-body p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; max-width: 760px; }

/* ---- STEP LIST ---- */
.step-list { list-style: none; display: grid; gap: 16px; max-width: 820px; }
.step-list li { display: flex; align-items: flex-start; gap: 16px; background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; }
.step-index { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.step-list li div { display: flex; flex-direction: column; }
.step-list li strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); }
.step-list li span { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ---- LINK CARDS (children) ---- */
.link-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.link-card { display: flex; flex-direction: column; gap: 6px; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 22px; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.link-card:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(10,37,64,0.08); transform: translateY(-2px); }
.link-card-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 21px; color: var(--navy); }
.link-card-name .arrow { color: var(--orange); }
.link-card-tag { font-size: 14px; color: var(--text-muted); line-height: 1.45; margin: 0; }

/* ---- PARENT / SIBLING ---- */
.parent-block { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; }
.parent-banner { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.parent-banner a { color: var(--orange); text-decoration: none; }
.parent-banner a:hover { text-decoration: underline; }
.sibling-links { display: flex; flex-wrap: wrap; gap: 10px; }
.sibling-link { display: inline-block; background: var(--white); border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: border-color 0.15s, color 0.15s; }
.sibling-link:hover { border-color: var(--orange); color: var(--orange); }
.sibling-empty { font-size: 15px; color: var(--text-muted); margin: 0; }
.sibling-empty a { color: var(--orange); text-decoration: none; }
.sibling-empty a:hover { text-decoration: underline; }

/* ---- INDEX ---- */
.index-top { margin-bottom: 18px; }
.index-top-tag { font-size: 16px; color: var(--text-muted); margin: 0; }

/* ---- CTA BAND ---- */
.svc-cta-band { background: var(--navy); color: var(--white); border-radius: 18px; padding: 48px 40px; text-align: center; margin-top: 16px; }
.svc-cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.svc-cta-band p { color: rgba(255,255,255,0.7); margin: 0 auto 26px; max-width: 520px; }

/* ---- FOOTER ---- */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 56px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand .logo-mark .nav-bit { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-brand p { margin-top: 16px; max-width: 360px; line-height: 1.65; color: rgba(255,255,255,0.6); font-size: 14px; }
footer h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 16px; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
footer a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.35); font-size: 13px; }

/* ---- PLAYBOOK (internal) ---- */
.pb-hero { background: linear-gradient(135deg, #3b0764 0%, var(--navy-dark) 100%); }
.pb-badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; margin-bottom: 16px; }
.pb-body { max-width: 980px; }
.pb-section { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 2px solid var(--border); }
.pb-node { margin-bottom: 22px; }
.pb-children { margin-top: 18px; padding-left: 22px; border-left: 3px solid var(--light); display: grid; gap: 18px; }
.pb-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pb-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--navy); text-decoration: none; }
.pb-name:hover { color: var(--orange); }
.pb-depth-0 > .pb-head .pb-name { font-size: 30px; }
.pb-tiers { font-size: 12px; font-weight: 700; color: var(--text-muted); background: var(--light); padding: 3px 9px; border-radius: 4px; }
.pb-draft { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--white); background: var(--orange); padding: 3px 9px; border-radius: 4px; }
.pb-tag { font-weight: 600; color: var(--orange); font-size: 15px; margin: 4px 0 8px; }
.pb-what { font-size: 15px; color: var(--text-muted); margin: 0 0 6px; line-height: 1.6; }
.pb-steps { margin: 10px 0; padding-left: 22px; }
.pb-steps li { font-size: 14px; color: var(--text); margin-bottom: 5px; }
.pb-internal { background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 8px; padding: 12px 16px; margin: 10px 0; }
.pb-il { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 6px; }
.pb-internal ul { padding-left: 18px; }
.pb-internal li, .pb-internal p { font-size: 14px; color: var(--text); line-height: 1.55; margin: 0 0 4px; }

/* ---- PORTFOLIO / OUR WORK ---- */
.work-grid { display: grid; gap: 28px; }
.work-card { display: grid; grid-template-columns: 1fr 1.15fr; gap: 0; background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: 0 1px 2px rgba(10,37,64,0.04); }
.work-shot { display: block; background: var(--light); overflow: hidden; max-height: 340px; }
.work-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.work-shot:hover img { transform: scale(1.03); }
.work-body { padding: 28px 30px; display: flex; flex-direction: column; gap: 12px; }
.work-head { display: flex; flex-direction: column; gap: 2px; }
.work-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); line-height: 1.05; margin: 0; }
.work-meta { font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: 0.01em; }
.work-blurb { color: var(--text-muted); margin: 0; font-size: 15px; line-height: 1.55; }
.work-highlights { list-style: none; padding: 0; margin: 2px 0 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.work-highlights li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--text); }
.work-highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.work-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 4px; }
.work-chips-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-right: 2px; }
.work-chip { display: inline-block; padding: 5px 11px; background: var(--off-white); border: 1px solid var(--border); border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--navy); text-decoration: none; transition: all .15s ease; }
.work-chip:hover { border-color: var(--orange); color: var(--orange); }
.work-visit { margin-top: auto; padding-top: 6px; font-weight: 700; font-size: 14px; color: var(--orange); text-decoration: none; }
.work-visit:hover .arrow { transform: translateX(3px); }
.work-visit .arrow { display: inline-block; transition: transform .15s ease; }

@media (max-width: 760px) {
  .work-card { grid-template-columns: 1fr; }
  .work-shot { max-height: 200px; }
  .work-body { padding: 22px; }
}
