:root {
    --bg: #07111d;
    --bg-alt: #0d1a2d;
    --panel: rgba(11, 20, 34, 0.9);
    --panel-2: rgba(14, 27, 45, 0.92);
    --line: rgba(128, 194, 255, 0.18);
    --text: #eaf5ff;
    --muted: #aac1dc;
    --accent: #66d3ff;
    --accent-2: #88ffd1;
    --hero-grad: radial-gradient(circle at 15% 10%, rgba(102, 211, 255, 0.12), transparent 45%), radial-gradient(circle at 100% 10%, rgba(136, 255, 209, 0.10), transparent 38%);
    --body-grad: radial-gradient(circle at 10% 0%, rgba(102,211,255,0.10), transparent 35%), radial-gradient(circle at 90% 20%, rgba(136,255,209,0.08), transparent 38%), #07111d;
    --radius: 18px;
    --radius-lg: 26px;
    --shadow: 0 22px 48px rgba(0,0,0,0.28);
    --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
    --font-title: Georgia, "Times New Roman", serif;
    --btn-grad: linear-gradient(135deg, #66d3ff, #8ef7d2);
    --btn-grad-alt: linear-gradient(135deg, #99e4ff, #a9ffd7);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--body-grad);
    line-height: 1.5;
}

a { color: inherit; }

.page-shell {
    width: min(1160px, calc(100% - 24px));
    margin: 0 auto;
    padding: 16px 0 32px;
}

.topbar {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 84%, transparent);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 8px;
    z-index: 10;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 70%, transparent);
    flex: 0 0 auto;
}

.brand-name {
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: 0.96rem;
}

.brand-sub {
    color: var(--muted);
    font-size: 0.78rem;
}

.status-chip {
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: color-mix(in srgb, var(--text) 90%, var(--accent));
    padding: 8px 12px;
    font-size: 0.84rem;
    white-space: nowrap;
}

.hero-card,
.video-card,
.offer-shell,
.info-card,
.footer-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-card {
    margin-top: 16px;
    padding: clamp(16px, 3vw, 26px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
    background-image: var(--hero-grad);
    background-color: var(--panel);
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    filter: blur(14px);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: color-mix(in srgb, var(--text) 92%, var(--accent));
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    line-height: 1.08;
}

.lead {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.sublead {
    margin: 10px 0 0;
    color: color-mix(in srgb, var(--muted) 85%, var(--text));
    font-size: 0.92rem;
}

.bullet-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.bullet-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    color: color-mix(in srgb, var(--text) 90%, var(--muted));
}

.bullet-list li::before {
    content: "✓";
    color: var(--accent-2);
    font-weight: 800;
}

.bullet-list.compact { margin-top: 16px; }
.bullet-list.compact li { font-size: 0.92rem; }

.preview-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel-2);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.preview-label {
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--text) 88%, var(--accent));
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.preview-frame {
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
    background: color-mix(in srgb, var(--bg-alt) 70%, black);
    min-height: 220px;
    display: grid;
    place-items: center;
}

.preview-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.preview-launch-form {
    margin: 0;
}

.preview-frame-button {
    width: 100%;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
}

.preview-frame-button:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--accent) 55%, white);
    outline-offset: 2px;
}

.preview-frame-button:hover .preview-play-btn {
    transform: scale(1.04);
    box-shadow: 0 16px 36px rgba(0,0,0,0.30), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.preview-play-btn {
    transition: transform .14s ease, box-shadow .14s ease;
}
.preview-text {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.action-stack {
    display: grid;
    gap: 9px;
    margin-top: 2px;
}

.inline-form { margin: 0; }
.action-row { display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 11px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, opacity .15s ease;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 14%, transparent); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--btn-grad);
    color: #07121b;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 24%, transparent);
}

.btn-primary.alt {
    background: var(--btn-grad-alt);
}

.btn-secondary {
    background: color-mix(in srgb, var(--panel-2) 75%, white 2%);
    border-color: var(--line);
    color: var(--text);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--muted);
}

