:root {
      --bg-white: #FFFFFF;
      --bg-light: #F8F9FA;
      --bg-warm: #F4F2EE;
      --bg-navy-core: #0B1D36;
      --bg-navy: #0C2844;
      --bg-navy-teal: #0D3555;
      --bg-dark-teal: #0A4D5E;
      --bg-teal-edge: #088F8A;
      --teal: #00C2B2;
      --teal-dark: #009E91;
      --text-white: #FFFFFF;
      --text-white-muted: rgba(255, 255, 255, 0.45);
      --text-dark: #111827;
      --text-gray: #6B7280;
      --text-gray-light: #9BA3AE;
      --gold: #D4AF37;
      --gold-antique: #B8962E;
      --gold-bg: rgba(212, 175, 55, 0.12);
      --gold-border: rgba(212, 175, 55, 0.30);
      --card-das: #1B3D2F;
      --accent-das: #22C55E;
      --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;
      --space-4xl: 6rem;
      --space-5xl: 8rem;
      --container-max: 1200px;
      --container-wide: 1360px;
      --container-narrow: 800px;
      --container-padding: 2rem;
      --radius-sm: 0;
      --radius-md: 0;
      --radius-lg: 0;
      --radius-xl: 0;
      --radius-full: 0;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.15);
      --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
      --shadow-card-dark: 0 10px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
      --shadow-card-light: 0 4px 24px rgba(0, 0, 0, 0.12);
      --transition-fast: 150ms ease;
      --transition-base: 250ms ease;
      --transition-slow: 400ms ease;
    }

    
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--bg-white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
    }

    h1 {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      letter-spacing: -0.01em;
    }

    h3 {
      font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    h4 {
      font-size: clamp(1.125rem, 2vw, 1.375rem);
    }

    p {
      font-size: clamp(1rem, 1.5vw, 1.125rem);
      line-height: 1.7;
      color: var(--text-gray);
    }

    
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .container--wide {
      max-width: var(--container-wide);
    }

    .container--narrow {
      max-width: var(--container-narrow);
    }

    .section {
      padding: var(--space-4xl) 0;
    }

    .section--lg {
      padding: var(--space-5xl) 0;
    }

    
    .section--dark {
      position: relative;
      color: var(--text-white);
    }

    .section--dark h1,
    .section--dark h2,
    .section--dark h3,
    .section--dark h4 {
      color: var(--text-white);
    }

    .section--dark p {
      color: rgba(255, 255, 255, 0.7);
    }

    .section--dark::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 194, 178, 0.15) 30%, rgba(0, 194, 178, 0.15) 70%, transparent);
      z-index: 1;
    }

    .gradient-hero {
      background-color: #1B3D2F;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
      background-size: 30px 30px;
    }

    .gradient-radial {
      background: radial-gradient(ellipse 70% 80% at 50% 45%,
          #0B1D36 0%, #0C2844 25%, #0D3555 45%, #0A4D5E 68%, #088F8A 100%);
    }

    
    .section-header {
      text-align: center;
      margin-bottom: var(--space-3xl);
    }

    .section-header .overline {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 0.625rem;
      display: block;
      color: #22C55E !important;
    }

    .overline {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 0.625rem;
      display: block;
    }

    .overline--teal {
      color: var(--teal);
    }

    .overline--gold {
      color: var(--gold);
    }

    .section-header h2 {
      margin-bottom: 0.75rem;
    }

    .section-header p {
      max-width: 580px;
      margin: 0 auto;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .section--dark .section-header p {
      color: var(--text-white-muted);
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }


    .sample-figure {
      margin: 0;
    }

.sample-figure__note {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 1.25rem auto 0;
      width: 100%;
      max-width: none;
      color: var(--label-color, #D4AF37) !important;
      line-height: 0;
    }

    .sample-figure__note svg {
      display: block;
      margin: 0 auto;
      width: min(100%, 21.5rem);
      height: auto;
      filter: drop-shadow(0 8px 20px rgba(212,175,55,0.14));
    }

    .sample-figure__note:focus-visible {
      outline: 2px solid rgba(255,225,138,0.72);
      outline-offset: 6px;
    }

    .sample-figure__description {
      margin: 1rem auto 0;
      max-width: 52rem;
      text-align: center;
      font-family: var(--font-heading);
      font-size: clamp(1.125rem, 2.8vw, 1.75rem);
      font-weight: 800;
      line-height: 1.25;
      color: white !important;
      padding-bottom: 1.2rem;
    }

    .sample-figure__description-highlight {
      color: var(--gold);
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1rem;
      padding: 0.875rem 1.75rem;
      border: none;
      cursor: pointer;
      transition: all var(--transition-base);
      text-decoration: none;
      line-height: 1;
      gap: 0.5rem;
    }

    .btn--primary {
      background: var(--gold);
      color: var(--bg-navy-core);
    }

    .btn--primary:hover {
      background: #E0BD45;
      transform: translateY(-1px);
    }

    .btn--secondary {
      background: transparent;
      color: var(--gold);
      border: 1px solid var(--gold);
    }

    .btn--secondary:hover {
      background: rgba(201, 168, 76, 0.08);
      transform: translateY(-1px);
    }

    .btn--outline {
      background: transparent;
      color: var(--teal);
      border: 1px solid var(--teal);
    }

    .btn--outline:hover {
      background: rgba(0, 194, 178, 0.06);
    }

    .btn--lg {
      padding: 1rem 2rem;
      font-size: 1.0625rem;
    }

    .btn--sm {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
    }

    .btn,
    [class*="btn--"] {
      transition: all 0.2s ease;
    }

    .btn:hover,
    [class*="btn--"]:hover {
      transform: translateY(-3px);
    }

    .btn:active,
    [class*="btn--"]:active {
      transform: translateY(0);
    }

    
    .animate-on-scroll {
      opacity: 1;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .delay-4 {
      transition-delay: 0.4s;
    }

    
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0.75rem 0;
      background: rgba(11, 29, 54, 0.92);
      border-bottom: 1px solid rgba(0, 194, 178, 0.12);
      transition: all var(--transition-base);
    }

    .nav.scrolled {
      background: rgba(11, 29, 54, 0.97);
      padding: 0.625rem 0;
      border-bottom-color: rgba(0, 194, 178, 0.08);
    }

    .nav__inner {
      max-width: var(--container-wide);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .nav__logo-mark {
      width: 48px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav__logo-mark svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: var(--gold);
      stroke-linejoin: miter;
    }

    .nav__logo-text {
      display: flex;
      align-items: baseline;
      line-height: 1;
    }

    .nav__logo-name {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.375rem;
      color: var(--text-white);
      letter-spacing: -0.4px;
    }

    .nav__logo-cite {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.375rem;
      color: var(--gold);
      letter-spacing: -0.4px;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 1px;
    }

    .nav__links {
      display: flex;
      list-style: none;
      gap: 1.75rem;
      align-items: center;
    }

    .nav__link {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: color var(--transition-fast);
    }

    .nav__link a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color var(--transition-fast);
    }

    .nav__link a:hover {
      color: #fff;
    }

    .nav__link--faq a {
      color: rgba(255, 255, 255, 0.55);
    }

    .nav__link--faq a:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    .nav__link--active a {
      position: relative;
      padding-bottom: 3px;
    }

    .nav__link--active a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: #22C55E;
    }

    .nav__dot {
      width: 6px;
      height: 6px;
      flex-shrink: 0;
    }

    .nav__dot--green {
      background: #2ECC71;
    }

    .nav__dot--purple {
      background: #A78BFA;
    }

    .nav__dot--red {
      background: #EF6B6B;
    }

    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .nav__hamburger span {
      width: 22px;
      height: 2px;
      background: var(--text-white);
      transition: all var(--transition-fast);
    }

    
    
    .desktop-break {
      display: none;
    }

    @media (min-width: 768px) {
      .desktop-break {
        display: inline;
      }
    }

    
    .carousel-section {
      position: relative;
      padding: 2rem 0 3rem;
      overflow: hidden;
    }

    .carousel-section::before {
      display: none;
    }

    .carousel-intro {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 1.5rem;
      padding: 0 var(--container-padding);
    }

    .carousel-intro p {
      font-family: var(--font-heading);
      font-size: 0.9375rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
    }

    
    .carousel-header-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .carousel-arrow {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.6);
      font-size: 1.125rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: var(--font-heading);
      line-height: 1;
      padding: 0;
    }

    .carousel-arrow:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--text-white);
      border-color: rgba(255, 255, 255, 0.35);
    }

    .carousel-hint {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.3);
    }

    
    .brief-scroll-wrapper {
      --brief-card-width: min(39rem, calc((100vh - 12rem) * 8.5 / 11));
      display: flex;
      align-items: center;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: auto;
      gap: 16px;
      padding: 16px max(5vw, calc((100vw - var(--brief-card-width)) / 2));
      scrollbar-width: none;
      -ms-overflow-style: none;
      max-width: 100%;
      margin: 0 auto;
      overflow-anchor: none;
    }

    .brief-scroll-wrapper::-webkit-scrollbar {
      display: none;
    }

    @media (max-width: 900px) {
      .brief-scroll-wrapper {
        --brief-card-width: min(90vw, calc((100vh - 12rem) * 8.5 / 11));
        padding: 16px 5vw;
      }
    }

    
    .carousel-cover {
      overflow: hidden;
      background: var(--card-das);
      position: relative;
      scroll-snap-align: center;
      flex-shrink: 0;
      width: var(--brief-card-width);
      max-width: 90vw;
      cursor: pointer;
      opacity: 0.95;
      transform: scale(0.95);
      transform-origin: center center;
      transition: transform 0.28s ease, opacity 0.28s ease;
      will-change: transform, opacity;
      z-index: 0;
    }

    .carousel-cover::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 15%, rgba(27, 61, 47, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 70%, rgba(27, 61, 47, 0.4) 0%, transparent 45%);
      pointer-events: none;
    }

    .carousel-cover .c-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 24px 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      z-index: 2;
      background: linear-gradient(135deg, #0B1D36 0%, #0F2847 100%);
    }

    .carousel-cover .c-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .carousel-cover .c-logo-mark {
      width: 42px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .carousel-cover .c-logo-mark svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: var(--gold);
      stroke-linejoin: miter;
    }

    .carousel-cover .c-logo-name {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 17px;
      color: var(--text-white);
      letter-spacing: -0.3px;
    }

    .carousel-cover .c-logo-cite {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 17px;
      color: var(--gold);
      letter-spacing: -0.3px;
      border-bottom: 1.5px solid var(--gold);
      padding-bottom: 0.5px;
    }

    .carousel-cover .c-badge {
      font-family: var(--font-heading);
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 3px 10px;
      background: rgba(34, 197, 94, 0.15);
      color: #FFFFFF;
      border: 1px solid rgba(34, 197, 94, 0.25);
    }

    .carousel-cover .c-body {
      padding: 20px 24px;
      position: relative;
      z-index: 2;
    }

    .carousel-cover .c-company {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 26px;
      letter-spacing: -0.5px;
      margin-bottom: 4px;
      color: var(--text-white);
    }

    .carousel-cover .c-meta {
      font-family: var(--font-body);
      font-size: 11px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 18px;
    }

    .carousel-cover .c-meta .sep {
      margin: 0 6px;
      opacity: 0.4;
    }

    .carousel-cover .c-score-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-bottom: 14px;
      margin-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .carousel-cover .c-score-num {
      font-family: var(--font-heading);
      font-feature-settings: 'tnum' 1;
      font-weight: 700;
      font-size: 64px;
      line-height: 1;
      letter-spacing: -3px;
      color: #FFFFFF;
    }

    .carousel-cover .c-score-pct {
      font-family: var(--font-heading);
      font-size: 24px;
      opacity: 0.5;
      color: #FFFFFF;
    }

    .carousel-cover .c-score-label {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 4px;
    }

    .carousel-cover .c-score-sub {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.3);
      margin-top: 2px;
    }

    .carousel-cover .c-metrics {
      text-align: right;
      margin: 0;
    }

    .carousel-cover .c-metric {
      margin-bottom: 6px;
    }

    .carousel-cover .c-metric-label {
      font-family: var(--font-heading);
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.2);
    }

    .carousel-cover .c-metric-value {
      font-family: var(--font-heading);
      font-feature-settings: 'tnum' 1;
      font-weight: 700;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.75);
    }

    .carousel-cover .c-metric-label,
    .carousel-cover .c-metric-value {
      margin: 0;
    }

    
    .carousel-cover .c-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 12px;
    }

    .carousel-cover .c-box {
      padding: 10px 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .carousel-cover .c-box-title {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .carousel-cover .c-box-text {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    .carousel-cover .c-box-title,
    .carousel-cover .c-box-text {
      margin-top: 0;
    }

    .carousel-cover .c-box-text:last-child {
      margin-bottom: 0;
    }

    .carousel-cover .c-footer {
      padding: 8px 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: space-between;
      background: #152f24;
      position: relative;
      z-index: 2;
    }

    .carousel-cover .c-footer span {
      font-family: var(--font-body);
      font-size: 8px;
      color: rgba(255, 255, 255, 0.18);
    }

    
    .carousel-card {
      background: var(--bg-white);
      overflow: hidden;
      scroll-snap-align: center;
      flex-shrink: 0;
      width: var(--brief-card-width);
      max-width: 90vw;
      max-height: var(--brief-card-height, none);
      cursor: pointer;
      opacity: 0.95;
      transform: scale(0.95);
      transform-origin: center center;
      transition: transform 0.28s ease, opacity 0.28s ease;
      will-change: transform, opacity;
      z-index: 0;
      display: flex;
      flex-direction: column;
    }

    .carousel-cover.is-side,
    .carousel-card.is-side {
      opacity: 0.95;
      transform: scale(0.95);
      z-index: 1;
    }

    .carousel-cover.is-active,
    .carousel-card.is-active {
      opacity: 1;
      transform: scale(1);
      z-index: 2;
    }

    .carousel-card .cc-header {
      padding: 10px 24px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .carousel-card .cc-logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .carousel-card .cc-logo-mark {
      width: 38px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .carousel-card .cc-logo-mark svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: var(--gold);
      stroke-linejoin: miter;
    }

    .carousel-card .cc-logo-name {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 15px;
      color: var(--text-dark);
      letter-spacing: -0.3px;
    }

    .carousel-card .cc-logo-cite {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 15px;
      color: var(--gold);
      letter-spacing: -0.3px;
      border-bottom: 1.5px solid var(--gold);
      padding-bottom: 0.5px;
    }

    .carousel-card .cc-type {
      font-family: var(--font-heading);
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--text-gray-light);
      text-transform: uppercase;
    }

    .carousel-card .cc-body {
      padding: 16px 24px;
      flex: 1;
    }

    .carousel-card .cc-footer {
      padding: 7px 24px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      display: flex;
      justify-content: space-between;
    }

    .carousel-card .cc-footer span {
      font-family: var(--font-body);
      font-size: 8px;
      color: var(--text-gray-light);
    }

    .pdf-placeholder-page {
      background: #FFFFFF;
      border: 1px solid rgba(11, 29, 54, 0.12);
      box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
      aspect-ratio: 8.5 / 11;
      cursor: default;
    }

    .carousel-card.pdf-brief-page {
      display: block;
      min-height: 0;
      opacity: 1;
      transform: none;
    }

.pdf-brief-page {
      background: #FFFFFF;
      width: var(--brief-card-width);
      aspect-ratio: 8.5 / 11;
      cursor: default;
      position: relative;
      overflow: hidden;
      contain: layout style;
      flex-shrink: 0;
      isolation: isolate;
    }

.pdf-brief-page__embed {
      position: absolute;
      top: 0;
      left: 0;
      width: calc(100% + 18px);
      height: calc(100% + 24px);
      display: none;
      border: 0;
      margin: 0;
      background: #FFFFFF;
      pointer-events: auto;
      overflow: hidden;
    }

    body.pdf-render-enhanced .pdf-brief-page__embed.pdf-brief-page__embed--desktop {
      display: none !important;
    }

    body.pdf-render-enhanced .pdf-brief-page__render {
      position: absolute;
      top: 0; 
      right: 0; 
      bottom: 0; 
      left: 0;
      display: none;
      align-items: stretch;
      justify-content: center;
      background: #FFFFFF;
      overflow: hidden;
    }

    body.pdf-render-enhanced .pdf-brief-page__render.pdf-brief-page__render--desktop {
      display: flex !important;
    }

    body.pdf-render-enhanced .pdf-brief-page__render-shell {
      position: relative;
      max-width: 100%;
      background: #FFFFFF;
      overflow: hidden;
    }

    body.pdf-render-enhanced .pdf-brief-page__selection-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
    }

    body.pdf-render-enhanced .pdf-brief-page__selection-rect {
      position: absolute;
      background: rgba(134, 170, 219, 0.42);
    }

    body.pdf-render-enhanced .pdf-brief-page__render-canvas {
      display: block;
      max-width: 100%;
      height: auto;
    }

    body.pdf-render-enhanced .pdf-brief-page__render-status {
      display: flex;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      text-align: center;
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(11, 29, 54, 0.45);
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer {
      position: absolute;
      inset: 0;
      overflow: clip;
      opacity: 1;
      line-height: 1;
      text-align: initial;
      transform-origin: 0 0;
      -webkit-text-size-adjust: none;
      -moz-text-size-adjust: none;
      text-size-adjust: none;
      forced-color-adjust: none;
      caret-color: CanvasText;
      z-index: 1;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer :is(span, br) {
      position: absolute;
      color: transparent;
      -webkit-text-fill-color: transparent;
      white-space: pre;
      cursor: text;
      transform-origin: 0 0;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer > :not(.markedContent),
    body.pdf-render-enhanced .pdf-brief-page__render .textLayer .markedContent span:not(.markedContent) {
      z-index: 1;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer span.markedContent {
      top: 0;
      height: 0;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer .endOfContent {
      display: block;
      position: absolute;
      inset: 100% 0 0;
      z-index: 0;
      cursor: default;
      user-select: none;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer.selecting .endOfContent {
      top: 0;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer ::selection {
      color: transparent;
      -webkit-text-fill-color: transparent;
      text-shadow: none;
      background: transparent;
    }

    body.pdf-render-enhanced .pdf-brief-page__render .textLayer ::-moz-selection {
      color: transparent;
      text-shadow: none;
      background: transparent;
    }

    .pdf-brief-page__img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #FFFFFF;
    }

    body.pdf-render-enhanced .pdf-brief-page__img.pdf-brief-page__img--mobile {
      display: none !important;
    }

    .carousel-cover.is-side .pdf-brief-page__embed,
    .carousel-card.is-side .pdf-brief-page__embed {
      pointer-events: none;
    }

    body.pdf-render-enhanced .carousel-cover.is-side .pdf-brief-page__render,
    body.pdf-render-enhanced .carousel-card.is-side .pdf-brief-page__render {
      pointer-events: none;
    }

    @media (max-width: 768px) {
      body.pdf-render-enhanced .pdf-brief-page__render.pdf-brief-page__render--desktop {
        display: none !important;
      }

      body.pdf-render-enhanced .pdf-brief-page__img.pdf-brief-page__img--mobile {
        display: block !important;
      }
    }

    
    .cc-sbar {
      background: var(--bg-navy-core);
      padding: 6px 12px;
      margin-bottom: 10px;
    }

    .cc-sbar span {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      color: #FFF;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    
    .cc-pressure-table {
      border: 1px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .cc-pressure-row {
      padding: 10px 16px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cc-pressure-row:last-child {
      border-bottom: none;
    }

    .cc-pressure-row:nth-child(even) {
      background: var(--bg-light);
    }

    .cc-pressure-row-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }

    .cc-pressure-label {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dark);
      flex: 1;
      margin: 0;
    }

    .cc-pressure-bar-track {
      width: 60px;
      height: 6px;
      background: rgba(0, 0, 0, 0.06);
      overflow: hidden;
      flex-shrink: 0;
    }

    .cc-pressure-bar-fill {
      height: 100%;
    }

    .cc-pressure-sev {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 700;
      width: 60px;
      text-align: right;
      flex-shrink: 0;
    }

    .cc-pressure-detail {
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--text-gray);
      line-height: 1.55;
      margin: 0;
    }

    
    .cc-fbd {
      margin-top: 12px;
      padding: 14px 18px;
      background: rgba(220, 53, 69, 0.06);
      border: 1.5px solid rgba(220, 53, 69, 0.15);
    }

    .cc-fbd-title {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      color: #DC3545;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 5px;
    }

    .cc-fbd-text {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--text-dark);
      line-height: 1.6;
      margin: 0;
    }

    .cc-fbd-text strong {
      font-weight: 700;
      color: #DC3545;
    }

    
    .cc-contacts-row {
      display: flex;
      gap: 12px;
      margin-bottom: 8px;
    }

    .cc-contacts-col {
      flex: 1;
    }

    .cc-contacts-col-label {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 6px;
    }

    .cc-contact-card {
      padding: 12px 14px;
      background: var(--bg-light);
      border: 1px solid rgba(0, 0, 0, 0.06);
      margin-bottom: 7px;
    }

    .cc-contact-name {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin: 0;
    }

    .cc-contact-title {
      font-family: var(--font-body);
      font-size: 10.5px;
      color: var(--text-gray-light);
      margin-top: 1px;
    }

    .cc-contact-field {
      font-family: var(--font-body);
      font-size: 10.5px;
      color: var(--text-gray);
      margin-top: 6px;
      line-height: 1.55;
    }

    .cc-contact-field strong {
      font-weight: 600;
      color: var(--text-dark);
    }

    
    .cc-budget-box {
      padding: 12px 16px;
      background: var(--bg-light);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-left: 3px solid var(--gold);
      margin-top: 8px;
    }

    .cc-budget-label {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 5px;
    }

    .cc-budget-text {
      font-family: var(--font-body);
      font-size: 11.5px;
      color: var(--text-dark);
      line-height: 1.65;
    }

    
    .cc-timeline-phase {
      display: flex;
      align-items: stretch;
      border: 1px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
      margin-bottom: 6px;
    }

    .cc-timeline-left {
      width: 115px;
      flex-shrink: 0;
      padding: 8px 12px;
      background: var(--bg-light);
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cc-timeline-name {
      font-family: var(--font-heading);
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0;
    }

    .cc-timeline-time {
      font-family: var(--font-heading);
      font-size: 9.5px;
      font-weight: 600;
      margin-top: 2px;
    }

    .cc-timeline-right {
      flex: 1;
      padding: 6px 14px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0;
      list-style: none;
    }

    .cc-timeline-item {
      display: flex;
      gap: 6px;
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--text-dark);
      margin-bottom: 3px;
      line-height: 1.45;
    }

    .cc-timeline-item .tri {
      flex-shrink: 0;
      font-size: 8px;
      margin-top: 3px;
    }

    
    .cc-deal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
      margin: 14px 0;
    }

    .cc-deal-card {
      padding: 10px 12px;
      background: var(--bg-light);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .cc-deal-label {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 700;
      color: var(--bg-navy-core);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 2px;
    }

    .cc-deal-value {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--text-dark);
      line-height: 1.4;
      margin: 0;
    }

    
    .cc-bottom-line {
      padding: 14px 18px;
      background: var(--bg-navy-core);
    }

    .cc-bottom-line-title {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 800;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin: 0 0 5px;
    }

    .cc-bottom-line-text {
      font-family: var(--font-body);
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.65;
      margin: 0;
    }

    .cc-bottom-line-text .hl {
      color: var(--gold);
      font-weight: 600;
    }

    
    .cc-pos-stmt {
      padding: 14px 18px;
      background: var(--bg-navy-core);
      margin-bottom: 14px;
    }

    .cc-pos-stmt-text {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
      font-style: italic;
      margin: 0;
    }

    .cc-obj-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .cc-obj-row {
      display: flex;
      margin-bottom: 7px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .cc-obj-they {
      flex: 1;
      padding: 10px 14px;
      background: rgba(220, 53, 69, 0.04);
    }

    .cc-obj-you {
      flex: 1;
      padding: 10px 14px;
      background: rgba(212, 175, 55, 0.04);
      border-left: 1px solid rgba(0, 0, 0, 0.08);
    }

    .cc-obj-label {
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .cc-obj-label.they {
      color: #DC3545;
    }

    .cc-obj-label.you {
      color: var(--gold);
    }

    .cc-obj-text {
      font-family: var(--font-body);
      font-size: 11.5px;
      color: var(--text-dark);
      line-height: 1.45;
      font-weight: 600;
      margin: 0;
    }

    
    .stats-bar {
      background-color: #1B3D2F;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
      background-size: 30px 30px;
      padding: 3rem 0;
      position: relative;
    }

    .stats-bar__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-xl);
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      list-style: none;
    }

    .stats-bar__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .stats-bar__item dd {
      margin: 0 0 0.375rem;
      order: -1;
    }

    .stats-bar__number {
      font-family: var(--font-heading);
      font-feature-settings: 'tnum' 1;
      font-weight: 700;
      font-size: clamp(2.25rem, 4.5vw, 3rem);
      color: #22C55E;
      line-height: 1;
      margin-bottom: 0.375rem;
    }

    .stats-bar__label {
      font-family: var(--font-body);
      font-size: 0.875rem;
      color: #FFFFFF;
      font-weight: 500;
      line-height: 1.4;
    }

    @media (max-width: 767px) {
      .mobile-break {
        display: inline;
      }

      .upgrade-path__title,
      .upgrade-path__text {
        text-align: center;
      }
    }

    @media (min-width: 768px) {
      .mobile-break {
        display: none;
      }
    }

    
    .problem-section {
      position: relative;
      padding: 5.5rem 0 0 0;
      overflow: hidden;
      background: #fff;
    }

    .prob-inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    
    .prob-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .prob-overline {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 0.625rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .prob-headline {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 2.875rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 1rem;
    }

    .prob-headline em {
      font-style: normal;
      color: #22C55E;
    }

    .prob-headline-mobile {
      display: none;
    }

    @media (max-width: 640px) {
      .prob-headline-desktop {
        display: none;
      }

      .prob-headline-mobile {
        display: inline;
      }

      .prob-headline em {
        white-space: nowrap;
      }
    }
    .prob-sub {
      font-size: 1rem;
      color: var(--text-gray);
      line-height: 1.65;
      max-width: 560px;
      margin: 0 auto;
    }

    
    .prob-question {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .prob-question__pill {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: clamp(1.0625rem, 2.5vw, 1.4375rem);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.015em;
      padding: 1.125rem 2.25rem;
      border: 1px solid rgba(0, 0, 0, 0.1);
      background: var(--bg-light);
      line-height: 1.3;
    }

    .prob-question__pill em {
      font-style: normal;
      color: #22C55E;
    }

    
    .prob-answer-label {
      text-align: center;
      font-family: var(--font-heading);
      font-size: 0.5625rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-gray-light);
      margin-bottom: 1.25rem;
    }

    
    .prob-signals {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      max-width: 780px;
      margin: 0 auto 3rem;
      list-style: none;
      padding: 0;
    }

    .prob-signal {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 1.125rem;
      padding: 1.125rem 1.375rem;
      background: var(--bg-light);
      border: 1px solid #E2E8F0;
      transition: background 0.2s ease, border-color 0.2s ease;
      cursor: default;
    }

    .prob-signal:hover {
      background: rgba(34, 197, 94, 0.05);
      border-color: rgba(34, 197, 94, 0.25);
    }

    .prob-signal__icon {
      width: 44px;
      height: 44px;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .prob-signal__icon svg {
      width: 20px;
      height: 20px;
      stroke: #22C55E;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .prob-signal__body {
      min-width: 0;
    }

    .prob-signal__name {
      font-family: var(--font-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.2rem;
      line-height: 1.2;
    }

    .prob-signal__example {
      font-size: 0.8125rem;
      color: var(--text-gray);
      line-height: 1.5;
    }

    .prob-signal__name,
    .prob-signal__example,
    .prob-signal__tag {
      margin-top: 0;
    }

    .prob-signal__example:last-child {
      margin-bottom: 0;
    }

    .prob-signal__tag {
      font-family: var(--font-heading);
      font-size: 0.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      padding: 3px 9px;
      white-space: nowrap;
      background: rgba(34, 197, 94, 0.1);
      color: #1B3D2F;
      border: 1px solid rgba(34, 197, 94, 0.25);
      flex-shrink: 0;
    }

    .prob-signal__toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: #1B3D2F;
    }

    .prob-signal__toggle::before {
      content: '';
      width: 8px;
      height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      transform-origin: center;
      opacity: 0.55;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .prob-signal__toggle[aria-expanded="true"]::before {
      transform: rotate(225deg);
      opacity: 0.9;
    }

    
    .prob-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      max-width: 700px;
      margin: 0 auto;
      background: var(--bg-light);
      border: 1px solid #E2E8F0;
      padding: 1.625rem 1.5rem;
    }

    .prob-stat {
      text-align: center;
      flex: 1;
    }

    .prob-stat__num {
      font-family: var(--font-heading);
      font-size: clamp(1.625rem, 3vw, 2.25rem);
      font-weight: 800;
      color: #22C55E;
      line-height: 1;
      margin-bottom: 0.375rem;
      letter-spacing: -0.02em;
    }

    .prob-stat__label {
      font-size: 0.75rem;
      color: var(--text-gray-light);
      line-height: 1.4;
    }

    .prob-stat__sep {
      width: 1px;
      height: 44px;
      background: #E2E8F0;
      flex-shrink: 0;
      margin: 0 1.5rem;
    }

    @media (max-width: 680px) {
      .prob-signal {
        grid-template-columns: 40px 1fr 18px;
        align-items: start;
        gap: 0.875rem;
        padding: 1rem;
        cursor: pointer;
      }

      .prob-signal__icon {
        width: 40px;
        height: 40px;
      }

      .prob-signal__name {
        margin-bottom: 0;
      }

      .prob-signal__example {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
      }

      .prob-signal.is-open .prob-signal__example {
        max-height: 420px;
        margin-top: 0.55rem;
        opacity: 1;
      }

      .prob-signal__tag {
        display: none;
      }

      .prob-signal__toggle {
        display: inline-flex;
        justify-self: end;
        align-self: start;
        margin-top: 0.75rem;
      }

      .prob-signal__toggle:focus-visible {
        outline: 2px solid rgba(34, 197, 94, 0.55);
        outline-offset: 3px;
      }

      .prob-stats {
        flex-direction: column;
        gap: 1.25rem;
      }

      .prob-stat__sep {
        width: 40px;
        height: 1px;
        margin: 0;
      }
    }

    
    .das-section-light {
      background: var(--bg-white) !important;
      color: var(--text-dark) !important;
      position: relative;
    }

    .das-section-light::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent 5%, var(--teal) 30%, var(--teal) 70%, transparent 95%);
      z-index: 3;
    }

    .das-section-light .das-halo {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 400px;
      background: radial-gradient(ellipse 80% 100% at 50% 0%,
          rgba(0, 194, 178, 0.10) 0%, rgba(0, 194, 178, 0.05) 40%, transparent 75%);
      pointer-events: none;
      z-index: 0;
    }

    .das-section-light .container {
      position: relative;
      z-index: 2;
    }

    .das-framework__header h3 {
      color: #1B3D2F;
    }

    .das-framework {
      max-width: 1100px;
      margin: 0 auto;
    }

    .das-framework__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .das-domains {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .das-domain:last-child {
      grid-column: 1 / -1;
    }

    .das-domain {
      position: relative;
      border: 2px solid var(--teal);
      padding: var(--space-xl);
      transition: border-color var(--transition-base);
      overflow: hidden;
      background: var(--bg-navy-core);
      background-size: cover;
      background-position: center;
    }

    .das-domain::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(11, 29, 54, 0.82);
      z-index: 0;
      transition: background var(--transition-base);
    }

    .das-domain:hover::before {
      background: rgba(11, 29, 54, 0.76);
    }

    
    .das-domain--bright::before {
      background: rgba(11, 29, 54, 0.76);
    }

    .das-domain--bright:hover::before {
      background: rgba(11, 29, 54, 0.70);
    }

    .das-domain__label,
    .das-domain__categories {
      position: relative;
      z-index: 1;
    }

    .das-domain__body {
      position: relative;
      z-index: 1;
    }

    .das-domain__label {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold);
      margin-bottom: var(--space-lg);
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .das-domain__categories {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .das-domain:last-child .das-domain__categories {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.875rem;
    }

    .das-cat {
      display: flex;
      gap: 0.625rem;
      align-items: flex-start;
    }

    .das-cat__code {
      font-family: var(--font-heading);
      font-feature-settings: 'tnum' 1;
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--gold);
      min-width: 32px;
      padding-top: 1px;
      flex-shrink: 0;
    }

    .das-cat__name {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 2px;
      line-height: 1.3;
    }

    .das-cat__desc {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.35);
      line-height: 1.45;
    }

    .das-framework__footer {
      text-align: center;
      margin-top: 3rem;
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-gray);
      line-height: 1.6;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .das-framework__footer strong {
      color: var(--text-dark);
      font-weight: 700;
    }

    
    
    .brief-contents {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .brief-contents__block {
      margin-bottom: var(--space-3xl);
    }

    .brief-contents__label {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.75rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #E2E8F0;
    }

    .brief-contents__label--standard {
      color: var(--gold);
    }

    .brief-contents__label--elite {
      color: var(--teal);
    }

    .brief-contents__list {
      list-style: none;
      counter-reset: brief-item;
    }

    .brief-contents__list li {
      counter-increment: brief-item;
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      padding: 0.5rem 0;
      font-size: 0.9375rem;
      color: var(--text-gray);
      line-height: 1.55;
      border-bottom: 1px solid #F1F5F9;
    }

    .brief-contents__list li::before {
      content: counter(brief-item, decimal-leading-zero);
      font-family: var(--font-heading);
      font-feature-settings: 'tnum' 1;
      font-weight: 700;
      font-size: 0.6875rem;
      color: var(--gold);
      min-width: 1.5rem;
      flex-shrink: 0;
    }

    .brief-contents__list--elite li::before {
      color: var(--teal);
    }

    .brief-contents__anchor {
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      margin-top: 1rem;
    }

    .brief-contents__anchor a {
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .brief-contents__anchor--standard a {
      color: var(--gold);
    }

    .brief-contents__anchor--standard a:hover {
      border-bottom-color: var(--gold);
    }

    .brief-contents__anchor--elite a {
      color: var(--teal);
    }

    .brief-contents__anchor--elite a:hover {
      border-bottom-color: var(--teal);
    }

    
    .elite-multiplier {
      font-family: var(--font-heading);
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 0.75rem;
    }

    .elite-multiplier .teal {
      color: var(--gold);
    }

    .elite-sub {
      font-size: 0.9375rem;
      color: var(--text-gray);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    
    .engine-callout {
      border-left: 3px solid var(--gold);
      background: rgba(212, 175, 55, 0.04);
      padding: 1.25rem 1.5rem;
      margin: var(--space-2xl) auto;
      max-width: 760px;
    }

    .engine-callout__headline {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .engine-callout p {
      font-size: 0.8125rem;
      color: var(--text-gray);
      line-height: 1.7;
    }

    
    .depth-toggle {
      display: flex;
      justify-content: center;
      margin-top: var(--space-xl);
    }

    .depth-toggle__btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-gray-light);
      background: none;
      border: 1px solid #E2E8F0;
      padding: 0.625rem 1.25rem;
      cursor: pointer;
      transition: all var(--transition-base);
    }

    .depth-toggle__btn:hover {
      background: var(--bg-light);
      color: var(--text-gray);
    }

    .depth-toggle__btn .arrow {
      transition: transform 0.3s ease;
      font-size: 0.6875rem;
    }

    .depth-toggle__btn.open .arrow {
      transform: rotate(180deg);
    }

    .depth-expand {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .depth-expand.open {
      max-height: 1200px;
    }

    .depth-expand__table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
      font-size: 0.8125rem;
    }

    .depth-expand__table thead th {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.75rem 1rem;
      text-align: left;
      background: var(--bg-light);
      border-bottom: 2px solid #E2E8F0;
      color: var(--text-gray-light);
    }

    .depth-expand__table thead th:nth-child(2) {
      color: var(--gold);
    }

    .depth-expand__table thead th:nth-child(3) {
      color: var(--teal);
    }

    .depth-expand__table tbody td {
      padding: 0.625rem 1rem;
      border-bottom: 1px solid #F1F5F9;
      vertical-align: top;
      color: var(--text-gray);
      line-height: 1.5;
    }

    .depth-expand__table tbody td:first-child {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.8125rem;
      color: var(--text-dark);
    }

    .depth-expand__table .multiplier {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--teal);
    }

    
    .tier-section {
      padding: var(--space-4xl) 0;
      background: var(--bg-light);
    }

    .tier-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
      max-width: 900px;
      margin: 0 auto;
      padding: 0 var(--container-padding);
      align-items: start;
    }

    .tier-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      border: 1px solid #E2E8F0;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .tier-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

    .tier-card--elite {
      border: 2px solid var(--teal);
    }

    .tier-card header,
    .tier-card__name,
    .tier-card__price,
    .tier-card__upgrade-label {
      margin: 0;
    }

    .tier-card__label {
      font-family: var(--font-heading);
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.5rem;
    }

    .tier-card__label--standard {
      color: var(--text-gray-light);
    }

    .tier-card__label--elite {
      color: var(--teal);
    }

    .tier-card__name {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.375rem;
    }

    .tier-card__price {
      font-family: var(--font-heading);
      font-variant-numeric: tabular-nums;
      margin-bottom: 0.75rem;
    }

    .tier-card__price .founding {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .tier-card__price .original {
      font-size: 0.875rem;
      color: var(--text-gray-light);
      text-decoration: line-through;
      margin-left: 0.375rem;
    }

    .tier-card__price .rate {
      font-size: 0.625rem;
      font-weight: 600;
      color: #C9A84C;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: block;
      margin-top: 0.125rem;
    }

    .tier-card__items {
      list-style: none;
      margin-bottom: 1rem;
      flex: 1;
    }

    .tier-card__items li {
      font-size: 0.875rem;
      color: var(--text-gray);
      line-height: 1.5;
      padding: 0.3rem 0;
      padding-left: 1.25rem;
      position: relative;
    }

    .tier-card__items li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.625rem;
      width: 7px;
      height: 7px;
      border-radius: 0;
    }

    .tier-card__items--standard li::before {
      background: var(--gold);
    }

    .tier-card__items--elite li::before {
      background: var(--teal);
    }

    .tier-card__upgrade-label {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--teal);
      margin-bottom: 0.625rem;
      padding-top: 0.625rem;
      padding-bottom: 0.375rem;
      border-top: 1px solid #E2E8F0;
      line-height: 1.45;
    }

    .tier-card--elite .tier-card__upgrade-label {
      border-top-color: rgba(0, 194, 178, 0.2);
    }

    .tier-card__cta {
      display: block;
      width: 100%;
      padding: 0.75rem;
      border-radius: var(--radius-md);
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .tier-card__cta--standard {
      background: var(--gold);
      color: var(--bg-navy-core);
    }

    .tier-card__cta--standard:hover { background: #E0BD45; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,175,55,0.35); }

    .tier-card__cta--elite {
      background: linear-gradient(135deg, #0B1D36 0%, #0F2847 100%);
      color: var(--teal);
      border: 1.5px solid var(--teal);
    }

    .tier-card__cta--elite:hover { background: linear-gradient(135deg, #0F2847 0%, #133058 100%); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,194,178,0.25); }

    
    .tier-card--gold {
      background: var(--bg-navy-core);
      border: 2px solid var(--gold);
      box-shadow:
        0 0 0 4px rgba(212,175,55,0.1),
        0 12px 40px rgba(11,29,54,0.5),
        0 0 80px rgba(212,175,55,0.06);
      position: relative;
      overflow: visible;
    }

    .tier-card--gold::before {
      content: 'MOST COMPLETE';
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: #22C55E;
      color: #0B1D36;
      font-family: var(--font-heading);
      font-size: 0.5rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      padding: 0.3rem 1rem;
      border-radius: 0;
      white-space: nowrap;
    }

    .tier-card--gold:hover {
      box-shadow:
        0 0 0 4px rgba(212,175,55,0.18),
        0 20px 56px rgba(11,29,54,0.55),
        0 0 100px rgba(212,175,55,0.1);
      transform: translateY(-3px);
    }

    .tier-card--gold .tier-card__label {
      color: var(--gold);
    }

    .tier-card--gold .tier-card__name {
      color: #fff;
    }

    .tier-card--gold .tier-card__price .founding {
      color: #fff;
    }

    .tier-card--gold .tier-card__price .original {
      color: rgba(255, 255, 255, 0.35);
    }

    .tier-card--gold .tier-card__price .rate {
      color: rgba(212, 175, 55, 0.75);
    }

    .tier-card--gold .tier-card__upgrade-label {
      color: rgba(255, 255, 255, 0.65) !important;
      border-top-color: rgba(212, 175, 55, 0.2) !important;
    }

    .tier-card--gold .tier-card__items li {
      color: rgba(255, 255, 255, 0.75);
    }

    .tier-card--gold .tier-card__items--elite li::before { background: #22C55E !important; border-radius: 50%; }

    .tier-card--gold .tier-card__cta {
      background: var(--gold);
      color: var(--bg-navy-core);
      border: none;
      font-size: 0.9375rem;
      font-weight: 800;
      padding: 0.9375rem;
      letter-spacing: 0.01em;
    }

    .tier-card--gold .tier-card__cta:hover {
      background: #E0BD45;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    }

    .svg-btn {
      display: inline-block;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .svg-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.08);
    }

    .svg-btn:active {
      transform: translateY(0);
    }

    .tier-card--gold .tier-card__cta.svg-btn {
      display: flex;
      justify-content: center;
      width: 100%;
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      line-height: 0;
    }

    .tier-card--gold .tier-card__cta.svg-btn:hover {
      background: transparent;
      box-shadow: none;
      transform: translateY(-2px);
    }

    .tier-card--gold .tier-card__cta.svg-btn:focus-visible {
      outline: 2px solid rgba(255,225,138,0.72);
      outline-offset: 6px;
    }

    .tier-card--gold .tier-card__cta.svg-btn svg {
      width: min(100%, 240px);
      height: auto;
    }

    .tier-card--gold .tier-delivery { color: rgba(255,255,255,0.35); }

    .tier-note {
      text-align: center;
      max-width: 560px;
      margin: var(--space-lg) auto 0;
      font-size: 0.8125rem;
      color: var(--text-gray);
      line-height: 1.6;
      padding: 0 var(--container-padding);
    }

    .prophacite-standard-note {
      text-align: center;
      max-width: 640px;
      margin: var(--space-xl) auto 0;
      padding: .5rem 2rem;
      border-left: 3px solid var(--gold);
      border-right: 3px solid var(--gold);
      background: var(--gold-bg);
    }

    .prophacite-standard-note__title {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0 0 0.75rem;
    }

    .prophacite-standard-note__body,
    .prophacite-standard-note__declaration {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--text-gray);
      margin: 0;
    }

    .prophacite-standard-note__body {
      color: #000;
    }

    .prophacite-standard-note__declaration {
      margin-top: 0.5rem;
      color: var(--text-dark);
      font-weight: 600;
    }

    .steps-section {
      background: var(--bg-white);
      padding: var(--space-4xl) 0;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-xl);
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      list-style: none;
    }

    .step {
      text-align: center;
    }

    .step .step__number {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 0.75rem;
      opacity: 0.3;
    }

    .step h4,
    .step .steps-title {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      font-size: 1.0625rem;
    }

    .step p:not(.step__number) {
      font-size: 0.875rem;
      line-height: 1.6;
    }

    
    .competitive-section {
      padding: var(--space-4xl) 0;
      background:
        radial-gradient(ellipse 55% 70% at 15% 50%, rgba(34, 197, 94, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 10%, rgba(34, 197, 94, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(11, 61, 35, 0.6) 0%, transparent 70%),
        linear-gradient(145deg,
          #051510 0%,
          #071E15 15%,
          #0A2A1C 30%,
          #0B1D36 55%,
          #091628 75%,
          #060E1A 100%);
      position: relative;
      overflow: hidden;
    }

    .competitive-section::before {
      display: none;
    }

    .competitive-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 30% 40% at 75% 60%, rgba(34, 197, 94, 0.06) 0%, transparent 55%);
      pointer-events: none;
    }

    
    .comparison-wrap {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0;
      position: relative;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    
    @media (max-width: 1024px) {
      .comparison-wrap::after {
        content: '';
        position: sticky;
        right: 0;
        top: 0;
        float: right;
        width: 40px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(10, 77, 94, 0.9));
        pointer-events: none;
        margin-left: -40px;
      }
    }

    .comparison-table {
      width: 100%;
      min-width: 700px;
      border-collapse: collapse;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .comparison-table thead th {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 16px 14px;
      text-align: left;
      background: rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.4);
    }

    .comparison-table thead th:first-child {
      width: 20%;
    }

    .comparison-table thead th.col-ps {
      color: var(--gold);
      background: rgba(27, 61, 47, 0.25);
      border-left: 2px solid rgba(27, 61, 47, 0.4);
      border-right: 2px solid rgba(27, 61, 47, 0.4);
      position: relative;
    }

    .comparison-table thead th.col-ps::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #1B3D2F;
    }

    .comparison-table tbody td {
      padding: 12px 14px;
      font-family: var(--font-body);
      font-size: 13px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.5);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      vertical-align: top;
    }

    .comparison-table tbody td:first-child {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.8);
    }

    .comparison-table tbody td.col-ps {
      background: rgba(27, 61, 47, 0.1);
      color: var(--text-white);
      font-weight: 500;
      border-left: 2px solid rgba(27, 61, 47, 0.4);
      border-right: 2px solid rgba(27, 61, 47, 0.4);
    }

    .comparison-table tbody tr:last-child td {
      border-bottom: none;
    }

    .comparison-table tbody tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .comparison-table tbody tr:hover td.col-ps {
      background: rgba(27, 61, 47, 0.18);
    }

    
    .faq-section {
      padding: var(--space-4xl) 0;
      background: var(--bg-light);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 var(--container-padding);
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      counter-reset: pre-intent-faq-question;
    }

    .faq-item {
      width: 100%;
      overflow: hidden;
      background: var(--bg-white);
      border: 1px solid rgba(0, 194, 178, 0.18);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      counter-increment: pre-intent-faq-question;
    }

    .faq-item:hover {
      border-color: var(--teal);
      transform: translateY(-2px);
    }

    .faq-item.open {
      border-color: var(--gold);
      transform: translateY(-4px);
      background: rgba(201, 168, 76, 0.02);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 1.25rem 1.75rem;
      cursor: pointer;
      font-family: var(--font-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.4;
      color: var(--teal);
      gap: 12px;
      user-select: none;
      width: 100%;
      background: none;
      border: 0;
      text-align: left;
      transition: color 0.3s ease;
    }

    .faq-q::before {
      content: counter(pre-intent-faq-question, decimal-leading-zero);
      flex: 0 0 auto;
      min-width: 2rem;
      color: rgba(17, 24, 39, 0.35);
      font-size: 0.875rem;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.02em;
    }

    .faq-q:hover {
      color: var(--teal);
    }

    .faq-item.open .faq-q {
      color: #FBC02D;
    }

    .faq-q .faq-arrow {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      margin-left: auto;
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      transform: rotate(180deg);
    }

    .faq-q .faq-arrow svg {
      width: 100%;
      height: 100%;
    }

    .faq-q>span:first-child {
      font-size: 16px;
    }

    .faq-item.open .faq-q .faq-arrow {
      transform: rotate(360deg);
    }

    .faq-item.open .faq-q .faq-arrow polygon {
      stroke: #D4AF37;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 1.75rem;
      transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), padding 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    }

    .faq-item.open .faq-a {
      max-height: 500px;
      opacity: 1;
      padding: 0 1.75rem 1.75rem;
    }

    .faq-a p {
      font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
      line-height: 1.75;
      color: var(--text-gray);
    }

    @media (max-width: 768px) {
      .faq-list {
        padding: 0;
      }

      .faq-q::before {
        content: none;
        display: none;
      }
    }

    
    .trust-section {
      padding: var(--space-4xl) 0;
      background: var(--bg-white);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .trust-item {
      text-align: center;
      padding: var(--space-xl);
    }

    .trust-item__icon {
      width: 40px;
      height: 40px;
      margin: 0 auto var(--space-md);
    }

    .trust-item__icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--teal);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .trust-item h4 {
      margin-bottom: 0.375rem;
      font-size: 1rem;
    }

    .trust-item p {
      font-size: 0.875rem;
      line-height: 1.6;
    }

    
    .scope-section {
      background: var(--bg-white);
      padding: var(--space-2xl) 0 var(--space-4xl);
    }

    @media (max-width: 640px) {
      .scope-section .container>div:first-child {
        grid-template-columns: 1fr !important;
      }
    }

    
    .cta-break {
      padding: var(--space-4xl) 0;
      text-align: center;
    }

    .cta-break .btn-row {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cta-break p {
      margin-top: var(--space-md);
      font-size: 0.8125rem;
    }

    .cta-microcopy {
      text-align: center;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--teal);
      margin-top: 16px;
      letter-spacing: 0.04em;
    }

    
    .footer {
      color: var(--text-white);
      padding: var(--space-4xl) 0 var(--space-xl);
    }

    .footer__top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: var(--space-2xl);
      padding-bottom: var(--space-3xl);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer__column h5 {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #C9A84C;
      margin-bottom: var(--space-lg);
    }

    .footer__column ul {
      list-style: none;
    }

    .footer__column li {
      margin-bottom: 0.5rem;
    }

    .footer__column a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.65);
      transition: color var(--transition-fast);
    }

    .footer__column a:hover {
      color: rgba(255, 255, 255, 0.9);
    }

    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: var(--space-xl);
    }

    .footer__bottom p {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.3);
    }

    
    .inquiry-form {
      max-width: 480px;
      margin: 0 auto;
      padding: var(--space-xl);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .inquiry-form h4 {
      color: var(--text-white);
      margin-bottom: var(--space-sm);
    }

    .inquiry-form p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: var(--space-lg);
    }

    .inquiry-form .form-group {
      margin-bottom: var(--space-md);
    }

    .inquiry-form label {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .inquiry-form input,
    .inquiry-form textarea {
      width: 100%;
      padding: 0.625rem 0.875rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-white);
      font-family: var(--font-body);
      font-size: 0.875rem;
    }

    .inquiry-form input:focus,
    .inquiry-form textarea:focus {
      outline: none;
      border-color: var(--teal);
    }

    .inquiry-form textarea {
      resize: vertical;
      min-height: 60px;
    }

    
    @media (max-width: 1024px) {
      .tier-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
      }

      .steps-grid {
        grid-template-columns: 1fr 1fr;
      }

      .das-domains {
        grid-template-columns: 1fr;
      }

      .das-domain:last-child {
        grid-column: auto;
      }

      .das-domain:last-child .das-domain__categories {
        grid-template-columns: 1fr 1fr;
      }

      
    }

    @media (max-width: 768px) {
      .hero {
        padding: 6rem 0 3rem;
      }

      .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }

      .toc__grid {
        grid-template-columns: 1fr 1fr;
      }

      .nav__links {
        display: none;
      }

      .nav__hamburger {
        display: flex;
      }

      .nav__links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 29, 54, 0.97);
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0, 194, 178, 0.12);
      }

      .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }

      .footer__top {
        grid-template-columns: 1fr 1fr;
      }

      .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
      }

      .cc-contacts-row {
        flex-direction: column;
      }

      .cc-obj-row {
        flex-direction: column;
      }

      .cc-obj-you {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
      }

      .cc-deal-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .das-domain:last-child .das-domain__categories {
        grid-template-columns: 1fr;
      }

      .footer__top {
        grid-template-columns: 1fr;
      }

      .toc__grid {
        grid-template-columns: 1fr;
      }
    }

    

    
    .das-product-accent .overline--teal {
      color: #1B3D2F;
    }

    .das-product-accent .overline--gold {
      color: var(--gold);
    }

    
    

    
    .das-domain {
      border-color: #22C55E;
    }

    
    .das-section-light::before {
      background: linear-gradient(90deg, transparent 5%, #1B3D2F 30%, #1B3D2F 70%, transparent 95%) !important;
    }

    
    .das-section-light .das-halo {
      background: radial-gradient(ellipse 80% 100% at 50% 0%,
          rgba(27, 61, 47, 0.12) 0%, rgba(27, 61, 47, 0.06) 40%, transparent 75%) !important;
    }

    
    .step .step__number {
      color: var(--gold) !important;
      opacity: 1 !important;
    }

    .step h4,
    .step .steps-title {
      color: #22C55E !important;
    }

    .step p:not(.step__number) {
      color: #1B3D2F !important;
    }

    
    .trust-item__icon svg {
      stroke: var(--gold) !important;
    }

    .trust-item h4 {
      color: #22C55E !important;
    }

    .trust-item p {
      color: #1B3D2F !important;
    }

    
    .das-product-accent .section-header h2,
    .das-product-accent .section-header h3 {
      color: #22C55E;
    }

    .das-product-accent .section-header p {
      color: #1B3D2F;
    }

    .problem-section .section-header h2,
    .problem-section .section-header h3 {
      color: #22C55E;
    }

    .problem-section .section-header p,
    .problem__content p {
      color: #1B3D2F;
    }

    .problem__content strong {
      color: #22C55E;
      font-weight: 700;
    }

    .steps-section .section-header h2,
    .steps-section .section-header h3 {
      color: #22C55E;
    }

    .tier-section .section-header h2,
    .tier-section .section-header h3 {
      color: #22C55E;
    }

    .tier-section .section-header p {
      color: #1B3D2F;
    }

    .faq-section .section-header h2,
    .faq-section .section-header h3 {
      color: #22C55E;
    }

    .trust-section .section-header h2,
    .trust-section .section-header h3 {
      color: #22C55E;
    }

    .competitive-section .section-header h2,
    .competitive-section .section-header h3,
    .section--dark .section-header h3 {
      color: var(--text-white);
    }

    
    

    
    .dossier-multiplier {
      color: #1B3D2F;
    }

    .dossier-multiplier .gold {
      color: #22C55E;
    }

    
    .cta-microcopy {
      color: #1B3D2F !important;
    }

    
    .depth-toggle {
      color: #1B3D2F;
      border-color: #1B3D2F;
    }

    .depth-toggle:hover {
      background: rgba(27, 61, 47, 0.06);
    }

    

    
    .brief-block__anchor a {
      color: #1B3D2F;
    }

    .brief-block__anchor a:hover {
      border-bottom-color: #1B3D2F;
    }

    
    .brief-block__list--green li::before {
      background: #1B3D2F;
    }

    
    .comparison-table thead th.col-ps {
      border-left-color: rgba(27, 61, 47, 0.4);
      border-right-color: rgba(27, 61, 47, 0.4);
    }

    .comparison-table thead th.col-ps::after {
      background: #1B3D2F;
    }

    .comparison-table tbody td.col-ps {
      background: rgba(27, 61, 47, 0.07);
      border-left: 2px solid rgba(27, 61, 47, 0.25);
      border-right: 2px solid rgba(27, 61, 47, 0.25);
    }

    .comparison-table tbody tr:hover td.col-ps {
      background: rgba(27, 61, 47, 0.12);
    }

    
    .tier-card--green {
      background: #0E2A1C;
      border: 2px solid #22C55E;
      box-shadow:
        0 0 0 4px rgba(34,197,94,0.08),
        0 12px 40px rgba(27,61,47,0.45),
        0 0 80px rgba(34,197,94,0.06);
    }

    .tier-card--green:hover {
      box-shadow:
        0 0 0 4px rgba(34,197,94,0.14),
        0 20px 56px rgba(27,61,47,0.5),
        0 0 100px rgba(34,197,94,0.1);
      transform: translateY(-3px);
    }

    .tier-card--green .tier-card__label {
      color: #22C55E;
    }

    .tier-card--green .tier-card__name {
      color: #FFFFFF;
    }

    .tier-card--green .tier-card__price .founding {
      color: #FFFFFF;
    }

    .tier-card--green .tier-card__price .original {
      color: rgba(255, 255, 255, 0.35);
    }

    .tier-card--green .tier-card__price .rate {
      color: rgba(34, 197, 94, 0.75);
    }

    .tier-card--green .tier-card__upgrade-label {
      color: rgba(255, 255, 255, 0.6) !important;
      border-top-color: rgba(34, 197, 94, 0.18) !important;
    }

    .tier-card--green .tier-card__items li {
      color: rgba(255, 255, 255, 0.75);
    }

    .tier-card--green .tier-card__cta {
      background: #22C55E;
      color: #0B1D36;
      border: none;
      font-weight: 700;
    }

    .tier-card--green .tier-card__cta:hover {
      background: #28D966;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(34,197,94,0.4);
    }

    .tier-card--green .tier-card__cta.svg-btn {
      display: flex;
      justify-content: center;
      width: 100%;
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      line-height: 0;
    }

    .tier-card--green .tier-card__cta.svg-btn:hover {
      background: transparent;
      box-shadow: none;
      transform: translateY(-2px);
    }

    .tier-card--green .tier-card__cta.svg-btn:focus-visible {
      outline: 2px solid rgba(134,231,170,0.72);
      outline-offset: 6px;
    }

    .tier-card--green .tier-card__cta.svg-btn svg {
      width: min(100%, 240px);
      height: auto;
    }

    .tier-card--green .tier-card__items li::before {
      background: #22C55E !important;
      border-radius: 50%;
    }


    .faq-a a,
    .tier-note a,
    .scope-content a,
    .das-framework__header a,
    .brief-block__anchor a,
    .brief-contents a {
      color: #1B3D2F !important;
      text-decoration: none;
      border-bottom: 1px solid rgba(27, 61, 47, 0.3);
      transition: border-color 0.2s;
    }

    .faq-a a:hover,
    .tier-note a:hover {
      border-bottom-color: #1B3D2F !important;
    }

    
    .c-badge {
      background: rgba(27, 61, 47, 0.25) !important;
      color: #22C55E !important;
      border-color: rgba(27, 61, 47, 0.4) !important;
    }

    

    
    .band__header--shared {
      color: #1B3D2F;
    }

    
    .comp-yes {
      background: #1B3D2F !important;
    }

    

    
    .engine-callout {
      max-width: var(--container-max);
      margin: var(--space-2xl) auto 0;
      padding: 1.5rem 2rem;
      border-left: 4px solid var(--gold);
      background: rgba(212, 175, 55, 0.04);
    }

    .engine-callout__title {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }

    .engine-callout__text {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      color: var(--text-gray);
      line-height: 1.7;
    }

    
    .brief-contents {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .brief-block {
      margin-bottom: var(--space-2xl);
    }

    .brief-block__title {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: #22C55E;
      margin-bottom: 0.5rem;
    }

    .brief-block__sub {
      font-size: 0.9375rem;
      color: #1B3D2F;
      margin-bottom: var(--space-lg);
      line-height: 1.6;
    }

    .brief-block__list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.625rem;
    }

    .brief-block__list li {
      font-size: 0.875rem;
      color: #1B3D2F;
      padding-left: 1.5rem;
      position: relative;
      line-height: 1.5;
    }

    .brief-block__list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 8px;
      height: 8px;
    }

    .brief-block__list--green li::before {
      background: #22C55E;
    }

    .brief-block__list--gold li::before {
      background: var(--gold);
    }

    .brief-block__anchor {
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      margin-top: var(--space-md);
    }

    .brief-block__anchor a {
      color: var(--teal-dark);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .brief-block__anchor a:hover {
      border-bottom-color: var(--teal-dark);
    }

    
    .dossier-multiplier {
      font-family: var(--font-heading);
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 0.75rem;
    }

    .dossier-multiplier .gold {
      color: var(--gold);
    }

    
    .band-matrix {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

    .band {
      margin-bottom: var(--space-md);
      overflow: hidden;
      border: 1px solid #E2E8F0;
    }

    .band--premium {
      border-color: var(--gold-border);
      background: rgba(212, 175, 55, 0.03);
    }

    .band__header {
      padding: 0.875rem 1.25rem;
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: var(--bg-light);
      border-bottom: 1px solid #E2E8F0;
    }

    .band__header--shared {
      color: var(--text-gray);
    }

    .band__header--exclusive {
      color: var(--gold);
      background: rgba(212, 175, 55, 0.06);
      border-bottom-color: var(--gold-border);
    }

    .band__row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid #F1F5F9;
      font-size: 0.8125rem;
    }

    .band__row:last-child {
      border-bottom: none;
    }

    .band__cell {
      padding: 0.75rem 1.25rem;
      color: var(--text-gray);
      line-height: 1.5;
    }

    .band__cell:first-child {
      font-family: var(--font-heading);
      font-weight: 600;
      color: var(--text-dark);
    }

    .band__cell--elite {
      border-left: 2px solid rgba(212, 175, 55, 0.15);
    }

    .band__exclusive-item {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
      color: var(--text-gray);
      border-bottom: 1px solid rgba(212, 175, 55, 0.08);
      padding-left: 2.5rem;
      position: relative;
    }

    .band__exclusive-item:last-child {
      border-bottom: none;
    }

    .band__exclusive-item::before {
      content: '';
      position: absolute;
      left: 1.25rem;
      top: 0.875rem;
      width: 8px;
      height: 8px;
      background: var(--gold);
    }

    
    .depth-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--teal);
      background: none;
      border: 1px solid var(--teal);
      padding: 0.625rem 1.25rem;
      cursor: pointer;
      transition: all var(--transition-base);
      margin-top: var(--space-lg);
    }

    .depth-toggle:hover {
      background: rgba(0, 194, 178, 0.06);
    }

    .depth-toggle .arrow {
      transition: transform 0.3s ease;
      font-size: 0.75rem;
    }

    .depth-toggle.open .arrow {
      transform: rotate(180deg);
    }

    .depth-expandable {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .depth-expandable.open {
      max-height: 2000px;
    }

    @media (max-width: 768px) {
      .brief-block__list {
        grid-template-columns: 1fr;
      }

      .band__row {
        grid-template-columns: 1fr;
      }

      .band__cell--elite {
        border-left: none;
        border-top: 1px solid #F1F5F9;
      }
    }

    
    .objection-block {
      padding: 1.75rem 0;
      border-bottom: 1px solid #E2E8F0;
    }

    .objection-block:first-child {
      border-top: 1px solid #E2E8F0;
    }

    .objection-statement {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: #1B3D2F;
      margin-bottom: 0.625rem;
      font-style: italic;
    }

    .objection-response {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--text-gray);
    }

    
    .brief .cd-b,
    .brief .cd-h,
    .brief .ct-role,
    .brief .ct-intel,
    .brief .gr-text,
    .brief .dc-bullet,
    .brief .exec-full,
    .brief .pr,
    .brief .pd,
    .brief .disc,
    .brief .tl-l,
    .brief .tl-v,
    .brief .sec-label,
    .brief .sec-guide,
    .brief .dc-source,
    .brief .cd-lk,
    .brief .sh,
    .brief .alrt-l,
    .brief .alrt-b,
    .brief .ta-label,
    .brief .tr-l,
    .brief .tr-v,
    .brief .cg-label,
    .brief .sc-sub,
    .brief .sm-l,
    .brief .br-l,
    .brief .br-n,
    .brief .meta,
    .brief .ft span {
      font-size: max(var(--font-size, inherit), 14px);
    }

    
    .das-cat__desc {
      font-size: 0.8125rem;
    }

    .engine-callout__text {
      font-size: 0.875rem;
    }

    .tier-note {
      font-size: 0.9375rem;
    }

    .scope-content .scope-note {
      font-size: 0.875rem;
    }

    
    .tier-card__price .founding {
      font-size: 2.5rem;
    }

    
    

    
    .intel-section {
      background: var(--bg-white);
      padding: var(--space-4xl) 0;
    }

    
    .engine-bar {
      background: var(--bg-navy-core);
      padding: 1.25rem 1.75rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: var(--space-2xl);
    }

    .engine-bar__icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .engine-bar__icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: #22C55E;
      stroke-width: 1.2;
      stroke-linejoin: miter;
    }

    @keyframes enginePulse {

      0%,
      100% {
        opacity: 0.35;
        r: 4;
      }

      50% {
        opacity: 0.85;
        r: 7;
      }
    }

    @keyframes engineGlow {

      0%,
      100% {
        stop-opacity: 0.15;
      }

      50% {
        stop-opacity: 0.45;
      }
    }

    .engine-bar__text strong {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-white);
      display: block;
      margin-bottom: 0.25rem;
    }

    .engine-bar__text span {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
    }

    
    .product-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      margin: 0 0 var(--space-3xl);
      padding: 0;
      list-style: none;
    }

    .product-card {
      padding: var(--space-xl);
      display: flex;
      flex-direction: column;
    }

    .product-card--brief {
      border: 2px solid #1B3D2F;
      background: #1B3D2F;
      color: rgba(255, 255, 255, 0.8);
    }

    .product-card--brief .product-card__name {
      color: #22C55E;
    }

    .product-card--brief .product-card__desc {
      color: rgba(255, 255, 255, 0.65);
    }

    .product-card--brief .product-card__usecase {
      color: rgba(255, 255, 255, 0.4);
    }

    .product-card--brief .product-card__badge--teal {
      background: rgba(34, 197, 94, 0.15);
      color: #22C55E;
    }

    .product-card--dossier {
      border: 2px solid var(--gold);
      background: var(--bg-navy-core);
    }

    .product-card--dossier .product-card__name {
      color: var(--gold);
    }

    .product-card--dossier .product-card__desc {
      color: rgba(255, 255, 255, 0.65);
    }

    .product-card--dossier .product-card__usecase {
      color: rgba(255, 255, 255, 0.4);
    }

    .product-card--dossier .product-card__price .founding {
      color: #FFFFFF;
    }

    .product-card--dossier .product-card__price .original {
      color: rgba(255, 255, 255, 0.35);
    }

    .product-card--dossier .product-card__includes {
      color: var(--gold);
      border-top-color: rgba(212, 175, 55, 0.3);
    }

    .product-card__badge {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.75rem;
      margin-bottom: 0.75rem;
      width: fit-content;
    }

    .product-card__badge--teal {
      background: rgba(27, 61, 47, 0.1);
      color: #1B3D2F;
    }

    .product-card__badge--gold {
      background: rgba(212, 175, 55, 0.15);
      color: var(--gold);
    }

    .product-card__name {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .product-card__price {
      font-family: var(--font-heading);
      font-variant-numeric: tabular-nums;
      margin-bottom: 0.75rem;
    }

    .product-card__price .founding {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .product-card__price .original {
      font-size: 0.875rem;
      color: var(--text-gray-light);
      text-decoration: line-through;
      margin-left: 0.375rem;
    }

    .product-card__price .rate {
      display: block;
      font-size: 0.625rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 0.125rem;
    }

    .product-card__desc {
      font-size: 0.875rem;
      color: var(--text-gray);
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }

    .product-card__usecase {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--text-gray-light);
      letter-spacing: 0.04em;
      margin-top: auto;
    }

    .product-card__includes {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--accent-das);
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--accent-das);
    }

    
    .stage {
      margin-bottom: var(--space-2xl);
      overflow: hidden;
      border: 1px solid #E2E8F0;
      background: var(--bg-white);
    }

    .stage--dossier {
      border-color: rgba(212, 175, 55, 0.3);
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, var(--bg-white) 50%);
    }

    .stage__header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      background: var(--bg-light);
      border-bottom: 1px solid #E2E8F0;
    }

    .stage--dossier .stage__header {
      background: rgba(212, 175, 55, 0.06);
      border-bottom-color: rgba(212, 175, 55, 0.15);
    }

    .stage__number {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .stage__number--teal {
      background: rgba(0, 194, 178, 0.12);
      color: var(--teal-dark);
    }

    .stage__number--gold {
      background: var(--gold-bg);
      color: var(--gold-antique);
    }

    .stage__info {
      flex: 1;
    }

    .stage__title {
      font-family: var(--font-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .stage--dossier .stage__title {
      color: #B8962E;
    }

    .stage__desc {
      font-size: 0.75rem;
      color: var(--text-gray);
      margin-top: 0.125rem;
    }

    .stage__tag {
      font-family: var(--font-heading);
      font-size: 0.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.2rem 0.625rem;
      flex-shrink: 0;
    }

    .stage__tag--teal {
      background: rgba(0, 194, 178, 0.1);
      color: var(--teal-dark);
    }

    .stage__tag--gold {
      background: var(--gold-bg);
      color: var(--gold-antique);
    }

    
    .stage__items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: #E2E8F0;
    }

    .stage--dossier .stage__items {
      background: rgba(212, 175, 55, 0.12);
    }

    .item-card {
      background: var(--bg-white);
      padding: 0.875rem 1rem;
    }

    .stage--dossier .item-card {
      background: #FFFDF5;
    }

    .item-card--dossier {
      background: #FFFDF5;
    }

    .item-card__dossier-badge {
      font-family: var(--font-heading);
      font-size: 0.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold-antique);
      background: var(--gold-bg);
      padding: 0.125rem 0.5rem;
      display: inline-block;
      margin-bottom: 0.375rem;
    }

    .item-card__name {
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.1875rem;
    }

    .item-card--dossier .item-card__name {
      color: #92702B;
    }

    .item-card__outcome {
      font-size: 0.6875rem;
      color: var(--text-gray-light);
      font-style: italic;
      margin-bottom: 0.4375rem;
      line-height: 1.4;
    }

    .item-card__depths {
      display: flex;
      gap: 0.375rem;
      flex-wrap: wrap;
    }

    .depth-pill {
      font-family: var(--font-heading);
      font-size: 0.5625rem;
      font-weight: 700;
      padding: 0.1875rem 0.5rem;
      letter-spacing: 0.02em;
    }

    .depth-pill--brief {
      background: rgba(0, 194, 178, 0.08);
      color: var(--teal-dark);
    }

    .depth-pill--dossier {
      background: var(--gold-bg);
      color: var(--gold-antique);
    }

    
    .upgrade-path {
      background: var(--bg-navy-core);
      padding: var(--space-xl) var(--space-2xl);
      margin-top: var(--space-2xl);
      color: var(--text-white);
    }

    .upgrade-path__title {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--accent-das);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 0;
      margin-bottom: 0.75rem;
    }

    .upgrade-path__text {
      font-size: 0.9375rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin-top: 0;
      margin-bottom: var(--space-lg);
    }

    .upgrade-path__text strong {
      color: var(--accent-das);
      font-weight: 700;
    }

    .upgrade-math {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: var(--space-lg);
      padding-top: var(--space-lg);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .upgrade-math__item {
      text-align: center;
    }

    .upgrade-math__label {
      font-family: var(--font-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0;
      margin-bottom: 0.25rem;
    }

    .upgrade-math__value {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-white);
      font-variant-numeric: tabular-nums;
      margin: 0;
    }

    .upgrade-math__detail {
      font-size: 0.6875rem;
      color: rgba(255, 255, 255, 0.35);
      margin-top: 0.125rem;
      margin-bottom: 0;
    }

    
    .intel-bottom-note {
      /* background: var(--bg-light); */
      padding: 1.25rem 1.5rem;
      margin-top: var(--space-2xl);
      font-size: 0.8125rem;
      color: var(--text-gray);
      line-height: 1.6;
      text-align: center;
    }

    @media (max-width: 768px) {
      .product-cards {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        margin-bottom: 1px;
        min-width: 560px;
      }

      .product-card {
        padding: var(--space-md);
        font-size: 0.8125rem;
      }

      .product-card__name {
        font-size: 0.875rem;
      }

      .product-card__desc {
        font-size: 0.75rem;
      }

      .product-card__usecase {
        font-size: 0.625rem;
      }

      .product-card__includes {
        font-size: 0.6875rem;
      }

      .product-card__badge {
        font-size: 0.5rem;
      }

      .intel-scroll-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .intel-table-wrap {
        margin-top: 0 !important;
        overflow-x: visible;
      }

      .stage__items {
        grid-template-columns: 1fr;
      }

      .stage__header {
        flex-wrap: wrap;
      }

      .stage__tag {
        margin-top: 0.5rem;
      }

      .upgrade-math {
        grid-template-columns: 1fr;
        gap: var(--space-md);
      }

      .engine-bar {
        flex-direction: column;
        text-align: center;
      }
    }

    
    .intel-table-wrap {
      margin-top: var(--space-xl);
      overflow: hidden;
      border: 1px solid #E2E8F0;
    }

    .intel-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--font-body);
      font-size: 0.875rem;
      table-layout: fixed;
    }

    
    .intel-th--cap {
      width: 26%;
    }

    .intel-th--brief {
      width: 32%;
    }

    .intel-th--dossier {
      width: 42%;
    }

    
    .intel-th {
      padding: 1rem 1.125rem;
      text-align: left;
      vertical-align: bottom;
      background: var(--bg-navy-core);
      border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    }

    .intel-th--cap {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #FFFFFF;
      vertical-align: middle;
    }

    .intel-th--brief {
      border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .intel-th--dossier {
      background: var(--bg-navy-core);
      border-left: 2px solid var(--gold);
      position: relative;
    }

    .intel-th-name {
      font-family: var(--font-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: #22C55E;
      line-height: 1.2;
      margin-bottom: 0.25rem;
    }

    .intel-th--dossier .intel-th-name {
      color: var(--gold);
    }

    .intel-th-sub {
      font-family: var(--font-heading);
      font-size: 0.625rem;
      font-weight: 500;
      color: #FFFFFF;
      letter-spacing: 0.04em;
    }

    .intel-th--dossier .intel-th-sub {
      color: #FFFFFF;
    }

    
    .intel-group-row td {
      padding: 8px;
      background-color: #f3f3f3;
    }

    .intel-group-label {
      font-family: var(--font-heading);
      font-size: 0.5625rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-gray-light);
      background: var(--bg-light);
      padding: 0.5rem 1.125rem;
      border-top: 1px solid #E2E8F0;
      border-bottom: 1px solid #E2E8F0;
    }

    .intel-group-label--dossier {
      color: #D4AF37;
      background: rgba(212, 175, 55, 0.07);
      border-color: rgba(212, 175, 55, 0.2);
    }

    
    .intel-cap,
    .intel-brief,
    .intel-dossier {
      padding: 0.625rem 1.125rem;
      vertical-align: middle;
      border-bottom: 1px solid #F1F5F9;
      transition: background 0.15s ease;
    }

    
    .intel-cap {
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-dark);
      white-space: nowrap;
    }

    
    .intel-brief {
      font-size: 0.8125rem;
      color: #1B3D2F;
      font-weight: 500;
      border-left: 2px solid rgba(27, 61, 47, 0.85);
      background: rgba(27, 61, 47, 0.04);
    }

    .intel-row:nth-child(even) .intel-brief {
      background: rgba(27, 61, 47, 0.07);
    }

    .intel-row:hover .intel-brief {
      background: rgba(27, 61, 47, 0.10);
    }

    
    .intel-dossier {
      font-size: 0.8125rem;
      font-weight: 600;
      color: #D4AF37;
      background: rgba(212, 175, 55, 0.04);
      border-left: 2px solid rgba(212, 175, 55, 0.5);
    }

    .intel-row:nth-child(even) .intel-dossier {
      background: rgba(212, 175, 55, 0.07);
    }

    .intel-row:hover .intel-dossier {
      background: rgba(212, 175, 55, 0.12);
    }

    
    .intel-dossier--deeper {
      color: #D4AF37 !important;
      background: rgba(212, 175, 55, 0.08) !important;
      font-weight: 700;
      border-left: 2px solid rgba(212, 175, 55, 0.65) !important;
    }

    .intel-row:nth-child(even) .intel-dossier--deeper {
      background: rgba(212, 175, 55, 0.10) !important;
    }

    .intel-row:hover .intel-dossier--deeper {
      background: rgba(212, 175, 55, 0.15) !important;
    }

    
    .intel-cap--dossier {
      color: var(--text-gray-light);
      font-style: italic;
      font-weight: 500;
    }

    
    .intel-brief--dossier-only {
      color: var(--text-gray-light) !important;
      text-align: center;
      font-size: 1rem;
      background: var(--bg-light) !important;
    }

    
    .intel-dossier--exclusive {
      color: #D4AF37 !important;
      font-weight: 700;
      border-left: 2px solid rgba(212, 175, 55, 0.65) !important;
      background: rgba(212, 175, 55, 0.06) !important;
    }

    .intel-row:hover .intel-dossier--exclusive {
      background: rgba(212, 175, 55, 0.14) !important;
    }

    
    .intel-dossier--match {
      color: #1B3D2F !important;
      font-weight: 500 !important;
      background: rgba(27, 61, 47, 0.04) !important;
      border-left: 2px solid rgba(27, 61, 47, 0.85) !important;
    }

    .intel-row:nth-child(even) .intel-dossier--match {
      background: rgba(27, 61, 47, 0.07) !important;
    }

    .intel-row:hover .intel-dossier--match {
      background: rgba(27, 61, 47, 0.10) !important;
    }

    
    .intel-row:nth-child(even) .intel-cap {
      background: var(--bg-light);
    }

    .intel-row:hover .intel-cap {
      background: #EEF2F7;
    }

    @media (max-width: 768px) {
      .intel-table-wrap {
        overflow: visible !important;
        -webkit-overflow-scrolling: unset;
        border: none !important;
      }

      .intel-table {
        min-width: 560px;
      }

      .intel-cap {
        white-space: normal;
      }

      .intel-th--cap {
        width: 20%;
        background: #1B3D2F;
      }

      .intel-th--brief {
        width: 30%;
        background: #1B3D2F;
      }

      .intel-th--dossier {
        width: 50%;
      }

      .comparison-wrap {
        overflow-x: scroll;
        scrollbar-width: none;
      }

      .comparison-wrap::-webkit-scrollbar {
        display: none;
      }

      .comparison-scroll-track {
        display: none;
      }

      @media (max-width: 768px) {
        .comparison-scroll-track {
          display: block;
          width: 100%;
          height: 16px;
          background: linear-gradient(to bottom,
              transparent 0,
              transparent 6px,
              rgba(222, 184, 65, 0.2) 6px,
              rgba(222, 184, 65, 0.2) 10px,
              transparent 10px);
          position: relative;
          cursor: pointer;
          touch-action: none;
        }

        .comparison-scroll-track--top {
          margin: 0 0 10px;
        }

        .comparison-scroll-track--bottom {
          margin: 4px 0 0;
        }

        .comparison-scroll-thumb {
          position: absolute;
          top: 6px;
          left: 0;
          height: 4px;
          background: #D4AF37;
          transition: left 0.05s linear;
        }
      }
    }

    @media (max-width: 768px) {
      .intel-scroll-wrap {
        overflow-x: visible !important;
        -webkit-overflow-scrolling: auto;
      }

      .product-cards {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 0;
        min-width: 0 !important;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(226, 232, 240, 0.18);
      }

      .product-card {
        min-width: 0;
        padding: 0.85rem 0.65rem;
        border-width: 0;
      }

      .product-card--brief {
        border-right: 1px solid rgba(255, 255, 255, 0.16);
      }

      .product-card--dossier {
        border-left: 1px solid rgba(212, 175, 55, 0.45);
      }

      .product-card__badge {
        font-size: 0.45rem;
        letter-spacing: 0.06em;
        padding: 0.2rem 0.38rem;
        margin-bottom: 0.45rem;
      }

      .product-card__name {
        font-size: 0.82rem;
        line-height: 1.18;
        margin-bottom: 0.4rem;
      }

      .product-card__desc {
        font-size: 0.68rem;
        line-height: 1.45;
        margin-bottom: 0.45rem;
      }

      .product-card__usecase,
      .product-card__includes {
        font-size: 0.56rem;
        line-height: 1.35;
      }

      .product-card__includes {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
      }

      .intel-table-wrap {
        overflow: hidden !important;
        border: 1px solid #E2E8F0 !important;
      }

      .intel-table {
        display: block;
        width: 100%;
        min-width: 0 !important;
        table-layout: fixed;
      }

      .intel-table thead,
      .intel-table tbody {
        display: block;
        width: 100%;
      }

      .intel-table thead tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .intel-th--cap {
        display: none;
      }

      .intel-th--brief,
      .intel-th--dossier {
        display: block;
        width: auto !important;
        padding: 0.7rem 0.45rem;
        text-align: center;
      }

      .intel-th--brief {
        border-left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
      }

      .intel-th--dossier {
        border-left: 1px solid var(--gold);
      }

      .intel-th-name {
        font-size: 0.72rem;
        line-height: 1.15;
      }

      .intel-th-sub {
        font-size: 0.54rem;
        line-height: 1.25;
      }

      .intel-group-row {
        display: block;
      }

      .intel-group-row td {
        display: block;
      }

      .intel-group-label {
        padding: 0.55rem 0.65rem;
        text-align: center;
      }

      .intel-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        border-bottom: 1px solid #E2E8F0;
      }

      .intel-row .intel-cap {
        display: block;
        grid-column: 1 / -1;
        width: auto !important;
        padding: 0.45rem 0.65rem 0.35rem;
        border-bottom: 1px solid #E2E8F0;
        background: #F8FAFC !important;
        color: var(--text-dark);
        font-size: 0.66rem;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
      }

      .intel-row .intel-brief,
      .intel-row .intel-dossier {
        display: block;
        width: auto !important;
        min-width: 0;
        padding: 0.55rem 0.45rem 0.65rem;
        border-bottom: 0;
        font-size: 0.68rem;
        line-height: 1.38;
        text-align: left;
      }

      .intel-row .intel-brief {
        grid-column: 1;
        border-left: 0;
        border-right: 1px solid rgba(27, 61, 47, 0.35);
      }

      .intel-row .intel-dossier {
        grid-column: 2;
        border-left: 1px solid rgba(212, 175, 55, 0.55);
      }

      .intel-row .intel-brief--dossier-only {
        text-align: center;
      }
    }

    
    .component-frame {
      display: block;
      width: 100%;
      border: 0;
      background: transparent;
      overflow: hidden;
    }

    .component-frame--nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 82px;
      max-height: 82px;
      overflow: hidden;
      background: transparent;
    }

    .component-shell--nav.is-nav-open .component-frame--nav {
      max-height: calc(100vh - 1rem);
    }

    .component-frame--footer {
      min-height: 300px;
    }

    .component-frame--standard {
      min-height: 0;
      background: #0B1D36;
    }

    .component-frame--product-card {
      min-height: 340px;
    }

    .cross-section {
      background: radial-gradient(ellipse at 50% 30%, #0D3555 0%, #0C2844 50%, #0B1D36 100%);
      position: relative;
    }

    .cross-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
    }

    .cross-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 300px));
      gap: 1.5rem;
      max-width: 624px;
      margin: 0 auto;
      align-items: stretch;
      justify-content: center;
    }

    .cross-grid .component-frame {
      background: transparent;
    }

    .cross-grid .component-frame--product-card {
      width: 300px;
      max-width: 100%;
      justify-self: center;
    }

    .faq-hover-link:hover,
    .faq-hover-link:focus-visible {
      text-decoration: underline !important;
      text-underline-offset: 7px;
    }

    .component-shell {
      position: relative;
      width: 100%;
    }

    .component-shell--nav {
      height: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 1000;
    }

    .component-shell--nav .component-frame--nav {
      pointer-events: auto;
    }

    .component-shell--standard,
    .component-shell--footer {
      overflow: hidden;
    }

    .component-shell--footer {
      min-height: 300px;
      background: #0B1D36;
    }

    .component-shell--standard {
      background: #0B1D36;
    }

    .component-shell__landmark {
      display: block;
    }

    .skip-link {
      position: absolute;
      top: 1rem;
      left: 1rem;
      z-index: 1001;
      padding: 0.75rem 1rem;
      background: var(--bg-dark);
      color: var(--text-white);
      text-decoration: none;
      transform: translateY(-200%);
      transition: transform 0.2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .component-frame--nav {
        height: 64px;
        max-height: 64px;
      }

      .component-shell--nav.is-nav-open .component-frame--nav {
        max-height: calc(100vh - 1rem);
      }

      .cross-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
      }
    }

    .back-to-top {
      position: fixed;
      right: 32px;
      bottom: 32px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(0, 194, 178, 0.25);
      background: var(--bg-dark);
      color: var(--teal);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
      z-index: 90;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      background: var(--bg-panel);
      border-color: var(--teal);
    }

    .back-to-top svg {
      width: 20px;
      height: 20px;
    }

    /* -- Reduced-motion: respect user preference -- */
    @media (prefers-reduced-motion: reduce) {
      .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .faq-a {
        transition: none !important;
      }
      .carousel-cover,
      .carousel-card {
        transition: none !important;
      }
      .tier-card {
        transition: none !important;
      }
      .depth-expand,
      .depth-expandable {
        transition: none !important;
      }
      .back-to-top {
        transition: none !important;
      }
      .faq-item {
        transition: none !important;
      }
      .prob-signal__example {
        transition: none !important;
      }
      .prob-signal__toggle::before {
        transition: none !important;
      }
    }

    /* -- SEO note block -- */
    .page-summary {
      width: 100%;
      max-width: 70ch;
      margin: 24px auto;
      background: #F7F8FA !important;
      padding: 12px 16px;
      box-sizing: border-box;
    }

    .page-summary :is(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote) {
      width: 100%;
      margin: 0 0 1rem !important;
      box-sizing: border-box;
      text-wrap: pretty;
      text-align: left !important;
    }

    .page-summary :is(h1, h2, h3, h4, h5, h6, p, li, a, span, blockquote),
    .page-summary .seo-note__heading,
    .page-summary .seo-note__subheading,
    .seo-note.page-summary :is(h1, h2, h3, h4, h5, h6, p, li, a, span, blockquote),
    .seo-note.page-summary .seo-note__heading,
    .seo-note.page-summary .seo-note__subheading {
      font-size: 0.875rem !important;
      font-weight: 400 !important;
      line-height: 1.45 !important;
      font-family: 'Open Sans', sans-serif !important;
      letter-spacing: 0 !important;
      color: #6E6E73 !important;
    }

    .page-summary :is(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote):last-child {
      margin-bottom: 0 !important;
    }

    .problem-section + .page-summary :is(h1, h2, p) {
      max-width: none;
    }

    .steps-section + .page-summary :is(h1, h2, p) {
      max-width: none;
      padding: 0;
      box-sizing: border-box;
    }
