/*
 * Хронометраж — pitch landing
 * Плакатный стиль в духе Студии Артемия Лебедева / советского конструктивизма.
 * Парный executive-лендинг — те же токены, та же палитра, те же правила.
 *
 *  - только чёрный, бумажный, алый
 *  - никаких скруглений, теней и градиентов
 *  - толстые бордеры 2-6 px
 *  - IBM Plex Sans / Mono
 *  - tabular-nums, uppercase для меток
 */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --c-red: #E30613;
    --c-red-dark: #B0000A;
    --c-black: #0A0A0A;
    --c-ink: #1A1A1A;
    --c-white: #F5F5F0;
    --c-paper: #F8F8F5;
    --c-gray-900: #111111;
    --c-gray-800: #1E1E1E;
    --c-gray-700: #2A2A2A;
    --c-gray-600: #3E3E3E;
    --c-gray-500: #6B6B6B;
    --c-gray-400: #9A9A9A;
    --c-gray-300: #C4C4C4;
    --c-gray-200: #E0E0E0;

    --f-display: 'IBM Plex Sans', 'Inter', system-ui, -apple-system, sans-serif;
    --f-mono: 'IBM Plex Mono', 'SF Mono', Consolas, monospace;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-display);
    background: var(--c-black);
    color: var(--c-white);
    font-weight: 400;
    line-height: 1.5;
    font-feature-settings: "tnum", "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--c-red);
    color: var(--c-white);
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg, canvas {
    display: block;
    max-width: 100%;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.04;
}

strong { font-weight: 700; }
em { font-style: italic; }

:focus-visible {
    outline: 3px solid var(--c-red);
    outline-offset: 2px;
}

/* ============================================================
   КРАСНАЯ ПОЛОСА СВЕРХУ
   ============================================================ */
.l-stripe {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--c-red);
    z-index: 1000;
}

/* ============================================================
   СЕТКА
   ============================================================ */
.l-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 720px) {
    .l-container { padding: 0 20px; }
}

/* ============================================================
   СЕКЦИЯ
   ============================================================ */
.l-section {
    position: relative;
    padding: 112px 0;
    border-top: 4px solid var(--c-white);
}
@media (max-width: 720px) {
    .l-section { padding: 76px 0; }
}
.l-section--black { background: var(--c-black); color: var(--c-white); }
.l-section--paper { background: var(--c-white); color: var(--c-black); }
.l-section--red   { background: var(--c-red);   color: var(--c-white); }

.l-section--paper .l-section-number,
.l-section--paper .l-label { color: var(--c-gray-600); }

.l-section-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--c-gray-500);
    text-transform: uppercase;
}

.l-section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 72px;
    max-width: 960px;
}

.l-label {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gray-400);
    padding: 4px 10px;
    border: 2px solid currentColor;
    width: max-content;
}

.l-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}
.l-title em {
    font-style: normal;
    color: var(--c-red);
}

.l-section-head p {
    font-size: 18px;
    color: var(--c-gray-300);
    max-width: 760px;
}
.l-section--paper .l-section-head p { color: var(--c-gray-700); }

/* ============================================================
   NAV
   ============================================================ */
.l-nav {
    position: sticky;
    top: 6px;
    z-index: 900;
    background: var(--c-black);
    border-bottom: 4px solid var(--c-white);
}
.l-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    min-height: 72px;
}
.l-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--c-white);
}
.l-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--c-red);
    color: var(--c-white);
    font-family: var(--f-mono);
    font-weight: 700;
    font-size: 16px;
}
.l-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}
.l-nav-links a {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-gray-300);
    height: 100%;
    border-left: 1px solid var(--c-gray-800);
    transition: background 0.12s, color 0.12s;
}
.l-nav-links a:hover {
    background: var(--c-red);
    color: var(--c-white);
}
.l-nav-cta {
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .l-nav-links { display: none; }
}

/* ============================================================
   КНОПКИ
   ============================================================ */
