/* MassiveGRID — Cyber-security framework pages (shared base) */
.ccc-hero {
position: relative; min-height: 80vh; display: flex; flex-direction: column;
justify-content: center; padding: 10rem 3rem 5rem; z-index: 1; text-align: center;
}
.ccc-hero-content { max-width: 950px; margin: 0 auto; }
.ccc-hero .section-label { margin-bottom: 1.5rem; }
.ccc-hero h1 {
font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.08;
margin-bottom: 1.5rem; letter-spacing: -0.03em;
animation: fadeInUp 0.8s ease forwards;
}
.ccc-hero h1 .gradient-text {
background: var(--gradient-primary);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ccc-hero p {
font-size: 1.2rem; color: var(--text-secondary); max-width: 750px;
margin: 0 auto 3rem; line-height: 1.8;
animation: fadeInUp 0.8s ease 0.15s forwards; opacity: 0;
}
.ccc-hero-stats {
display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
padding-top: 2.5rem; border-top: 1px solid var(--border-subtle);
animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0;
}
.ccc-hero-stat { text-align: center; }
.ccc-hero-stat-value {
font-family: 'Space Mono', monospace; font-size: 2.25rem; font-weight: 700;
background: var(--gradient-primary);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ccc-hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.25rem; }
.ccc-frameworks {
position: relative; z-index: 1; padding: 4rem 3rem;
background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
border-bottom: 1px solid var(--border-subtle);
}
.ccc-frameworks-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ccc-frameworks h2 { font-size: 1rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
.ccc-badges {
display: flex; justify-content: center; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.ccc-badge {
display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
padding: 1.25rem 1.75rem; background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 14px; min-width: 130px;
}
.ccc-badge-icon {
width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
justify-content: center; font-size: 1.2rem;
background: rgba(245, 166, 35, 0.1); border: 1px solid rgba(245, 166, 35, 0.2);
}
.ccc-badge-icon.blue { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
.ccc-badge-icon.green { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.ccc-badge-icon.purple { background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.2); }
.ccc-badge-name { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.ccc-badge-desc { font-size: 0.7rem; color: var(--text-muted); }
.ccc-section {
position: relative; z-index: 1; padding: 6rem 3rem;
}
.ccc-section:nth-child(even) { background: var(--bg-secondary); }
.ccc-section-inner { max-width: 1400px; margin: 0 auto; }
.ccc-section-header {
display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem;
}
.ccc-section-icon {
width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem; background: var(--accent-gold-dim);
border: 1px solid rgba(245, 166, 35, 0.2);
}
.ccc-section-icon.blue { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }
.ccc-section-icon.purple { background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.2); }
.ccc-section-icon.green { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); }
.ccc-section-title { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }
.ccc-section-subtitle { font-size: 1rem; color: var(--text-muted); }
.ccc-section-desc {
font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
max-width: 800px; margin-bottom: 3rem;
}
.ccc-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 1.5rem;
}
.ccc-card {
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 16px; padding: 2rem; position: relative; overflow: hidden;
transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.ccc-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease;
}
.ccc-card:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-3px); }
.ccc-card:hover::before { opacity: 1; }
.ccc-card-icon {
width: 44px; height: 44px; border-radius: 11px; display: flex;
align-items: center; justify-content: center; font-size: 1.25rem;
margin-bottom: 1.25rem;
}
.ccc-card-icon.gold { background: var(--accent-gold-dim); border: 1px solid rgba(245, 166, 35, 0.2); }
.ccc-card-icon.blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.ccc-card-icon.purple { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.2); }
.ccc-card-icon.green { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); }
.ccc-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.ccc-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.ccc-card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ccc-card-tag {
font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.65rem; border-radius: 100px;
background: rgba(245, 166, 35, 0.08); color: var(--accent-gold);
border: 1px solid rgba(245, 166, 35, 0.15);
}
.ccc-card-tag.blue { background: rgba(59, 130, 246, 0.08); color: var(--accent-blue); border-color: rgba(59, 130, 246, 0.15); }
.ccc-card-tag.green { background: rgba(34, 197, 94, 0.08); color: var(--accent-green); border-color: rgba(34, 197, 94, 0.15); }
.ccc-card-tag.purple { background: rgba(168, 85, 247, 0.08); color: var(--accent-purple); border-color: rgba(168, 85, 247, 0.15); }
.ccc-grid-wide {
display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
gap: 1.5rem;
}
.ccc-card-wide {
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden;
transition: all 0.3s ease; backdrop-filter: blur(10px);
}
.ccc-card-wide::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: var(--gradient-primary); opacity: 0; transition: opacity 0.3s ease;
}
.ccc-card-wide:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-3px); }
.ccc-card-wide:hover::before { opacity: 1; }
.ccc-card-wide h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.ccc-card-wide p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.ccc-card-wide ul { list-style: none; padding: 0; margin: 0; }
.ccc-card-wide ul li {
font-size: 0.85rem; color: var(--text-secondary); padding: 0.4rem 0;
padding-left: 1.5rem; position: relative;
}
.ccc-card-wide ul li::before {
content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold);
}
/* Section center variant */
.ccc-section-center { text-align: center; }
.ccc-section-center .ccc-section-desc { margin-left: auto; margin-right: auto; }
/* Comparison table */
.ccc-comparison {
position: relative; z-index: 1; padding: 6rem 3rem; background: var(--bg-secondary);
}
.ccc-comparison-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.ccc-comparison h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.ccc-comparison > p, .ccc-comparison-inner > p {
color: var(--text-secondary); font-size: 1.1rem; max-width: 700px;
margin: 0 auto 3rem; line-height: 1.7;
}
.ccc-table-wrap {
overflow-x: auto; border-radius: 16px; border: 1px solid var(--border-subtle);
background: var(--bg-card); backdrop-filter: blur(10px);
}
.ccc-table { width: 100%; border-collapse: collapse; text-align: left; }
.ccc-table thead th {
padding: 1.25rem 1.5rem; font-size: 0.85rem; font-weight: 700;
text-transform: uppercase; letter-spacing: 0.08em;
color: var(--text-muted); border-bottom: 1px solid var(--border-subtle);
background: rgba(15, 23, 42, 0.5);
}
.ccc-table thead th:first-child { border-radius: 16px 0 0 0; }
.ccc-table thead th:last-child { border-radius: 0 16px 0 0; }
.ccc-table tbody td {
padding: 1rem 1.5rem; font-size: 0.9rem; color: var(--text-secondary);
border-bottom: 1px solid var(--border-subtle);
}
.ccc-table tbody tr:last-child td { border-bottom: none; }
.ccc-table tbody td:first-child { font-weight: 600; color: var(--text-primary); }
.ccc-table .highlight { background: rgba(245, 166, 35, 0.04); }
.ccc-table .cert-badge {
display: inline-block; padding: 0.2rem 0.6rem; border-radius: 6px;
font-size: 0.75rem; font-weight: 700; font-family: 'Space Mono', monospace;
}
.ccc-table .cert-ccc {
background: rgba(59, 130, 246, 0.1); color: var(--accent-blue);
border: 1px solid rgba(59, 130, 246, 0.2);
}
.ccc-table .cert-cccplus {
background: rgba(245, 166, 35, 0.1); color: var(--accent-gold);
border: 1px solid rgba(245, 166, 35, 0.2);
}
.ccc-table .status-check { color: var(--accent-green); font-weight: 700; font-size: 1.1rem; text-align: center; }
/* Pathway steps */
.ccc-pathway { position: relative; z-index: 1; padding: 6rem 3rem; }
.ccc-pathway-inner { max-width: 1200px; margin: 0 auto; }
.ccc-pathway-header { text-align: center; margin-bottom: 3.5rem; }
.ccc-pathway-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.ccc-pathway-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 750px; margin: 0 auto; line-height: 1.7; }
.ccc-pathway-steps {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative;
}
.ccc-pathway-step {
position: relative; padding: 2.5rem 2rem; background: var(--bg-card);
border: 1px solid var(--border-subtle); border-radius: 16px;
transition: border-color 0.3s ease;
}
.ccc-pathway-step:hover { border-color: rgba(245, 166, 35, 0.3); }
.ccc-pathway-step-number {
font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1px;
margin-bottom: 1rem;
}
.ccc-pathway-step h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.ccc-pathway-step p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.ccc-pathway-step ul { list-style: none; padding: 0; margin: 0; }
.ccc-pathway-step li {
font-size: 0.9rem; color: var(--text-secondary); padding: 0.4rem 0 0.4rem 1.5rem;
position: relative; line-height: 1.6;
}
.ccc-pathway-step li::before {
content: ''; position: absolute; left: 0; top: 0.75rem;
width: 8px; height: 8px; border-radius: 50%;
background: var(--accent-gold); opacity: 0.7;
}
/* Resources */
.ccc-resources { position: relative; z-index: 1; padding: 6rem 3rem; }
.ccc-resources-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ccc-resources h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.ccc-resources > p, .ccc-resources-inner > p {
color: var(--text-secondary); font-size: 1.1rem; max-width: 700px;
margin: 0 auto 3rem; line-height: 1.7;
}
.ccc-resource-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1rem; text-align: left;
}
.ccc-resource-link {
display: block; padding: 1.25rem 1.5rem; background: var(--bg-card);
border: 1px solid var(--border-subtle); border-radius: 12px;
text-decoration: none; transition: all 0.3s ease;
}
.ccc-resource-link:hover { border-color: rgba(245, 166, 35, 0.3); transform: translateY(-2px); }
.ccc-resource-link .resource-title { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.ccc-resource-link .resource-desc { font-size: 0.8rem; color: var(--text-muted); }
/* Trust metrics */
.ccc-trust {
position: relative; z-index: 1; padding: 6rem 3rem; background: var(--bg-secondary);
}
.ccc-trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ccc-trust h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.ccc-trust-inner > p {
color: var(--text-secondary); font-size: 1.1rem; max-width: 700px;
margin: 0 auto 3rem; line-height: 1.7;
}
.ccc-trust-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem;
}
.ccc-trust-item {
padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 14px; text-align: center;
}
.ccc-trust-value {
font-family: 'Space Mono', monospace; font-size: 1.75rem; font-weight: 700;
margin-bottom: 0.5rem;
}
.ccc-trust-value .gradient-text {
background: var(--gradient-primary);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ccc-trust-label { font-size: 0.85rem; color: var(--text-secondary); }
/* Process / Journey */
.ccc-process { position: relative; z-index: 1; padding: 6rem 3rem; }
.ccc-process-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ccc-process h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.ccc-process > p, .ccc-process-inner > p {
color: var(--text-secondary); font-size: 1.1rem; max-width: 700px;
margin: 0 auto 3rem; line-height: 1.7;
}
.ccc-steps {
display: flex; flex-direction: column; gap: 0.75rem; max-width: 900px; margin: 0 auto;
}
.ccc-step {
display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem;
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 14px; text-align: left; transition: all 0.3s ease;
}
.ccc-step:hover { border-color: rgba(245, 166, 35, 0.3); }
.ccc-step-num {
font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 700;
color: var(--accent-gold); min-width: 40px;
}
.ccc-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.ccc-step-desc { font-size: 0.85rem; color: var(--text-muted); }
/* CTA */
.ccc-cta {
position: relative; z-index: 1; padding: 7rem 3rem; text-align: center;
}
.ccc-cta-box {
max-width: 750px; margin: 0 auto; background: var(--bg-card);
border: 1px solid var(--border-subtle); border-radius: 24px;
padding: 4rem 3rem; backdrop-filter: blur(10px);
position: relative; overflow: hidden;
}
.ccc-cta-box::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
background: var(--gradient-primary);
}
.ccc-cta-box h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.ccc-cta-box p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.ccc-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* Dual Path Selector */
.ccc-paths { position: relative; z-index: 1; padding: 6rem 3rem; }
.ccc-paths-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.ccc-paths-header { margin-bottom: 3.5rem; }
.ccc-paths-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.ccc-paths-header p {
color: var(--text-secondary); font-size: 1.1rem; max-width: 750px;
margin: 0 auto; line-height: 1.8;
}
.ccc-paths-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch;
}
.ccc-path-card {
background: var(--bg-card); border: 1px solid var(--border-subtle);
border-radius: 20px; padding: 3rem 2.5rem; position: relative; overflow: hidden;
text-align: left; transition: all 0.3s ease; backdrop-filter: blur(10px);
display: flex; flex-direction: column;
}
.ccc-path-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
transition: opacity 0.3s ease;
}
.ccc-path-card:hover { transform: translateY(-4px); }
.ccc-path-card.path-a::before { background: var(--accent-blue); opacity: 1; }
.ccc-path-card.path-a:hover { border-color: rgba(59, 130, 246, 0.35); }
.ccc-path-card.path-b::before { background: var(--gradient-primary); opacity: 1; }
.ccc-path-card.path-b:hover { border-color: rgba(245, 166, 35, 0.35); }
.ccc-path-label {
font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem;
}
.ccc-path-card.path-a .ccc-path-label { color: var(--accent-blue); }
.ccc-path-card.path-b .ccc-path-label { color: var(--accent-gold); }
.ccc-exclusive-badge {
display: inline-flex; align-items: center; gap: 0.35rem;
background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(255, 200, 87, 0.10) 100%);
border: 1px solid rgba(245, 166, 35, 0.35);
color: var(--accent-gold-light); font-family: 'Space Mono', monospace;
font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
letter-spacing: 0.1em; padding: 0.25rem 0.65rem; border-radius: 100px;
white-space: nowrap; vertical-align: middle; margin-left: 0.75rem;
position: relative; top: -1px;
}
.ccc-exclusive-badge svg { flex-shrink: 0; }
.ccc-path-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
.ccc-path-card > p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.75rem; }
.ccc-path-steps { list-style: none; padding: 0; margin: 0 0 2rem; flex-grow: 1; }
.ccc-path-steps li {
font-size: 0.88rem; color: var(--text-secondary); padding: 0.5rem 0 0.5rem 2rem;
position: relative; line-height: 1.6;
}
.ccc-path-steps li::before {
content: ''; position: absolute; left: 0; top: 0.85rem;
width: 8px; height: 8px; border-radius: 50%;
}
.ccc-path-card.path-a .ccc-path-steps li::before { background: var(--accent-blue); opacity: 0.6; }
.ccc-path-card.path-b .ccc-path-steps li::before { background: var(--accent-gold); opacity: 0.6; }
.ccc-path-card .btn { align-self: flex-start; }
.ccc-paths-note {
margin-top: 2.5rem; font-size: 0.88rem; color: var(--text-muted);
max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
/* Blue button */
.btn-blue {
background: var(--accent-blue); color: #fff; border: none;
padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600;
font-size: 0.95rem; text-decoration: none; display: inline-flex;
align-items: center; gap: 0.5rem; transition: all 0.3s ease; cursor: pointer;
}
.btn-blue:hover { background: #2563eb; transform: translateY(-1px); }
/* ── Mobile & Tablet Performance (≤1024px) ── */
@media (max-width: 1024px) {
    .ccc-hero h1, .ccc-hero p, .ccc-hero-stats { animation: none; opacity: 1; }
    .ccc-card, .ccc-card-wide, .ccc-table-wrap, .ccc-cta-box,
    .ccc-path-card { backdrop-filter: none; transition: none; }
    .ccc-card::before, .ccc-card-wide::before { transition: none; }
    .ccc-card:hover, .ccc-card-wide:hover, .ccc-path-card:hover,
    .ccc-resource-link:hover, .btn-blue:hover { transform: none; }
    .ccc-step, .ccc-pathway-step, .ccc-resource-link, .btn-blue { transition: none; }
}
/* Responsive */
@media (max-width: 768px) {
.ccc-hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
.ccc-frameworks, .ccc-section, .ccc-process, .ccc-paths, .ccc-comparison, .ccc-pathway, .ccc-resources, .ccc-trust { padding: 3rem 1.5rem; }
.ccc-paths-grid { grid-template-columns: 1fr; }
.ccc-grid { grid-template-columns: 1fr; }
.ccc-grid-wide { grid-template-columns: 1fr; }
.ccc-hero-stats { gap: 2rem; }
.ccc-badges { gap: 1rem; }
.ccc-cta { padding: 4rem 1.5rem; }
.ccc-cta-box { padding: 3rem 1.5rem; }
.ccc-step { flex-direction: column; gap: 0.75rem; text-align: center; }
.ccc-pathway-steps { grid-template-columns: 1fr; }
.ccc-resource-grid { grid-template-columns: 1fr; }
.ccc-trust-grid { grid-template-columns: repeat(2, 1fr); }
.ccc-table thead th, .ccc-table tbody td { padding: 0.75rem 1rem; font-size: 0.8rem; }
.ccc-path-card { padding: 2.5rem 2rem; }
}
@media (max-width: 480px) {
.ccc-hero { padding: 7rem 1rem 3rem; }
.ccc-hero-stats { flex-direction: column; gap: 1.5rem; }
.ccc-frameworks, .ccc-section, .ccc-process, .ccc-paths, .ccc-comparison, .ccc-pathway, .ccc-resources, .ccc-trust { padding: 2.5rem 1rem; }
.ccc-badges { gap: 0.75rem; }
.ccc-badge { min-width: 100px; padding: 1rem; }
.ccc-cta { padding: 3rem 1rem; }
.ccc-steps { gap: 0.5rem; }
.ccc-trust-grid { grid-template-columns: 1fr; }
.ccc-path-card { padding: 2rem 1.5rem; }
}