.btn.wide { width: 100%; }

.video-card {
    margin-top: 16px;
    padding: 16px;
    background: var(--panel);
}

.section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.section-head h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1.35rem;
}

.step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    font-size: 0.78rem;
    color: color-mix(in srgb, var(--text) 90%, var(--accent));
}

.video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg-alt) 70%, black);
}

.video-wrap video {\n    border-radius: inherit;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-meta {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.video-meta p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.offer-shell {
    margin-top: 16px;
    padding: 16px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.product-card,
.form-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel-2);
    padding: 14px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 6px 10px;
    font-size: 0.8rem;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: color-mix(in srgb, var(--text) 90%, var(--accent));
}

.product-media {
    margin-top: 10px;
    border-radius: calc(var(--radius) - 4px);
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg-alt) 66%, black);
    padding: 10px;
}

.product-media img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    border-radius: 12px;
}

.product-card h3,
.form-card h3 {
    margin: 12px 0 8px;
    font-family: var(--font-title);
    line-height: 1.15;
}

.product-card p,
.form-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.form-card form { margin-top: 12px; }

.field { margin-bottom: 11px; }
.field label { display: block; margin-bottom: 6px; font-size: 0.88rem; color: color-mix(in srgb, var(--text) 92%, var(--accent)); }
.field input,
.field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg-alt) 60%, black 10%);
    color: var(--text);
    padding: 11px 12px;
    font: inherit;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: color-mix(in srgb, var(--muted) 80%, black); }
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--accent) 50%, white 10%);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.checkbox-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.84rem;
    color: var(--muted);
    margin: 4px 0 12px;
}

.checkbox-row input { margin-top: 2px; accent-color: var(--accent); }
.checkbox-row a { color: color-mix(in srgb, var(--text) 92%, var(--accent)); }

.trust-line {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: color-mix(in srgb, var(--muted) 88%, var(--text));
    font-size: 0.82rem;
}

.cards-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.info-card {
    padding: 14px;
    background: var(--panel-2);
}

.info-card h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.disclaimer {
    margin-top: 16px;
    border-radius: var(--radius);
    border: 1px solid color-mix(in srgb, var(--accent2, var(--accent)) 14%, white 2%);
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    padding: 13px 14px;
    color: color-mix(in srgb, var(--text) 88%, var(--muted));
    font-size: 0.86rem;
}

.footer-card {
    margin-top: 16px;
    padding: 14px;
    background: var(--panel);
}

.footer-main {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-sub {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
}

.legal-links a {
    text-decoration: none;
    border-bottom: 1px dotted color-mix(in srgb, var(--text) 35%, transparent);
    color: color-mix(in srgb, var(--text) 92%, var(--accent));
    font-size: 0.84rem;
}

.legal-links a:hover {
    border-bottom-color: color-mix(in srgb, var(--text) 70%, transparent);
}


/* Enhanced no-JS preview player look */
.hero-card,
.video-card,
.offer-shell,
.info-card,
.footer-card {
    box-shadow: var(--shadow), inset 0 1px 0 color-mix(in srgb, #fff 4%, transparent);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.video-card:hover,
.offer-shell:hover,
.info-card:hover,
.footer-card:hover {
    border-color: color-mix(in srgb, var(--accent) 24%, var(--line));
    box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--accent) 10%, transparent);
}

.preview-card {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--panel-2) 90%, #fff 2%), color-mix(in srgb, var(--panel-2) 98%, #000 2%));
}

.preview-frame.preview-player {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 0;
    padding: 0;
    place-items: stretch;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, #fff 4%, transparent);
}

.preview-frame.preview-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.03);
}

.preview-frame.preview-player::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.00) 28%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.38));
    pointer-events: none;
}

.preview-frame.preview-player::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    pointer-events: none;
}

.preview-ui {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 10px;
    pointer-events: none;
}

