/* ── COVER PAGE STYLES ── */

/* ── COVER SECTION ── */
.cv-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
    min-height: calc(100vh - 52px);
    gap: 8px;
}

.cv-left {
    padding: 52px 48px;
    display: flex; flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.cv-tag {
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--green);
}

h1.seo-h1 {
    font-family: var(--font-head);
    font-weight: 400; font-size: 72px;
    line-height: 0.9; text-transform: uppercase; color: var(--black);
}

.cv-rule { width: 40px; height: 3px; background: var(--green); }

.cv-sub {
    font-size: 16px; font-weight: 400;
    line-height: 1.75; color: var(--text-body); max-width: 340px;
}

.cv-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

.seo-btn {
    font-family: var(--font-head);
    font-weight: 400; font-size: 13px;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--black); color: var(--white);
    border: none; padding: 13px 26px;
    cursor: pointer; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity 0.3s; white-space: nowrap;
}

.seo-btn.disabled { background: var(--text-muted); cursor: not-allowed; opacity: 0.6; }
.seo-btn.ready { background: var(--black); opacity: 1; cursor: pointer; }

.seo-btn-secondary {
    background: var(--white); color: var(--black);
    border: 0.5px solid var(--light2);
}

.seo-btn-loading {
    width: 11px; height: 11px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white); border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block; flex-shrink: 0;
}

.seo-btn-ready-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); display: none; flex-shrink: 0;
}

.seo-btn.ready .seo-btn-loading { display: none; }
.seo-btn.ready .seo-btn-ready-dot { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* RIGHT — video */
.cv-right {
    /*background: var(--light1);*/
    display: flex; align-items: center; justify-content: center;
    padding: 40px 28px;
}

/* RIGHT — carousel */
.cv-right {
    /*background: var(--light1);*/
    display: flex; align-items: center; justify-content: center;
    padding: 40px 28px;
}

.cv-carousel-frame {
    width: 100%; max-width: 260px;
    aspect-ratio: 1/2;
    /*background: #E0E0E0;*/
    /*border: 0.5px solid var(--border);*/
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    cursor: pointer;
}

.cv-carousel-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-carousel-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.cv-carousel-img.active {
    opacity: 1;
}

/* ── STATS STRIP ── */
.cv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 32px 48px;
    border-bottom: 0.5px solid var(--border);
}

.cv-stat {
    background: var(--white);
    border: 0.5px solid var(--light2);
    border-radius: 16px;
    aspect-ratio: 1/1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 20px;
    max-width: 220px;
}

.seo-stat-num {
    font-family: var(--font-head);
    font-weight: 500; font-size: 50px;
    color: var(--black); line-height: 1; margin-bottom: 10px;
}
.seo-stat-num.green { color: var(--green); }

.seo-stat-lbl {
    font-size: 13px; font-weight: 700;
    color: #757575; line-height: 1.4; max-width: 90px;
}

/* SEO hidden */
.seo-hidden {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
}

/* ── DEFINITION SECTION ── */
.def-wrap {
    border-top: 0.5px solid var(--border);
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
}

.def-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 48px;
    margin-bottom: 36px;
}

.def-tag {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--green);
    display: flex; align-items: center; gap: 10px;
}
.def-tag::before { content: ''; width: 20px; height: 1px; background: var(--green); }

.def-flow-tag {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 10px;
}
.def-flow-tag::before { content: ''; width: 20px; height: 1px; background: var(--light2); }

.def-body {
    display: grid; grid-template-columns: 1fr 1fr;
    padding: 0 48px 64px; gap: 64px;
}

.def-left { display: flex; flex-direction: column; gap: 20px; }

.def-h2 {
    font-family: var(--font-head);
    font-weight: 400; font-size: 52px;
    line-height: 0.92; text-transform: uppercase; color: var(--black);
}

.def-rule { width: 28px; height: 2px; background: var(--green); }

.def-p {
    font-size: 15px; line-height: 1.85;
    color: var(--text-body); max-width: 340px;
}

.def-quote {
    font-family: var(--font-head);
    font-weight: 300; font-size: 20px;
    line-height: 1.35; color: var(--black); text-transform: uppercase;
    border-left: 2px solid var(--green);
    padding-left: 16px; max-width: 320px;
}

.def-right { display: flex; flex-direction: column; justify-content: center; }

.def-step {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 0.5px solid var(--border);
}
.def-step:last-child { border-bottom: none; }

.def-step-num {
    font-family: var(--font-head);
    font-size: 26px; font-weight: 300;
    color: var(--light2); flex-shrink: 0; width: 36px; text-align: right;
    transition: color 0.4s;
}
.def-step.on .def-step-num { color: var(--green); }

.def-step-label {
    font-size: 13px; font-weight: 700;
    color: var(--black); letter-spacing: 0.05em;
    text-transform: uppercase; margin-bottom: 3px;
    transition: color 0.4s;
}
.def-step.on .def-step-label { color: var(--green); }

.def-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── PLACEHOLDER SECTIONS ── */
.ct-section-placeholder {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    border-top: 0.5px solid var(--border);
}

.ct-section-placeholder span {
    font-family: var(--font-head);
    font-weight: 300; font-size: 32px;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--light2);
}

/* ── FOOTER ── */
.seo-footer-bar {
    border-top: 0.5px solid var(--border);
    padding: 20px 48px;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

.seo-footer-copy { font-size: 11px; color: var(--text-muted); }
.seo-footer-links { display: flex; gap: 16px; }
.seo-footer-links a { font-size: 11px; color: var(--text-muted); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .cv-wrap { grid-template-columns: 1fr; min-height: unset; }
    .cv-left { padding: 40px 24px; }
    .cv-right { padding: 24px; }
    h1.seo-h1 { font-size: 48px; }
    .cv-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 10px; }
    .def-header { grid-template-columns: 1fr; padding: 0 24px; }
    .def-header .def-flow-tag { display: none; }
    .def-body { grid-template-columns: 1fr; padding: 0 24px 40px; gap: 32px; }
    .def-right::before {
        content: '— THE CYCLE';
        font-size: 10px; font-weight: 500;
        letter-spacing: 0.26em;
        color: var(--text-muted);
        display: block; margin-bottom: 16px;
    }
}