/* ---------------------------------------------
      GLOBAL / UTILITIES
----------------------------------------------*/

/* Grid layout */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 auto;
}

/* Text alignment */
.text-left {
    text-align: left;
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-start {
    align-items: flex-start;
}

.gap-20 {
    gap: 20px;
}

.gap-8 {
    gap: 8px;
}

.mt-10 {
    margin-top: 10px;
}

/* Buttons (sizes only) */
.btn-lg {
    padding: 20px 44px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

.btn-lg-secondary {
    padding: 18px 32px;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

/* Small note text */
.small-note {
    font-size: 13px;
    color: var(--text-placeholder);
    margin: 0;
    line-height: 1.4;
    max-width: 240px;
}

/* SVG block display */
.svg-block {
    display: block;
}

/* Content background */
.content {
    background-color: var(--bg-section-dark);
}

/* General ROI utilities */
.roi-pos-relative {
    position: relative;
}

.roi-center {
    text-align: center;
}

.roi-mb-30 {
    margin-bottom: 30px;
}

.roi-gray {
    color: var(--text-secondary);
}

.roi-fs-16 {
    font-size: 16px;
}

/* Margin utilities */
.mt-50 {
    margin-top: 50px;
}

/* ---------------------------------------------
      INDEX: COMPARISON & ROI (TOP)
----------------------------------------------*/

/* Comparison Section */
.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    padding: 50px;
    border-radius: 12px;
    border: 2px solid;
}

.comparison-card.before {
    border-color: var(--before-red);
}

.comparison-card.after {
    border-color: var(--success);
}

.comparison-card h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.comparison-card h3.before {
    color: var(--before-red);
}

.comparison-card h3.after {
    color: var(--success);
}

.comparison-stat {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* ROI Section (legacy two-card layout) */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1120px;
    margin: 56px auto 24px;
}

.roi-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    padding: 50px 30px;
    border-radius: 12px;
    border: 3px solid;
}

.roi-card.before {
    border-color: var(--before-red);
}

.roi-card.after {
    border-color: var(--success);
}

.roi-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
}

.roi-stat {
    margin-bottom: 15px;
    font-size: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.roi-stat strong {
    color: var(--text-primary);
    font-weight: 700;
}

.roi-number {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
}

.roi-card.before .roi-number {
    color: var(--before-red);
}

.roi-card.after .roi-number {
    color: var(--success);
}

.roi-label {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 10px;
}

section.roi .section-title {
    margin-bottom: 60px;
}

/* Citation pill styles */
.citation-pill {
    display: inline-block;
    background: rgba(160, 174, 192, 0.1);
    color: var(--text-link-subtle);
    padding: 1px 6px;
    border-radius: 6px;
    font-size: 7px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 3px;
    transition: all 0.2s ease;
    border: 1px solid rgba(160, 174, 192, 0.25);
    vertical-align: middle;
    white-space: nowrap;
}

.citation-pill:hover {
    background: rgba(160, 174, 192, 0.2);
    color: var(--text-secondary);
    border-color: rgba(160, 174, 192, 0.4);
}

/* ---------------------------------------------
      SOCIAL PROOF
----------------------------------------------*/

.social-proof {
    margin: 0px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.social-proof h3 {
    font-size: 32px;
}

.social-proof h2 {
    margin-bottom: 0;
}

section.impact .section-title {
    margin-bottom: 60px;
}

/* Stats row */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.stat {
    text-align: center;
    max-width: 187px;
    margin: 0 auto;
    padding: 0;
}

.stat-number {
    font-size: 48px;
    line-height: 40px;
    font-weight: 700;
    color: var(--el-green);
    margin-bottom: 8px;
    letter-spacing: 2%;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
}

.stat-number > span {
    font-size: 32px;
    line-height: 32px;
}

.stat-number .flex-end {
    height: 100%;
    align-self: end;
}

.stat-label {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Testimonials */
.testimonial-container {
    display: flex;
    gap: 24px;
}

.testimonial-box {
    flex: 1;
    padding: 60px;
    border-radius: 20px;
    gap: 16px;
    box-shadow:
        inset 0px 2px 0px 0px var(--glass-white-20),
        0px 2px 8px 0px rgba(0, 214, 255, 0.15),
        0px 1px 4px 0px rgba(0, 214, 255, 0.04);
    text-align: left;
    color: linear-gradient(to bottom, var(--el-cyan-alt) 0%, var(--el-cyan-alt) 5%);
}

.testimonial-quote-icon {
    font-size: 68px;
    font-weight: 600;
    line-height: 22px;
    color: var(--el-cyan);
}

.testimonial-quote {
    font-size: 20px;
    line-height: 28px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: var(--el-cyan);
    font-weight: 800;
}

/* ---------------------------------------------
      POLICY LIBRARY & EXEC DASHBOARD
----------------------------------------------*/

/* Policy Library Section */
.policy-library {
    max-width: 1120px;
    margin: 60px auto;
}

.policy-example {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--el-cyan);
    margin-bottom: 30px;
}

.policy-example h4 {
    font-size: 24px;
    color: var(--el-cyan);
    margin-bottom: 20px;
}

.policy-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.policy-check {
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    font-size: 16px;
}

.policy-check::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 700;
    margin-right: 8px;
}

.policy-category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.policy-category {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--shadow-cta-hover);
}