.preview-ui-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.preview-chip,
.preview-time {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(4, 9, 14, 0.45);
    color: #eff7ff;
    font-size: 0.76rem;
    line-height: 1;
    backdrop-filter: blur(6px);
}

.preview-chip { padding: 0 10px; }
.preview-time { padding: 0 9px; font-variant-numeric: tabular-nums; }

.preview-ui-center {
    display: grid;
    place-items: center;
}

.preview-play-btn {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.84);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 14px 35px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,255,255,0.06);
    display: grid;
    place-items: center;
}

.preview-play-triangle {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

.preview-ui-bottom {
    display: grid;
    gap: 8px;
}

.preview-progress {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    overflow: hidden;
}

.preview-progress-fill {
    display: block;
    width: 17%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff, color-mix(in srgb, var(--accent) 45%, #fff));
    box-shadow: 0 0 10px rgba(255,255,255,0.35);
}

.preview-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4f8ff;
    font-size: 0.77rem;
    padding: 7px 9px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(6, 10, 16, 0.44);
    backdrop-filter: blur(6px);
}

.pc-icon {
    position: relative;
    width: 15px;
    height: 15px;
    display: inline-block;
    opacity: .92;
}

.pc-play::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 1px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid currentColor;
}

.pc-vol::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 7px;
    background: currentColor;
    border-radius: 1px;
}

.pc-vol::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    width: 8px;
    height: 10px;
    border: 2px solid currentColor;
    border-left: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    opacity: .8;
}

.pc-full::before,
.pc-full::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 2px solid currentColor;
    border-radius: 2px;
    opacity: .9;
}

.pc-time {
    font-variant-numeric: tabular-nums;
    color: rgba(255,255,255,0.92);
}

.pc-spacer { flex: 1; }

.preview-text {
    line-height: 1.45;
}

.video-wrap {
    position: relative;
    box-shadow: 0 14px 32px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.video-meta {
    padding: 2px 2px 0;
}

.product-media {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 12px 24px rgba(0,0,0,0.12);
}

.product-media img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.16);
}

@media (max-width: 640px) {
    .preview-play-btn {
        width: 64px;
        height: 64px;
    }

    .preview-controls {
        gap: 6px;
        font-size: 0.72rem;
        padding: 6px 7px;
    }

    .preview-chip,
    .preview-time {
        min-height: 24px;
        font-size: 0.72rem;
    }
}

/* Dynamic top-stage block (PHP only) */
.stage-card-title {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(1.02rem, 2vw, 1.26rem);
    line-height: 1.14;
}

.preview-card .video-wrap {
    margin-top: 2px;
}

.preview-card .video-meta {
    margin-top: 10px;
}

.preview-card .video-meta p {
    font-size: 0.9rem;
}

.preview-card .action-row {
    display: grid;
    gap: 9px;
}

.preview-card .action-row .btn {
    width: 100%;
}

.preview-card .offer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.preview-card .product-card,
.preview-card .form-card {
    padding: 12px;
}

.preview-card .product-card h3,
.preview-card .form-card h3 {
    font-size: 1.02rem;
}

.preview-card .trust-line {
    gap: 6px;
}

@media (max-width: 980px) {
    .hero-card { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .status-chip { white-space: normal; text-align: right; }
}

@media (max-width: 640px) {
    .page-shell { width: calc(100% - 12px); padding-top: 8px; }
    .topbar { padding: 10px 11px; border-radius: 14px; }
    .brand-name { font-size: 0.9rem; }
    .brand-sub { font-size: 0.74rem; }
    .status-chip { font-size: 0.77rem; padding: 7px 9px; }
    .hero-copy h1 { font-size: 1.5rem; }
    .btn { width: 100%; }
    .action-row { display: grid; }
}

/* Distinctive Site Overrides START */
.topbar {
    border-radius: 999px;
    padding-inline: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-card {
    grid-template-columns: 0.95fr 1.05fr;
    border-radius: 30px;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(136,255,209,0.12), transparent 42%),
        linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.hero-copy {
    order: 2;
    padding-left: 10px;
    position: relative;
}

.hero-copy::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: color-mix(in srgb, var(--accent) 35%, transparent);
}

.preview-card {
    order: 1;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(13, 32, 52, 0.92), rgba(10, 23, 39, 0.96));
    box-shadow: inset 0 0 0 1px rgba(102,211,255,0.10), 0 16px 34px rgba(0,0,0,0.18);
}