.l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--c-white);
    background: transparent;
    color: var(--c-white);
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
    text-decoration: none;
}
.l-btn:hover:not(:disabled) {
    background: var(--c-white);
    color: var(--c-black);
}
.l-btn--red {
    background: var(--c-red);
    border-color: var(--c-red);
    color: var(--c-white);
}
.l-btn--red:hover:not(:disabled) {
    background: var(--c-white);
    color: var(--c-red);
    border-color: var(--c-red);
}
.l-btn--sm { padding: 10px 18px; font-size: 11px; }
.l-btn--lg { padding: 20px 36px; font-size: 15px; }
.l-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   FOOTER
   ============================================================ */
.l-footer {
    background: var(--c-black);
    color: var(--c-gray-400);
    border-top: 6px solid var(--c-red);
    padding: 40px 0;
}
.l-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.l-footer-links {
    display: flex;
    gap: 24px;
}
.l-footer-links a:hover { color: var(--c-red); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   01 — HERO
   ============================================================ */
.p-hero {
    position: relative;
    padding: 88px 0 96px;
    background: var(--c-black);
    color: var(--c-white);
    border-top: 4px solid var(--c-white);
    overflow: hidden;
}
.p-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 36px;
    padding: 8px 12px;
    border: 2px solid var(--c-red);
}
.p-hero-eyebrow::before { content: "●"; color: var(--c-red); }

.p-hero h1 {
    font-size: clamp(44px, 6.4vw, 88px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin-bottom: 48px;
    max-width: 1100px;
}
.p-hero h1 em {
    font-style: normal;
    color: var(--c-red);
    display: inline-block;
}

.p-hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--c-gray-300);
    max-width: 760px;
    margin-bottom: 48px;
    border-left: 4px solid var(--c-red);
    padding-left: 24px;
}

.p-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 72px;
}

.p-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 3px solid var(--c-white);
}
.p-hero-stats > div {
    padding: 34px 28px;
    border-right: 2px solid var(--c-white);
}
.p-hero-stats > div:last-child { border-right: 0; }
.p-hero-stat-value {
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--c-red);
    margin-bottom: 12px;
}
.p-hero-stat-label {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gray-400);
}

@media (max-width: 960px) {
    .p-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .p-hero-stats > div:nth-child(1),
    .p-hero-stats > div:nth-child(2) { border-bottom: 2px solid var(--c-white); }
    .p-hero-stats > div:nth-child(2) { border-right: 0; }
}
@media (max-width: 560px) {
    .p-hero-stats { grid-template-columns: 1fr; }
    .p-hero-stats > div {
        border-right: 0;
        border-bottom: 2px solid var(--c-white);
    }
    .p-hero-stats > div:last-child { border-bottom: 0; }
}

/* ============================================================
   02 — PROBLEM (6 карточек)
   ============================================================ */
.p-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 3px solid var(--c-white);
}
.p-problem-card {
    position: relative;
    padding: 40px 28px 32px;
    border-right: 2px solid var(--c-white);
    border-bottom: 2px solid var(--c-white);
    background: var(--c-black);
    transition: background 0.15s, color 0.15s;
}
.p-problem-card:nth-child(3n) { border-right: 0; }
.p-problem-card:nth-last-child(-n+3) { border-bottom: 0; }
.p-problem-card:hover { background: var(--c-red); }
.p-problem-card .num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--c-gray-500);
}
.p-problem-card:hover .num { color: var(--c-white); }
.p-problem-card .figure {
    font-size: clamp(36px, 3.8vw, 56px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--c-red);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.p-problem-card:hover .figure { color: var(--c-white); }
.p-problem-card .caption {
    font-size: 14px;
    line-height: 1.5;
    color: var(--c-gray-300);
    border-top: 2px solid var(--c-gray-700);
    padding-top: 16px;
}
.p-problem-card:hover .caption {
    color: var(--c-white);
    border-top-color: var(--c-white);
}

@media (max-width: 960px) {
    .p-problem-grid { grid-template-columns: repeat(2, 1fr); }
    .p-problem-card {
        border-right: 2px solid var(--c-white);
        border-bottom: 2px solid var(--c-white);
    }
    .p-problem-card:nth-child(3n) { border-right: 2px solid var(--c-white); }
    .p-problem-card:nth-child(2n) { border-right: 0; }
    .p-problem-card:nth-last-child(-n+3) { border-bottom: 2px solid var(--c-white); }
    .p-problem-card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
    .p-problem-grid { grid-template-columns: 1fr; }
    .p-problem-card {
        border-right: 0 !important;
        border-bottom: 2px solid var(--c-white) !important;
    }
    .p-problem-card:last-child { border-bottom: 0 !important; }
}

/* ============================================================
   03 — SOLUTION (5 pillars)
   ============================================================ */
.p-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 3px solid var(--c-white);
}
.p-pillar {
    padding: 36px 24px;
    border-right: 2px solid var(--c-white);
    background: var(--c-black);
    transition: background 0.15s, color 0.15s;
    position: relative;
}
.p-pillar:last-child { border-right: 0; }
.p-pillar:hover { background: var(--c-red); }
.p-pillar-num {
    font-family: var(--f-mono);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--c-red);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--c-white);
}
.p-pillar:hover .p-pillar-num { color: var(--c-white); }
.p-pillar h4 {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--c-white);
    line-height: 1.15;
}
.p-pillar p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--c-gray-300);
}
.p-pillar:hover p { color: var(--c-white); }