.policy-category h4 {
    font-size: 20px;
    color: var(--success);
    margin-bottom: 20px;
}

.policy-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-white-05);
    font-size: 15px;
    color: var(--text-secondary);
}

.policy-item:last-child {
    border-bottom: none;
}

.policy-item strong {
    color: var(--text-primary);
}

/* Executive Dashboard Section description */
.policy-description {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin: 20px auto 36px;
    max-width: 750px;
}

/* Policy grid layout (exec) */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
}

/* Policy cards */
.policy-card {
    background: rgba(10, 14, 26, 0.6);
    border: 2px solid var(--glow-cyan-15);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.policy-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 8px 0;
}

.policy-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* More Policies card */
.policy-more-card {
    grid-column: 1 / -1;
    background: rgba(10, 14, 26, 0.6);
    border: 2px dashed var(--shadow-button-hover);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.more-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--el-cyan);
    margin-bottom: 12px;
}

.more-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* More buttons */
.more-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.more-buttons .btn-cta-card-primary,
.more-buttons .btn-cta-card-secondary {
    width: 100%;
}

.more-buttons .btn-outline,
.more-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.more-buttons .btn-outline .icon {
    display: flex;
    align-items: center;
}

/* ---------------------------------------------
      DASHBOARD WIREFRAME
----------------------------------------------*/

.dashboard-wireframe {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    border-radius: 20px;
    border: 3px solid rgba(0, 212, 255, 0.5);
    padding: 0;
    max-width: 1100px;
    margin: 0 auto 50px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--glass-white-05) inset;
    overflow: hidden;
    position: relative;
    max-height: 970px;
}

.dashboard-wrapper {
    width: 412.62px;
    height: 516.6px;
    margin-left: auto;
    overflow: visible;
    position: relative;
}

.dashboard-wireframe.scaled {
    transform: scale(0.5) perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transform-origin: right center;
    margin: 0;
    width: 900px;
    max-height: 1040px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--glass-white-05) inset;
    position: absolute;
    right: 16px;
    top: -290px;
}

/* Scaled dashboard typography adjustments */
.dashboard-wireframe.scaled .dashboard-title {
    font-size: 24px;
}

.dashboard-wireframe.scaled .dashboard-menu {
    font-size: 13px;
}

.dashboard-wireframe.scaled .initiative-name {
    font-size: 11px;
}

.dashboard-wireframe.scaled .initiative-score {
    font-size: 10px;
}

.dashboard-wireframe.scaled .initiative-icon {
    font-size: 16px;
}