.preview-label {
    letter-spacing: 0.08em;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: .94;
}

.btn {
    border-radius: 999px;
}

.btn-ghost,
.btn-secondary {
    background: rgba(255,255,255,0.02);
}

.cards-grid {
    grid-template-columns: 1.2fr .9fr .9fr;
    grid-auto-rows: minmax(120px, auto);
}

.cards-grid .info-card:first-child {
    grid-row: span 2;
}

.info-card {
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
}

.info-card h4 {
    font-size: 1.08rem;
}

.disclaimer {
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(102,211,255,0.08), rgba(136,255,209,0.03));
}

@media (max-width: 980px) {
    .hero-card { grid-template-columns: 1fr; }
    .hero-copy,
    .preview-card { order: initial; }
    .hero-copy::before { display: none; }
    .cards-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .cards-grid .info-card:first-child { grid-row: auto; }
}
/* Distinctive Site Overrides END */

/* Extra blocks (UA) START */
.timeline-panel,
.faq-panel {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.compact-head {
    margin-bottom: 12px;
}

.compact-head h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1.24rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: start;
}

.timeline-item,
.timeline-note {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel-2);
    padding: 12px;
}

.timeline-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: color-mix(in srgb, var(--text) 90%, var(--accent));
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-item h3,
.timeline-note strong,
.faq-item h3 {
    margin: 0;
    font-family: var(--font-title);
    line-height: 1.12;
}

.timeline-item h3 {
    font-size: 1rem;
}

.timeline-item p,
.timeline-note p,
.faq-item p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.timeline-note {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), color-mix(in srgb, var(--panel-2) 92%, transparent));
}

.timeline-note strong {
    display: block;
    font-size: 0.96rem;
}

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

.faq-item {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel-2);
    padding: 13px;
}

.faq-item h3 {
    font-size: 0.98rem;
}

.faq-item.accent {
    border-color: color-mix(in srgb, var(--accent) 24%, var(--line));
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, transparent), var(--panel-2));
}