@media (max-width: 1080px) {
    .p-pillars { grid-template-columns: repeat(2, 1fr); }
    .p-pillar {
        border-right: 2px solid var(--c-white);
        border-bottom: 2px solid var(--c-white);
    }
    .p-pillar:nth-child(2n) { border-right: 0; }
    .p-pillar:nth-child(5) { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
    .p-pillar:nth-child(3), .p-pillar:nth-child(4) { border-bottom: 2px solid var(--c-white); }
}
@media (max-width: 560px) {
    .p-pillars { grid-template-columns: 1fr; }
    .p-pillar {
        border-right: 0 !important;
        border-bottom: 2px solid var(--c-white) !important;
    }
    .p-pillar:last-child { border-bottom: 0 !important; }
    .p-pillar:nth-child(5) { grid-column: auto; }
}

/* ============================================================
   04 — MARKET (TAM/SAM/SOM)
   ============================================================ */
.p-market {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 3px solid var(--c-white);
}
.p-market-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--c-black);
    border-right: 2px solid var(--c-white);
    overflow: hidden;
}
.p-market-visual .p-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--c-red);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 28px;
    text-align: center;
    font-family: var(--f-mono);
    border-radius: 50%;
}
.p-market-visual .p-circle.tam {
    width: 88%;
    aspect-ratio: 1;
    background: var(--c-black);
}
.p-market-visual .p-circle.sam {
    width: 58%;
    aspect-ratio: 1;
    background: var(--c-gray-900);
    border-color: var(--c-white);
    border-width: 3px;
}
.p-market-visual .p-circle.som {
    width: 30%;
    aspect-ratio: 1;
    background: var(--c-red);
    color: var(--c-white);
    padding-top: 0;
    align-items: center;
    border-color: var(--c-white);
    border-width: 3px;
}
.p-market-visual .p-circle-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.p-market-visual .p-circle-inner .label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gray-400);
    font-weight: 700;
}
.p-market-visual .p-circle.tam .p-circle-inner .label { color: var(--c-red); }
.p-market-visual .p-circle.sam .p-circle-inner .label { color: var(--c-white); }
.p-market-visual .p-circle.som .p-circle-inner .label { color: var(--c-white); opacity: 0.85; }
.p-market-visual .p-circle-inner .amount {
    font-family: var(--f-display);
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 700;
    color: var(--c-red);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}
.p-market-visual .p-circle.sam .p-circle-inner .amount { color: var(--c-white); }
.p-market-visual .p-circle.som .p-circle-inner .amount { color: var(--c-white); }