.dashboard-wireframe.scaled .domains-table-header div {
    font-size: 11px;
}

.dashboard-wireframe.scaled .domain-status {
    font-size: 11px;
}

/* Nav bar */
.dashboard-nav {
    background: linear-gradient(180deg, rgba(30, 37, 56, 0.95) 0%, rgba(25, 31, 48, 0.95) 100%);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--shadow-button-hover);
}

.dashboard-nav-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-logo img {
    height: 28px;
    width: auto;
}

.dashboard-menu {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.dashboard-menu-item {
    color: var(--text-menu);
}

.dashboard-menu-item.active {
    color: var(--el-cyan);
    font-weight: 600;
    border-bottom: 2px solid var(--el-cyan);
    padding-bottom: 2px;
}

.dashboard-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-user-icon {
    width: 32px;
    height: 32px;
    background: var(--shadow-cta-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Content */
.dashboard-content {
    padding: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.dashboard-title {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.dashboard-subtitle {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Score Card */
.dashboard-score-card {
    background: rgba(0, 255, 136, 0.15);
    padding: 16px 28px;
    border-radius: 10px;
    border: 2px solid var(--success);
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.dashboard-score-card.good {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--success);
}

.dashboard-score-card.warning {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--warning);
}

.dashboard-score-card.critical {
    background: rgba(255, 100, 100, 0.15);
    border-color: var(--before-red);
}

.dashboard-score-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--success);
    transition: color 0.3s ease;
}

.dashboard-score-value.good {
    color: var(--success);
}

.dashboard-score-value.warning {
    color: var(--warning);
}

.dashboard-score-value.critical {
    color: var(--before-red);
    line-height: 1;
}

.dashboard-score-label {
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Sections */
.dashboard-section {
    background: rgba(20, 25, 40, 0.7);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.dashboard-section-title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* Initiatives */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.initiative-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    min-height: 48px;
    box-sizing: border-box;
}

.initiative-card.good {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.initiative-card.warning {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.initiative-card.critical {
    background: rgba(255, 100, 100, 0.08);
    border: 1px solid rgba(255, 100, 100, 0.25);
}

.initiative-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.initiative-icon {
    font-size: 20px;
}

.initiative-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.initiative-score {
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    margin-top: 2px;
}

.initiative-score.good {
    color: var(--success);
}

.initiative-score.warning {
    color: var(--warning);
}

.initiative-score.critical {
    color: var(--before-red);
}

.initiative-sparkline {
    opacity: 0.7;
    flex-shrink: 0;
    width: 50px;
    height: 24px;
    overflow: hidden;
    display: block;
}

.domain-row svg {
    overflow: hidden;
    display: block;
    width: 80px;
    height: 30px;
    flex-shrink: 0;
}

/* Dashboard Animation Effects */
@keyframes score-pop {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes card-glow {
    0% {
        box-shadow: inset 0 0 0 rgba(0, 255, 136, 0);
    }
    35% {
        box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.25);
    }
    100% {
        box-shadow: inset 0 0 0 rgba(0, 255, 136, 0);
    }
}

.score-pop {
    animation: score-pop 1s ease-out;
    will-change: transform;
}

.card-highlight {
    animation: card-glow 1s ease-out;
}

.dashboard-score-card.card-highlight {
    animation: card-glow 1.2s ease-out;
}

/* Smooth transitions for sparklines */
.initiative-sparkline polyline,
.domain-row svg polyline {
    transition: none;
}

/* Domains table */
.domains-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.domains-legend {
    font-size: 12px;
    color: var(--text-menu);
}

.domains-legend span {
    margin-right: 15px;
}

.domains-legend span:last-child {
    margin-right: 0;
}

.domains-table-header {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 2fr;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glow-cyan-15);
    margin-bottom: 12px;
}

.domains-table-header div {
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domain-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 2fr;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-white-05);
    align-items: center;
    min-height: 58px;
    box-sizing: border-box;
}

.domain-row:last-child {
    border-bottom: none;
}

.domain-name {
    color: var(--el-cyan);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
}

.domain-count {
    color: var(--text-menu);
    font-size: 12px;
}

.domain-score {
    font-weight: 700;
    font-size: 16px;
}

.domain-score.good {
    color: var(--success);
}

.domain-score.warning {
    color: var(--warning);
}

.domain-score.critical {
    color: var(--before-red);
}

.domain-status {
    font-size: 13px;
}

.domain-status.good {
    color: var(--text-tertiary);
}

.domain-status.warning {
    color: var(--warning);
}

.domain-status.critical {
    color: var(--before-red);
}

.dashboard-blur-overlay {
    display: none;
}

.dashboard-section:last-child {
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
}

/* ---------------------------------------------
      ROTATING TEXT (3D PRISM)
----------------------------------------------*/

#rotating-text {
    display: inline-block;
    min-width: 120px;
    height: 1em;
    perspective: 1000px;
    vertical-align: -2.5px;
    position: relative;
    overflow: visible;
}

.text-prism {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

.prism-face {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    min-width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--el-cyan);
    font-weight: 600;
    padding: 8px 12px 8px 4px;
    backface-visibility: hidden;
    box-sizing: border-box;
    transition: opacity 0.8s ease-in-out;
    white-space: nowrap;
}

/* ---------------------------------------------
      HERO SECTION
----------------------------------------------*/

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        url(../svg/Vector-blue-top-right.svg) top right no-repeat,
        url(../svg/Vector-green-bottom-left.svg) bottom left no-repeat,
        url(../svg/Vector.svg) center no-repeat,
        linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-deepest) 100%);
    background-size:
        400px auto,
        400px auto,
        cover,
        cover;
    padding: 80px 40px 80px 40px;
}

