:root {
    --ink: #0B0B0C; --ink-2: #131416; --ink-line: #26282C;
    --gold: #FDD97D; --green: #26A766; --green-bright: #2FBE76; --green-hover: #1F8F58;
    --purple: #7F6BFD; --teal: #0CA7C0; --navy: #060646;
    --blue: #0099FF; --blue-medium: #335DFF; --highlight: linear-gradient(92deg, #39a9ff 0%, #00d68c 100%);
    --paper: #FBFBFC; --paper-2: #F3F4F7; --line: #E7E8EE; --line-soft: #EEEFF3;
    --txt: #16171C; --txt-soft: #585C6B; --txt-mute: #8A8E9C;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; }
  body { font-family: 'Poppins', system-ui, sans-serif; background: var(--paper); color: var(--txt); -webkit-font-smoothing: antialiased; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
  .eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
  .btn { display: inline-flex; align-items: center; gap: 9px; font-family: inherit; font-size: 15px; font-weight: 600; border-radius: 999px; padding: 14px 26px; cursor: pointer; border: 1px solid transparent; transition: all .2s ease; white-space: nowrap; }
  .btn-green { background: linear-gradient(180deg, #2db974 0%, #1f9460 100%); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.22); }
  .btn-green:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 8px 22px -8px rgba(38,167,102,.6); }
  .btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
  .btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
  .arrow { transition: transform .2s ease; }
  .btn:hover .arrow { transform: translate(2px,-2px); }
  h1, h2, h3, h4 { color: var(--navy); }

  .nav { position: sticky; top: 0; z-index: 50; background: rgba(11,11,12,.72); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-inner { display: flex; align-items: center; gap: 36px; height: 70px; }
  .brand { display: flex; align-items: center; gap: 11px; }
  .brand img { width: 28px; height: 28px; }
  .brand span { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
  .nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
  .nav-links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.78); transition: color .15s; }
  .nav-links a:hover { color: #fff; }
  .nav-cta { margin-left: 0; display: flex; align-items: center; gap: 14px; }
  .nav-cta .login { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.82); }
  .nav .btn { padding: 10px 20px; font-size: 14px; }

  .hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; text-align: center; }
  .hero-glow { position: absolute; top: -28%; left: 50%; transform: translateX(-50%); width: 720px; height: 540px; border-radius: 50%; background: radial-gradient(closest-side, rgba(38,167,102,.16), transparent 70%); pointer-events: none; }
  .hero-inner { position: relative; padding: 84px 0 76px; max-width: 720px; margin: 0 auto; }
  .hero .eyebrow { color: #7dc4ff; margin-bottom: 18px; }
  .hero h1 { font-size: 46px; line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; color: #fff; margin: 0 0 18px; }
  .hero p { font-size: 18.5px; line-height: 1.6; color: rgba(255,255,255,.74); margin: 0 auto; max-width: 580px; }

  section { padding: 80px 0; }
  section.alt { background: var(--paper-2); }
  .sec-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
  .sec-head .eyebrow { color: var(--green); margin-bottom: 14px; }
  .sec-head h2 { font-size: 32px; line-height: 1.12; font-weight: 700; letter-spacing: -0.025em; margin: 0 0 14px; }
  .sec-head p { font-size: 16.5px; line-height: 1.6; color: var(--txt-soft); margin: 0; }

  /* badges */
  .badges { display: flex; align-items: flex-start; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .tbadge { display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .tbadge-slot { width: 112px; height: 112px; border-radius: 16px; border: 1px solid var(--line); background: #fff; box-shadow: 0 1px 2px rgba(20,22,40,.05), 0 16px 34px -22px rgba(20,22,60,.22); overflow: hidden; }
  .tbadge-slot img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .tbadge-slot image-slot { width: 100%; height: 100%; display: block; }
  .tbadge span { font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }

  /* practices grid */
  .practices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .practice { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; box-shadow: 0 1px 2px rgba(20,22,40,.04); }
  .practice .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; }
  .practice h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--navy); margin: 0 0 9px; }
  .practice p { font-size: 14.5px; line-height: 1.58; color: var(--txt-soft); margin: 0; }

  .cta { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
  .cta-glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 720px; height: 540px; border-radius: 50%; background: radial-gradient(closest-side, rgba(38,167,102,.16), transparent 70%); pointer-events: none; }
  .cta .wrap { position: relative; }
  .cta h2 { font-size: 38px; line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; color: #fff; margin: 0 0 16px; }
  .cta h2 .gold { background: var(--highlight); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .cta p { font-size: 17px; color: rgba(255,255,255,.72); margin: 0 auto 30px; max-width: 520px; line-height: 1.6; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; }

  footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 40px 0; border-top: 1px solid rgba(255,255,255,.10); position: relative; }
  footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(38,167,102,.55) 38%, rgba(253,217,125,.5) 62%, transparent); }
  .foot-inner { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 14px; text-align: center; font-size: 13px; }
  .foot-inner a { color: rgba(255,255,255,.7); }
  .foot-inner a:hover { color: #fff; }

  @media (prefers-reduced-motion: no-preference) {
    body.motion .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
    body.motion .reveal.in { opacity: 1; transform: none; }
    .hero-glow { animation: gd 16s ease-in-out infinite alternate; }
    @keyframes gd { from { transform: translateX(-50%) scale(1); opacity:.82; } to { transform: translateX(-50%) translateY(3%) scale(1.1); opacity:1; } }
  }
  @media (max-width: 900px) {
    .practices { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .nav-links { display: none; }
  }

  /* hero depth (consistent across pages) */
  .hero { background: radial-gradient(58% 48% at 50% 0%, rgba(38,167,102,.22), transparent 62%), radial-gradient(70% 55% at 88% 86%, rgba(51,93,255,.12), transparent 60%), radial-gradient(120% 100% at 50% -8%, #17181c 0%, #0b0b0c 62%) !important; }
  .hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(115% 82% at 50% 0%, #000 24%, transparent 72%); mask-image: radial-gradient(115% 82% at 50% 0%, #000 24%, transparent 72%); pointer-events:none; z-index:0; }
  .hero > .wrap, .hero .hero-inner { position: relative; z-index: 1; }

  .nav .nav-inner { max-width: none; padding-left: 48px; padding-right: 48px; }
  .brand-mark { width:28px; height:28px; display:block; overflow:visible; }
  .brand-mark .bp { transform-box:fill-box; transform-origin:center; }
  @media (prefers-reduced-motion: no-preference) {
    .brand-mark .bp { opacity:0; animation:brandPop .55s cubic-bezier(.34,1.5,.5,1) both; }
    .brand-mark .bp-green { animation-delay:.15s; }
    .brand-mark .bp-blue  { animation-delay:.30s; }
    .brand-mark .bp-gold  { animation-delay:.45s; }
    .brand-mark .bp-red   { animation-delay:.60s; }
    .brand:hover .brand-mark .bp { animation:brandPop .5s cubic-bezier(.34,1.5,.5,1) both; }
    .brand:hover .brand-mark .bp-green { animation-delay:0s; }
    .brand:hover .brand-mark .bp-blue  { animation-delay:.1s; }
    .brand:hover .brand-mark .bp-gold  { animation-delay:.2s; }
    .brand:hover .brand-mark .bp-red   { animation-delay:.3s; }
    @keyframes brandPop { from { opacity:0; transform:scale(.2) rotate(-35deg); } to { opacity:1; transform:scale(1) rotate(0); } }
  }

  /* ── Blue dark-surface harmonization (match the homepage; keep the radial-glow depth) ── */
  .cta {
    background: radial-gradient(92% 120% at 50% -12%, rgba(51,93,255,.16) 0%, rgba(8,8,38,0) 58%), #0a0a2b !important;
  }
  .hero {
    background:
      radial-gradient(60% 50% at 50% 0%, rgba(51,93,255,.30), transparent 62%),
      radial-gradient(120% 100% at 50% -8%, #13133e 0%, #08082a 64%) !important;
  }
  /* Shared AppNav/AppFooter render on this page — cancel the comp's own nav/footer chrome */
  footer { border-top: 0 !important; box-shadow: none !important; }
  footer::before, footer::after, nav::before, nav::after { content: none !important; background: none !important; }

  /* recolor decorative glow layers on dark sections from green → blue */
  .hero-glow, .cta-glow, .quote-glow, .hero::after,
  .roles-dark::before, .caps-dark::before, .pillars-sec::before, .steps-dark::before {
    background: radial-gradient(closest-side, rgba(51,93,255,.20), rgba(51,93,255,0) 70%) !important;
  }