.p-market-legend {
    padding: 40px;
    background: var(--c-black);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.p-market-legend .p-leg {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 2px solid var(--c-gray-700);
    align-items: baseline;
}
.p-market-legend .p-leg:first-child { padding-top: 0; }
.p-market-legend .p-leg:last-of-type { border-bottom: 0; padding-bottom: 24px; }
.p-market-legend .p-leg .tag {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-red);
    border: 2px solid var(--c-red);
    padding: 4px 8px;
    text-align: center;
}
.p-market-legend .p-leg .text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-gray-300);
}
.p-market-legend .p-leg .text strong {
    color: var(--c-white);
    display: block;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}
.p-market-note {
    margin-top: auto;
    padding: 18px;
    border: 2px solid var(--c-red);
    background: var(--c-black);
    font-family: var(--f-mono);
    font-size: 11px;
    line-height: 1.6;
    color: var(--c-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.p-market-note strong { color: var(--c-red); }

@media (max-width: 960px) {
    .p-market { grid-template-columns: 1fr; }
    .p-market-visual {
        border-right: 0;
        border-bottom: 2px solid var(--c-white);
    }
}

/* ============================================================
   05 — BUSINESS MODEL (streams)
   ============================================================ */
.p-streams {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    border: 3px solid var(--c-white);
}
.p-streams-list {
    background: var(--c-black);
    border-right: 2px solid var(--c-white);
}
.p-stream {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 32px 36px;
    border-bottom: 2px solid var(--c-gray-700);
    transition: background 0.15s, color 0.15s;
}
.p-stream:last-child { border-bottom: 0; }
.p-stream:hover { background: var(--c-red); }
.p-stream .p-stream-info strong {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--c-white);
    margin-bottom: 6px;
}
.p-stream .p-stream-info span {
    display: block;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gray-400);
}
.p-stream:hover .p-stream-info span { color: var(--c-white); }
.p-stream .p-stream-share {
    font-family: var(--f-mono);
    font-size: 40px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--c-red);
    line-height: 1;
}
.p-stream:hover .p-stream-share { color: var(--c-white); }

.p-streams-chart {
    background: var(--c-black);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-streams-chart-box {
    width: 100%;
    height: 320px;
}

@media (max-width: 960px) {
    .p-streams { grid-template-columns: 1fr; }
    .p-streams-list { border-right: 0; border-bottom: 2px solid var(--c-white); }
}

/* ============================================================
   06 — FINANCE
   ============================================================ */
.p-finance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 3px solid var(--c-white);
}
.p-fin-card {
    padding: 38px;
    border-right: 2px solid var(--c-white);
    background: var(--c-black);
}
.p-fin-card:last-child { border-right: 0; }
.p-fin-card h4 {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-gray-300);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-white);
}
.p-fin-chart-box {
    height: 240px;
    margin-bottom: 24px;
}
.p-fin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid var(--c-white);
}
.p-fin-stats--2 { grid-template-columns: repeat(2, 1fr); }
.p-fin-stat {
    padding: 20px 18px;
    border-right: 2px solid var(--c-white);
}
.p-fin-stat:last-child { border-right: 0; }
.p-fin-stat .v {
    font-size: 22px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--c-red);
    line-height: 1.1;
    margin-bottom: 6px;
}
.p-fin-stat .l {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-gray-400);
}

@media (max-width: 960px) {
    .p-finance { grid-template-columns: 1fr; }
    .p-fin-card { border-right: 0; border-bottom: 2px solid var(--c-white); }
    .p-fin-card:last-child { border-bottom: 0; }
}

/* ============================================================
   07 — COMPETITION TABLE
   ============================================================ */