.hero-content {
    max-width: 900px;
    padding-left: 20px;
    padding-right: 80px;
    text-align: left;
}

.grid-2 .hero-content {
    max-width: unset;
    padding-left: unset;
    padding-right: unset;
    text-align: unset;
}

.hero h1 {
    margin-top: 20px;
    margin-bottom: 18px;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.hero .subtitle {
    margin-bottom: 38px;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 34px;
}

/* Hero CTAs */
.hero-content .ctas {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    align-items: center;
    place-items: flex-start;
}

.hero-content .ctas .cta-s {
    width: auto;
}
.hero-content .cta-p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

/* CTA button containers */
.cta-p,
.cta-s {
    flex: 0 0 auto;
    max-width: 300px;
}

.cta-p .btn,
.cta-s.btn {
    text-align: center;
}

/* Tagline only under primary button */
.cta-tagline {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
    max-width: 300px;
    text-align: left;
}

/* CTA Container used later on page */
.cta-container {
    text-align: center;
    padding-top: 30px;
}

/* CTA Link */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--el-cyan);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Hover interaction */
.cta-link:hover {
    border-bottom-color: var(--el-cyan);
    gap: 16px;
}

/* ---------------------------------------------
      PROBLEM / SOLUTION SECTIONS
----------------------------------------------*/

/* Problem section specific */

/* Problem grid */
.problem-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.problem-card {
    max-width: 350px;
    padding: 40px 30px 30px;
    border-radius: 12px;
    border: 1px solid var(--shadow-cta-hover);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    margin-bottom: 12px;
    font-size: 48px;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--el-cyan);
}

.problem-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Solution Section */
.solution-content {
    max-width: 1120px;
    margin: 0 auto;
}

.solution-tagline {
    max-width: 640px;
    margin: 0 auto 50px;
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    column-gap: 16px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    font-size: 32px;
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--el-cyan);
}

.feature-content p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-secondary);
}

/* ---------------------------------------------
      BEFORE / AFTER GRID
----------------------------------------------*/

.two-col-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1120px;
    margin: 40px auto;
}

