:root {
    /* election colors */
    --party-a: #c8400a;
    --party-b: #1d4ed8;
    --party-c: #15803d;
    --party-d: #b45309;
}

/* HERO */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 148px 56px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 22px;
}
.breadcrumb span {
    color: var(--accent);
}
.breadcrumb::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--accent);
}
.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-sub {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 430px;
    margin-bottom: 12px;
}
.hero-sub2 {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 430px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
        background var(--t),
        transform var(--t);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.btn-ghost {
    font-size: 14px;
    color: var(--ink-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--t);
}
.btn-ghost:hover {
    color: var(--ink);
}
.hero-stats {
    display: flex;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}
.hero-stat {
    flex: 1;
}
.hero-stat + .hero-stat {
    padding-left: 28px;
    border-left: 1px solid var(--border);
    margin-left: 28px;
}
.hero-stat-num {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* ELECTION DASHBOARD MOCKUP */
.hero-screen {
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.08);
}
.screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.screen-content {
    padding: 20px;
}

/* dashboard header */
.dash-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.dash-hdr-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}
.dash-hdr-live {
    font-size: 10px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 3px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dash-hdr-live::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.4s ease infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.dash-hdr-updated {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
}

/* seat counter */
.seat-counter {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
}
.seat-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}
.seat-majority {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}
.majority-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.majority-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}
/* seat bar */
.seat-bar {
    display: flex;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    gap: 2px;
    margin-bottom: 12px;
}
.sb-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: flex var(--t);
}
/* party rows */
.party-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.party-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.party-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.party-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    width: 80px;
    flex-shrink: 0;
}
.party-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}
.party-bar-fill {
    height: 100%;
    border-radius: 3px;
}
.party-seats {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    width: 28px;
    text-align: right;
    font-weight: 500;
}
.party-delta {
    font-size: 10px;
    width: 28px;
}
.delta-up {
    color: #4ade80;
}
.delta-down {
    color: #f87171;
}

/* results grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.result-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}
.result-card.leading {
    border-color: rgba(200, 64, 10, 0.4);
    background: rgba(200, 64, 10, 0.1);
}
.rc-pct {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 300;
    color: white;
    line-height: 1;
    margin-bottom: 3px;
}
.rc-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}
.rc-seats {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.result-card.leading .rc-name {
    color: rgba(200, 64, 10, 0.8);
}

/* reporting status */
.report-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
}
.rs-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}
.rs-track {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}
.rs-fill {
    height: 100%;
    background: #4ade80;
    border-radius: 2px;
}
.rs-pct {
    font-size: 12px;
    color: #4ade80;
    font-weight: 500;
}

/* ENABLES BAND */
.enables-band {
    background: var(--ink);
    padding: 80px 56px;
}
.enables-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
}
.en-left {
    max-width: 520px;
}
.en-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}
.en-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}
.en-title em {
    font-style: italic;
    color: var(--accent);
}
.en-right {
    max-width: 440px;
}
.en-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
}
.pill svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
}