.p-cmp-wrap {
    border: 3px solid var(--c-white);
    overflow-x: auto;
}
.p-cmp {
    width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
}
.p-cmp thead th {
    background: var(--c-black);
    color: var(--c-white);
    padding: 20px 16px;
    text-align: left;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-right: 2px solid var(--c-white);
    border-bottom: 3px solid var(--c-white);
}
.p-cmp thead th:last-child { border-right: 0; }
.p-cmp thead th.p-cmp-hl {
    background: var(--c-red);
    color: var(--c-white);
}
.p-cmp tbody td {
    padding: 18px 16px;
    border-right: 2px solid var(--c-gray-700);
    border-bottom: 2px solid var(--c-gray-700);
    font-size: 14px;
    color: var(--c-gray-200);
}
.p-cmp tbody td:first-child {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-gray-300);
    font-weight: 500;
    background: var(--c-gray-900);
}
.p-cmp tbody td:last-child { border-right: 0; }
.p-cmp tbody tr:last-child td { border-bottom: 0; }
.p-cmp td.p-cmp-cell-hl {
    background: var(--c-red);
    color: var(--c-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.p-cmp td.p-cmp-no {
    color: var(--c-gray-500);
    text-transform: uppercase;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
}
.p-cmp td.p-cmp-no::before { content: "— "; color: var(--c-gray-500); }
.p-cmp td.p-cmp-partial {
    color: var(--c-gray-400);
    text-transform: uppercase;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* ============================================================
   08 — ROADMAP / TIMELINE
   ============================================================ */
.p-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 3px solid var(--c-white);
}
.p-milestone {
    padding: 32px 28px;
    border-right: 2px solid var(--c-white);
    background: var(--c-black);
    transition: background 0.15s;
    position: relative;
}
.p-milestone:last-child { border-right: 0; }
.p-milestone:hover { background: var(--c-red); }
.p-milestone-month {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--c-red);
    color: var(--c-white);
    padding: 4px 10px;
    margin-bottom: 20px;
}
.p-milestone:hover .p-milestone-month {
    background: var(--c-white);
    color: var(--c-red);
}
.p-milestone h4 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--c-white);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--c-white);
    line-height: 1.15;
}
.p-milestone ul {
    list-style: none;
    padding: 0;
}
.p-milestone li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--c-gray-300);
    margin-bottom: 10px;
    font-family: var(--f-mono);
    letter-spacing: 0.02em;
}
.p-milestone li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-red);
    font-size: 12px;
}
.p-milestone:hover li,
.p-milestone:hover li::before { color: var(--c-white); }

@media (max-width: 960px) {
    .p-timeline { grid-template-columns: 1fr; }
    .p-milestone {
        border-right: 0;
        border-bottom: 2px solid var(--c-white);
    }
    .p-milestone:last-child { border-bottom: 0; }
}

/* ============================================================
   09 — TEAM
   ============================================================ */
.p-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 3px solid var(--c-white);
}
.p-role {
    padding: 32px 20px 28px;
    border-right: 2px solid var(--c-white);
    border-bottom: 2px solid var(--c-white);
    background: var(--c-black);
    text-align: center;
    transition: background 0.15s, color 0.15s;
}
.p-role:nth-child(4n) { border-right: 0; }
.p-role:nth-last-child(-n+4) { border-bottom: 0; }
.p-role:hover { background: var(--c-red); }
.p-role-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--c-red);
    color: var(--c-white);
    font-family: var(--f-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    border: 2px solid var(--c-white);
}
.p-role:hover .p-role-avatar {
    background: var(--c-white);
    color: var(--c-red);
}
.p-role h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--c-white);
    margin-bottom: 10px;
    line-height: 1.2;
}
.p-role p {
    font-family: var(--f-mono);
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--c-gray-400);
    text-transform: uppercase;
}
.p-role:hover p { color: var(--c-white); }

@media (max-width: 960px) {
    .p-team { grid-template-columns: repeat(2, 1fr); }
    .p-role {
        border-right: 2px solid var(--c-white);
        border-bottom: 2px solid var(--c-white);
    }
    .p-role:nth-child(4n) { border-right: 2px solid var(--c-white); }
    .p-role:nth-child(2n) { border-right: 0; }
    .p-role:nth-last-child(-n+4) { border-bottom: 2px solid var(--c-white); }
    .p-role:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
    .p-team { grid-template-columns: 1fr; }
    .p-role { border-right: 0 !important; border-bottom: 2px solid var(--c-white) !important; }
    .p-role:last-child { border-bottom: 0 !important; }
}

/* ============================================================
   10 — WHY US / WHY NOW
   ============================================================ */