/* Before Box */
.before-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
    flex: 1 1 0;
    max-width: none;
    border-radius: 20px;
    padding: 60px 28px 46px 28px;
    background: rgba(255, 100, 100, 0.1);
    border: 3px solid var(--before-red);
}

.before-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    color: var(--before-red);
    display: flex;
    align-items: center;
    gap: 16px;
}

/* After Box */
.after-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex: 1 1 0;
    max-width: none;
    border-radius: 20px;
    padding: 60px 28px 46px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 255, 136, 0.1);
    border: 3px solid var(--success);
}

.after-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
    color: var(--el-green);
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Steps */
.step-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 32px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    z-index: 10;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 0;
    height: calc(100% - 10px);
    z-index: 5;
    pointer-events: none;
}

.before-box .step-item:not(:last-child)::after {
    border-left: 1px dashed var(--error);
}

.after-box .step-item:not(:last-child)::after {
    border-left: 1px dashed var(--success);
}

.red-icon {
    background: var(--before-red);
}

.green-icon {
    background: var(--success);
}

.step-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2%;
}

.step-desc-callout {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--warning);
}

/* Speech bubble style */
.step-bubble {
    color: var(--text-secondary);
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

/* Summary Boxes */
.summary-box-red,
.summary-box-green {
    margin-top: 13px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.15);
    min-height: 255px;
}

.summary-box-red {
    border-top-color: rgba(255, 100, 100, 0.3);
}

.summary-box-green {
    border-top-color: rgba(0, 255, 136, 0.3);
}

.summary-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.summary-emoji {
    font-size: 20px;
}

.summary-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
}

.summary-value-red {
    color: var(--before-red);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2%;
}

.summary-value-green {
    color: var(--el-green);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

/* ---------------------------------------------
      CTA GRID (MID + BOTTOM)
----------------------------------------------*/

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

/* Primary CTA card */
.cta-demo {
    display: flex;
    padding: 30px;
    border: 1px solid var(--el-cyan);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease;
    background: var(--bg-dark);
}

.cta-demo:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--el-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-cta-hover);
}

.cta-demo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.cta-demo-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-arrow {
    font-size: 20px;
    color: var(--el-cyan);
    flex-shrink: 0;
}

/* Red variant CTA card */
.cta-demo.red {
    border-color: rgba(255, 100, 100, 0.3);
    background: transparent;
}

.cta-demo.red:hover {
    background: rgba(255, 100, 100, 0.05);
    border-color: var(--before-red);
    box-shadow: 0 8px 24px rgba(255, 100, 100, 0.2);
}

.cta-arrow.red {
    color: var(--before-red);
}

/* Secondary CTA card */
.cta-opa {
    display: block;
    padding: 19px 30px;
    background: var(--bg-dark);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-opa:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.35);
}

.opa-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.opa-desc {
    font-size: 14px;
    color: var(--text-link-subtle);
    line-height: 1.4;
}

/* CTA Card Buttons (hero CTAs reused) */
.btn-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* OPA icon */
.btn-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

/* CTA card primary */
.btn-cta-card-primary {
    display: block;
    padding: 30px 35px;
    background: var(--bg-main);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-card-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: var(--gradient-cta);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-cta-card-primary:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-cta-hover);
}

.btn-cta-card-primary .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.btn-cta-card-primary .btn-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.btn-cta-card-primary .btn-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.4;
}

.btn-cta-card-primary .btn-arrow {
    font-size: 28px;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

/* CTA card secondary */
.btn-cta-card-secondary {
    display: block;
    padding: 24px 28px;
    background: transparent;
    border: 2px solid var(--el-cyan);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-card-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-cta-card-secondary .btn-content {
    position: relative;
    z-index: 2;
}

.btn-cta-card-secondary .btn-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--el-cyan);
    margin-bottom: 8px;
}

.btn-cta-card-secondary .btn-subtitle {
    font-size: 14px;
    color: var(--text-link-subtle);
    line-height: 1.4;
}