@media (max-width: 980px) {
    .timeline-grid { grid-template-columns: 1fr 1fr; }
    .timeline-note { grid-column: 1 / -1; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .timeline-grid { grid-template-columns: 1fr; }
    .timeline-note { grid-column: auto; }
    .timeline-panel,
    .faq-panel { padding: 14px; }
}
/* Extra blocks (UA) END */

/* Extra layout overrides START */
.timeline-grid {
    grid-template-columns: 1.05fr 1.05fr .9fr;
    grid-template-areas:
        "a b note"
        "c c note";
}
.timeline-grid .timeline-item:nth-child(1) { grid-area: a; }
.timeline-grid .timeline-item:nth-child(2) { grid-area: b; }
.timeline-grid .timeline-item:nth-child(3) { grid-area: c; }
.timeline-grid .timeline-note { grid-area: note; }
.faq-grid { grid-template-columns: 1.2fr .8fr 1fr; }
.faq-grid .faq-item:first-child { grid-row: span 2; }
@media (max-width: 980px) {
  .timeline-grid { grid-template-columns: 1fr; grid-template-areas: none; }
  .timeline-grid .timeline-item,
  .timeline-grid .timeline-note { grid-area: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .faq-item:first-child { grid-row: auto; }
}
/* Extra layout overrides END */

/* Content depth + mobile polish START */
.hero-note-card {
    margin-top: 12px;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
    background: color-mix(in srgb, var(--panel-2) 80%, transparent);
    padding: 12px 13px;
    display: grid;
    gap: 8px;
}

.hero-note-card p {
    margin: 0;
    color: color-mix(in srgb, var(--muted) 90%, var(--text));
    font-size: 0.9rem;
    line-height: 1.45;
}

.micro-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.micro-list li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 8px;
    font-size: 0.86rem;
    color: color-mix(in srgb, var(--text) 90%, var(--muted));
    line-height: 1.35;
}

.micro-list li::before {
    content: "•";
    color: color-mix(in srgb, var(--accent) 70%, white);
    font-weight: 700;
}

.micro-note {
    margin: 0;
    color: color-mix(in srgb, var(--muted) 88%, var(--text));
    font-size: 0.84rem;
    line-height: 1.4;
}

.video-secondary {
    color: color-mix(in srgb, var(--muted) 85%, var(--text));
    font-size: 0.88rem;
}

.product-extra {
    margin-top: 10px;
    color: color-mix(in srgb, var(--muted) 88%, var(--text));
    font-size: 0.88rem;
    line-height: 1.45;
}

.form-help {
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
    background: color-mix(in srgb, var(--panel-2) 78%, transparent);
}

.form-help p {
    margin: 0;
    color: color-mix(in srgb, var(--muted) 90%, var(--text));
    font-size: 0.86rem;
    line-height: 1.4;
}

.next-steps {
    margin: 8px 0 0;
    padding-left: 16px;
    color: color-mix(in srgb, var(--muted) 88%, var(--text));
    display: grid;
    gap: 5px;
    font-size: 0.84rem;
}

.guide-panel {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.guide-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel-2);
    padding: 13px;
}

.guide-card h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1rem;
    line-height: 1.12;
}

.guide-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.guide-card ul {
    margin: 10px 0 0;
    padding-left: 16px;
    display: grid;
    gap: 6px;
    color: color-mix(in srgb, var(--text) 90%, var(--muted));
    font-size: 0.87rem;
    line-height: 1.4;
}

.guide-card li::marker {
    color: color-mix(in srgb, var(--accent) 70%, white);
}