.p-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 3px solid var(--c-white);
}
.p-why-intro {
    padding: 40px;
    background: var(--c-black);
    border-right: 2px solid var(--c-white);
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-gray-200);
}
.p-why-intro p { margin-bottom: 18px; }
.p-why-intro p:last-child { margin-bottom: 0; }
.p-why-intro em {
    font-style: normal;
    color: var(--c-red);
    font-weight: 600;
}

.p-why-list {
    background: var(--c-black);
}
.p-why-item {
    padding: 22px 32px;
    border-bottom: 2px solid var(--c-gray-700);
    transition: background 0.15s, color 0.15s;
}
.p-why-item:last-of-type { border-bottom: 0; }
.p-why-item:hover { background: var(--c-red); }
.p-why-item h5 {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 8px;
}
.p-why-item:hover h5 { color: var(--c-white); }
.p-why-item p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-gray-200);
}
.p-why-item:hover p { color: var(--c-white); }

.p-why-bet {
    margin-top: 48px;
    padding: 32px 40px;
    border: 3px solid var(--c-red);
    background: var(--c-red);
    color: var(--c-white);
    font-size: 20px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.p-why-bet strong {
    display: block;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.9;
}

@media (max-width: 960px) {
    .p-why { grid-template-columns: 1fr; }
    .p-why-intro { border-right: 0; border-bottom: 2px solid var(--c-white); }
}

/* ============================================================
   11 — ASK / INVEST REQUEST
   ============================================================ */
.p-ask {
    border: 4px solid var(--c-white);
    background: var(--c-red);
    color: var(--c-white);
    padding: 72px 56px;
    text-align: center;
}
.p-ask-amount {
    font-size: clamp(80px, 13vw, 200px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.p-ask-period {
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-bottom: 32px;
    border-bottom: 3px solid var(--c-white);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.p-ask-allocation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 3px solid var(--c-white);
    max-width: 960px;
    margin: 0 auto 40px;
}
.p-ask-alloc-item {
    padding: 24px 18px;
    border-right: 2px solid var(--c-white);
    text-align: left;
}
.p-ask-alloc-item:last-child { border-right: 0; }
.p-ask-alloc-item .label {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
}
.p-ask-alloc-item .val {
    font-size: 32px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1;
}
.p-ask-alt {
    display: inline-block;
    border: 2px solid var(--c-white);
    padding: 16px 24px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    line-height: 1.6;
}
.p-ask-alt strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}
.p-ask-contacts {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 32px;
    border-top: 3px solid var(--c-white);
}
.p-ask-contacts a {
    color: var(--c-white);
    border-bottom: 2px solid var(--c-white);
    padding-bottom: 2px;
    transition: background 0.12s, color 0.12s;
}
.p-ask-contacts a:hover {
    background: var(--c-white);
    color: var(--c-red);
}

.p-ask-quote {
    max-width: 820px;
    margin: 56px auto 0;
    padding: 36px 40px;
    border: 2px solid var(--c-white);
    background: var(--c-black);
    color: var(--c-white);
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    font-weight: 500;
}
.p-ask-quote::before {
    content: "«";
    color: var(--c-red);
    font-size: 48px;
    vertical-align: -12px;
    font-family: var(--f-display);
}
.p-ask-quote::after {
    content: "»";
    color: var(--c-red);
    font-size: 48px;
    vertical-align: -12px;
    font-family: var(--f-display);
}

@media (max-width: 960px) {
    .p-ask { padding: 56px 32px; }
    .p-ask-allocation { grid-template-columns: repeat(2, 1fr); }
    .p-ask-alloc-item:nth-child(2n) { border-right: 0; }
    .p-ask-alloc-item:nth-child(1), .p-ask-alloc-item:nth-child(2) {
        border-bottom: 2px solid var(--c-white);
    }
}
@media (max-width: 560px) {
    .p-ask-allocation { grid-template-columns: 1fr; }
    .p-ask-alloc-item {
        border-right: 0 !important;
        border-bottom: 2px solid var(--c-white);
    }
    .p-ask-alloc-item:last-child { border-bottom: 0; }
}