/* Shared shimmer effect for CTAs */
.btn-primary::before,
.btn-secondary::before,
.btn-cta-card-primary::after,
.btn-cta-card-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
    transition: left 0.5s ease;
}

.btn-cta-card-primary::after,
.btn-cta-card-secondary::before {
    transition: left 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-cta-card-primary:hover::after,
.btn-cta-card-secondary:hover::before {
    left: 100%;
}

/* Outline button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--shadow-button-hover);
    border-radius: 8px;
    text-decoration: none;
    color: var(--el-cyan);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--el-cyan);
}

/* ---------------------------------------------
      WORKFLOW SECTION
----------------------------------------------*/

section.workflow {
    background: var(--gradient-workflow);
}

section.workflow .section-title {
    margin-bottom: 0px;
    letter-spacing: 0.1px;
}

/* Flex column buttons in workflow */
section.workflow .btn-content,
section.workflow .btn-main {
    display: flex;
    align-items: flex-start;
}

/* ---------------------------------------------
      ROI SECTION – MATH BOX / CHAOS PR
----------------------------------------------*/

/* ROI Section – math box + chaos cards */
.math-box {
    max-width: 880px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid var(--before-red);
    border-radius: 12px;
    text-align: center;
}

.math-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 30px;
    margin-bottom: 15px;
}

.math-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Card titles */
.roi-card-title {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

/* Chaos stack (left) */
.chaos-stack {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Base chaos box */
.chaos-box {
    position: absolute;
    width: 88%;
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid var(--border-error);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.chaos-head {
    font-size: 12px;
    color: var(--before-red);
    font-weight: 600;
    margin-bottom: 4px;
}

.chaos-body {
    font-size: 13px;
    color: var(--text-secondary);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chaos-footer {
    font-size: 11px;
    color: var(--text-placeholder);
    margin-top: 6px;
}

/* Individual chaos positions */
.box-1 {
    top: 0;
    left: 10px;
    transform: rotate(-1deg);
}

.box-2 {
    top: 80px;
    right: 15px;
    transform: rotate(2deg);
    width: 85%;
}

.box-3 {
    top: 160px;
    left: 20px;
    transform: rotate(-2deg);
}

.box-4 {
    top: 240px;
    right: 10px;
    transform: rotate(1.5deg);
    width: 86%;
}

.box-5 {
    top: 320px;
    left: 15px;
    transform: rotate(-1.5deg);
    width: 87%;
}

.chaos-note {
    margin-top: 35px;
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
}

/* PR card (right) */
.pr-card {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #30363d;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* PR header */
.pr-header {
    background: #161b22;
    padding: 14px;
    border-bottom: 1px solid #30363d;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pr-icon-wrapper {
    background: #6e7681;
    padding: 10px;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Status row */
.pr-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pr-status-text {
    font-size: 16px;
    font-weight: 600;
    color: #f85149;
}

/* Donut chart colors */
.pr-chart-bg {
    fill: none;
    stroke: var(--text-dark-gray);
    stroke-width: 4;
}

.pr-chart-pass {
    fill: none;
    stroke: #4ade80;
    stroke-width: 4;
    stroke-dasharray: 56.5 18.85;
    transform: rotate(-90deg);
    transform-origin: center;
}

.pr-chart-fail {
    fill: none;
    stroke: var(--error-alt);
    stroke-width: 4;
    stroke-dasharray: 18.85 56.5;
    transform: rotate(-90deg);
    transform-origin: center;
    stroke-dashoffset: -56.5;
}

/* PR body & check rows */
.pr-body {
    background: #0d1117;
}

.pr-check {
    padding: 14px 20px;
    border-bottom: 1px solid #30363d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pr-service-logo {
    width: 32px;
    height: auto;
    object-fit: contain;
}

.pr-check-content {
    flex: 1;
}

/* Fail row */
.pr-check.fail .pr-check-title {
    color: #f85149;
    font-weight: 600;
}

.pr-check-icon-fail circle {
    fill: #2d1517;
}

.pr-check-icon-fail path {
    stroke: var(--error-alt);
    stroke-width: 2;
}

/* Success row */
.pr-check.success .pr-check-title {
    color: #8b949e;
}

.pr-check-icon-success circle {
    fill: #0f2818;
}

.pr-check-icon-success path {
    stroke: #22c55e;
    stroke-width: 2;
}

/* Right sidebar list */
.roi-list-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.roi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2.2;
}

/* Efficiency Box */
.efficiency-box {
    max-width: 900px;
    margin: 0px auto;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, var(--glow-cyan-15) 100%);
    border-radius: 20px;
    border: 3px solid var(--success);
    text-align: center;
}

.efficiency-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 15px;
}

.efficiency-text {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 15px;
}

.efficiency-value {
    font-size: 32px;
    color: var(--success);
    font-weight: 800;
    margin-bottom: 5px;
}

.efficiency-caption {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------------------------------------------
      INVESTORS SECTION
----------------------------------------------*/

section.investors {
    padding-left: 0px;
    padding-right: 0px;
}

section.investors .container {
    padding: 0px;
}

section.investors svg,
section.investors img {
    width: 100%;
    height: 100%;
}

section.investors .tab,
section.investors .mobile {
    display: none;
}

section.investors .desktop {
    display: block;
}

/* Investor credibility strip */
.investor-strip {
    background: linear-gradient(135deg, var(--bg-section-dark) 0%, var(--bg-card) 100%);
    border-top: 1px solid var(--glow-cyan-15);
    border-bottom: 1px solid var(--glow-cyan-15);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}

.investor-strip-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-placeholder);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    padding-left: 40px;
    z-index: 2;
}

.investor-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.investor-scroll-track {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: scroll-investors 60s linear infinite;
    white-space: nowrap;
    --scroll-width: 0px;
}

.investor-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-investors {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-width));
    }
}

