:root {
  --measure-wide: calc(var(--space-block) * 2.4);
  --surface-deep: #070B1F;
  --font-large: calc(var(--font-nav) * 1.125);
  --shadow-image: 0 1px 7px rgba(0,0,0,0.1);
  --paint-warm: #0A0620;
  --line-primary: #00E5C7;
  --speed-entry: ease;
  --paint-inverse: rgba(124, 92, 255, 0.28);
  --radius-medium: 0.44rem;
  --label-meta: "Space Grotesk", sans-serif;
  --paint-deep: #7C5CFF;
  --surface-light: #04121A;
  --motion-hover: 440ms;
  --measure-hero: 2.37rem;
  --font-quiet: calc(var(--font-nav) * .875);
  --line-clear: #E8ECF7;
  --space-block: 1.5rem;
  --label-lead: 1.83;
  --curve-medium: 1.16rem;
  --stack-footer: 2.06rem;
  --paint-panel: #E8ECF7;
  --label-quiet: calc(var(--font-nav) * 1.35);
  --copy-lead: var(--font-nav);
  --font-nav: 16.6px;
  --shadow-panel: 0 16px 48px rgba(0,0,0,0.15);
  --tone-extra-36: calc(var(--space-block) * .75);
  --space-medium: calc(var(--measure-hero) * 1.5);
  --space-large: 1460px;
  --gap-tight: var(--stack-footer);
  --tone-warm: #3DF0D8;
  --tone-extra-18: #0B0F26;
  --corner-button: 0.3rem;
}
body{margin:0;padding:0;font-family:var(--label-meta);box-sizing:border-box;}
*,*::before,*::after{box-sizing:border-box;}
.open-list {
    width: 100%;
    background: var(--line-clear);
    color: var(--tone-extra-18);
    border-bottom: 1px solid var(--paint-inverse);
    box-shadow: var(--shadow-image);
  }
.quiet-note {
    max-width: var(--space-large);
    margin: 0 auto;
    padding: var(--space-block) var(--stack-footer);
    display: flex;
    align-items: center;
    gap: var(--measure-hero);
    flex-wrap: wrap;
  }
.open-section {
    font-size: var(--font-large);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--tone-extra-18);
    text-decoration: none;
    padding: 0.25rem 0;
    flex: 0 0 auto;
  }
.open-section:hover,
  .open-section:focus-visible {
    color: var(--paint-deep);
    outline: none;
  }
.soft-brand {
    flex: 1 1 auto;
  }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--measure-hero);
    flex-wrap: wrap;
  }
.nav-list a {
    display: inline-block;
    padding: 0.5rem 0.25rem;
    font-size: var(--copy-lead);
    color: var(--tone-extra-18);
    text-decoration: none;
    border-radius: var(--corner-button);
    transition: color var(--motion-hover) var(--speed-entry),
                background-color var(--motion-hover) var(--speed-entry);
  }
.nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--paint-deep);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
  }
.focused-frame {
    flex: 0 0 auto;
    margin-left: auto;
  }
.service-tile {
    display: inline-block;
    padding: 0.65rem 1.15rem;
    background: var(--line-primary);
    color: var(--surface-light);
    font-size: var(--copy-lead);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-image);
    transition: background-color var(--motion-hover) var(--speed-entry),
                transform var(--motion-hover) var(--speed-entry);
  }
.service-tile:hover,
  .service-tile:focus-visible{
    background: var(--tone-warm);
    transform: translateY(-1px);
    outline: none;color:#E8ECF7;}
.secondary-grid {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--paint-inverse);
    border-radius: var(--radius-medium);
    cursor: pointer;
    margin-left: auto;
  }
.direct-headline{
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--tone-extra-18);
    border-radius: 2px;
    transition: transform var(--motion-hover) var(--speed-entry),
                opacity var(--motion-hover) var(--speed-entry);color:#E8ECF7;}
.secondary-grid[aria-expanded="true"] .direct-headline:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
.secondary-grid[aria-expanded="true"] .direct-headline:nth-child(2) {
    opacity: 0;
  }
.secondary-grid[aria-expanded="true"] .direct-headline:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
@media (max-width: 767px) {
    .quiet-note {
      flex-wrap: wrap;
      align-items: center;
    }

    .secondary-grid {
      display: flex;
    }

    .soft-brand {
      display: none;
      flex-basis: 100%;
      order: 3;
      margin-top: var(--space-block);
      padding-top: var(--space-block);
      border-top: 1px solid var(--paint-inverse);
    }

    .soft-brand.is-open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-list a {
      padding: 0.75rem 0.5rem;
      font-size: var(--font-large);
    }

    .focused-frame {
      display: none;
    }

    .soft-brand.is-open .focused-frame {
      display: block;
      margin-top: var(--space-block);
    }
  }
@media (min-width: 768px) {
    .soft-brand {
      display: block !important;
    }
  }
.visual-copy{font-family:var(--label-meta);font-size:var(--font-nav);line-height:var(--label-lead);padding:0;width:100%;background:var(--line-clear);color:var(--tone-extra-18);}
.visual-copy .contact-grid{max-width:var(--space-large);margin:0 auto;padding:var(--measure-wide) var(--gap-tight);display:flex;flex-direction:column;gap:var(--space-medium)}
.visual-copy .contact-body{display:grid;grid-template-columns:1.2fr 1.4fr 0.8fr 1.2fr;gap:var(--measure-hero);align-items:start}
.visual-copy .public-tile{display:flex;flex-direction:column;gap:var(--tone-extra-36);min-width:0}
.visual-copy .simple-unit{font-size:var(--font-large);font-weight:700;letter-spacing:0.02em;margin:0}
.visual-copy .bottom-menu{margin:0;font-size:var(--font-quiet);opacity:0.85;max-width:32ch}
.visual-copy .compact-nav{font-size:var(--copy-lead);font-weight:600;margin:0;letter-spacing:0.04em;text-transform:uppercase}
.visual-copy .focused-surface{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:calc(var(--space-block) / 2)}
.visual-copy .focused-contact{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:calc(var(--space-block) / 2) var(--measure-hero)}
.visual-copy .focused-surface a{color:inherit;text-decoration:none;font-size:var(--font-quiet);transition:opacity var(--motion-hover) var(--speed-entry)}
.visual-copy .focused-surface a:hover,
  .visual-copy .focused-surface a:focus-visible{opacity:0.7;text-decoration:underline;color:inherit}
.visual-copy .primary-region li{display:flex;flex-direction:column;gap:0.15rem}
.visual-copy .compact-callout{font-size:var(--font-quiet);text-transform:uppercase;letter-spacing:0.06em;opacity:0.7}
.visual-copy .plain-steps{font-size:var(--font-quiet);color:inherit;text-decoration:none;word-break:break-word}
.visual-copy a.footer-value:hover,
  .visual-copy a.footer-value:focus-visible{text-decoration:underline;color:inherit}
.visual-copy .active-group{margin:0;padding-top:var(--space-medium);border-top:1px solid rgba(255, 255, 255, 0.15);font-size:var(--font-quiet);opacity:0.85;max-width:90ch}
.visual-copy .top-menu{display:flex;justify-content:space-between;align-items:center;gap:var(--measure-hero);flex-wrap:wrap}
.visual-copy .media-copy{margin:0;font-size:var(--font-quiet);opacity:0.75}
@media (max-width: 1024px) {.visual-copy .contact-body{grid-template-columns:1fr 1fr}
  }
@media (max-width: 640px) {.visual-copy .contact-body{grid-template-columns:1fr}.visual-copy .focused-contact{grid-template-columns:1fr 1fr}.visual-copy .contact-grid{padding:var(--measure-wide) var(--stack-footer)}
  }
