html {
  scroll-behavior: smooth !important;
}   
.hero {
    background: #0a0a0a;
    color: #fff;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 216, 34, 0.15);
    border: 1px solid #ffd822;
    color: #ffd822;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 100px;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}
.hero-title span {
    color: #ffd822;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.hero-meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-meta-item strong {
    color: rgba(255, 255, 255, 0.85);
}
.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}
.tag-yellow {
    background: rgba(255, 216, 34, 0.2);
    color: #ffd822;
}
.tag-blue {
    background: rgba(34, 73, 255, 0.25);
    color: #93A8FF;
}
.tag-grey {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}
.sidebar {
    position: sticky;
    top: 70px;
    margin-right: 50px;
}
.toc-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #6b7280;
}
.toc-list {
    list-style: none;
}
.toc-item {
    margin-bottom: 5px;
}
.toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 500;
    color: #6b7280;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.toc-link.active {
    color: #2249ff;
    background: #eef2ff;
    border-left-color: #2249ff;
    font-weight: 700;
}
.toc-link:hover {
    color: #2249ff;
    background: #eef2ff;
    border-left-color: #2249ff;
}
.toc-number {
    font-weight: bold;
    color: #d1d5db;
    min-width: 20px;
}
.toc-divider{
    margin: 30px 0;
}
.sidebar-cta {
    background: #0a0a0a;
    border-radius: 10px;
    padding: 30px;
}
.sidebar-cta-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd822;
    margin-bottom: 10px;
}
.sidebar-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.chapter {
    scroll-margin-top: 70px;
}
.chapter-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #2249ff;
    margin-bottom: 10px;
}
.chapter-title {
    font-size: 32px;
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.lead {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 30px;
    border-left: 4px solid #ffd822;
    padding-left: 20px;
}
.stat-callout {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #0a0a0a;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}
.stat-callout-number {
    font-size: 50px;
    font-weight: bold;
    color: #ffd822;
    line-height: 1;
    white-space: nowrap;
}
.stat-callout-text{
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}
.stat-callout-source {
    font-size: 12px;
    margin-top: 6px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.4);
}
.stat-callout-source a{
    color: rgba(255, 255, 255, 0.4);
}
.stat-callout-source a:hover{
    color: #fff;
}
.highlight-box {
    background: #fffbea;
    border: 1.5px solid #ffd822;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}
.highlight-box-title {
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.highlight-box p {
    font-size: 14px;
    margin: 0;
}
.divider{
    margin: 70px 0;
}
.chapter-title span {
    color: #2249ff;
}
.def-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}
.def-card {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.def-card:hover {
    border-color: #ffd822;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.def-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffd822;
}
.def-card-number {
    font-size: 11px;
    font-weight: bold;
    color: #ffd822;
    background: #0a0a0a;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.def-card-title {
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 8px;
}
.def-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.pullquote {
    background: #0a0a0a;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}
.pullquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 160px;
    font-weight: bold;
    color: #ffd822;
    opacity: 0.15;
    line-height: 1;
}
.pullquote-text {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}
.pullquote-source {
    font-size: 12px;
    font-weight: 700;
    color: #ffd822;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.chapter h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0a0a0a;
    margin: 30px 0 15px;
    letter-spacing: -0.3px;
}
.evolution-track {
    display: flex;
    gap: 0;
    margin: 30px 0;
    overflow-x: auto;
}
.evo-step {
    flex: 1;
    min-width: 130px;
    position: relative;
}
.evo-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: #6b7280;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
}
.evo-label {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.evo-sub {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
    font-weight: 500;
}
.textcta a{
    font-size: 20px;
    font-weight: bold;
    color: #0a0a0a;
    letter-spacing: -0.3px;
}
.stages-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stage-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 10px;
    border: 1.5px solid #d1d5db;
    transition: all 0.2s;
}
.stage-badge {
    min-width: 80px;
    height: 50px;
    background: #0a0a0a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: #ffd822;
    text-align: center;
    line-height: 1.2;
}
.stage-content h4 {
    margin-bottom: 8px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: bold;
}
.stage-content p {
   font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.readiness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
}
.readiness-card {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 20px;
    border-top: 4px solid #d1d5db;
}
.readiness-card.data {
    border-top-color: #ffd822;
}
.readiness-card.adapt {
    border-top-color: #2249ff;
}
.readiness-card.skills {
    border-top-color: #0a0a0a;
}
.readiness-icon {
    font-size: 30px;
    margin-bottom: 10px;
}
.readiness-title {
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 8px;
}
.readiness-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.readiness-warning {
    background: #0a0a0a;
    color: #ffd822;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
}
.cta-banner {
    background: linear-gradient(135deg, #0a0a0a 60%, #1a1a2e 100%);
    border-radius: 14px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255, 216, 34, 0.2);
}
.cta-banner-label {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffd822;
    margin-bottom: 10px;
}
.cta-banner-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.cta-banner-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}
.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}
.btn-yellow {
    display: inline-block;
    background: #ffd822;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    transition: opacity 0.2s;
}
.btn-outline-yellow {
    display: inline-block;
    border: 2px solid #ffd822;
    color: #ffd822;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.2s;
}
.btn-outline-yellow:hover {
    background: #ffd822;
    color: #0a0a0a;
}
.use-case {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #d1d5db;
    position: relative;
    overflow: hidden;
}
.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffd822;
}
.use-case-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    color: #ffd822;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.use-case-title {
    font-size: 24px;
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.use-case-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #2249ff;
    margin-bottom: 16px;
}
.agent-flow {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #d1d5db;
}
.agent-flow-title {
    font-weight: bold;
    letter-spacing: 2px;
    color: #6b7280;
    margin-bottom: 20px;
}
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.agent-box {
    background: #0a0a0a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.agent-box-label {
    font-size: 14px;
    font-weight: 700;
    color: #ffd822;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.agent-box-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}
.flow-arrow {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin: 30px 0;
}
.agent-orchestrator {
    background: #ffd822;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
}
.agent-orchestrator-label {
    font-size: 14px;
    font-weight: bold;
    color: #0a0a0a;
    letter-spacing: 1px;
}
.agent-orchestrator-desc {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 5px;
}
.chapter ul li{
    margin-bottom: 10px;
}
.cpg-grid{
    grid-template-columns: repeat(2, 1fr);
}
.man-grid{
   grid-template-columns: repeat(4, 1fr); 
}
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}
.mistake-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}
.mistake-card.top {
    border-top: 4px solid #ffd822;
}
.mistake-pct {
    font-size: 32px;
    font-weight: bold;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 8px;
}
.mistake-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
}
.nt{
    font-size: 12px;
    color: #6b7280;
}