        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --blue: #1b75bc; --blue-dark: #14548a; --blue-mid: #2980c9;
            --blue-pale: #e8f2fb; --blue-xpale: #f0f7ff;
            --orange: #f15a29; --orange-pale: #fef0eb;
            --navy: #1a2d4a; --text: #1e293b; --muted: #64748b;
            --light: #94a3b8; --border: #e2e8f0; --surface: #f8fafc; --white: #ffffff;
            --serif: Georgia, "Times New Roman", serif;
            --sans: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
            --shadow: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.09), 0 4px 16px rgba(0,0,0,0.05);
        }
        html { scroll-behavior: smooth; }
        body { background: var(--white); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
        ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: var(--surface); } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; min-height: 72px; display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 14px 18px; padding: 12px 2.5rem; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
        .nav-left { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
        .nav-logo-img { height: 40px; width: auto; display: block; }
        .nav-divider { width: 1px; height: 32px; background: var(--border); }
        .nav-title-group { display: flex; flex-direction: column; }
        .nav-title { font-size: 15px; font-weight: 700; color: var(--blue); letter-spacing: -0.2px; line-height: 1.2; }
        .nav-subtitle { font-size: 10.5px; color: var(--muted); font-weight: 500; }
        .nav-right { display: flex; align-items: center; justify-content: flex-end; flex: 1 1 auto; min-width: 0; flex-wrap: nowrap; gap: 8px; margin-left: auto; }
        .nav-link-inline { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: color 0.2s; }
        .nav-link-inline:hover { color: var(--blue); }
        .nav-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 8px; font-size: 12.5px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; white-space: nowrap; }
        .nav-btn-primary { background: var(--blue); color: white; }
        .nav-btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(27,117,188,0.3); transform: translateY(-1px); }
        .nav-btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
        .nav-btn-outline:hover { background: var(--blue-xpale); }

        .hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 2.5rem 80px; position: relative; overflow: hidden; }
        .hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(27,117,188,0.06) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 0% 80%, rgba(241,90,41,0.04) 0%, transparent 60%); }
        .hero-pattern { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle, rgba(27,117,188,0.08) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, black 20%, transparent 80%); }
        .hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; }
        @media(max-width:1280px){nav{padding-left:1.25rem;padding-right:1.25rem;}.hero{padding-top:150px;}.nav-right{gap:6px;}.nav-btn{padding:8px 11px;font-size:12px;}}
        @media(max-width:1100px){nav{flex-wrap:wrap;}.nav-right{width:100%;justify-content:flex-start;flex-wrap:wrap;}}
        @media(max-width:900px){.hero-inner{grid-template-columns:1fr;gap:50px;}nav{padding-left:1.25rem;padding-right:1.25rem;}.hero{padding-top:190px;}.nav-right{width:100%;justify-content:flex-start;flex-wrap:wrap;}}
        .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
        .hero-eyebrow-line { width: 24px; height: 2px; background: var(--orange); border-radius: 1px; }
        .hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; color: var(--navy); margin-bottom: 22px; letter-spacing: -0.5px; }
        .hero h1 span { color: var(--blue); }
        .hero-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
        .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
        .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 9px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
        .btn-blue { background: var(--blue); color: white; } .btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,117,188,0.25); }
        .btn-outline { background: white; color: var(--blue); border: 1.5px solid var(--border); } .btn-outline:hover { border-color: var(--blue); background: var(--blue-xpale); }
        .hero-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow-lg); }
        .hero-card-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
        .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
        .stat-item { background: var(--surface); border-radius: 12px; padding: 16px; border: 1px solid var(--border); }
        .stat-val { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
        .stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; font-weight: 500; }
        .stat-item.wide { grid-column: span 2; }
        .hero-badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
        .hbadge { font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
        .hbadge-blue { background: var(--blue-pale); color: var(--blue); }
        .hbadge-orange { background: var(--orange-pale); color: var(--orange); }
        .hbadge-navy { background: #eef1f7; color: var(--navy); }
        strong { font-weight: 700; color: var(--navy); }
        em { font-style: italic; color: var(--navy); }
        .accent-underline { text-decoration: underline; text-decoration-color: rgba(241,90,41,0.45); text-decoration-thickness: 2px; text-underline-offset: 3px; }

        .overview { background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
        @media(max-width:900px){.overview-grid{grid-template-columns:1fr;}}
        .info-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-sm); }
        .info-card-kicker { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
        .info-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
        .info-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
        .info-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
        .info-list li { font-size: 13.5px; color: var(--muted); line-height: 1.6; padding-left: 18px; position: relative; }
        .info-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); position: absolute; top: 8px; left: 0; }
        .evolution-grid { display: grid; grid-template-columns: 0.95fr 1.35fr; gap: 24px; margin-top: 52px; align-items: stretch; }
        @media(max-width:900px){.evolution-grid{grid-template-columns:1fr;}}
        .evolution-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm); }
        .evolution-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
        .evolution-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
        .evolution-note { margin-top: 18px; padding: 16px 18px; border-radius: 14px; background: var(--blue-xpale); border: 1px solid rgba(27,117,188,0.12); font-size: 13.5px; color: var(--navy); line-height: 1.65; }

        .workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
        @media(max-width:980px){.workflow-grid{grid-template-columns:repeat(2,1fr);}}
        @media(max-width:640px){.workflow-grid{grid-template-columns:1fr;}}
        .step-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-sm); }
        .step-num { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-pale); color: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; }
        .step-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
        .step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

        section { padding: 96px 2.5rem; }
        .container { max-width: 1100px; margin: 0 auto; }
        .sec-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
        .sec-eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--orange); border-radius: 1px; }
        .sec-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
        .sec-sub { font-size: 15.5px; color: var(--muted); max-width: 980px; line-height: 1.7; }

        .scoring { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .scoring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
        @media(max-width:800px){.scoring-grid{grid-template-columns:1fr;}}
        .score-card { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
        .score-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .score-card-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 14px; }
        .score-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
        .score-icon-blue { background: var(--blue-pale); }
        .score-icon-green { background: #e6f9f2; }
        .score-card-head-text h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 4px; }
        .score-card-head-text p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
        .score-card-body { padding: 24px 28px; }
        .math-box { background: var(--blue-xpale); border: 1px solid rgba(27,117,188,0.15); border-radius: 10px; padding: 14px 16px; margin-bottom: 14px; text-align: center; font-size: 14px; overflow-x: auto; font-family: "Cambria Math", "Times New Roman", serif; }
        .math-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
        .math-label-spaced { margin-top: 20px; }
        .tier-list { list-style: none; }
        .tier-list li { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--muted); }
        .tier-list li:last-child { border-bottom: none; }
        .tier-chip { font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; padding: 3px 10px; border-radius: 5px; min-width: 84px; text-align: center; flex-shrink: 0; }
        .t-diamond { background: #dbeafe; color: #1d4ed8; }
        .t-platinum { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
        .t-gold { background: #fef3c7; color: #92400e; }
        .t-silver { background: #e0f2fe; color: #0369a1; }
        .t-bronze { background: #fee2e2; color: #991b1b; }
        .t-remediation { background: #f1f5f9; color: #64748b; border: 1px solid var(--border); }
        .risk-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
        .risk-pill { font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; border: 1.5px solid transparent; }
        .rl-low { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
        .rl-mod { background: #fef9c3; color: #854d0e; border-color: #fde68a; }
        .rl-high { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }
        .rl-vhigh { background: #ede9fe; color: #6d28d9; border-color: #ddd6fe; }
        .small-label { font-size: 13px; color: var(--muted); margin: 12px 0 8px; line-height: 1.55; }
        .score-note { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

        .delphi { background: white; }
        .delphi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
        @media(max-width:900px){.delphi-grid{grid-template-columns:1fr;}}
        .delphi-card { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s; }
        .delphi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .delphi-card-top { height: 5px; }
        .dc-blue { background: var(--blue); } .dc-orange { background: var(--orange); } .dc-navy { background: var(--navy); }
        .delphi-card-body { padding: 28px; }
        .delphi-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 16px; user-select: none; }
        .delphi-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
        .delphi-card ul { padding-left: 18px; }
        .delphi-card li { font-size: 13.5px; color: var(--muted); margin-bottom: 10px; line-height: 1.6; }
        .alert-banner { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 11px 14px; font-size: 12.5px; color: #92400e; margin-top: 18px; }
        .delphi-score-note { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
        .likert-bars { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
        .lb-row { display: flex; align-items: center; gap: 10px; }
        .lb-num { font-size: 12px; font-weight: 700; color: var(--light); width: 14px; text-align: center; }
        .lb-bg { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
        .lb-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), #4da6e8); }
        .lb-fill-20 { width: 20%; }
        .lb-fill-40 { width: 40%; }
        .lb-fill-60 { width: 60%; }
        .lb-fill-80 { width: 80%; }
        .lb-fill-100 { width: 100%; }
        .lb-desc { font-size: 11.5px; color: var(--muted); min-width: 104px; }
        .consensus-list { display: flex; flex-direction: column; gap: 14px; }
        .ci { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
        .ci strong { color: var(--navy); font-weight: 600; display: block; margin-bottom: 2px; }

        .cta-section { background: var(--navy); padding: 90px 2.5rem; text-align: center; position: relative; overflow: hidden; }
        .cta-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(27,117,188,0.4) 0%, transparent 70%); }
        .cta-inner { position: relative; z-index: 1; }
        .cta-logo { height: 48px; margin: 0 auto 28px; display: block; opacity: 0.85; filter: brightness(0) invert(1); }
        .cta-section h2 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); color: white; margin-bottom: 14px; }
        .cta-section p { font-size: 15.5px; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
        .cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
        .btn-orange { background: var(--orange); color: white; }
        .btn-orange:hover { background: #d94e20; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,90,41,0.3); }
        .btn-ghost-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
        .btn-ghost-light:hover { background: rgba(255,255,255,0.08); color: white; transform: translateY(-2px); }

        footer { background: #f0f4f8; border-top: 1px solid var(--border); padding: 28px 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
        .footer-left { display: flex; align-items: center; gap: 16px; }
        .footer-logo { height: 32px; opacity: 0.75; }
        .footer-text { font-size: 13px; color: var(--muted); }
        .footer-text strong { color: var(--text); }
        .footer-right { display: flex; gap: 8px; }
        .footer-tag { font-size: 11px; font-weight: 600; color: var(--muted); border: 1px solid var(--border); background: white; border-radius: 5px; padding: 3px 10px; }

        .fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        @media(max-width:640px){ nav { padding: 12px 1rem; } section { padding: 72px 1.25rem; } footer { flex-direction: column; align-items: flex-start; } .nav-right { gap: 10px; } .nav-link-inline { display: none; } .hero { padding-top: 235px; } .nav-btn { padding: 8px 14px; } }
