@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&display=swap");

.v8-page {
    --v8-bg: #000000;
    --v8-bg-elevated: #0f0f12;
    --v8-bg-card: #141418;
    --v8-border: rgba(255, 255, 255, 0.1);
    --v8-border-strong: rgba(255, 255, 255, 0.16);
    --v8-purple: #6632f6;
    --v8-purple-soft: rgba(102, 50, 246, 0.45);
    --v8-text: #ffffff;
    --v8-muted-2: #8f8f9a;
    --v8-radius: 12px;
    --v8-radius-lg: 18px;
    --v8-container: 1360px;
    --v8-gutter: 90px;
    --v8-header-h: 72px;
    --v8-section-y: 52px;
    --v8-split-y: 100px;
    --v8-font-display: "Figtree", sans-serif;
    --v8-font-body: "Figtree", sans-serif;

    margin: 0;
    background: var(--v8-bg);
    color: var(--v8-text) !important;
    font-family: var(--v8-font-body) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    line-height: 1.55 !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
}

.v8-page *,
.v8-page *::before,
.v8-page *::after {
    box-sizing: border-box;
}

.v8-page :where(section, [id]) {
    scroll-margin-top: calc(var(--v8-header-h) + 12px);
}

.v8-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.v8-page a {
    color: inherit;
    text-decoration: none;
}

.v8-page ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v8-page .v8-wrap {
    width: min(100% - (var(--v8-gutter) * 2), var(--v8-container));
    margin-inline: auto;
}

.v8-page .section {
    padding: var(--v8-section-y) 0;
}

.v8-page h1,
.v8-page h2,
.v8-page h3 {
    font-family: var(--v8-font-display) !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin: 0;
    color: inherit;
    text-transform: uppercase;
}