@media (max-width: 980px) {
    .guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    body { line-height: 1.45; }

    .page-shell {
        width: calc(100% - 10px);
        padding-top: 6px;
        padding-bottom: 18px;
    }

    .topbar {
        position: static;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .brand-block {
        gap: 8px;
    }

    .brand-name {
        font-size: 0.92rem;
        line-height: 1.15;
    }

    .brand-sub {
        font-size: 0.73rem;
        line-height: 1.25;
    }

    .status-chip {
        align-self: flex-start;
        max-width: 100%;
        white-space: normal;
        line-height: 1.2;
        font-size: 0.76rem;
        padding: 6px 9px;
    }

    .hero-card {
        margin-top: 10px;
        padding: 12px;
        gap: 12px;
        border-radius: 16px;
        grid-template-columns: 1fr;
    }

    .eyebrow {
        font-size: 0.74rem;
        padding: 6px 9px;
        margin-bottom: 8px;
        line-height: 1.15;
    }

    .hero-copy h1 {
        font-size: clamp(1.6rem, 8vw, 2.15rem) !important;
        line-height: 0.98;
        letter-spacing: -0.01em;
        word-break: break-word;
    }

    .lead {
        margin-top: 10px;
        font-size: 0.92rem;
        line-height: 1.42;
    }

    .sublead {
        margin-top: 8px;
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .hero-note-card {
        margin-top: 10px;
        padding: 10px;
        gap: 7px;
        border-radius: 10px;
    }

    .hero-note-card p {
        font-size: 0.84rem;
        line-height: 1.38;
    }

    .bullet-list.compact {
        margin-top: 12px;
        gap: 7px;
    }

    .bullet-list.compact li {
        font-size: 0.86rem;
        gap: 8px;
        grid-template-columns: 14px 1fr;
        line-height: 1.35;
    }

    .preview-card,
    .timeline-panel,
    .faq-panel,
    .guide-panel,
    .footer-card {
        padding: 12px;
        border-radius: 14px;
    }

    .preview-card .stage-card-title {
        font-size: 1.03rem;
        line-height: 1.12;
    }

    .preview-label {
        font-size: 0.73rem;
        letter-spacing: 0.06em;
    }

    .preview-text,
    .micro-note,
    .video-meta p,
    .video-secondary,
    .product-extra,
    .form-help p,
    .timeline-item p,
    .timeline-note p,
    .faq-item p,
    .guide-card p {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .micro-list li,
    .guide-card ul,
    .next-steps {
        font-size: 0.82rem;
    }

    .preview-ui {
        padding: 8px;
    }

    .preview-controls {
        padding: 5px 6px;
        gap: 5px;
        font-size: 0.68rem;
    }

    .pc-full { display: none; }

    .action-stack,
    .action-row {
        display: grid;
        gap: 8px;
    }

    .action-row .inline-form,
    .action-stack .inline-form {
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 0.92rem;
        line-height: 1.15;
    }

    .offer-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .product-card,
    .form-card,
    .timeline-item,
    .timeline-note,
    .faq-item,
    .guide-card,
    .info-card {
        padding: 11px;
        border-radius: 12px;
    }

    .product-card h3,
    .form-card h3,
    .guide-card h3,
    .timeline-item h3,
    .faq-item h3,
    .timeline-note strong {
        font-size: 0.96rem;
    }

    .product-media {
        padding: 8px;
    }

    .product-media img {
        max-width: 230px;
    }

    .field {
        margin-bottom: 10px;
    }

    .field label {
        margin-bottom: 5px;
        font-size: 0.84rem;
    }

    .field input {
        min-height: 44px;
        border-radius: 10px;
        padding: 10px 11px;
        font-size: 16px;
    }

    .checkbox-row {
        grid-template-columns: 16px 1fr;
        gap: 8px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .trust-line {
        gap: 6px;
        font-size: 0.76rem;
        line-height: 1.25;
    }

    .compact-head h2,
    .section-head h2 {
        font-size: 1.05rem;
        line-height: 1.15;
    }

    .step-pill {
        font-size: 0.72rem;
        padding: 4px 7px;
    }

    .cards-grid,
    .timeline-grid,
    .faq-grid,
    .guide-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .disclaimer {
        margin-top: 12px;
        padding: 11px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .footer-main {
        gap: 10px;
    }

    .legal-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        width: 100%;
    }

    .legal-links a {
        font-size: 0.8rem;
        line-height: 1.3;
        border-bottom: none;
        text-decoration: underline;
        text-decoration-style: dotted;
        text-underline-offset: 2px;
    }
}

@media (max-width: 420px) {
    .page-shell {
        width: calc(100% - 8px);
        padding-top: 4px;
    }

    .topbar {
        padding: 9px;
        border-radius: 12px;
    }

    .hero-card,
    .preview-card,
    .timeline-panel,
    .faq-panel,
    .guide-panel,
    .footer-card {
        border-radius: 12px;
    }

    .hero-copy h1 {
        font-size: clamp(1.45rem, 8.5vw, 1.95rem) !important;
    }

    .preview-play-btn {
        width: 56px;
        height: 56px;
    }

    .preview-play-triangle {
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 13px;
    }

    .preview-chip,
    .preview-time {
        min-height: 22px;
        font-size: 0.68rem;
    }

    .preview-controls {
        font-size: 0.64rem;
        padding: 4px 5px;
        border-radius: 8px;
    }

    .pc-vol { display: none; }
}
/* Content depth + mobile polish END */

/* Guide layout overrides START */
.guide-grid { grid-template-columns: 1.1fr .9fr; }
.guide-card:first-child { grid-row: span 2; }
@media (max-width: 980px) { .guide-card:first-child { grid-row: auto; } }
/* Guide layout overrides END */