/* WHAT SETS IT APART — scale strip */
.scale-strip {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 56px 0;
}
.scale-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.scale-eyebrow::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}
.scale-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    max-width: 640px;
}
.scale-title em {
    font-style: italic;
    color: var(--accent);
}
.scale-sub {
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 580px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 56px;
}
.scale-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.scale-item {
    background: white;
    padding: 36px 28px;
}
.scale-num {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.scale-num em {
    font-style: normal;
    color: var(--accent);
}
.scale-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* FEATURES */
.features-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 56px;
}
.feat-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.feat-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition:
        box-shadow var(--t),
        transform var(--t);
    position: relative;
    overflow: hidden;
}
.feat-card:hover {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}
.feat-card.dark {
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.06);
}
.feat-card.warm {
    background: var(--surface-warm);
    border-color: rgba(0, 0, 0, 0.06);
}
.feat-card.accent-tint {
    background: var(--accent-light);
    border-color: rgba(200, 64, 10, 0.12);
}
.feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feat-card:not(.dark):hover::before {
    transform: scaleX(1);
}
.feat-num {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feat-num::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
.feat-card.dark .feat-num {
    color: rgba(200, 64, 10, 0.85);
}
.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.feat-card.dark .feat-icon {
    background: rgba(200, 64, 10, 0.15);
}
.feat-card.warm .feat-icon {
    background: rgba(200, 64, 10, 0.12);
}
.feat-card.accent-tint .feat-icon {
    background: rgba(200, 64, 10, 0.15);
}
.feat-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feat-card h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.feat-card.dark h3 {
    color: white;
}
.feat-card > p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 22px;
}
.feat-card.dark > p {
    color: rgba(255, 255, 255, 0.45);
}
.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
    font-weight: 300;
}
.feat-card.dark .feat-list li {
    color: rgba(255, 255, 255, 0.4);
}
.feat-list li::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23c8400a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}
.feat-card.dark .feat-list li::before {
    background-color: rgba(200, 64, 10, 0.15);
    border-color: rgba(200, 64, 10, 0.4);
}
.feat-result {
    background: var(--surface);
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
}
.feat-card.dark .feat-result {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.38);
}
.feat-card.warm .feat-result {
    background: white;
    border-color: var(--border);
}
.feat-card.accent-tint .feat-result {
    background: rgba(200, 64, 10, 0.07);
    border-color: rgba(200, 64, 10, 0.14);
}
.feat-result-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 4px;
}
.feat-metric-row {
    display: flex;
    gap: 28px;
    margin-top: 24px;
}
.feat-metric-num {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.feat-card.dark .feat-metric-num {
    color: var(--accent);
}
.feat-metric-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 300;
}
.feat-card.dark .feat-metric-label {
    color: rgba(255, 255, 255, 0.35);
}
.feat-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* DATA VIZ WIDGET inside card */
.data-viz {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px;
    margin-top: 20px;
}
.dv-label {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 14px;
}
.dv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}
.dv-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    width: 88px;
    flex-shrink: 0;
}
.dv-track {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.dv-fill {
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding-left: 8px;
}
.dv-fill span {
    font-size: 10px;
    font-weight: 500;
    color: white;
    opacity: 0.85;
    white-space: nowrap;
}
.dv-seats {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
    text-align: right;
    font-weight: 500;
}

/* DEPLOYMENT SECTION */
.deploy-section {
    background: var(--surface-warm);
    padding: 100px 56px;
}
.deploy-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.deploy-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}
.deploy-header h2 {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.deploy-header h2 em {
    font-style: italic;
    color: var(--accent);
}
.deploy-header p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.8;
    font-weight: 300;
    padding-top: 20px;
}
.deploy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.deploy-eyebrow::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}
.deploy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.deploy-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow var(--t);
}
.deploy-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.deploy-card.dark {
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.07);
}
.dc-num {
    font-family: var(--ff-display);
    font-size: 13px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dc-num::after {
    content: "";
    flex: 0;
    width: 24px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
.dc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.deploy-card.dark .dc-icon {
    background: rgba(200, 64, 10, 0.15);
}
.dc-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.dc-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}
.deploy-card.dark .dc-title {
    color: white;
}
.dc-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.7;
    font-weight: 300;
}
.deploy-card.dark .dc-desc {
    color: rgba(255, 255, 255, 0.4);
}

/* QUOTE */
.quote-strip {
    padding: 80px 56px;
}
.quote-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}
.quote-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.quote-left h3 {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}
blockquote {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    border-left: 3px solid var(--accent);
    padding-left: 32px;
    margin-bottom: 24px;
}
.quote-attr {
    font-size: 14px;
    color: var(--ink-muted);
    padding-left: 32px;
}
.quote-attr strong {
    color: var(--ink);
    font-weight: 500;
}

/* CTA */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 56px 100px;
}
.cta-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.08;
}
.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 18px;
}
.cta-title {
    font-family: var(--ff-display);
    font-size: 50px;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.cta-title em {
    font-style: italic;
    color: var(--accent);
}
.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 440px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.d1 {
    animation-delay: 0.08s;
    opacity: 0;
}
.d2 {
    animation-delay: 0.18s;
    opacity: 0;
}
.d3 {
    animation-delay: 0.28s;
    opacity: 0;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
    }
    .enables-band {
        padding: 60px 24px;
    }
    .enables-inner {
        flex-direction: column;
        gap: 32px;
    }
    .scale-strip {
        padding: 60px 24px 0;
    }
    .scale-grid {
        grid-template-columns: 1fr 1fr;
    }
    .features-section {
        padding: 60px 24px;
    }
    .feat-grid-2,
    .feat-grid-3 {
        grid-template-columns: 1fr;
    }
    .feat-wide-inner {
        grid-template-columns: 1fr;
    }
    .deploy-section {
        padding: 60px 24px;
    }
    .deploy-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .deploy-grid {
        grid-template-columns: 1fr;
    }
    .quote-strip {
        padding: 60px 24px;
    }
    .quote-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-section {
        padding: 20px 24px 60px;
    }
    .cta-box {
        padding: 48px 28px;
    }
    .cta-title {
        font-size: 36px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .hero-stat + .hero-stat {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 20px;
    }
    .fade-up.d3 {
        display: none;
    }
    .en-title {
        font-size: 28px;
    }
    .deploy-header h2 {
        font-size: 28px;
    }
    .feat-grid-2 > *,
    .feat-grid-3 > * {
        min-width: 0;
    }
    .feat-wide-inner > * {
        min-width: 0;
    }
}