.investor-item {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex-shrink: 0;
}

/* Investor with photo */
.investor-item:has(.investor-photo) {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.investor-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--shadow-button-hover);
    flex-shrink: 0;
}

.investor-photo.investor-logo {
    border-radius: 6px;
    object-fit: contain;
    padding: 4px;
    background: var(--glass-white-05);
}

/* HashiCorp logo glyph */
.investor-photo[alt='HashiCorp Alumni'] {
    object-fit: cover;
    object-position: left center;
    padding: 2px;
}

.investor-photo.investor-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--shadow-cta-hover) 0%, rgba(0, 255, 136, 0.2) 100%);
    border-radius: 6px;
}

.investor-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.investor-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    white-space: nowrap;
}

.investor-title {
    font-size: 12px;
    color: var(--el-cyan);
    line-height: 1.2;
    white-space: nowrap;
}

.investor-badge {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 2px 0;
    white-space: nowrap;
}

.investor-separator {
    color: var(--text-separator);
    font-size: 14px;
    flex-shrink: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .investor-scroll-track {
        animation: none;
    }
}

/* ---------------------------------------------
      RESPONSIVE MEDIA QUERIES
      (grouped by breakpoint)
----------------------------------------------*/

/* ≤1200px */
@media (max-width: 1200px) {
    .dashboard-wireframe.scaled {
        right: 0px;
        transition: all 0.5s ease;
    }
}

@media (max-width: 1100px) {
    .dashboard-wireframe.scaled {
        width: 800px;
    }
}