.v8-page h1 {
    font-size: clamp(4.2rem, 8.2vw, 7.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.v8-page h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.92;
}

.v8-page h3 {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: none;
    font-weight: 700;
}

.v8-page p {
    font-family: inherit;
    color: inherit;
}

.v8-page .body {
    margin: 0 0 12px;
    max-width: 54ch;
    font-size: 1.02rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
}

.v8-page .body-strong {
    color: #f2f2f5;
    font-weight: 500;
    letter-spacing: 0;
}

.v8-page .lead-wide {
    max-width: 78ch;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.v8-page .card-label {
    margin: 0 0 6px;
    color: var(--v8-purple);
    font-family: var(--v8-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Header */
.v8-header {
    position: sticky;
    top: 0;
    z-index: 88;
    background: var(--v8-purple);
}

.v8-nav {
    width: min(100% - 40px, var(--v8-container));
    margin-inline: auto;
    min-height: var(--v8-header-h);
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    padding: 0;
}

.v8-nav-links {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px 34px;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    list-style: none;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.v8-nav-links::-webkit-scrollbar {
    display: none;
}

.v8-nav-links li {
    display: flex;
    flex: 0 0 auto;
}

.v8-nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--v8-font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.78;
    transition: opacity 0.25s ease;
}

.v8-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: center;
    pointer-events: none;
}

.v8-nav-links a:hover,
.v8-nav-links a.is-active {
    opacity: 1;
    color: #fff;
}

.v8-nav-links a.is-active::after {
    transform: scaleX(1);
}

.btn-buy {
    flex: 0 0 auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-family: var(--v8-font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-buy:hover {
    background: #fff;
    color: var(--v8-purple);
}

/* Hero — rebuilt to match fulllayout.png */
.hero {
    padding: 0;
    overflow: hidden;
    background: #000;
}

.hero-inner {
    width: min(100% - (var(--v8-gutter) * 2), var(--v8-container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
    gap: 24px 56px;
    align-items: start;
    padding: 56px 0 var(--v8-section-y);
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 8px;
}

.v8-page .eyebrow {
    margin: 0 0 16px;
    color: #6632f5;
    font-family: var(--v8-font-display);
    font-size: 13px;
    font-weight: 700;
    /* letter-spacing: 0.16em; */
    text-transform: uppercase;
    line-height: 1;
}

.hero-title {
    margin: 0;
    color: #fff;
    font-family: var(--v8-font-display);
    font-size: clamp(72px, 8.8vw, 112px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.84;
    text-transform: uppercase;
}

.hero-tagline {
    margin: 20px 0 0;
    color: #fff;
    font-family: var(--v8-font-display);
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-lead {
    margin: 56px 0 20px;
    color: #fff;
    font-family: var(--v8-font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
}

.hero-stats {
    display: grid;
    gap: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-stat-icon {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    object-fit: contain;
}

.hero-stat-text strong {
    display: block;
    margin: 0 0 4px;
    color: #fff;
    font-family: var(--v8-font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: none;
}

.hero-stat-product {
    margin: 0;
    color: #7d5cff;
    font-family: var(--v8-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
}

.hero-stat-compare {
    margin: 1px 0 0;
    color: #9a9aa3;
    font-family: var(--v8-font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    min-height: 0;
}

.hero-visual img {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .hero-inner {
        width: min(100% - 48px, 1160px);
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 36px 0 48px;
        gap: 12px;
    }

    .hero-visual {
        min-height: 0;
        justify-content: center;
        padding-top: 0;
    }

    .hero-visual img {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-lead {
        margin-top: 28px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        width: min(100% - 28px, 100%);
        padding: 24px 0 40px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-tagline {
        font-size: 26px;
    }

    .hero-stat-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .hero-stat-text strong {
        font-size: 22px;
    }
}

/* Overview */
.overview {
    padding-top: var(--v8-section-y);
    padding-bottom: var(--v8-section-y);
}

.overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: 32px 48px;
    align-items: start;
}

.overview-copy h2 {
    max-width: none;
    margin: 0 0 22px;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.overview-body {
    max-width: 52ch;
    margin-bottom: 28px;
}

.overview-body p {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
}

.overview-body p:last-child {
    margin-bottom: 0;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.overview-feature {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 16px 14px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.overview-feature img {
    width: 44px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    margin-top: 2px;
}

.overview-feature h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
}

.overview-feature p {
    margin: 0;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
}

.overview-media {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 4px;
}

.overview-media img {
    width: 100%;
    max-width: 636px;
    height: auto;
    object-fit: contain;
}

.feature-grid {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

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

.feature-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.feature-grid.three .feature-card {
    padding: 16px 12px;
}

.feature-grid.three .feature-card h3 {
    font-size: 0.98rem;
    margin: 8px 0 6px;
}

.feature-grid.three .feature-card p {
    font-size: 0.82rem;
}

.split-copy .feature-card {
    border-color: var(--v8-purple-soft);
    background: rgba(102, 50, 246, 0.04);
}

/* Shared feature split — 3DHP / Fin / Airflow / LCP / Platform / Compact / Acoustic
   Tune per block via --v8-split-copy / --v8-split-gap / --v8-split-media on .threedhp-intro */
.threedhp {
    padding-top: var(--v8-section-y);
    padding-bottom: var(--v8-section-y);
}

.threedhp-intro {
    --v8-split-copy: 560px;
    --v8-split-gap: 48px;
    --v8-split-media: 658px;
    display: grid;
    grid-template-columns: minmax(0, var(--v8-split-copy)) minmax(0, var(--v8-split-media));
    gap: var(--v8-split-gap);
    align-items: start;
}

.threedhp-intro.is-reverse {
    --v8-split-media: 628px;
    grid-template-columns: minmax(0, var(--v8-split-media)) minmax(0, var(--v8-split-copy));
}

.threedhp-intro.is-reverse .threedhp-media {
    justify-content: flex-start;
}

.threedhp-intro.is-reverse .threedhp-copy h2 {
    max-width: none;
}

/* Per-section media width only — copy/gap stay shared */
#airflow > .threedhp-intro:not(.is-reverse) {
    --v8-split-media: 640px;
}

#platform > .threedhp-intro:not(.is-reverse) {
    --v8-split-media: 740px;
}

#acoustic > .threedhp-intro {
    --v8-split-media: 661px;
}

.threedhp-intro.lcp .threedhp-media img {
    max-width: 628px;
    max-height: 443px;
}

.threedhp-intro.compact .threedhp-media img {
    max-width: 628px;
    max-height: 463px;
}

.threedhp-copy h2 {
    max-width: none;
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
}

.threedhp-lead {
    margin: 0 0 28px;
    max-width: 52ch;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
}

.threedhp-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.threedhp-feature {
    padding: 18px 14px 20px;
    background: #16131b;
    border: 1px solid #36353c;
    border-radius: 12px;
    height: 100%;
}

.threedhp-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92px;
}

.threedhp-feature-icon img {
    max-width: none;
    width: auto;
    height: auto;
}

.threedhp-feature h3 {
    margin: 14px 0 8px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
}

.threedhp-feature p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
}

.threedhp-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.threedhp-media img {
    width: 100%;
    max-width: var(--v8-split-media);
    height: auto;
    object-fit: contain;
}

.platform .threedhp-copy .result-box {
    margin-top: 22px;
}

.threedhp-feature .db {
    margin: 10px 0 0;
    color: var(--v8-purple);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.threedhp-feature .db + h3 {
    margin-top: 10px;
}

.feature-grid.nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}

.feature-card {
    padding: 18px 16px;
    background: var(--v8-bg-card);
    border: 1px solid var(--v8-border);
    border-radius: var(--v8-radius);
}

.feature-card.row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid var(--v8-purple-soft);
    background: rgba(102, 50, 246, 0.05);
    padding: 20px 18px;
}

.feature-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-card.row img {
    width: 44px;
    height: 44px;
}

.feature-card h3 {
    margin: 10px 0 8px;
    font-family: var(--v8-font-display);
    font-size: 1.08rem;
    font-weight: 700;
}

.feature-card.row h3 {
    margin: 0 0 8px;
}

.feature-card p {
    margin: 0;
    color: var(--v8-muted-2);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* R&D */
.rd {
    padding-top: var(--v8-section-y);
    padding-bottom: var(--v8-section-y);
}

.rd h2 {
    max-width: none;
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.rd-lead {
    margin: 0 0 36px;
    max-width: 78ch;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.55;
}

.rd-diagram {
    margin: 8px 0 36px;
    display: flex;
    justify-content: center;
}

.rd-diagram img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rd-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rd-feature {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 133px;
    padding: 16px 18px;
    background: #16131b;
    border: 1px solid #36353c;
    border-radius: 12px;
}

.rd-feature img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.rd-feature .rd-feature-label {
    margin: 0 0 4px;
    color: #6632f5;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.rd-feature h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
}

.rd-feature p:not(.rd-feature-label) {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
}

/* Proof */
.proof {
    padding-top: var(--v8-section-y);
    padding-bottom: var(--v8-section-y);
}

.proof-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 88px;
    align-items: start;
}

.proof-card {
    display: flex;
    flex-direction: column;
    /* min-height: 470px; */
    padding: 28px 32px 24px;
    background: #16131b;
    border: 1px solid #36353c;
    border-radius: 18px;
}

.proof-card .eyebrow {
    font-size: 110%;
}

.proof-rank {
    margin: 0 0 10px;
    font-family: var(--v8-font-display);
    font-size: clamp(5.5rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.82;
}

.proof-card h3 {
    margin: 0 0 16px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
}

.proof-card-body {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.proof-card .result-box {
    margin-top: auto;
}

.proof-main h2 {
    max-width: 620px;
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
}

.proof-lead {
    margin: 0 0 28px;
    max-width: 52ch;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.result-box {
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid #ffe676;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
}

.result-box strong {
    display: block;
    color: #fff;
    font-weight: 700;
}

.result-box.f1rem {
    font-size: 1rem;
}

.result-box.muted {
    border-color: var(--v8-border-strong);
    background: rgba(255, 255, 255, 0.03);
}

.proof-list {
    display: grid;
    gap: 20px;
    margin-top: 0;
}

.proof-row {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    min-height: 112px;
    padding: 18px 22px;
    background: #16131b;
    border: 1px solid #36353c;
    border-radius: 14px;
}

.proof-metric {
    display: grid;
    gap: 6px;
    align-content: center;
    width: 130px;
    max-width: 130px;
}

.proof-metric .num {
    font-family: var(--v8-font-display);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.proof-metric .card-label {
    margin: 0;
    color: var(--v8-purple);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
}

.proof-metric img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.proof-row > p {
    margin: 0;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
}

/* Split sections */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.split + .split,
.hybrid,
.fin,
.lcp,
.compact {
    margin-top: var(--v8-split-y);
}

.split.reverse .split-copy {
    order: 2;
}

.split.reverse .split-media {
    order: 1;
}

.split-media img {
    max-width: 100%;
    margin: auto;
}

.split-media.panel {
    padding: 22px;
    background: var(--v8-bg-elevated);
    border: 1px solid var(--v8-border);
    border-radius: var(--v8-radius-lg);
}

.split-media.panel.tight {
    padding: 14px;
}

.flow-line {
    margin: 0 0 10px;
    font-family: var(--v8-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Specs */
.specs {
    padding-top: var(--v8-section-y);
    padding-bottom: var(--v8-section-y);
}

.specs h2 {
    max-width: none;
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
}

.specs .threedhp-lead {
    max-width: 78ch;
    margin-bottom: 36px;
}

.specs .table-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
}

.specs .table-wrap {
    overflow-x: auto;
    background: #16131b;
    border: 1px solid #36353c;
    border-radius: 12px;
}

.specs-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: fixed;
}

.specs-table .col-spec {
    width: 28%;
}

.specs-table .col-amd,
.specs-table .col-intel {
    width: 36%;
}

.specs-table th,
.specs-table td {
    padding: 18px 28px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
}

.specs-table thead th {
    padding: 16px 28px;
    background: #26232A;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.specs-table thead th:first-child {
    text-align: left;
}

@media (min-width: 1024px) {
    .specs-table tbody td[colspan="2"] {
        text-align: center;
    }
}

.specs-table tbody th {
    text-align: left;
    font-weight: 400;
}

.specs-table tbody tr:last-child th,
.specs-table tbody tr:last-child td {
    border-bottom: 0;
}

.specs-table tbody .common {
    max-width: 700px;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes v8-fade-in {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes v8-fade-up {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .v8-header {
        animation: v8-fade-in 0.45s ease both;
    }

    .v8-nav-links a::after {
        transition: transform 0.25s ease;
    }

    .hero-copy {
        animation: v8-fade-up 0.7s ease 0.08s both;
    }

    .hero-visual {
        animation: v8-fade-in 0.85s ease 0.22s both;
    }

    .hero-stat,
    .feature-card,
    .proof-row,
    .proof-card,
    .threedhp-feature,
    .rd-feature,
    .overview-feature {
        transition: transform 0.25s ease, background-color 0.25s ease;
    }

    .threedhp-feature-icon img,
    .rd-feature img,
    .overview-feature img {
        transition: transform 0.25s ease;
    }

    .feature-card:hover,
    .proof-row:hover,
    .threedhp-feature:hover,
    .rd-feature:hover,
    .overview-feature:hover {
        transform: translateY(-2px);
    }

    .threedhp-feature:hover,
    .rd-feature:hover,
    .overview-feature:hover {
        background: #1b1724;
    }

    .threedhp-feature:hover .threedhp-feature-icon img,
    .rd-feature:hover img,
    .overview-feature:hover img {
        transform: translateY(-3px);
    }
}

@media (max-width: 1200px) {
    .v8-page {
        --v8-gutter: 36px;
        --v8-container: 1160px;
    }

    .overview-grid,
    .proof-grid,
    .split,
    .split.reverse,
    .threedhp-intro,
    .threedhp-intro.is-reverse {
        grid-template-columns: 1fr;
    }

    .threedhp-intro.is-reverse .threedhp-copy {
        order: 1;
    }

    .threedhp-intro.is-reverse .threedhp-media {
        order: 2;
        justify-content: center;
    }

    .threedhp-media img {
        max-width: 520px;
        margin: 0 auto;
    }

    .proof-grid {
        gap: 36px;
    }

    .proof-card {
        min-height: 0;
    }

    .proof-main h2 {
        max-width: none;
    }

    .split.reverse .split-copy,
    .split.reverse .split-media {
        order: initial;
    }

    .overview-media {
        position: static;
        justify-content: center;
    }

    .overview-media img {
        max-width: 520px;
        margin: 0 auto;
    }

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

    .rd-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v8-page {
        --v8-header-h: 54px;
        --v8-gutter: 18px;
    }

    .section,
    .split + .split,
    .hybrid,
    .threedhp-intro + .threedhp-intro {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: 0;
    }

    .hybrid,
    .threedhp-intro + .threedhp-intro {
        padding-top: 0;
    }

    .v8-nav {
        min-height: var(--v8-header-h);
    }

    .btn-buy {
        padding: 7px 12px;
        font-size: 0.72rem;
    }

    .feature-grid.four,
    .feature-grid.three,
    .feature-grid.nine,
    .overview-features,
    .rd-features,
    .threedhp-features {
        grid-template-columns: 1fr;
    }

    .proof-card,
    .split-media.panel {
        padding: 18px;
    }

    .specs-table th,
    .specs-table td {
        padding: 14px 16px;
        font-size: 0.84rem;
    }
}

@media (max-width: 480px) {
    .v8-page h1 {
        font-size: 3.2rem;
    }

    .v8-page h2 {
        font-size: 2rem;
    }

    .btn-buy {
        padding: 7px 12px;
        font-size: 0.72rem;
    }
}