footer,footer *{border-radius:0!important;}
.cookies{position:fixed;left:var(--gap-tight);bottom:var(--space-block);z-index:1200}
.cookies .secondary-tile{width:min(34rem,calc(100vw - var(--gap-tight)*2));padding:var(--space-block);border-radius:var(--curve-medium);background:var(--line-primary);color:var(--surface-light);box-shadow:var(--shadow-panel)}
.cookies p{margin:0;line-height:var(--label-lead)}
.cookies strong{font-size:var(--label-quiet)}
.cookies .wide-section{display:flex;flex-wrap:wrap;gap:var(--tone-extra-36);margin-top:var(--space-block)}
.cookies .wide-section>*{min-width:0;flex:1 1 16rem}
.cookies button{border:1px solid color-mix(in srgb,currentColor 28%,transparent);border-radius:var(--corner-button);background:transparent;color:inherit;font:inherit;padding:var(--tone-extra-36);cursor:pointer}
.cookies button.cookie-accept{background:var(--paint-deep);color:var(--paint-warm);border-color:var(--paint-deep)}
.visual-plan{
  padding:var(--measure-wide) var(--gap-tight);
  min-height:calc(var(--measure-wide) * 4.2);
  display:flex;
  align-items:flex-end;
  background:linear-gradient(rgba(6,10,28,.62),rgba(6,10,28,.82)),url("https://images.pexels.com/photos/5380664/pexels-photo-5380664.jpeg?auto=compress&cs=tinysrgb&w=800") center/cover no-repeat,var(--line-clear);
  color:var(--tone-extra-18);
}
.visual-plan .page-list{
  width:100%;
  max-width:var(--space-large);
  margin:0 auto;
}
.visual-plan h1,
.visual-plan p{
  margin:0;
}
.visual-plan h1{
  font-size:calc(16.6px * 2.65);
  line-height:1.08;
}
.visual-plan .strong-steps p{
  margin-top:var(--space-block);
  font-size:var(--copy-lead);
  line-height:var(--label-lead);
  color:var(--tone-extra-18);
  opacity:.86;
}
.visual-plan .visual-section{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:var(--measure-hero);
}
.visual-plan .strong-steps{
  flex:1 1 auto;
  min-width:0;
}
.visual-plan .top-surface{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  gap:var(--space-medium);
  align-items:flex-start;
}
.visual-plan .narrow-frame{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:var(--tone-extra-36) var(--space-block);
  border-radius:var(--corner-button);
  background:var(--line-primary);
  color:var(--surface-light);
  text-decoration:none;
  font-size:var(--font-quiet);
  transition:background var(--motion-hover) var(--speed-entry);
}
.visual-plan .narrow-frame:hover{
  background:var(--tone-warm);color:#E8ECF7;}
.visual-plan .direct-menu{
  font-size:var(--font-quiet);
  line-height:var(--label-lead);
  color:var(--tone-extra-18);
  opacity:.78;
}
.visual-plan .direct-menu a{
  text-decoration:underline;
}
.visual-plan .direct-menu a:hover{
}
@media(max-width:760px){.visual-plan .visual-section{
    flex-direction:column;
  }.visual-plan .top-surface{
    align-items:stretch;
  }
}
.team-summary{
  --layer-control:calc(var(--space-block) * 1.15);
  --paint-dark:calc(var(--space-large) / 3.35);
  padding:var(--measure-wide) var(--gap-tight);
  background:var(--surface-deep);
  color:var(--paint-panel);
}
.team-summary .page-list{max-width:var(--space-large);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:var(--layer-control);}
.team-summary h2,
.team-summary h3,
.team-summary p{margin:0;}
.team-summary h2{font-size:calc(16.6px * 2);
  line-height:1.14;}
.team-summary h3{font-size:var(--label-quiet);
  line-height:1.22;}
.team-summary p{font-size:var(--copy-lead);
  line-height:var(--label-lead);}
.team-summary .focused-tile{display:flex;
  flex-wrap:wrap;
  gap:var(--measure-hero);
  align-items:flex-start;}
.team-summary .focused-tile>h2{flex:1 1 calc(var(--space-large) / 2.6);
  min-width:0;}
.team-summary .focused-tile>.simple-tile{flex:1 1 calc(var(--space-large) / 2.6);
  min-width:0;
  color:#C9D1EA;}
.team-summary .active-quote{display:flex;
  flex-wrap:wrap;
  gap:var(--layer-control);
  align-items:stretch;}
.team-summary .secondary-callout{
  flex:1 1 var(--paint-dark);
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:calc(var(--tone-extra-36) * .7);
  padding:calc(var(--tone-extra-36) * .9);
  border-radius:0.96rem;
  background:#101736;
  color:#E8ECF7;
  border:1px solid var(--paint-inverse);
}
.team-summary .secondary-callout img{display:block;
  width:100%;
  height:auto;
  border-radius:var(--radius-medium);}
.team-summary .secondary-callout p{color:#C9D1EA;}
.team-summary .direct-menu{margin-top:auto;
  align-self:flex-start;
  font-size:var(--font-quiet);
  color:#00E5C7;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color var(--motion-hover) var(--speed-entry), border-color var(--motion-hover) var(--speed-entry);}
.team-summary .direct-menu:hover{color:inherit;
  border-bottom-color:#7C5CFF;}
.team-summary .secondary-section{
  flex:1 1 var(--paint-dark);
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:calc(var(--tone-extra-36) * .7);
  padding:calc(var(--tone-extra-36) * .9);
  border-radius:0.96rem;
  background:#0D1330;
  color:#C9D1EA;
  border:1px solid var(--paint-inverse);
}
.team-summary .secondary-section p{color:#C9D1EA;}
.team-summary .text-plan{margin-top:auto;}
.team-summary .text-plan a{font-size:var(--font-quiet);
  color:#00E5C7;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color var(--motion-hover) var(--speed-entry), border-color var(--motion-hover) var(--speed-entry);}
.team-summary .text-plan a:hover{color:inherit;
  border-bottom-color:#7C5CFF;}
@media (max-width:720px){.team-summary .focused-tile>h2,
  .team-summary .focused-tile>.simple-tile{
    flex:1 1 100%;
  }
}
.offer-media{--layer-control:calc(var(--space-block) * 1.15);--field-control:rgba(124, 92, 255, 0.28);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.offer-media .page-list{max-width:var(--space-large);margin:0 auto;}
.offer-media h2,.offer-media h3,.offer-media p{margin:0;}
.offer-media h2{font-size:calc(16.6px * 2);line-height:1.12;}
.offer-media h3{font-size:var(--label-quiet);line-height:1.22;}
.offer-media p{font-size:var(--copy-lead);line-height:var(--label-lead);}
.offer-media a{text-decoration:none;}
.offer-media a:hover{}
.offer-media .secondary-section{margin-bottom:calc(var(--space-block) / 2.4);font-size:var(--font-quiet);letter-spacing:0.06em;text-transform:uppercase;}
.offer-media .simple-tile{margin-top:var(--space-block);max-width:100%;}
.offer-media .steady-team{display:flex;flex-direction:column;gap:0;margin-top:var(--layer-control);border-top:1px solid var(--field-control);}
.offer-media .secondary-callout{padding:var(--space-medium) 0;border-bottom:1px solid var(--field-control);}
.offer-media .strong-steps{display:flex;flex-direction:column;gap:calc(var(--space-block) / 3.4);}
.offer-media .strong-steps p{}
.offer-media .strong-steps a{align-self:flex-start;font-size:var(--font-quiet);border-bottom:1px solid currentColor;padding-bottom:2px;}
.offer-media .direct-menu{margin-top:var(--layer-control);font-size:var(--font-quiet);}
@media (min-width: 900px){.offer-media .secondary-callout{display:grid;grid-template-columns:minmax(0, 0.9fr) minmax(0, 1.6fr);gap:var(--measure-hero);align-items:start;}.offer-media .strong-steps h3{margin-top:2px;}
}
.team-inner{--layer-control:calc(var(--space-block) * 0.9);--measure-card:calc(var(--space-medium) * 0.85);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.team-inner .page-list{max-width:var(--space-large);margin:0 auto;}
.team-inner h2,.team-inner h3,.team-inner p{margin:0;}
.team-inner h2{font-size:calc(16.6px * 2);line-height:1.14;}
.team-inner h3{font-size:var(--label-quiet);line-height:1.22;}
.team-inner p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.team-inner a{color:#00E5C7;text-decoration:none;}
.team-inner a:hover{color:inherit;}
.team-inner .region{display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero);}
.team-inner .region>.strong-steps{flex:1 1 60%;min-width:0;}
.team-inner .region>.narrow-frame{flex:0 0 auto;}
.team-inner .region>.steady-team{flex:1 1 100%;}
.team-inner .secondary-section{font-size:var(--font-quiet);letter-spacing:0.04em;text-transform:uppercase;color:inherit;}
.team-inner .strong-steps h2{margin-top:calc(var(--space-block) / 3);}
.team-inner .simple-tile{margin-top:calc(var(--space-block) / 2);}
.team-inner .narrow-frame{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;padding:var(--tone-extra-36) var(--space-block);border-radius:var(--corner-button);background:var(--line-primary);color:var(--surface-light);}
.team-inner .narrow-frame:hover{background:var(--tone-warm);color:var(--surface-light);}
.team-inner .steady-team{display:flex;flex-direction:column;gap:var(--measure-card);margin-top:var(--layer-control);border-top:1px solid var(--paint-inverse);padding-top:var(--layer-control);}
.team-inner .secondary-callout{display:flex;flex-wrap:wrap;align-items:baseline;gap:calc(var(--measure-hero) / 2);padding-bottom:var(--measure-card);border-bottom:1px solid var(--paint-inverse);}
.team-inner .secondary-callout:last-child{border-bottom:none;padding-bottom:0;}
.team-inner .secondary-callout h3{flex:0 1 calc(var(--space-large) / 4.2);min-width:0;}
.team-inner .secondary-callout p{flex:1 1 calc(var(--space-large) / 2.6);min-width:0;}
.team-inner .direct-menu{margin-top:var(--layer-control);font-size:var(--font-quiet);color:#C9D1EA;}
@media (max-width: 720px){.team-inner .region>.strong-steps,.team-inner .region>.narrow-frame{flex:1 1 100%;}.team-inner .secondary-callout h3,.team-inner .secondary-callout p{flex:1 1 100%;}
}
.direct-inner{
  background: var(--paint-deep);
  color: var(--paint-warm);
  padding: var(--measure-wide) var(--gap-tight);
}
.direct-inner .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--measure-hero);
  align-items: stretch;}
.direct-inner .strong-steps{display: flex;
  flex-direction: column;
  gap: var(--space-medium);
  justify-content: center;}
.direct-inner h2{margin: 0;
  font-size: calc(16.6px * 2.65);
  line-height: 1.05;
  max-width: 14ch;}
.direct-inner .strong-steps > p{margin: 0;
  font-size: var(--font-large);
  line-height: var(--label-lead);}
.direct-inner .visual-brand{display: flex;
  flex-direction: column;
  gap: var(--tone-extra-36);}
.direct-inner .visual-brand div{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-block);
  padding: var(--tone-extra-36);
  border-radius: var(--radius-medium);
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
}
.direct-inner strong{font-size: var(--label-quiet);
  line-height: 1.16;}
.direct-inner span{line-height: var(--label-lead);}
.direct-inner .fresh-service{display: block;
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  border-radius: var(--curve-medium);}
.direct-inner .page-list > *{min-width: 0; flex: 1 1 20rem;}
.direct-inner .visual-brand div > *{min-width: 0; flex: 1 1 15rem;}
@media (max-width: 860px) {.direct-inner .fresh-service{ min-height: 18rem; }
}
.fresh-form{--layer-control:calc(var(--space-block) * 1.05);--type-extra-19:calc(var(--space-large) / 3.4);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.fresh-form .page-list{max-width:var(--space-large);margin:0 auto;}
.fresh-form h2,.fresh-form h3,.fresh-form p{margin:0;}
.fresh-form h2{font-size:calc(16.6px * 2);line-height:1.14;}
.fresh-form h3{font-size:var(--label-quiet);line-height:1.22;}
.fresh-form p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.fresh-form .direct-team{padding-inline-start:var(--tone-extra-36);}
.fresh-form .cluster{row-gap:calc(var(--layer-control) * 1.15);}
.fresh-form .fresh-footer{padding-inline-end:calc(var(--tone-extra-36) / 2);}
.fresh-form .simple-tile{margin-top:var(--space-block);}
.fresh-form .bottom-steps{display:flex;flex-wrap:wrap;gap:var(--layer-control);margin-top:var(--layer-control);}
.fresh-form .secondary-callout{flex:1 1 var(--type-extra-19);min-width:0;padding:calc(var(--layer-control) * .8);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);}
.fresh-form .secondary-callout p{margin-top:calc(var(--space-block) / 3);color:#C9D1EA;}
@media (max-width:720px){.fresh-form .direct-team{padding-inline-start:0;}.fresh-form .fresh-footer{padding-inline-end:0;}
}
.simple-stack{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.simple-stack .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: grid;
  gap: var(--measure-hero);}
.simple-stack h2,
.simple-stack h3,
.simple-stack p{margin: 0;}
.simple-stack h2{font-size: calc(16.6px * 2); line-height: 1.1;}
.simple-stack h3{font-size: var(--label-quiet); line-height: 1.2;}
.simple-stack p{font-size: var(--copy-lead); line-height: var(--label-lead);}
.simple-stack .simple-tile{
  display: grid;
  gap: var(--space-block);
  align-content: start;
  padding: var(--space-medium);
  border-radius: var(--curve-medium);
  background: linear-gradient(120deg, #00E5C7 0%, #7C5CFF 100%);
  color: #04121A;
}
.simple-stack .public-view{display: flex;
  flex-wrap: wrap;
  gap: var(--tone-extra-36);}
.simple-stack [data-block]{
  flex: 1 1 20rem;
  padding: var(--space-block);
  border-radius: var(--radius-medium);
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  display: grid;
  gap: var(--tone-extra-36);
  align-content: start;
  animation: galleryFrameIn calc(var(--motion-hover) * 2.2) var(--speed-entry) both;
  animation-delay: var(--motion-fast, 0ms);
}
.simple-stack [data-block]:nth-child(3n + 1){flex: 1 1 30rem;}
.simple-stack [data-block] span{font-size: var(--font-quiet);
  letter-spacing: .04em;
  text-transform: uppercase;}
.simple-stack .narrow-frame{
  justify-self: start;
  padding: calc(var(--tone-extra-36) * .75) var(--space-block);
  border-radius: var(--radius-medium);
  background: var(--line-primary);
  color: var(--surface-light);
  text-decoration: none;
}
.simple-stack .narrow-frame:hover{
  background: var(--tone-warm);color:#E8ECF7;}
@keyframes galleryFrameIn {from{ opacity: .2; transform: translateY(calc(calc(2.37rem * 1) * .16)); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {.simple-stack [data-block],
  .simple-stack [data-block]:nth-child(3n + 1){
    flex: 1 1 100%;
  }
}
.main-service{--layer-control:calc(var(--space-block) * 1.35);--field-control:rgba(124, 92, 255, 0.28);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.main-service .page-list{max-width:var(--space-large);margin:0 auto;display:flex;flex-direction:column;gap:var(--layer-control);}
.main-service h2,.main-service h3,.main-service p{margin:0;}
.main-service h2{font-size:calc(16.6px * 2);line-height:1.12;}
.main-service h3{font-size:var(--label-quiet);line-height:1.22;}
.main-service p{font-size:var(--copy-lead);line-height:var(--label-lead);}
.main-service .active-quote{display:flex;flex-direction:column;gap:var(--space-medium);}
.main-service .simple-tile{color:#C9D1EA;}
.main-service .steady-team{display:flex;flex-direction:column;border-top:1px solid var(--field-control);}
.main-service .secondary-callout{display:flex;flex-direction:column;gap:calc(var(--space-medium) / 2);padding:var(--tone-extra-36) 0;border-bottom:1px solid var(--field-control);min-width:0;}
.main-service .secondary-callout p{color:#C9D1EA;}
.main-service .secondary-section{color:#C9D1EA;font-size:var(--font-quiet);padding-top:calc(var(--space-medium) / 2);}
@media (min-width:900px){.main-service .active-quote{flex-direction:row;align-items:flex-end;justify-content:space-between;gap:var(--measure-hero);}.main-service .active-quote h2{flex:0 0 auto;}.main-service .active-quote .simple-tile{flex:1 1 auto;max-width:none;}.main-service .secondary-callout{flex-direction:row;align-items:baseline;gap:var(--measure-hero);}.main-service .secondary-callout h3{flex:0 0 34%;}.main-service .secondary-callout p{flex:1 1 auto;}
}
.main-grid{padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.secondary-area{max-width:var(--space-large);margin:0 auto;}
.main-grid h1{margin:0;font-size:calc(16.6px * 2.65);line-height:1.08;}
.strong-unit{
  --layer-control:calc(var(--space-block) * 0.92);
  --mark-strong:calc(var(--space-large) / 2.4);
  padding:var(--measure-wide) var(--gap-tight);
  background:var(--surface-deep);
  color:var(--paint-panel);
}
.strong-unit .page-list{max-width:var(--space-large);
  margin:0 auto;}
.strong-unit h2,
.strong-unit h3,
.strong-unit p{margin:0;}
.strong-unit h2{font-size:calc(16.6px * 2);
  line-height:1.14;}
.strong-unit h3{font-size:var(--label-quiet);
  line-height:1.24;}
.strong-unit p{font-size:var(--copy-lead);
  line-height:var(--label-lead);
  color:#C9D1EA;}
.strong-unit a{color:#00E5C7;
  text-decoration:none;
  border-bottom:1px solid var(--paint-inverse);}
.strong-unit a:hover{color:inherit;}
.strong-unit .focused-tile{display:flex;
  flex-direction:column;
  gap:var(--space-medium);
  padding-bottom:var(--space-medium);
  border-bottom:1px solid var(--paint-inverse);}
.strong-unit .simple-tile{max-width:var(--mark-strong);}
.strong-unit .text-area{display:flex;
  flex-direction:column;
  gap:var(--layer-control);
  margin-top:var(--layer-control);}
.strong-unit .secondary-callout{display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:calc(var(--tone-extra-36) * 0.6);
  padding:var(--tone-extra-36) 0;
  border-bottom:1px solid var(--paint-inverse);}
.strong-unit .secondary-callout:last-child{border-bottom:none;}
.strong-unit .secondary-callout h3{color:var(--paint-panel);}
@media (min-width:900px){.strong-unit .secondary-callout{
    grid-template-columns:minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap:var(--measure-hero);
    align-items:start;
  }
}
.page-actions{padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);overflow:hidden}
.page-actions .page-list{max-width:var(--space-large);margin:0 auto}
.page-actions .steady-group{margin:0 0 var(--space-medium)}
.page-actions h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.page-actions .steady-group p{margin:var(--space-block) 0 0;font-size:var(--font-large);line-height:var(--label-lead)}
.page-actions .narrow-grid{display:flex;flex-wrap:wrap;gap:var(--measure-hero)}
.page-actions .secondary-callout{flex:1 1 20rem;padding:var(--tone-extra-36) 0;border-top:1px solid var(--paint-inverse)}
.page-actions .secondary-callout:nth-child(3n+2){padding-top:calc(var(--tone-extra-36) + var(--space-block))}
.page-actions strong{display:block;font-size:var(--label-quiet);line-height:1.15}
.page-actions .secondary-callout p{margin:var(--tone-extra-36) 0 0;line-height:var(--label-lead)}
.page-actions .direct-menu{margin:var(--space-medium) 0 0;font-size:var(--font-quiet);line-height:var(--label-lead)}
.page-actions .direct-menu a{text-decoration:none;border-bottom:1px solid #00E5C7}
.page-actions .direct-menu a:hover{border-bottom-color:#7C5CFF}
@media (max-width:640px){.page-actions .secondary-callout{flex:1 1 100%}.page-actions .secondary-callout:nth-child(3n+2){padding-top:var(--tone-extra-36)}
}
.direct-section{--layer-control:calc(var(--space-block) * 1.02);--mark-strong:calc(var(--space-large) / 2.55);--font-small:calc(var(--space-large) / 3.94);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.direct-section .page-list{max-width:var(--space-large);margin:0 auto;}
.direct-section h1,.direct-section h2,.direct-section h3,.direct-section p{margin:0;}
.direct-section h2{font-size:calc(16.6px * 2);line-height:1.12;}
.direct-section h3{font-size:var(--label-quiet);line-height:1.2;}
.direct-section p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.direct-section a{color:#00E5C7;text-decoration:none;}
.direct-section a:hover{color:inherit;}
.direct-section img{display:block;width:100%;height:auto;border-radius:var(--radius-medium);}
.direct-section .simple-tile,.direct-section .secondary-section{margin-top:var(--space-block);}
.direct-section .secondary-section{font-size:var(--font-quiet);color:#C9D1EA;}
.direct-section .steady-team{display:flex;flex-direction:column;gap:var(--layer-control);margin-top:var(--layer-control);}
.direct-section .secondary-callout{min-width:0;padding-bottom:var(--space-medium);border-bottom:1px solid var(--paint-inverse);}
.direct-section .secondary-callout:last-child{border-bottom:0;padding-bottom:0;}
.direct-section .secondary-callout p{margin-top:calc(var(--space-block) / 3);}
.direct-section .bottom-links{display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero);}
.direct-section .bottom-links>.strong-steps{flex:1 1 calc(var(--space-large) / 3);min-width:0;}
.direct-section .bottom-links>.steady-team{flex:2 1 calc(var(--space-large) / 2);margin-top:0;}
.direct-section .bottom-links>img{margin-left:auto;max-width:var(--font-small);}
.direct-section .direct-menu{margin-top:var(--space-block);font-size:var(--font-quiet);color:#C9D1EA;}
@media (max-width:900px){.direct-section .bottom-links>img{margin-left:0;max-width:100%;}
}
.badge--care{
        padding:var(--measure-wide) var(--gap-tight);
        background:linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
        color:#E8ECF7;
    }
.badge--care .page-list{max-width:var(--space-large);
        margin:0 auto;
        display:flex;
        flex-direction:column;
        gap:var(--space-medium);}
.badge--care .steady-tile{display:flex;
        flex-direction:column;
        gap:var(--tone-extra-36);}
.badge--care .steady-tile h2{margin:0;
        font-size:calc(16.6px * 2);
        line-height:1.2;}
.badge--care .steady-tile p{margin:0;
        font-size:var(--copy-lead);
        line-height:var(--label-lead);
        opacity:.92;}
.badge--care .steady-team{display:flex;
        flex-direction:column;
        gap:var(--tone-extra-36);}
.badge--care .secondary-callout{
        border:1px solid var(--paint-inverse);
        border-radius:var(--radius-medium);
        background:#101736;
        color:#E8ECF7;
        overflow:hidden;
    }
.badge--care .secondary-callout button{
        width:100%;
        border:0;
        background:transparent;
        color:inherit;
        text-align:left;
        font:inherit;
        font-weight:700;
        padding:var(--tone-extra-36) var(--tone-extra-36);
        cursor:pointer;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:var(--measure-hero);
    }
.badge--care .secondary-callout button::after{content:"+";
        font-weight:400;
        font-size:var(--font-large);
        line-height:1;
        flex:0 0 auto;
        opacity:.7;}
.badge--care .secondary-callout.is-open button::after{content:"\2212";}
.badge--care .secondary-callout p{margin:0;
        max-height:0;
        overflow:hidden;
        padding:0 var(--tone-extra-36);
        transition:max-height var(--motion-hover) var(--speed-entry),padding var(--motion-hover) var(--speed-entry);
        opacity:.95;
        font-size:var(--font-quiet);
        line-height:var(--label-lead);}
.badge--care .secondary-callout.is-open p{max-height:340px;
        padding:0 var(--tone-extra-36) var(--tone-extra-36);}
.badge--care .direct-menu{display:flex;
        flex-wrap:wrap;
        align-items:center;
        gap:var(--measure-hero);
        padding-top:var(--space-medium);
        border-top:1px solid var(--paint-inverse);}
.badge--care .direct-menu p{margin:0;
        flex:1 1 260px;
        font-size:var(--font-quiet);
        opacity:.9;}
.badge--care .direct-menu a{text-decoration:none;
        font-weight:700;
        font-size:var(--font-quiet);
        border-bottom:1px solid transparent;
        transition:color var(--motion-hover) var(--speed-entry),border-color var(--motion-hover) var(--speed-entry);}
.badge--care .direct-menu a:hover{border-bottom-color:#7C5CFF;}
@media (max-width:640px){.badge--care .direct-menu{
            flex-direction:column;
            align-items:flex-start;
        }
    }
.focused-quote{--layer-control:calc(var(--space-block) * 1.15);--font-small:calc(var(--space-large) / 3.66);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.focused-quote .page-list{max-width:var(--space-large);margin:0 auto;}
.focused-quote h2,.focused-quote h3,.focused-quote p{margin:0;}
.focused-quote h2{font-size:calc(16.6px * 2);line-height:1.12;}
.focused-quote h3{font-size:var(--label-quiet);line-height:1.22;}
.focused-quote p{font-size:var(--copy-lead);line-height:var(--label-lead);}
.focused-quote a{text-decoration:none;}
.focused-quote a:hover{}
.focused-quote img{display:block;width:100%;height:auto;border-radius:var(--radius-medium);}
.focused-quote .bottom-links{display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero);}
.focused-quote .bottom-links>.strong-steps{flex:1 1 calc(var(--space-large) / 3.2);min-width:0;}
.focused-quote .bottom-links>.steady-team{flex:2 1 calc(var(--space-large) / 2.2);display:flex;flex-direction:column;gap:var(--layer-control);margin-top:0;min-width:0;}
.focused-quote .bottom-links>img{margin-left:auto;max-width:var(--font-small);}
.focused-quote .strong-steps .simple-tile{margin-top:var(--space-block);}
.focused-quote .secondary-callout{min-width:0;padding-left:var(--tone-extra-36);border-left:2px solid var(--paint-inverse);}
.focused-quote .secondary-callout p{margin-top:calc(var(--space-block) / 3.2);}
.focused-quote .direct-menu{margin-top:var(--layer-control);font-size:var(--font-quiet);}
@media (max-width:900px){.focused-quote .bottom-links>img{max-width:100%;margin-left:0;}
}
.team-story{
  padding: var(--measure-wide) var(--gap-tight);
  background: var(--surface-deep);
  color: var(--paint-panel);
}
.team-story .page-list{max-width: min(var(--space-large), 74rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-medium);}
.team-story .simple-tile{display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-medium);
  align-items: end;
  padding-bottom: var(--tone-extra-36);
  border-bottom: 1px solid var(--paint-inverse);}
.team-story h2{margin: 0;
  font-size: calc(16.6px * 2);
  line-height: 1.1;}
.team-story .simple-tile p{margin: 0;
  color: #C9D1EA;
  font-size: var(--copy-lead);
  line-height: var(--label-lead);}
.team-story .clear-frame{display: flex;
  flex-direction: column;
  gap: 0;}
.team-story .clear-frame a{
  display: grid;
  grid-template-columns: minmax(6rem, .22fr) minmax(0, .5fr) minmax(0, 1fr);
  gap: var(--tone-extra-36);
  align-items: baseline;
  padding: var(--tone-extra-36) 0;
  border-bottom: 1px solid var(--paint-inverse);
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color var(--motion-hover) var(--speed-entry);
}
.team-story .clear-frame a:last-child{border-bottom: none;}
.team-story .clear-frame a:hover strong{color:inherit;}
.team-story .clear-frame span{color:inherit;
  font-size: var(--font-quiet);
  letter-spacing: .02em;}
.team-story .clear-frame strong{font-size: var(--copy-lead);
  font-weight: 600;
  color: var(--paint-panel);
  transition: color var(--motion-hover) var(--speed-entry);}
.team-story .clear-frame em{font-style: normal;
  color: #C9D1EA;
  font-size: var(--font-quiet);
  line-height: var(--label-lead);}
@media (max-width: 820px) {.team-story .simple-tile{
    grid-template-columns: 1fr;
    align-items: start;
  }.team-story .clear-frame a{
    grid-template-columns: 1fr;
    gap: .35rem;
  }
}
.open-wrap{--layer-control:calc(var(--space-block) * 1.32);padding:var(--measure-wide) var(--gap-tight);background:var(--line-primary);color:var(--surface-light);}
.open-wrap .page-list{max-width:var(--space-large);margin:0 auto;}
.open-wrap h2,.open-wrap p{margin:0;}
.open-wrap h2{font-size:calc(16.6px * 2);line-height:1.12;max-width:34ch;}
.open-wrap p{font-size:var(--copy-lead);line-height:var(--label-lead);}
.open-wrap .secondary-section{margin-bottom:var(--space-medium);font-size:var(--font-quiet);letter-spacing:0.04em;text-transform:uppercase;opacity:0.72;}
.open-wrap .simple-tile{margin-top:var(--space-medium);}
.open-wrap .narrow-frame{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;margin-top:var(--space-block);padding:var(--tone-extra-36) var(--space-block);border-radius:var(--corner-button);background:var(--surface-light);color:var(--line-primary);text-decoration:none;}
.open-wrap .direct-menu{margin-top:var(--layer-control);font-size:var(--font-quiet);opacity:0.78;}
.open-wrap .direct-menu a{color:inherit;text-decoration:underline;text-underline-offset:3px;}
.service-note{padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel)}
.service-note .page-list{max-width:min(var(--space-large),56rem);margin:0 auto}
.service-note .focused-tile{max-width:48rem}
.service-note h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.service-note .focused-tile p{margin:var(--space-block) 0 0;color:#C9D1EA;line-height:var(--label-lead)}
.service-note .visual-callout{margin-top:var(--space-medium);border-top:1px solid var(--paint-inverse)}
.service-note details{padding:var(--space-block) 0;border-bottom:1px solid var(--paint-inverse)}
.service-note summary{cursor:pointer;font-size:var(--label-quiet);line-height:1.2;list-style:none}
.service-note summary::-webkit-details-marker{display:none}
.service-note summary::after{content:"+";float:right;color:inherit;font-size:var(--font-large);line-height:1}
.service-note details[open] summary::after{content:"–"}
.service-note details p{margin:var(--space-block) 0 0;color:#C9D1EA;line-height:var(--label-lead)}
@media(max-width:720px){.service-note .visual-callout{margin-top:var(--tone-extra-36)}.service-note details{padding:var(--tone-extra-36) 0}
}
.visual-track{
  background: var(--surface-deep);
  color: var(--paint-panel);
  padding: var(--measure-wide) var(--gap-tight);
}
.visual-track .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-medium);}
.visual-track .simple-tile{display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--tone-extra-36);}
.visual-track h2{margin: 0;
  flex: 1 1 18rem;
  font-size: calc(16.6px * 2);
  line-height: 1.05;}
.visual-track .focused-tile{margin: 0;
  flex: 2 1 26rem;
  font-size: var(--copy-lead);
  line-height: var(--label-lead);}
.visual-track .active-quote{display: flex;
  flex-wrap: wrap;
  gap: var(--measure-hero);}
.visual-track .secondary-callout{margin: 0;
  flex: 1 1 18rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--tone-extra-36);}
.visual-track .secondary-callout img{width: 100%;
  height: auto;
  display: block;
  border-radius: 0.96rem;
  border: 1px solid var(--paint-inverse);
  box-shadow: var(--shadow-image);}
.visual-track figcaption{display: flex;
  flex-direction: column;
  gap: 0.5rem;}
.visual-track .primary-section{
  align-self: flex-start;
  padding: 0.2rem 0.7rem;
  border-radius: var(--corner-button);
  background: var(--paint-deep);
  color: var(--paint-warm);
  font-size: var(--font-quiet);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.visual-track figcaption p{margin: 0;
  font-size: var(--font-quiet);
  line-height: var(--label-lead);}
.visual-track .secondary-section{margin: 0;
  padding-top: var(--tone-extra-36);
  border-top: 1px solid var(--paint-inverse);
  font-size: var(--font-quiet);
  line-height: var(--label-lead);}
@media (max-width: 720px) {.visual-track .simple-tile{
    align-items: flex-start;
  }.visual-track h2,
  .visual-track .focused-tile{
    flex: 1 1 100%;
  }
}
.content-grid{--layer-control:calc(var(--space-block) * 1.15);--font-small:calc(var(--space-large) / 3.22);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.content-grid .page-list{max-width:var(--space-large);margin:0 auto;}
.content-grid h2,.content-grid h3,.content-grid p{margin:0;}
.content-grid h2{font-size:calc(16.6px * 2);line-height:1.12;}
.content-grid h3{font-size:var(--label-quiet);line-height:1.2;}
.content-grid p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.content-grid a{color:#00E5C7;text-decoration:none;}
.content-grid a:hover{color:inherit;}
.content-grid img{display:block;width:100%;height:auto;border-radius:var(--radius-medium);}
.content-grid .simple-tile{margin-top:var(--space-block);}
.content-grid .bottom-actions>img{margin-top:var(--layer-control);}
.content-grid .steady-team{display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero);margin-top:var(--layer-control);}
.content-grid .secondary-callout{flex:1 1 calc(var(--space-large) / 4);min-width:0;padding-top:var(--tone-extra-36);border-top:1px solid var(--paint-inverse);}
.content-grid .secondary-callout h3{margin-top:calc(var(--space-block) / 3);}
.content-grid .secondary-section{margin-top:var(--space-medium);}
.plain-summary{padding:var(--measure-wide) var(--gap-tight);background:linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);color:#E8ECF7;}
.plain-summary .page-list{max-width:var(--space-large);margin:0 auto;display:flex;flex-direction:column;gap:var(--space-medium);}
.plain-summary .steady-tile p{margin:0;font-size:var(--font-quiet);font-weight:700;letter-spacing:.04em;text-transform:uppercase;opacity:.85;}
.plain-summary .steady-tile h2{margin:10px 0 0;font-size:calc(16.6px * 2);line-height:1.2;}
.plain-summary .focused-tile p{margin:0;font-size:var(--copy-lead);line-height:var(--label-lead);}
.plain-summary .steady-team{display:flex;flex-wrap:wrap;gap:var(--measure-hero);}
.plain-summary .secondary-callout{flex:1 1 300px;min-width:260px;padding:var(--tone-extra-36);border-radius:0.96rem;background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);box-shadow:var(--shadow-image);}
.plain-summary .secondary-callout .open-panel{display:inline-block;font-size:var(--font-quiet);font-weight:700;color:var(--paint-warm);background:var(--paint-deep);padding:4px 10px;border-radius:var(--corner-button);}
.plain-summary .secondary-callout h3{margin:var(--stack-footer) 0 8px;font-size:var(--label-quiet);line-height:1.3;}
.plain-summary .secondary-callout p{margin:0;font-size:var(--font-nav);line-height:var(--label-lead);}
.plain-summary .narrow-frame{display:flex;flex-direction:column;gap:10px;padding-top:var(--space-block);border-top:1px solid var(--paint-inverse);}
.plain-summary .narrow-frame p{margin:0;font-size:var(--font-nav);line-height:var(--label-lead);}
.plain-summary .narrow-frame a{text-decoration:underline;text-underline-offset:3px;}
.plain-summary .narrow-frame a:hover{}
.plain-summary .narrow-frame .secondary-section{font-size:var(--font-quiet);}
@media (max-width:640px){.plain-summary .secondary-callout{flex:1 1 100%;}
    }
.media-footer{background:var(--surface-deep);color:var(--paint-panel);padding:var(--measure-wide) var(--gap-tight)}
.media-footer .page-list{max-width:var(--space-large);margin:0 auto}
.media-footer .team-menu{display:grid;grid-template-columns:1.15fr .7fr 1fr;gap:var(--space-medium);align-items:start}
.media-footer .focused-tile{min-width:0}
.media-footer h2{margin:0;font-size:clamp(calc(16.6px * 2),4.4vw,calc(16.6px * 2.65));line-height:1.08;letter-spacing:0}
.media-footer p{margin:var(--space-block) 0 0;color:#C9D1EA;font-size:var(--font-large);line-height:1.7}
.media-footer .quiet-area{display:block;min-width:0;width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;border-radius:0.96rem;box-shadow:0 6px 14px rgba(0,0,0,0.13)}
.media-footer .page-proof{display:flex;flex-direction:column;gap:var(--tone-extra-36)}
.media-footer .page-proof a{padding:var(--tone-extra-36);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);text-decoration:none;transition:border-color var(--motion-hover) var(--speed-entry)}
.media-footer .page-proof a:hover{border-color:var(--line-primary)}
.media-footer strong,.media-footer span{display:block}
.media-footer strong{font-size:var(--copy-lead)}
.media-footer span{margin-top:calc(var(--tone-extra-36)*.5);color:#C9D1EA;line-height:1.6;font-size:var(--font-quiet)}
@media(max-width:820px){.media-footer .team-menu{grid-template-columns:1fr}.media-footer .quiet-area{aspect-ratio:16/9}}
.content-shell{
    padding:var(--measure-wide) var(--gap-tight);
    background:linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
    color:#E8ECF7;
}
.content-shell .page-list{max-width:var(--space-large);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.content-shell .steady-tile h2{margin:0;
    font-size:calc(16.6px * 2);
    line-height:1.2;}
.content-shell .steady-tile p{margin:var(--tone-extra-36) 0 0;
    font-size:var(--copy-lead);
    line-height:var(--label-lead);
    opacity:.92;}
.content-shell .active-quote{display:flex;
    flex-direction:column;
    border-top:1px solid var(--paint-inverse);}
.content-shell .visual-section{display:flex;
    flex-wrap:wrap;
    gap:var(--measure-hero);
    padding:var(--tone-extra-36) 0;
    border-bottom:1px solid var(--paint-inverse);
    align-items:baseline;}
.content-shell .service-track{flex:0 0 220px;
    font-size:var(--font-quiet);
    font-weight:700;
    letter-spacing:.02em;
    text-transform:uppercase;}
.content-shell .strong-steps{flex:1 1 320px;
    margin:0;
    font-size:var(--font-nav);
    line-height:var(--label-lead);
    opacity:.95;}
.content-shell .strong-steps a,
.content-shell .direct-menu a{text-decoration:underline;
    text-underline-offset:3px;}
.content-shell .strong-steps a:hover,
.content-shell .direct-menu a:hover{}
.content-shell .secondary-section{
    background:#101736;
    color:#E8ECF7;
    border:1px solid var(--paint-inverse);
    border-radius:0.96rem;
    padding:var(--tone-extra-36);
    display:flex;
    flex-direction:column;
    gap:var(--tone-extra-36);
}
.content-shell .secondary-section p{margin:0;
    font-size:var(--font-nav);
    line-height:var(--label-lead);}
.content-shell .secondary-section .direct-menu{font-size:var(--font-quiet);
    opacity:.9;}
@media (max-width:720px){.content-shell .service-track{
        flex:1 1 100%;
    }
}
.compact-lead{
  padding: var(--measure-wide) var(--gap-tight);
  background: var(--line-clear);
  color: var(--tone-extra-18);
}
.compact-lead .page-list{max-width: min(var(--space-large), 74rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: var(--space-medium);
  align-items: start;}
.compact-lead .simple-tile h2{margin: 0;
  font-size: calc(16.6px * 2);
  line-height: 1.1;}
.compact-lead .simple-tile p{margin: var(--tone-extra-36) 0 0;
  font-size: var(--font-large);
  line-height: var(--label-lead);}
.compact-lead .clear-frame{display: flex;
  flex-direction: column;
  gap: var(--tone-extra-36);}
.compact-lead .clear-frame a{
  display: grid;
  grid-template-columns: minmax(5rem, .22fr) minmax(0, .78fr) minmax(0, 1.1fr);
  gap: var(--tone-extra-36);
  align-items: start;
  padding: var(--tone-extra-36);
  border-radius: var(--radius-medium);
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  text-decoration: none;
  transition: border-color var(--motion-hover) var(--speed-entry), background var(--motion-hover) var(--speed-entry);
}
.compact-lead .clear-frame a:hover,
.compact-lead .clear-frame a:focus-visible{
  border-color: var(--paint-deep);
  background: #0D1330;color:#C9D1EA;}
.compact-lead .clear-frame span{color:inherit;
  font-size: var(--font-quiet);
  letter-spacing: .02em;}
.compact-lead .clear-frame strong{font-size: var(--copy-lead);
  line-height: 1.35;}
.compact-lead .clear-frame em{font-style: normal;
  font-size: var(--font-quiet);
  line-height: var(--label-lead);color:inherit;}
@media (max-width: 820px) {.compact-lead .page-list{
    grid-template-columns: 1fr;
  }.compact-lead .clear-frame a{
    grid-template-columns: 1fr;
    gap: calc(var(--tone-extra-36) / 2);
  }
}
.secondary-inner{--layer-control:calc(var(--space-block) * 1.02);--font-small:calc(var(--space-large) / 3.11);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.secondary-inner .page-list{max-width:var(--space-large);margin:0 auto;}
.secondary-inner h1,.secondary-inner h2,.secondary-inner h3,.secondary-inner p{margin:0;}
.secondary-inner h2{font-size:calc(16.6px * 2);line-height:1.12;}
.secondary-inner h3{font-size:var(--label-quiet);line-height:1.2;}
.secondary-inner p{font-size:var(--copy-lead);line-height:var(--label-lead);}
.secondary-inner a{text-decoration:none;}
.secondary-inner a:hover{}
.secondary-inner img{display:block;width:100%;height:auto;border-radius:var(--radius-medium);}
.secondary-inner .page-benefit{display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero);}
.secondary-inner .focused-tile{flex:1 1 calc(var(--space-large) / 2.6);min-width:0;}
.secondary-inner .focused-tile .simple-tile{margin-top:var(--space-medium);}
.secondary-inner .active-note{margin:var(--layer-control) 0 0;max-width:var(--font-small);}
.secondary-inner .steady-team{flex:1 1 calc(var(--space-large) / 2.6);min-width:0;display:flex;flex-direction:column;gap:var(--tone-extra-36);}
.secondary-inner .secondary-callout{padding:var(--tone-extra-36) 0;border-top:1px solid var(--paint-inverse);}
.secondary-inner .secondary-callout:first-child{border-top:0;padding-top:0;}
.secondary-inner .secondary-callout p{margin-top:calc(var(--space-block) / 3.2);}
.secondary-inner .direct-menu{margin-top:var(--layer-control);font-size:var(--font-quiet);}
@media (max-width:820px){.secondary-inner .page-benefit{flex-direction:column;}.secondary-inner .active-note{max-width:100%;}
}
.open-nav{
        --layer-control: calc(var(--space-block) * 1.26);
        --type-extra-19: calc(var(--space-large) / 3.59);
        padding: var(--measure-wide) var(--gap-tight);
        background: var(--line-clear);
        color: var(--tone-extra-18);
    }
.open-nav .page-list{max-width: var(--space-large);
        margin: 0 auto;}
.open-nav h1, .open-nav h2, .open-nav h3, .open-nav p, .open-nav ul{margin: 0;}
.open-nav h2{font-size: calc(16.6px * 2);
        line-height: 1.12;}
.open-nav h3{font-size: var(--label-quiet);
        line-height: 1.2;}
.open-nav p{font-size: var(--copy-lead);
        line-height: var(--label-lead);}
.open-nav a{color: inherit;
        text-decoration: none;}
.open-nav .team-proof{padding-block: calc(var(--layer-control) / 2);}
.open-nav .cluster{row-gap: calc(var(--layer-control) * 1.2);}
.open-nav .row-title{display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: var(--measure-hero);}
.open-nav .row-title h2{flex: 1 1 calc(var(--space-large) / 3);
        min-width: 0;}
.open-nav .row-title > p{flex: 1 1 calc(var(--space-large) / 3);
        min-width: 0;}
.open-nav .steady-team{flex: 1 1 100%;
        display: flex;
        flex-wrap: wrap;
        gap: var(--layer-control);
        margin-top: var(--layer-control);}
.open-nav .secondary-callout{flex: 1 1 var(--type-extra-19);
        min-width: 0;
        padding-block-start: var(--tone-extra-36);
        border-top: 1px solid var(--paint-inverse);}
.open-nav .secondary-callout p{margin-top: calc(var(--space-block) / 3);}
.open-nav .secondary-callout a{display: inline-flex;
        margin-top: calc(var(--space-block) / 2);color:inherit;
        opacity: .9;}
.open-nav .secondary-callout a:hover{color:inherit;
        opacity: 1;}
.public-visual{--layer-control:calc(var(--space-block) * 1.10);--mark-strong:calc(var(--space-large) / 2.34);--type-extra-19:calc(var(--space-large) / 3.42);padding:var(--measure-wide) var(--gap-tight);background:var(--paint-deep);color:var(--paint-warm);}
.public-visual .page-list{max-width:var(--space-large);margin:0 auto;}
.public-visual h2,.public-visual h3,.public-visual p{margin:0;}
.public-visual h2{font-size:calc(16.6px * 2);line-height:1.12;}
.public-visual h3{font-size:var(--label-quiet);line-height:1.2;}
.public-visual p{font-size:var(--copy-lead);line-height:var(--label-lead);color:color-mix(in srgb, currentColor 74%, transparent);}
.public-visual .simple-tile{margin-top:var(--space-block);max-width:calc(var(--space-large) / 2);}
.public-visual .narrow-flow{display:flex;flex-wrap:wrap;gap:var(--layer-control);margin-top:var(--layer-control);}
.public-visual .secondary-callout{flex:1 1 var(--type-extra-19);min-width:0;padding:calc(var(--layer-control) * .75);border-radius:var(--radius-medium);background:color-mix(in srgb, currentColor 10%, transparent);}
.public-visual .secondary-callout p{margin-top:calc(var(--space-block) / 3);}
.visual-frame{--layer-control:calc(var(--space-block) * 0.9);--mark-strong:calc(var(--space-large) / 2.85);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.visual-frame .page-list{max-width:var(--space-large);margin:0 auto;}
.visual-frame h1,.visual-frame h2,.visual-frame h3,.visual-frame p{margin:0;}
.visual-frame h2{font-size:calc(16.6px * 2);line-height:1.14;letter-spacing:-0.01em;}
.visual-frame p{font-size:var(--copy-lead);line-height:var(--label-lead);}
.visual-frame a{color:#00E5C7;text-decoration:none;border-bottom:1px solid transparent;transition:color var(--motion-hover) var(--speed-entry),border-color var(--motion-hover) var(--speed-entry);}
.visual-frame a:hover{color:inherit;border-bottom-color:#7C5CFF;}
.visual-frame .region{display:flex;flex-wrap:wrap;align-items:flex-end;gap:var(--measure-hero);}
.visual-frame .strong-steps{flex:1 1 22rem;min-width:0;}
.visual-frame .strong-steps .simple-tile{margin-top:calc(var(--space-block) / 2);color:#C9D1EA;}
.visual-frame .narrow-frame{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;padding:calc(var(--tone-extra-36) * 0.85) var(--space-block);border-radius:var(--corner-button);background:var(--line-primary);color:var(--surface-light);font-weight:600;border-bottom:0;}
.visual-frame .narrow-frame:hover{background:var(--tone-warm);color:var(--surface-light);border-bottom-color:transparent;}
.visual-frame .text-area{flex:1 1 100%;display:flex;flex-direction:column;gap:calc(var(--layer-control) * 0.55);margin-top:calc(var(--space-block) / 2);}
.visual-frame details{padding:calc(var(--tone-extra-36) * 0.95) calc(var(--tone-extra-36) * 1.1);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);}
.visual-frame summary{cursor:pointer;font-weight:600;font-size:var(--font-large);line-height:1.35;list-style:none;display:flex;justify-content:space-between;align-items:flex-start;gap:var(--tone-extra-36);}
.visual-frame summary::-webkit-details-marker{display:none;}
.visual-frame summary::after{content:"+";flex:0 0 auto;font-weight:400;color:#00E5C7;font-size:var(--font-large);line-height:1;}
.visual-frame details[open] summary::after{content:"–";}
.visual-frame details p{margin-top:calc(var(--space-block) / 3);color:#C9D1EA;}
.visual-frame .direct-menu{flex:1 1 100%;margin-top:calc(var(--space-block) / 2);font-size:var(--font-quiet);color:#C9D1EA;}
@media (max-width:720px){.visual-frame .region{align-items:flex-start;}.visual-frame summary{font-size:var(--copy-lead);}
}
.direct-steps{padding:var(--measure-wide) var(--gap-tight);background:linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);color:#E8ECF7}
.direct-steps .page-list{max-width:var(--space-large);margin:0 auto;display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero)}
.direct-steps .simple-tile{flex:1 1 20rem;min-width:18rem;padding-top:var(--space-block)}
.direct-steps .simple-tile h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.direct-steps .simple-tile p{margin:var(--space-medium) 0 0;font-size:var(--font-large);line-height:var(--label-lead)}
.direct-steps .simple-tile strong{display:block;margin-top:var(--tone-extra-36);font-size:var(--copy-lead);line-height:1.4;font-weight:600}
.direct-steps .text-unit{flex:2 1 32rem;min-width:20rem;display:flex;flex-direction:column;border-top:1px solid var(--paint-inverse)}
.direct-steps .direct-content{padding:var(--tone-extra-36) 0;border-bottom:1px solid var(--paint-inverse)}
.direct-steps .direct-content strong{display:block;font-size:var(--label-quiet);line-height:1.15;margin-bottom:var(--tone-extra-36)}
.direct-steps .direct-content p{margin:0;font-size:var(--font-nav);line-height:var(--label-lead)}
.direct-steps .direct-menu{flex:1 1 100%;margin:var(--space-medium) 0 0;font-size:var(--font-quiet);line-height:var(--label-lead)}
.direct-steps .direct-menu a{text-decoration:none;border-bottom:1px solid #00E5C7}
.direct-steps .direct-menu a:hover{border-bottom-color:#7C5CFF}
@media(max-width:760px){.direct-steps .page-list{display:block}.direct-steps .simple-tile{padding-top:0;margin-bottom:var(--space-medium)}.direct-steps .direct-content{padding:var(--tone-extra-36) 0}}
.active-entries{
        padding: var(--measure-wide) var(--gap-tight);
        background: var(--surface-deep);
        color: var(--paint-panel)
    }
.active-entries .page-list{max-width: var(--space-large);
        margin: 0 auto}
.active-entries .person{display: flex;
        flex-wrap: wrap;
        gap: var(--space-medium);
        align-items: flex-start}
.active-entries .focused-tile{flex: 1 1 22rem;
        min-width: 0}
.active-entries h2{margin: 0;
        font-size: calc(16.6px * 2);
        line-height: 1.12}
.active-entries .focused-tile p{margin: var(--space-block) 0 0;
        font-size: var(--font-large);
        line-height: var(--label-lead);
        color: #C9D1EA}
.active-entries ul{flex: 1 1 34rem;
        min-width: 0;
        list-style: none;
        margin: 0;
        padding: 0}
.active-entries li{display: flex;
        gap: var(--measure-hero);
        align-items: flex-start;
        padding: var(--space-block) 0}
.active-entries li + li{border-top: 1px solid var(--paint-inverse)}
.active-entries strong{flex: 0 1 15rem;
        min-width: 0;
        font-size: var(--label-quiet);
        line-height: 1.2}
.active-entries span{flex: 1 1 22rem;
        min-width: 0;
        line-height: var(--label-lead);
        color: #C9D1EA}
@media (max-width: 760px) {.active-entries .person, .active-entries li{
            display: block
        }.active-entries ul{
            margin-top: var(--space-medium)
        }.active-entries span{
            display: block;
            margin-top: var(--tone-extra-36)
        }
    }
.main-actions{
  background:var(--surface-deep);
  color:var(--paint-panel);
  padding:var(--measure-wide) var(--gap-tight);
}
.main-actions .page-list{max-width:var(--space-large);
  margin:0 auto;
  display:flex;
  flex-direction:row-reverse;
  gap:var(--space-medium);
  align-items:flex-start;}
.main-actions .quiet-area{display:block;
  width:min(40%,32rem);
  min-width:16rem;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:0.96rem;
  box-shadow:0 6px 14px rgba(0,0,0,0.13);}
.main-actions .strong-steps{flex:1 1 30rem;
  min-width:0;}
.main-actions h2{margin:0;
  font-size:calc(16.6px * 2);
  line-height:1.12;
  letter-spacing:0;}
.main-actions .strong-steps p{margin:var(--space-block) 0 0;
  color:#C9D1EA;
  font-size:var(--font-large);
  line-height:var(--label-lead);}
.main-actions .wide-section{margin-top:var(--space-medium);}
.main-actions .wide-section a{
  display:inline-flex;
  color:var(--surface-light);
  background:var(--line-primary);
  text-decoration:none;
  border-radius:var(--radius-medium);
  padding:.8rem 1.1rem;
  font-size:var(--copy-lead);
}
.main-actions .wide-section a:hover{
  background:var(--tone-warm);color:#E8ECF7;}
.main-actions .direct-menu{margin-top:var(--tone-extra-36);
  font-size:var(--font-quiet);
  color:#C9D1EA;}
.main-actions .direct-menu a{color:#00E5C7;
  text-decoration:none;}
.main-actions .direct-menu a:hover{color:inherit;}
@media (max-width:760px){.main-actions .page-list{display:block}.main-actions .quiet-area{width:100%;min-width:0}.main-actions .strong-steps{margin-top:var(--space-medium)}
}
.surface{--layer-control:calc(var(--space-block) * 1.10);--type-extra-19:calc(var(--space-large) / 3.42);padding:var(--measure-wide) var(--gap-tight);background:var(--paint-deep);color:var(--paint-warm);}
.surface .page-list{max-width:var(--space-large);margin:0 auto;}
.surface h2,.surface h3,.surface p{margin:0;}
.surface h2{font-size:calc(16.6px * 2);line-height:1.12;}
.surface h3{font-size:var(--label-quiet);line-height:1.2;}
.surface p{font-size:var(--copy-lead);line-height:var(--label-lead);color:color-mix(in srgb, currentColor 74%, transparent);}
.surface .simple-media{max-width:var(--space-large);}
.surface .cluster{row-gap:calc(var(--layer-control) * 1.2);}
.surface .simple-tile{margin-top:var(--space-block);max-width:calc(var(--space-large) / 2);}
.surface .narrow-flow{display:flex;flex-wrap:wrap;gap:var(--layer-control);margin-top:var(--layer-control);}
.surface .secondary-callout{flex:1 1 var(--type-extra-19);min-width:0;padding:calc(var(--layer-control) * .75);border-radius:var(--radius-medium);background:color-mix(in srgb, currentColor 10%, transparent);}
.surface .secondary-callout p{margin-top:calc(var(--space-block) / 3);}
.featured-media{--layer-control:calc(var(--space-block) * 1.15);--font-small:calc(var(--space-large) / 3.11);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.featured-media .page-list{max-width:var(--space-large);margin:0 auto;}
.featured-media h2,.featured-media h3,.featured-media p{margin:0;}
.featured-media h2{font-size:calc(16.6px * 2);line-height:1.12;}
.featured-media h3{font-size:var(--label-quiet);line-height:1.2;}
.featured-media p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.featured-media a{color:#00E5C7;text-decoration:none;border-bottom:1px solid rgba(0, 229, 199, 0.55);}
.featured-media a:hover{color:inherit;}
.featured-media img{display:block;width:100%;height:auto;border-radius:var(--radius-medium);}
.featured-media .simple-tile{margin-top:var(--layer-control);}
.featured-media .text-area{display:flex;flex-direction:column;gap:var(--layer-control);margin-top:var(--layer-control);}
.featured-media .secondary-callout{padding:calc(var(--tone-extra-36) * .9);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);}
.featured-media .secondary-callout p{margin-top:calc(var(--space-block) / 3);}
.featured-media .secondary-section{margin-top:var(--layer-control);}
.featured-media .clear-visual>img{margin-top:var(--layer-control);max-width:var(--font-small);}
@media (max-width:720px){.featured-media .clear-visual>img{max-width:100%;}
}
.local-surface{--layer-control:calc(var(--space-block) * 1.29);--mark-strong:calc(var(--space-large) / 2.40);--font-small:calc(var(--space-large) / 3.55);padding:var(--measure-wide) var(--gap-tight);background:var(--paint-deep);color:var(--paint-warm);}
.local-surface .page-list{max-width:var(--space-large);margin:0 auto;}
.local-surface h1,.local-surface h2,.local-surface h3,.local-surface p{margin:0;}
.local-surface h1{font-size:calc(16.6px * 2.65);line-height:1.08;}
.local-surface h2{font-size:calc(16.6px * 2);line-height:1.12;}
.local-surface h3{font-size:var(--label-quiet);line-height:1.2;}
.local-surface p{font-size:var(--copy-lead);line-height:var(--label-lead);color:color-mix(in srgb, currentColor 74%, transparent);}
.local-surface a{color:inherit;text-decoration:none;}
.local-surface img{display:block;width:100%;height:auto;border-radius:var(--radius-medium);}
.local-surface .narrow-frame{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;padding:var(--tone-extra-36) var(--space-block);border-radius:var(--corner-button);background:var(--paint-warm);color:var(--paint-deep);}
.local-surface .simple-tile,.local-surface .secondary-section{}
.local-surface .steady-team{display:flex;flex-wrap:wrap;gap:var(--layer-control);margin-top:var(--layer-control);}
.local-surface .secondary-callout{flex:1 1 calc(var(--space-large) / 3.4);min-width:0;padding:calc(var(--tone-extra-36) * .85);border-radius:var(--radius-medium);background:color-mix(in srgb, currentColor 11%, transparent);}
.local-surface .secondary-callout p,.local-surface .secondary-callout a{margin-top:calc(var(--space-block) / 3);}
.local-surface .secondary-callout img{margin-bottom:calc(var(--space-block) / 2);max-width:100%;}
.local-surface .wide-block{display:flex;flex-wrap:wrap;align-items:flex-start;gap:var(--measure-hero);}
.local-surface .wide-block>h2{flex:1 1 calc(var(--space-large) / 3);min-width:0;}
.local-surface .wide-block>.simple-tile{flex:1 1 calc(var(--space-large) / 3);min-width:0;}
.local-surface .wide-block>.steady-team{flex:1 1 100%;}
.team-wrap{--layer-control:calc(var(--space-block) * 1.18);--mark-strong:calc(var(--space-large) / 2.2);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.team-wrap .page-list{max-width:var(--space-large);margin:0 auto;}
.team-wrap h1,.team-wrap h2,.team-wrap h3,.team-wrap p{margin:0;}
.team-wrap h2{font-size:calc(16.6px * 2);line-height:1.14;max-width:var(--mark-strong);}
.team-wrap p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.team-wrap a{color:#00E5C7;text-decoration:none;}
.team-wrap a:hover{color:inherit;}
.team-wrap .simple-tile{font-size:var(--font-large);color:#C9D1EA;max-width:var(--mark-strong);}
.team-wrap .text-area{display:flex;flex-direction:column;gap:var(--layer-control);margin-top:var(--layer-control);}
.team-wrap details{padding:calc(var(--tone-extra-36) * .95) var(--tone-extra-36);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);}
.team-wrap summary{cursor:pointer;font-weight:700;font-size:var(--copy-lead);list-style:none;}
.team-wrap summary::-webkit-details-marker{display:none;}
.team-wrap summary::after{content:"+";float:right;color:#00E5C7;font-weight:700;}
.team-wrap details[open] summary::after{content:"–";}
.team-wrap details p{margin-top:calc(var(--space-block) / 3);color:#E8ECF7;}
.team-wrap .offer-feature h2{margin-top:calc(var(--space-block) / 2);}
.team-wrap .secondary-section{margin-top:var(--layer-control);font-size:var(--font-quiet);color:#C9D1EA;}
.contact-benefit{padding:var(--measure-wide) var(--gap-tight);background:linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);color:#E8ECF7}
.contact-benefit .page-list{max-width:var(--space-large);margin:0 auto}
.contact-benefit .focused-tile{margin-bottom:var(--space-medium)}
.contact-benefit h2{margin:0;font-size:calc(16.6px * 2.65);line-height:1.05}
.contact-benefit .focused-tile p{margin:var(--space-block) 0 0;font-size:var(--font-large);line-height:var(--label-lead)}
.contact-benefit .top-brand{display:flex;flex-wrap:wrap;gap:var(--space-block) var(--measure-hero)}
.contact-benefit .clear-method{flex:1 1 20rem;min-width:0;padding-top:var(--tone-extra-36);border-top:1px solid var(--paint-inverse)}
.contact-benefit .clear-method strong{display:block;font-size:var(--label-quiet);line-height:1.15}
.contact-benefit .clear-method p{margin:var(--tone-extra-36) 0 0;font-size:var(--font-nav);line-height:var(--label-lead)}
.contact-benefit .direct-menu{margin:var(--space-medium) 0 0;font-size:var(--copy-lead);line-height:var(--label-lead)}
.contact-benefit .direct-menu a{text-decoration:none;border-bottom:1px solid #00E5C7}
.contact-benefit .direct-menu a:hover{border-bottom-color:#7C5CFF}
@media(max-width:760px){.contact-benefit .top-brand{flex-direction:column}.contact-benefit .clear-method{flex:1 1 auto}}
.local-contact{padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel)}
.local-contact .page-list{max-width:min(var(--space-large),58rem);margin:0 auto}
.local-contact .focused-tile{display:flex;flex-direction:column;gap:var(--space-block)}
.local-contact h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.local-contact .focused-tile p{margin:0;color:#C9D1EA;line-height:var(--label-lead)}
.local-contact .visual-callout{margin-top:var(--space-medium);border-top:1px solid var(--paint-inverse)}
.local-contact details{padding:var(--space-block) 0;border-bottom:1px solid var(--paint-inverse)}
.local-contact summary{cursor:pointer;font-size:var(--label-quiet);line-height:1.2;list-style:none}
.local-contact summary::-webkit-details-marker{display:none}
.local-contact summary::after{content:"+";float:right;font-size:var(--font-large);line-height:1;color:#00E5C7}
.local-contact details[open] summary::after{content:"\2212"}
.local-contact details p{margin:var(--space-block) 0 0;color:#C9D1EA;line-height:var(--label-lead)}
@media(max-width:720px){.local-contact .visual-callout{margin-top:var(--space-medium)}}
.content-items{--layer-control:calc(var(--space-block) * 1.02);--mark-strong:calc(var(--space-large) / 2.85);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.content-items .page-list{max-width:var(--space-large);margin:0 auto;}
.content-items h2,.content-items h3,.content-items p{margin:0;}
.content-items h2{font-size:calc(16.6px * 2);line-height:1.12;}
.content-items h3{font-size:var(--label-quiet);line-height:1.2;}
.content-items p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.content-items .secondary-section{font-size:var(--font-quiet);color:#C9D1EA;}
.content-items .steady-team{display:flex;flex-wrap:wrap;gap:var(--layer-control);margin-top:var(--layer-control);}
.content-items .secondary-callout{flex:1 1 calc(var(--space-large) / 3.4);min-width:0;padding:calc(var(--tone-extra-36) * .85);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);}
.content-items .secondary-callout p{margin-top:calc(var(--space-block) / 3);}
.content-items .secondary-details>.steady-team{margin-top:var(--layer-control);}
.content-items .secondary-details>h2{margin-top:var(--layer-control);}
.content-items .simple-tile{margin-top:var(--layer-control);}
.direct-feature{
  background:#0D1330;
  color:#C9D1EA;
  padding:var(--measure-wide) var(--gap-tight);
}
.direct-feature .page-list{max-width:var(--space-large);
  margin:0 auto;
  display:flex;
  gap:var(--space-medium);
  align-items:flex-start;}
.direct-feature .fresh-summary{flex:1 1 34rem;
  min-width:0;}
.direct-feature .simple-tile{margin:0 0 var(--space-block);
  line-height:var(--label-lead);}
.direct-feature h2{margin:0 0 var(--space-medium);
  font-size:calc(16.6px * 2);
  line-height:1.12;
  letter-spacing:0;}
.direct-feature .steady-team{display:flex;
  flex-direction:column;
  gap:var(--tone-extra-36);}
.direct-feature .secondary-callout{border-top:1px solid var(--paint-inverse);
  padding-top:var(--tone-extra-36);}
.direct-feature .secondary-callout:first-child{border-top:0;
  padding-top:0;}
.direct-feature .secondary-callout h3{margin:0 0 .4rem;
  font-size:var(--label-quiet);
  line-height:1.25;}
.direct-feature .secondary-callout p{margin:0;
  line-height:var(--label-lead);}
.direct-feature .secondary-section{margin:var(--space-medium) 0 0;
  line-height:var(--label-lead);}
.direct-feature .secondary-section a{text-decoration:underline;
  text-underline-offset:3px;}
.direct-feature .secondary-section a:hover{}
.direct-feature .quiet-area{display:block;
  flex:0 0 auto;
  width:min(38%,26rem);
  min-width:16rem;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:0.96rem;}
@media (max-width:860px){.direct-feature .page-list{display:block}.direct-feature .quiet-area{width:100%;min-width:0;max-height:28rem;margin-top:var(--space-medium)}
}
.local-wrap{
    padding:var(--measure-wide) var(--gap-tight);
    background:var(--surface-deep);
    color:var(--paint-panel);
}
.local-wrap .page-fields{max-width:var(--space-large);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.local-wrap .steady-tile{display:flex;
    flex-direction:column;
    gap:var(--tone-extra-36);}
.local-wrap .top-shell{margin:0;
    font-size:calc(16.6px * 2.65);
    line-height:1.15;}
.local-wrap .secondary-body{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.local-wrap .bottom-items{margin:0;
    border-radius:0.96rem;
    overflow:hidden;
    box-shadow:0 6px 14px rgba(0,0,0,0.13);}
.local-wrap .bottom-items img{display:block;
    width:100%;
    height:auto;}
.local-wrap .simple-tile{margin:0;
    font-size:var(--font-large);
    line-height:var(--label-lead);}
.local-wrap .wide-links{display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.local-wrap .wide-links p{margin:0;
    font-size:var(--font-nav);
    line-height:var(--label-lead);}
.local-wrap .direct-menu{display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:var(--measure-hero);
    padding-top:var(--tone-extra-36);
    border-top:1px solid var(--paint-inverse);}
.local-wrap .featured-body{font-size:var(--font-quiet);
    color:#C9D1EA;}
.local-wrap .direct-menu a{color:#00E5C7;
    text-decoration:none;
    font-size:var(--copy-lead);
    border-bottom:1px solid transparent;
    transition:color var(--motion-hover) var(--speed-entry), border-color var(--motion-hover) var(--speed-entry);}
.local-wrap .direct-menu a:hover{color:inherit;
    border-bottom-color:#7C5CFF;}
@media (max-width:640px){.local-wrap .direct-menu{
        flex-direction:column;
        align-items:flex-start;
    }
}
.text-lead{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.text-lead .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: grid;
  gap: var(--measure-hero);}
.text-lead h2,
.text-lead h3,
.text-lead p{margin: 0;}
.text-lead h2{font-size: calc(16.6px * 2); line-height: 1.1;}
.text-lead h3{font-size: var(--label-quiet); line-height: 1.18;}
.text-lead p{font-size: var(--copy-lead); line-height: var(--label-lead);}
.text-lead .visual-actions{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--measure-hero);
  align-items: end;
  padding: var(--space-medium);
  border-radius: var(--curve-medium);
  background: linear-gradient(120deg, #00E5C7 0%, #7C5CFF 100%);
  color: #04121A;
}
.text-lead .visual-list{display: flex;
  flex-wrap: wrap;
  gap: var(--tone-extra-36);}
.text-lead [data-block]{
  flex: 1 1 20rem;
  display: grid;
  gap: var(--tone-extra-36);
  align-content: start;
  padding: var(--space-block);
  border-radius: var(--radius-medium);
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  animation: peopleMemberIn calc(var(--motion-hover) * 2) var(--speed-entry) both;
  animation-delay: var(--motion-fast, 0ms);
}
.text-lead [data-block]:nth-child(3n + 1){flex-basis: 26rem;}
.text-lead [data-block] div{display: flex;
  justify-content: space-between;
  gap: var(--tone-extra-36);
  font-size: var(--font-quiet);}
.text-lead .primary-stack{}
@keyframes peopleMemberIn {from{ opacity: .25; transform: translateY(6px); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {.text-lead .visual-actions{ grid-template-columns: 1fr; }.text-lead [data-block],
  .text-lead [data-block]:nth-child(3n + 1){ flex-basis: 100%; }
}
.main-quote{
        padding: var(--measure-wide) var(--gap-tight);
        background: var(--surface-deep);
        color: var(--paint-panel)
    }
.main-quote .page-list{max-width: var(--space-large);
        margin: 0 auto}
.main-quote .person{display: flex;
        flex-direction: column;
        gap: var(--space-medium);
        align-items: flex-start}
.main-quote .focused-tile{min-width: 0}
.main-quote h2{margin: 0;
        font-size: calc(16.6px * 2);
        line-height: 1.1}
.main-quote .focused-tile p{margin: var(--space-block) 0 0;
        font-size: var(--font-large);
        line-height: var(--label-lead);
        color: #C9D1EA}
.main-quote ul{flex: 1 1 44rem;
        min-width: 0;
        list-style: none;
        margin: 0;
        padding: 0}
.main-quote li{display: flex;
        gap: var(--measure-hero);
        align-items: flex-start;
        padding: var(--space-block) 0}
.main-quote li + li{border-top: 1px solid var(--paint-inverse)}
.main-quote strong{flex: 0 1 18rem;
        min-width: 0;
        font-size: var(--label-quiet);
        line-height: 1.18}
.main-quote span{flex: 1 1 26rem;
        min-width: 0;
        line-height: var(--label-lead);
        color: #C9D1EA}
@media (max-width: 760px) {.main-quote .person, .main-quote li{
            display: block
        }.main-quote ul{
            margin-top: var(--space-medium)
        }.main-quote span{
            display: block;
            margin-top: var(--tone-extra-36)
        }
    }
.open-items{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.open-items .page-list{width: min(100%, var(--space-large));
  margin: 0 auto var(--space-medium);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--measure-hero);}
.open-items .strong-steps{flex: 1 1 22rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-block);}
.open-items .simple-tile{flex: 1 1 20rem;
  min-width: 0;
  margin: 0;}
.open-items h2,
.open-items h3,
.open-items p{margin: 0;}
.open-items h2{font-size: calc(16.6px * 2.65);
  line-height: 1.05;}
.open-items .strong-steps p{line-height: var(--label-lead);}
.open-items .wide-figure{display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--curve-medium);}
.open-items .active-quote{width: min(100%, var(--space-large));
  margin: 0 auto;}
.open-items .service-region{display: flex;
  gap: var(--tone-extra-36);
  overflow-x: auto;
  padding-bottom: var(--tone-extra-36);
  scroll-snap-type: x mandatory;}
.open-items .text-panel{flex: 0 0 min(20rem, 78vw);
  scroll-snap-align: start;}
.open-items .fresh-service{display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.96rem;
  margin-bottom: var(--tone-extra-36);}
.open-items span{display: block;
  font-size: var(--font-quiet);
  margin-bottom: calc(var(--tone-extra-36) * .4);}
.open-items h3{font-size: var(--label-quiet);
  line-height: 1.14;
  margin-bottom: calc(var(--tone-extra-36) * .5);}
.open-items .text-panel p{line-height: var(--label-lead);}
@media (max-width: 820px) {.open-items .wide-figure{ aspect-ratio: 16 / 10; }
}
.featured-frame{
    padding:var(--measure-wide) var(--gap-tight);
    background:var(--surface-deep);
    color:var(--paint-panel);
}
.featured-frame .page-fields{max-width:var(--space-large);
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    gap:var(--measure-hero);}
.featured-frame .steady-tile{flex:1 1 240px;
    min-width:220px;}
.featured-frame .wide-links{flex:2 1 420px;
    min-width:260px;}
.featured-frame .stage{margin:0 0 var(--space-medium);
    font-size:var(--label-quiet);
    line-height:1.3;}
.featured-frame .steady-header{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.featured-frame .direct-group{margin:0 0 var(--space-medium);
    font-size:var(--font-nav);
    line-height:var(--label-lead);}
.featured-frame .direct-group:last-of-type{margin-bottom:0;}
.featured-frame .direct-group a{color:#00E5C7;
    text-decoration:none;
    border-bottom:1px solid var(--paint-inverse);}
.featured-frame .direct-group a:hover{color:inherit;}
.featured-frame .main-unit{flex:1 1 100%;
    display:flex;
    flex-wrap:wrap;
    gap:var(--space-medium);
    padding-top:var(--space-medium);
    border-top:1px solid var(--paint-inverse);}
.featured-frame .secondary-form{font-size:var(--font-quiet);
    color:#C9D1EA;}
@media (max-width:720px){.featured-frame .page-fields{
        flex-direction:column;
    }.featured-frame .main-unit{
        flex-direction:column;
        gap:var(--tone-extra-36);
    }
}
.compact-entries{
    padding:var(--measure-wide) var(--gap-tight);
    background:var(--surface-deep);
    color:var(--paint-panel);
}
.compact-entries .page-fields{max-width:var(--space-large);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.compact-entries .steady-tile{display:flex;
    flex-direction:column;
    gap:0.5rem;}
.compact-entries .top-shell{margin:0;
    font-size:calc(16.6px * 2.65);
    line-height:1.2;}
.compact-entries .secondary-body{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.compact-entries .steady-feature{margin:0;
    font-size:var(--font-large);
    color:#C9D1EA;}
.compact-entries .active-note{margin:0;
    border-radius:0.96rem;
    overflow:hidden;
    border:1px solid var(--paint-inverse);}
.compact-entries .active-note img{display:block;
    width:100%;
    height:auto;}
.compact-entries .wide-links{display:flex;
    flex-direction:column;
    gap:var(--space-medium);
    font-size:var(--font-nav);
    line-height:var(--label-lead);}
.compact-entries .wide-links p{margin:0;}
.compact-entries .media-lead{margin:0;
    font-size:calc(16.6px * 2);
    line-height:1.25;}
.compact-entries .direct-menu{
    display:flex;
    flex-direction:column;
    gap:0.6rem;
    padding:var(--tone-extra-36);
    background:#101736;
    color:#E8ECF7;
    border:1px solid var(--paint-inverse);
    border-radius:var(--radius-medium);
}
.compact-entries .visual-form{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.compact-entries .bottom-media{color:#00E5C7;
    text-decoration:none;
    font-size:var(--copy-lead);
    border-bottom:1px solid transparent;
    transition:color var(--motion-hover) var(--speed-entry), border-color var(--motion-hover) var(--speed-entry);
    align-self:flex-start;}
.compact-entries .bottom-media:hover{color:inherit;
    border-bottom-color:#7C5CFF;}
@media (max-width:640px){.compact-entries .top-shell{
        font-size:calc(16.6px * 2);
    }
}
.public-brand{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.public-brand .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
  gap: var(--measure-hero);
  align-items: start;}
.public-brand h2,
.public-brand h3,
.public-brand p{margin: 0;}
.public-brand h2{font-size: calc(16.6px * 2); line-height: 1.1;}
.public-brand h3{font-size: var(--label-quiet); line-height: 1.18;}
.public-brand p{font-size: var(--copy-lead); line-height: var(--label-lead);}
.public-brand .bottom-flow{display: grid;
  gap: var(--space-medium);
  align-content: start;
  padding-top: var(--space-block);}
.public-brand .bottom-flow p{color: #E8ECF7; opacity: .88;}
.public-brand .secondary-brand{display: grid;
  gap: var(--tone-extra-36);}
.public-brand [data-block]{
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: var(--space-block);
  padding: var(--tone-extra-36);
  border-radius: 0.96rem;
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  box-shadow: var(--shadow-image);
  animation: peopleCascadeIn calc(var(--motion-hover) * 2) var(--speed-entry) both;
  animation-delay: var(--motion-fast, 0ms);
}
.public-brand [data-block] > span{font-size: var(--font-quiet);
  letter-spacing: .04em;
  text-transform: uppercase;}
.public-brand [data-block] > div{display: grid;
  gap: var(--space-medium);}
.public-brand [data-block]:nth-child(3n){margin-left: clamp(0rem, 5vw, calc(var(--measure-hero) * .6));}
@keyframes peopleCascadeIn {from{ opacity: .25; transform: translateY(calc(calc(2.37rem * 1) * .14)); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) {.public-brand .page-list,
  .public-brand [data-block]{ grid-template-columns: 1fr; }.public-brand .bottom-flow{ padding-top: 0; }.public-brand [data-block]:nth-child(3n){ margin-left: 0; }
}
.team-benefit{
        padding: var(--measure-wide) var(--gap-tight);
        background: var(--surface-deep);
        color: var(--paint-panel)
    }
.team-benefit .page-list{max-width: var(--space-large);
        margin: 0 auto}
.team-benefit .person{display: flex;
        flex-direction: column;
        gap: var(--space-medium);
        align-items: flex-start}
.team-benefit .focused-tile{min-width: 0}
.team-benefit h2{margin: 0;
        font-size: calc(16.6px * 2);
        line-height: 1.1}
.team-benefit .focused-tile p{margin: var(--space-block) 0 0;
        font-size: var(--font-large);
        line-height: var(--label-lead);
        color: #C9D1EA}
.team-benefit ul{flex: 1 1 44rem;
        min-width: 0;
        list-style: none;
        margin: 0;
        padding: 0}
.team-benefit li{display: flex;
        gap: var(--measure-hero);
        align-items: flex-start;
        padding: var(--space-block) 0}
.team-benefit li + li{border-top: 1px solid var(--paint-inverse)}
.team-benefit strong{flex: 0 1 18rem;
        min-width: 0;
        font-size: var(--label-quiet);
        line-height: 1.18}
.team-benefit span{flex: 1 1 26rem;
        min-width: 0;
        line-height: var(--label-lead);
        color: #C9D1EA}
@media (max-width: 760px) {.team-benefit .person, .team-benefit li{
            display: block
        }.team-benefit ul{
            margin-top: var(--space-medium)
        }.team-benefit span{
            display: block;
            margin-top: var(--tone-extra-36)
        }
    }
.contact-team{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.contact-team .wide-figure{display: block;
  width: min(100%, var(--space-large));
  margin: 0 auto var(--space-medium);
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: var(--curve-medium);}
.contact-team .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--measure-hero);
  align-items: flex-start;}
.contact-team h2,
.contact-team h3,
.contact-team p{margin: 0;}
.contact-team h2{font-size: calc(16.6px * 2.65);
  line-height: 1.05;}
.contact-team .strong-steps{display: flex;
  flex-direction: column;
  gap: var(--space-medium);
  flex: 1 1 20rem;
  min-width: 0;}
.contact-team .strong-steps p{line-height: var(--label-lead);}
.contact-team .simple-tile{font-size: var(--copy-lead);}
.contact-team .service-region{flex: 1 1 30rem;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--tone-extra-36);}
.contact-team .text-panel{
  flex: 1 1 15rem;
  min-width: 0;
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  border-radius: 0.96rem;
  padding: var(--tone-extra-36);
  display: flex;
  flex-direction: column;
  gap: calc(var(--tone-extra-36) * .5);
}
.contact-team .fresh-service{display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-medium);
  margin-bottom: calc(var(--tone-extra-36) * .4);}
.contact-team span{display: block;
  font-size: var(--font-quiet);
  letter-spacing: 0.02em;}
.contact-team h3{font-size: var(--label-quiet);
  line-height: 1.18;}
.contact-team .text-panel p{font-size: var(--font-quiet);
  line-height: var(--label-lead);}
@media (max-width: 820px) {.contact-team .wide-figure{ aspect-ratio: 16 / 10; }.contact-team .service-region{ flex-direction: column; }
}
.local-track{
    padding:var(--measure-wide) var(--gap-tight);
    background:var(--surface-deep);
    color:var(--paint-panel);
}
.local-track .page-fields{max-width:var(--space-large);
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.local-track .service-visual{display:flex;
    align-items:center;
    gap:var(--measure-hero);
    flex-wrap:wrap;}
.local-track .steady-brand{
    width:72px;
    height:72px;
    border-radius:0.96rem;
    object-fit:cover;
    border:1px solid var(--paint-inverse);
    background:#0D1330;color:#C9D1EA;}
.local-track .text-rail{display:flex;
    flex-direction:column;
    gap:4px;}
.local-track .stage{margin:0;
    font-size:var(--label-quiet);
    line-height:1.25;}
.local-track .steady-header{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.local-track .direct-group{margin:0;
    font-size:var(--copy-lead);
    line-height:var(--label-lead);}
.local-track .page-grid{list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-wrap:wrap;
    gap:var(--measure-hero);}
.local-track .page-grid li{font-size:var(--font-quiet);}
.local-track .page-grid a{color:#00E5C7;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:color var(--motion-hover) var(--speed-entry), border-color var(--motion-hover) var(--speed-entry);}
.local-track .page-grid a:hover,
.local-track .page-grid a:focus-visible{color:inherit;
    border-bottom-color:#7C5CFF;}
.local-track .secondary-section{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;
    border-top:1px solid var(--paint-inverse);
    padding-top:var(--space-medium);}
@media (max-width:640px){.local-track .page-grid{
        flex-direction:column;
        gap:calc(var(--measure-hero) / 2);
    }
}
.soft-team{
    padding:var(--measure-wide) var(--gap-tight);
    background:var(--surface-deep);
    color:var(--paint-panel);
}
.soft-team .page-fields{max-width:var(--space-large);
    margin:0 auto;}
.soft-team .wide-links{display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.soft-team .simple-tile{display:flex;
    flex-direction:column;
    gap:0.5rem;
    padding-bottom:var(--space-medium);
    border-bottom:1px solid var(--paint-inverse);}
.soft-team .top-shell{margin:0;
    font-size:calc(16.6px * 2.65);
    line-height:1.15;}
.soft-team .secondary-body{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.soft-team .active-note{margin:0;
    display:flex;
    flex-direction:column;
    gap:0.6rem;}
.soft-team .active-note img{width:100%;
    height:auto;
    display:block;
    border-radius:0.96rem;
    box-shadow:0 6px 14px rgba(0,0,0,0.13);}
.soft-team .secondary-section{font-size:var(--font-quiet);
    color:#C9D1EA;
    line-height:1.6;}
.soft-team .strong-steps{display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.soft-team .strong-steps p{margin:0;
    font-size:var(--copy-lead);
    line-height:var(--label-lead);}
.soft-team .direct-menu{display:flex;
    flex-wrap:wrap;
    align-items:baseline;
    gap:0.75rem 1.5rem;
    padding-top:var(--space-medium);
    border-top:1px solid var(--paint-inverse);}
.soft-team .direct-menu .secondary-form{margin:0;
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.soft-team .direct-menu .clear-shell{font-size:var(--font-quiet);
    color:#00E5C7;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:color var(--motion-hover) var(--speed-entry), border-color var(--motion-hover) var(--speed-entry);}
.soft-team .direct-menu .clear-shell:hover,
.soft-team .direct-menu .clear-shell:focus-visible{color:inherit;
    border-bottom-color:#7C5CFF;}
@media (max-width:640px){.soft-team .direct-menu{
        flex-direction:column;
        align-items:flex-start;
    }
}
.plain-items{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.plain-items .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: grid;
  gap: var(--measure-hero);}
.plain-items h2,
.plain-items h3,
.plain-items p{margin: 0;}
.plain-items h2{font-size: calc(16.6px * 2); line-height: 1.1;}
.plain-items h3{font-size: var(--label-quiet); line-height: 1.2;}
.plain-items p{font-size: var(--copy-lead); line-height: var(--label-lead);}
.plain-items .visual-actions{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: var(--measure-hero);
  align-items: end;
  padding: var(--space-medium);
  border-radius: var(--curve-medium);
  background: linear-gradient(120deg, #00E5C7 0%, #7C5CFF 100%);
  color: #04121A;
}
.plain-items .visual-list{display: flex;
  flex-wrap: wrap;
  gap: var(--tone-extra-36);}
.plain-items [data-block]{
  flex: 1 1 20rem;
  display: grid;
  gap: var(--tone-extra-36);
  align-content: start;
  padding: var(--space-block);
  border-radius: var(--radius-medium);
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  animation: peopleMemberIn calc(var(--motion-hover) * 2) var(--speed-entry) both;
  animation-delay: var(--motion-fast, 0ms);
}
.plain-items [data-block] div{display: flex;
  justify-content: space-between;
  gap: var(--tone-extra-36);
  font-size: var(--font-quiet);}
.plain-items .primary-stack{padding-top: var(--space-medium);
  border-top: 1px solid var(--paint-inverse);}
@keyframes peopleMemberIn {from{ opacity: .2; transform: translateY(calc(2.37rem * 1)); }to{ opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {.plain-items .visual-actions{ grid-template-columns: 1fr; }
}
.simple-footer{padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel)}
.simple-footer .page-list{max-width:min(var(--space-large),58rem);margin:0 auto}
.simple-footer .focused-tile{max-width:100%}
.simple-footer h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.simple-footer .focused-tile p{margin:var(--space-block) 0 0;color:#C9D1EA;line-height:var(--label-lead)}
.simple-footer .visual-callout{margin-top:var(--space-medium);border-top:1px solid var(--paint-inverse)}
.simple-footer details{padding:var(--space-block) 0;border-bottom:1px solid var(--paint-inverse)}
.simple-footer summary{cursor:pointer;font-size:var(--label-quiet);line-height:1.2;list-style:none}
.simple-footer summary::-webkit-details-marker{display:none}
.simple-footer summary::after{content:"+";float:right;color:#00E5C7;font-size:var(--font-large);line-height:1}
.simple-footer details[open] summary::after{content:"\2212"}
.simple-footer details p{margin:var(--space-block) 0 0;color:#C9D1EA;line-height:var(--label-lead)}
@media(max-width:720px){.simple-footer .visual-callout{margin-top:var(--space-medium)}}
.content-service{
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
  padding: var(--measure-wide) var(--gap-tight);
}
.content-service .page-list{width: min(100%, var(--space-large));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-medium);}
.content-service h2,
.content-service h3,
.content-service p,
.content-service figure,
.content-service figcaption{margin: 0;}
.content-service h2{font-size: calc(16.6px * 2.65);
  line-height: 1.05;}
.content-service .strong-steps{display: flex;
  flex-direction: column;
  gap: var(--tone-extra-36);}
.content-service .strong-steps > p{line-height: var(--label-lead);
  color: #E8ECF7;}
.content-service .strong-steps .simple-tile{font-size: var(--copy-lead);}
.content-service .service-region{display: flex;
  flex-wrap: wrap;
  gap: var(--measure-hero);}
.content-service .text-panel{
  flex: 1 1 18rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--tone-extra-36);
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
  border-radius: 0.96rem;
  padding: var(--tone-extra-36);
}
.content-service .fresh-service{display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-medium);}
.content-service figcaption{display: flex;
  flex-direction: column;
  gap: calc(var(--tone-extra-36) * .5);}
.content-service .secondary-body{
  display: inline-block;
  align-self: flex-start;
  background: var(--paint-deep);
  color: var(--paint-warm);
  font-size: var(--font-quiet);
  padding: 0.15rem 0.6rem;
  border-radius: var(--corner-button);
}
.content-service h3{font-size: var(--label-quiet);
  line-height: 1.18;}
.content-service figcaption p{line-height: var(--label-lead);
  font-size: var(--font-quiet);}
.content-service .secondary-section{line-height: var(--label-lead);
  border-top: 1px solid var(--paint-inverse);
  padding-top: var(--tone-extra-36);}
@media (max-width: 820px) {.content-service .text-panel{ flex: 1 1 100%; }
}
.strong-feature{
    padding:var(--measure-wide) var(--gap-tight);
    background:var(--surface-deep);
    color:var(--paint-panel);
}
.strong-feature .page-fields{max-width:var(--space-large);
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    gap:var(--measure-hero);
    align-items:flex-start;}
.strong-feature .focused-tile{flex:1 1 320px;
    min-width:0;}
.strong-feature .soft-benefit{
    flex:1 1 280px;
    min-width:0;
    background:#101736;
    color:#E8ECF7;
    border:1px solid var(--paint-inverse);
    border-radius:0.96rem;
    padding:var(--tone-extra-36);
}
.strong-feature .stage{margin:0 0 4px;
    font-size:var(--label-quiet);
    line-height:1.3;}
.strong-feature .steady-header{margin:0 0 var(--space-medium);
    font-size:var(--font-quiet);
    color:#C9D1EA;}
.strong-feature .direct-group{margin:0;
    font-size:var(--copy-lead);
    line-height:var(--label-lead);}
.strong-feature .secondary-section{margin:0 0 var(--space-medium);
    font-size:var(--font-quiet);
    line-height:var(--label-lead);}
.strong-feature .steady-team{list-style:none;
    margin:0 0 var(--space-medium);
    padding:0;
    display:flex;
    flex-direction:column;
    gap:var(--space-medium);}
.strong-feature .secondary-callout{font-size:var(--font-quiet);
    line-height:1.6;}
.strong-feature .open-panel{display:block;
    font-size:var(--font-quiet);
    color:#C9D1EA;
    margin-bottom:2px;}
.strong-feature .secondary-callout a{color:#00E5C7;
    text-decoration:none;
    word-break:break-word;}
.strong-feature .secondary-callout a:hover{color:inherit;}
.strong-feature .secondary-form{margin:0;
    font-size:var(--font-quiet);
    line-height:var(--label-lead);}
.strong-feature .secondary-form a{color:#00E5C7;
    text-decoration:none;}
.strong-feature .secondary-form a:hover{color:inherit;}
@media (max-width:720px){.strong-feature .page-fields{
        flex-direction:column;
    }
}
.media-items{padding:var(--measure-wide) var(--gap-tight);background:linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);color:#E8ECF7}
.media-items .page-list{max-width:var(--space-large);margin:0 auto;display:grid;grid-template-columns:minmax(0,.46fr) minmax(0,1fr);gap:var(--space-medium);align-items:stretch}
.media-items .strong-steps{display:flex;flex-direction:column;gap:var(--space-medium);padding:var(--measure-hero);border-radius:var(--curve-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse)}
.media-items h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.media-items .strong-steps>p{margin:0;font-size:var(--copy-lead);line-height:var(--label-lead)}
.media-items .callout{display:flex;flex-direction:column;gap:var(--tone-extra-36);margin-top:var(--space-block)}
.media-items .bottom-note{padding:var(--tone-extra-36);border-radius:var(--radius-medium);background:#0D1330;color:#C9D1EA;border:1px solid var(--paint-inverse)}
.media-items .bottom-note span{display:block;font-size:var(--font-quiet);opacity:.85}
.media-items .bottom-note strong{display:block;margin-top:calc(var(--tone-extra-36) * .4);font-size:var(--copy-lead);}
.media-items .bottom-note a{text-decoration:none}
.media-items .bottom-note a:hover{}
.media-items .secondary-section{margin:0;padding:var(--tone-extra-36);border-radius:var(--radius-medium);background:var(--paint-deep);color:var(--paint-warm);font-size:var(--font-quiet)}
.media-items .text-panel{min-height:clamp(24rem,48vw,38rem);border-radius:var(--curve-medium);overflow:hidden;border:1px solid var(--paint-inverse);box-shadow:0 6px 14px rgba(0,0,0,0.13)}
.media-items iframe{display:block;width:100%;height:100%;border:0}
@media (max-width: 860px){.media-items .page-list{grid-template-columns:1fr}.media-items .text-panel{min-height:22rem}}
.fresh-rail{background:var(--surface-deep);color:var(--paint-panel);padding:var(--measure-wide) var(--gap-tight)}
.fresh-rail .page-list{max-width:var(--space-large);margin:0 auto}
.fresh-rail .team-menu{display:grid;grid-template-columns:1.05fr .7fr 1.15fr;gap:var(--space-medium);align-items:start}
.fresh-rail .focused-tile{min-width:0}
.fresh-rail h2{margin:0;font-size:clamp(calc(16.6px * 2),5vw,calc(16.6px * 2.65));line-height:1.08;letter-spacing:0}
.fresh-rail p{margin:var(--space-block) 0 0;color:#C9D1EA;font-size:var(--font-large);line-height:1.65}
.fresh-rail .quiet-area{display:block;min-width:0;width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;border-radius:0.96rem}
.fresh-rail .page-proof{display:flex;flex-direction:column;gap:var(--tone-extra-36)}
.fresh-rail .page-proof a{padding:var(--tone-extra-36);border-radius:var(--radius-medium);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);text-decoration:none;transition:border-color var(--motion-hover) var(--speed-entry)}
.fresh-rail .page-proof a:hover{border-color:var(--line-primary)}
.fresh-rail strong,.fresh-rail span{display:block}
.fresh-rail strong{font-size:var(--copy-lead)}
.fresh-rail .page-proof span{margin-top:calc(var(--tone-extra-36)*.55);color:#C9D1EA;line-height:1.55;font-size:var(--font-quiet)}
.fresh-rail .main-unit{margin-top:var(--space-medium);max-width:var(--space-large);margin-left:auto;margin-right:auto;display:flex;flex-direction:column;gap:var(--space-block);border-top:1px solid var(--paint-inverse);padding-top:var(--space-medium)}
.fresh-rail .main-unit .visual-section{display:flex;flex-wrap:wrap;gap:var(--stack-footer);align-items:baseline}
.fresh-rail .main-unit .open-panel{flex:0 0 auto;min-width:200px;color:var(--line-primary);font-size:var(--font-quiet);text-transform:uppercase;letter-spacing:.04em}
.fresh-rail .main-unit .direct-rail{flex:1 1 260px;color:var(--paint-panel);line-height:1.6}
@media(max-width:820px){.fresh-rail .team-menu{grid-template-columns:1fr}.fresh-rail .quiet-area{aspect-ratio:16/9}.fresh-rail .main-unit .open-panel{min-width:0}}
.fresh-items{padding:var(--measure-wide) var(--gap-tight);background:#0D1330;color:#C9D1EA}
.fresh-items .page-list{max-width:var(--space-large);margin:0 auto;display:flex;gap:var(--space-medium);align-items:flex-start}
.fresh-items .focused-tile{flex:1 1 0;padding:var(--measure-hero) 0}
.fresh-items h2{margin:0;font-size:calc(16.6px * 2);line-height:1.15}
.fresh-items .focused-tile p{margin:var(--space-block) 0 0;font-size:var(--font-large);line-height:var(--label-lead)}
.fresh-items ul{list-style:none;margin:var(--space-medium) 0 0;padding:0;display:flex;flex-direction:column;gap:var(--tone-extra-36)}
.fresh-items li{line-height:var(--label-lead)}
.fresh-items li span{display:block;margin-bottom:calc(var(--tone-extra-36) / 3);font-size:var(--font-quiet);font-weight:700}
.fresh-items form{flex:0 1 calc(var(--space-large)*.4);background:#101736;color:#E8ECF7;border:1px solid var(--paint-inverse);border-radius:var(--curve-medium);padding:var(--measure-hero);box-shadow:var(--shadow-panel)}
.fresh-items .offer-note{display:flex;flex-direction:column;gap:var(--space-block)}
.fresh-items label span{display:block;margin-bottom:var(--tone-extra-36);font-size:var(--font-quiet)}
.fresh-items input,
.fresh-items select,
.fresh-items textarea{width:100%;border:1px solid var(--paint-inverse);border-radius:var(--radius-medium);background:var(--surface-deep);color:var(--paint-panel);font:inherit;padding:var(--tone-extra-36);outline:none}
.fresh-items textarea{resize:vertical;line-height:var(--label-lead)}
.fresh-items input:focus,
.fresh-items select:focus,
.fresh-items textarea:focus{border-color:rgba(0, 229, 199, 0.55)}
.fresh-items button{width:100%;margin-top:var(--space-medium);border:0;border-radius:var(--radius-medium);background:var(--line-primary);color:var(--surface-light);font:inherit;padding:var(--tone-extra-36);cursor:pointer}
.fresh-items button:hover{background:var(--tone-warm);color:#E8ECF7;}
.fresh-items .secondary-section{margin:var(--tone-extra-36) 0 0;font-size:var(--font-quiet);line-height:var(--label-lead)}
@media(max-width:860px){.fresh-items .page-list{display:block}.fresh-items form{margin-top:var(--space-block)}}
.visual-footer{background:var(--surface-deep);color:var(--paint-panel);padding:var(--measure-wide) var(--gap-tight)}
.visual-footer .page-list{max-width:var(--space-large);margin:0 auto}
.visual-footer .quiet-story{display:flex;flex-direction:column;gap:var(--space-medium)}
.visual-footer .focused-tile{display:flex;flex-direction:column;gap:var(--space-block)}
.visual-footer h2{margin:0;font-size:clamp(calc(16.6px * 2),4.4vw,calc(16.6px * 2.65));line-height:1.1;letter-spacing:-0.01em}
.visual-footer .focused-tile p{margin:0;color:#C9D1EA;font-size:var(--font-large);line-height:1.7}
.visual-footer .offer-rail{display:flex;flex-direction:column;border-top:1px solid var(--paint-inverse)}
.visual-footer .visual-section{display:flex;align-items:flex-start;gap:var(--measure-hero);padding:var(--space-block) 0;border-bottom:1px solid var(--paint-inverse)}
.visual-footer .visual-section span{flex:0 1 11rem;min-width:0;color:#C9D1EA;font-size:var(--font-quiet);text-transform:uppercase;letter-spacing:0.06em;padding-top:0.35rem}
.visual-footer strong{flex:0 1 20rem;min-width:0;font-size:var(--copy-lead);line-height:1.4}
.visual-footer .visual-section p{flex:1 1 26rem;margin:0;min-width:0;color:#C9D1EA;line-height:1.7}
.visual-footer .visual-section p a{color:#00E5C7;text-decoration:none;border-bottom:1px solid #00E5C7}
.visual-footer .visual-section p a:hover{color:inherit;border-bottom-color:#7C5CFF}
.visual-footer .secondary-section{margin-top:var(--space-medium);padding:var(--tone-extra-36);background:#0D1330;color:#C9D1EA;border-radius:var(--radius-medium);font-size:var(--font-quiet);line-height:1.6}
.visual-footer .secondary-section p{margin:0}
@media(max-width:760px){.visual-footer .visual-section{flex-direction:column;gap:calc(var(--tone-extra-36)*0.6)}.visual-footer .visual-section span{padding-top:0}
}
.active-proof{
  position: relative;
  overflow: hidden;
  padding: var(--measure-wide) var(--gap-tight);
  background: linear-gradient(135deg, #070B1F 0%, #131A44 45%, #2A1B6B 100%);
  color: #E8ECF7;
}
.active-proof .page-list{position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: var(--space-large);
  margin: 0 auto;}
.active-proof .quiet-entries{margin: 0 0 var(--space-medium);
  padding: var(--space-block) 0;}
.active-proof h2{margin: 0;
  font-size: calc(16.6px * 2.65);
  line-height: 1.05;}
.active-proof .quiet-entries p{margin: var(--space-block) 0 0;
  font-size: var(--font-large);
  line-height: var(--label-lead);}
.active-proof .contact-fields{display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--measure-hero);
  padding-top: var(--space-block);
  border-top: 1px solid color-mix(in srgb, currentColor 30%, transparent);}
.active-proof .team-grid{display: flex;
  flex-wrap: wrap;
  gap: var(--measure-hero);}
.active-proof .team-grid p{flex: 1 1 18rem;
  margin: 0;
  line-height: var(--label-lead);}
.active-proof .wide-section{display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--tone-extra-36);}
.active-proof .wide-section a{color: inherit;
  font-size: var(--font-large);
  overflow-wrap: anywhere;
  text-underline-offset: .2em;}
.active-proof .content-note{display: flex;
  flex-direction: column;
  gap: var(--tone-extra-36);
  padding-top: var(--space-block);}
.active-proof .content-note a{display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--tone-extra-36);
  padding: var(--tone-extra-36) 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;}
.active-proof .content-note a:last-child{border-bottom: 0;}
.active-proof .content-note span{flex: 1 1 22rem;
  font-size: var(--font-quiet);
  opacity: .7;}
@media (max-width: 720px) {.active-proof .contact-fields,
  .active-proof .team-grid{
    display: block;
  }.active-proof .team-grid p + p{
    margin-top: var(--tone-extra-36);
  }.active-proof .wide-section{
    align-items: flex-start;
    margin-top: var(--space-block);
  }.active-proof .content-note span{
    flex-basis: auto;
  }
}
.badge-rules{padding:var(--measure-wide) var(--gap-tight);background:#0D1330;color:#C9D1EA}
.badge-rules .plain-story{max-width:min(var(--space-large),64rem);margin:0 auto}
.badge-rules h2{margin:0;font-size:calc(16.6px * 2);line-height:1.1}
.badge-rules .primary-unit{margin:var(--space-medium) 0 var(--space-block);font-size:var(--font-large)}
.badge-rules .plain-flow{display:flex;flex-direction:column;gap:var(--space-medium);border-top:1px solid var(--paint-inverse);padding-top:var(--space-medium)}
.badge-rules .secondary-section{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--tone-extra-36)}
.badge-rules h3{margin:0;font-size:var(--label-quiet);line-height:1.25}
.badge-rules .secondary-section p{margin:0}
.badge-rules a{text-decoration:underline}
.badge-rules a:hover{}
@media (min-width:900px){.badge-rules .secondary-section{grid-template-columns:minmax(14rem,20rem) minmax(0,1fr);gap:var(--measure-hero);align-items:start}
}
.secondary-nav{--layer-control:calc(var(--space-block) * 1.05);--mark-strong:calc(var(--space-large) / 2.35);padding:var(--measure-wide) var(--gap-tight);background:var(--surface-deep);color:var(--paint-panel);}
.secondary-nav .page-list{max-width:var(--space-large);margin:0 auto;}
.secondary-nav h1,.secondary-nav h2,.secondary-nav h3,.secondary-nav p{margin:0;}
.secondary-nav h1{font-size:calc(16.6px * 2.65);line-height:1.08;}
.secondary-nav h2{font-size:calc(16.6px * 2);line-height:1.12;}
.secondary-nav h3{font-size:var(--label-quiet);line-height:1.2;}
.secondary-nav p{font-size:var(--copy-lead);line-height:var(--label-lead);color:#C9D1EA;}
.secondary-nav a{color:#00E5C7;text-decoration:none;}
.secondary-nav a:hover{color:inherit;}
.secondary-nav .narrow-frame{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;padding:var(--tone-extra-36) var(--space-block);border-radius:var(--corner-button);background:var(--line-primary);color:var(--surface-light);font-size:var(--copy-lead);}
.secondary-nav .narrow-frame:hover{background:var(--tone-warm);color:var(--surface-light);}
.secondary-nav .simple-tile{font-size:var(--font-large);color:var(--paint-panel);}
.secondary-nav .strong-steps{max-width:none;}
.secondary-nav .secondary-section{font-size:var(--font-quiet);color:#C9D1EA;}
.secondary-nav .direct-menu{font-size:var(--font-quiet);color:#C9D1EA;}
.secondary-nav .page-content>h1,.secondary-nav .page-content>h2,.secondary-nav .page-content>p,.secondary-nav .page-content>.narrow-frame{margin-top:var(--space-block);}
.secondary-nav .page-content .simple-tile{margin-top:0;}
.secondary-nav .page-content .direct-menu{margin-top:var(--space-medium);}
.plain-plan{
  padding: var(--measure-wide) var(--gap-tight);
  background: var(--surface-deep);
  color: var(--paint-panel);
}
.plain-plan .page-list{max-width: var(--space-large);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-medium);}
.plain-plan .content-links{
  padding: var(--tone-extra-36);
  border-radius: var(--curve-medium);
  background: var(--line-clear);
  color: var(--tone-extra-18);
}
.plain-plan .content-links span{display: inline-block;
  font-size: var(--font-quiet);
  letter-spacing: 0.02em;}
.plain-plan h2{margin: var(--tone-extra-36) 0 0;
  font-size: calc(16.6px * 2);
  line-height: 1.1;}
.plain-plan .content-links p{margin: var(--tone-extra-36) 0 0;
  font-size: var(--font-large);
  line-height: var(--label-lead);}
.plain-plan .callout{display: flex;
  flex-wrap: wrap;
  gap: var(--measure-hero);}
.plain-plan .callout div{
  flex: 1 1 320px;
  padding: var(--tone-extra-36);
  border-radius: 0.96rem;
  background: #101736;
  color: #E8ECF7;
  border: 1px solid var(--paint-inverse);
}
.plain-plan .callout strong{display: block;
  font-size: var(--label-quiet);
  line-height: 1.2;}
.plain-plan .callout p{margin: var(--tone-extra-36) 0 0;
  line-height: var(--label-lead);}
.plain-plan .callout a{text-decoration: none;}
.plain-plan .callout a:hover{text-decoration: underline;}
.plain-plan .direct-menu{margin: 0;
  padding-top: var(--space-medium);
  border-top: 1px solid var(--paint-inverse);
  font-size: var(--copy-lead);}
.plain-plan .direct-menu a{text-decoration: none;}
.plain-plan .direct-menu a:hover{text-decoration: underline;}
@media (max-width: 760px) {.plain-plan .callout{
    flex-direction: column;
  }
}
.steady-section{padding:var(--measure-wide) var(--gap-tight);background:var(--paint-deep);color:var(--paint-warm)}
.steady-section .page-list{max-width:var(--space-large);margin:0 auto}
.steady-section .public-headline{display:flex;flex-wrap:wrap;gap:var(--space-medium);align-items:flex-start}
.steady-section .strong-steps{flex:2 1 38rem;min-width:0}
.steady-section h2{margin:0;font-size:calc(16.6px * 2.65);line-height:1.05}
.steady-section .strong-steps p{margin:var(--space-block) 0 0;font-size:var(--font-large);line-height:var(--label-lead)}
.steady-section .strong-steps p:first-of-type{margin-top:var(--space-medium)}
.steady-section .direct-menu{flex:1 1 18rem;min-width:0;border-top:1px solid color-mix(in srgb,var(--paint-warm) 30%,transparent);padding-top:var(--space-block)}
.steady-section .direct-menu p{margin:0;line-height:var(--label-lead)}
.steady-section .direct-menu > a{display:inline-flex;margin-top:var(--space-block);border-radius:var(--corner-button);background:var(--line-primary);color:var(--surface-light);padding:var(--tone-extra-36) var(--space-block);text-decoration:none}
.steady-section .text-plan{display:flex;flex-wrap:wrap;gap:var(--tone-extra-36);margin-top:var(--space-medium)}
.steady-section .text-plan a{text-decoration:underline;text-underline-offset:3px}
@media(max-width:680px){.steady-section .public-headline{display:block}.steady-section .direct-menu{margin-top:var(--space-medium)}.steady-section h2{font-size:calc(16.6px * 2)}}