/* ≤1024px */
@media (max-width: 1024px) {
    .dashboard-wireframe.scaled {
        width: 900px;
    }
    .hero-content {
        text-align: center;
        padding: 20px 0px;
    }

    .hero h1 {
        text-align: center;
        margin-top: 0;
        max-width: calc(100% - 100px);
        margin-left: auto;
        margin-right: auto;
    }

    .hero .subtitle {
        text-align: center;
    }

    .hero-content .ctas {
        justify-content: center;
    }

    .hero {
        padding: 20px 20px 80px 20px;
    }

    .dashboard-wrapper {
        margin-right: auto;
    }

    .dashboard-wireframe.scaled {
        top: -270px;
    }

    .grid-2,
    .roi-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .cta-grid a {
        width: 600px;
        margin: 0 auto;
    }

    .cta-demo,
    .cta-opa {
        max-width: 700px;
        padding: 14px 32px;
        margin: 0 auto;
        width: 100%;
        height: 92px;
    }

    section.workflow .section-title {
        padding: 0 40px;
    }

    section.solution .cta-buttons {
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section.investors .desktop,
    section.investors .mobile {
        display: none;
    }

    section.investors .tab {
        display: block;
    }

    .chaos-stack,
    .pr-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-box {
        padding: 50px 30px 30px;
    }

    .grid-2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .dashboard-wrapper {
        margin-top: auto;
        align-self: center;
        margin-bottom: auto;
    }

    .problem-card {
        width: 100%;
        max-width: unset;
    }
}

/* ≤768px */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
        line-height: 48px;
        max-width: 620px;
    }

    .problem-grid,
    .feature-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .two-col-grid,
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .before-box,
    .after-box {
        max-width: 600px;
        width: 100%;
        flex: 1 1 auto;
    }

    .executive-dashboard .container,
    .roi .container,
    .investors .container {
        padding: 0;
    }

    .executive-dashboard .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .policy-more-card {
        padding: 40px 22px;
    }

    .cta-grid a {
        width: 100%;
    }

    section.investors .desktop,
    section.investors .tab {
        display: none;
    }

    section.investors .mobile {
        display: block;
    }

    .investor-strip {
        padding: 10px 0;
        gap: 16px;
    }

    .investor-strip-label {
        padding-left: 20px;
        font-size: 12px;
    }

    .investor-scroll-track {
        gap: 24px;
    }

    .investor-name {
        font-size: 13px;
    }

    .investor-title {
        font-size: 11px;
    }

    .cta-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Flex column buttons in workflow */
    section.workflow .btn-content,
    section.workflow .btn-main {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .social-proof {
        display: block;
    }
}

/* ≤600px */
@media (max-width: 600px) {
    .hero-content {
        text-align: center;
    }

    .hero-content .ctas {
        flex-direction: column-reverse;
        align-items: center;
    }

    .cta-p,
    .cta-s {
        max-width: 340px;
        width: 100%;
    }
    .hero-content .ctas .cta-s {
        width: 100%;
    }

    .cta-tagline {
        text-align: center;
        max-width: unset;
    }

    .dashboard-wrapper {
        width: 100%;
        max-width: 75vw;
        margin: 0;
    }

    .dashboard-wireframe.scaled {
        width: unset;
        right: 12.5%;
    }

    .prism-face {
        max-width: 40px;
    }

    .grid-2 {
        justify-items: center;
    }

    section.workflow .section-title {
        padding: 0px;
    }
}

/* ≤500px */
@media (max-width: 500px) {
    .dashboard-wrapper {
        max-width: 90vw;
    }

    .cta-demo,
    .cta-opa {
        height: unset;
    }

    .cta-grid {
        padding: 0;
    }

    .roi-card,
    .math-box,
    .efficiency-box {
        padding: 30px 10px;
    }

    .stat-number {
        font-size: 40px;
        gap: 0px;
    }

    .after-title,
    .before-title {
        align-items: flex-start;
    }

    .more-buttons {
        gap: 16px;
    }

    .btn-cta-card-primary,
    .btn-cta-card-secondary {
        padding: 20px 22px;
    }
}

/* ≤400px */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 42px;
        line-height: 44px;
    }

    .dashboard-wireframe.scaled {
        right: 3%;
    }

    /* Flex column buttons in workflow */
    section.workflow .btn-content,
    section.workflow .btn-main {
        display: flex;
        flex-flow: column wrap;
        align-items: flex-start;
    }
}
