:root {
    --bg: #0a0a0a;
    --bg-alt: #0f0f10;
    --surface: #121214;
    --surface-2: #17171a;
    --border: #24242a;
    --border-strong: #2f2f36;
    --text: #f5f5f5;
    --text-muted: #9a9aa5;
    --text-dim: #6b6b75;
    --accent: #ff6a1a;
    --accent-2: #ff8a3d;
    --accent-soft: rgba(255, 106, 26, 0.12);
    --accent-ring: rgba(255, 106, 26, 0.35);
    --danger: #ef4444;
    --success: #22c55e;
    --whatsapp: #25d366;
    --max: 1200px;
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ============ Grain ============ */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ Typography ============ */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.3rem); line-height: 1.1; }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }

.accent { color: var(--accent); }
.muted { color: var(--text-muted); font-weight: 500; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--accent);
}

.section-head { margin-bottom: 64px; max-width: 780px; }
.section-head h2 { margin-top: 0; }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #0a0a0a;
    box-shadow: 0 10px 30px -10px var(--accent-ring), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-1px);
    box-shadow: 0 14px 36px -10px var(--accent-ring);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-link {
    background: transparent;
    color: var(--text-muted);
    padding-left: 8px;
    padding-right: 8px;
}
.btn-link:hover { color: var(--text); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-xl { padding: 18px 32px; font-size: 1.05rem; }
.btn-whatsapp {
    background: var(--whatsapp);
    color: #062e10;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.btn-whatsapp:hover { background: #2de07a; transform: translateY(-1px); }

/* ============ Top bar ============ */
.top {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 18px 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.top-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.brand-dot { color: var(--accent); }

/* ============ Hero ============ */
.hero {
    position: relative;
    padding: 90px 0 40px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 420px at 10% 20%, rgba(255, 106, 26, 0.12), transparent 60%),
        radial-gradient(ellipse 620px 380px at 85% 70%, rgba(255, 106, 26, 0.06), transparent 60%),
        linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.02) 100%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 26px;
}
.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 .line { display: block; }
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 28px 0 36px;
    max-width: 560px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-trust svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hero right — guarantee card */
.hero-right { position: relative; }
.guarantee-card {
    position: relative;
    background: linear-gradient(155deg, #fafaf5 0%, #ede5d3 100%);
    color: #18181b;
    border-radius: var(--radius-lg);
    padding: 38px 32px 28px;
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08);
    transform: rotate(1.2deg);
    font-family: "Courier New", monospace;
}
.guarantee-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(24,24,27,0.25);
    border-radius: 20px;
    pointer-events: none;
}
.gc-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    padding: 8px 18px;
    border-radius: 6px;
    box-shadow: 0 8px 20px -6px var(--accent-ring);
}
.gc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(24,24,27,0.15);
    margin-bottom: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(24,24,27,0.6);
}
.gc-label { font-weight: 700; color: #18181b; }
.gc-body { position: relative; }
.gc-clause {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 14px;
    color: #27272a;
    display: flex;
    gap: 10px;
}
.gc-clause strong { color: #18181b; font-weight: 700; }
.gc-bullet {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
}
.gc-stamp {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 110px;
    height: 110px;
    transform: rotate(-12deg);
    pointer-events: none;
}
.gc-stamp-ring {
    position: absolute;
    inset: 0;
    border: 2.5px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 4px;
    animation: spin 22s linear infinite;
    opacity: 0.85;
}
.gc-stamp-ring span { padding: 2px; }
.gc-stamp-center {
    position: absolute;
    inset: 18px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    background: rgba(255, 106, 26, 0.08);
}
@keyframes spin { to { transform: rotate(360deg); } }
.gc-sig {
    margin-top: 16px;
    font-size: 0.7rem;
    color: rgba(24,24,27,0.5);
    font-family: var(--font-body);
}

/* Hero marquee */
.hero-marquee {
    margin-top: 60px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.marquee-track {
    display: flex;
    gap: 38px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dim);
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ Sections base ============ */
.section {
    position: relative;
    padding: 120px 0;
    z-index: 2;
}
.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============ For who ============ */
.forwho {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.forwho-col {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
}
.forwho-yes { border-color: rgba(34, 197, 94, 0.18); }
.forwho-no { border-color: rgba(239, 68, 68, 0.18); }
.forwho-label { margin-bottom: 24px; }
.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.tag-yes { background: rgba(34, 197, 94, 0.12); color: #4ade80; }
.tag-no { background: rgba(239, 68, 68, 0.12); color: #f87171; }
.forwho ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.5;
}
.forwho ul li:last-child { border-bottom: none; padding-bottom: 0; }
.ico {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 2px;
}
.ico-yes { background: rgba(34, 197, 94, 0.14); color: #4ade80; }
.ico-no { background: rgba(239, 68, 68, 0.14); color: #f87171; }

/* ============ Reasons ============ */
.reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reason-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 30px 32px;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.reason-card:hover { transform: translateY(-4px); border-color: var(--accent-ring); }
.reason-num {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-soft);
    border-radius: 6px;
    margin-bottom: 24px;
}
.reason-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.25;
}
.reason-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ============ Results ============ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.result-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.result-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}
.result-metric {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.result-timeframe {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.result-person {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-top: 20px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}
.result-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px dashed var(--border-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--text-dim);
    flex-shrink: 0;
    font-family: var(--font-body);
}
.result-name { font-weight: 600; font-size: 0.95rem; }
.result-role { font-size: 0.82rem; color: var(--text-dim); }

.tv-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-weight: 500;
}
.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tv-card { display: flex; flex-direction: column; gap: 12px; }
.tv-player {
    aspect-ratio: 9 / 16;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.tv-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--text-dim);
    text-align: center;
    padding: 20px;
}
.tv-play {
    width: 54px;
    height: 54px;
    fill: var(--accent);
    filter: drop-shadow(0 0 14px var(--accent-ring));
}
.tv-placeholder span { font-size: 0.85rem; line-height: 1.4; }
.tv-placeholder small { display: block; color: var(--text-dim); margin-top: 6px; }
.tv-caption {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0 4px;
}

/* ============ About Mathis ============ */
.about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.about-photo {
    position: relative;
}
.about-photo-frame {
    aspect-ratio: 4 / 5;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.about-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: repeating-linear-gradient(
        45deg,
        var(--surface),
        var(--surface) 10px,
        var(--surface-2) 10px,
        var(--surface-2) 20px
    );
    color: var(--text-muted);
    font-weight: 500;
}
.about-photo-placeholder small { color: var(--text-dim); font-size: 0.75rem; font-weight: 400; }
.about-badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.6);
    text-align: left;
}
.about-badge-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.about-badge-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.about-text h2 { margin-top: 0; margin-bottom: 26px; }
.about-bio {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    padding-left: 18px;
    border-left: 2px solid var(--accent);
}
.about-mechanism {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 30px;
}
.am-label {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}
.am-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 6px;
}
.am-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.about-does h4 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.about-does ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 0.98rem;
    color: var(--text);
}

/* ============ Steps ============ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: stepc;
    max-width: 860px;
}
.step {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 28px 32px 28px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.step:hover { border-color: var(--accent-ring); transform: translateX(4px); }
.step-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent);
    padding-left: 28px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
}
.step-body h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.step-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.step-final {
    background: linear-gradient(135deg, rgba(255, 106, 26, 0.1) 0%, var(--surface) 50%);
    border-color: var(--accent-ring);
}
.step-final .step-num { color: var(--accent); }

/* ============ FAQ ============ */
.faq { max-width: 860px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--accent-ring); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.08rem;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer {
    padding: 0 26px 22px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 720px;
}

/* ============ Final CTA ============ */
.final-cta {
    position: relative;
    padding: 120px 0 140px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(255, 106, 26, 0.12), transparent 70%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.final-cta-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-ring);
    color: var(--accent-2);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 28px;
}
.scarcity strong { color: var(--accent); font-weight: 700; }
.scarcity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 1.8s infinite ease-in-out;
}
.final-cta h2 { margin-bottom: 20px; }
.final-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px;
}
.final-subnote {
    margin-top: 18px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ============ Masterclass ============ */
.masterclass { padding: 100px 0 140px; }
.mc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.mc-card::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}
.mc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}
.mc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}
.mc-card h2 { margin-bottom: 20px; }
.mc-card > .mc-left > p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 26px;
    line-height: 1.65;
}
.mc-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.mc-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.96rem;
    color: var(--text);
}
.mc-keyword {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-ring);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.5;
}
.mc-keyword strong { display: block; margin-bottom: 4px; color: var(--accent); font-weight: 600; }
.mc-key {
    width: 22px;
    height: 22px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.mc-video {
    aspect-ratio: 16 / 10;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
}
.mc-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--text-muted);
    text-align: center;
}
.mc-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--accent-ring);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.mc-play:hover { transform: scale(1.08); }
.mc-play svg { width: 30px; height: 30px; fill: #0a0a0a; margin-left: 3px; }
.mc-video-placeholder span { font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--text); }
.mc-video-placeholder small { color: var(--text-dim); font-size: 0.78rem; }

/* ============ Footer ============ */
.footer {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    z-index: 2;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}
.footer-note { color: var(--text-dim); font-size: 0.85rem; }
.footer-cta { color: var(--accent); font-weight: 500; font-size: 0.9rem; }

/* ============ Reveal on scroll ============ */
@media (prefers-reduced-motion: no-preference) {
    .section .section-head,
    .section .forwho-col,
    .section .reason-card,
    .section .result-card,
    .section .tv-card,
    .section .step,
    .section .faq-item,
    .section .about-photo,
    .section .about-text,
    .masterclass .mc-card,
    .final-cta-inner > * {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .section.in-view .section-head,
    .section.in-view .forwho-col,
    .section.in-view .reason-card,
    .section.in-view .result-card,
    .section.in-view .tv-card,
    .section.in-view .step,
    .section.in-view .faq-item,
    .section.in-view .about-photo,
    .section.in-view .about-text,
    .masterclass.in-view .mc-card,
    .final-cta.in-view .final-cta-inner > * {
        opacity: 1;
        transform: none;
    }
    .section.in-view .reason-card:nth-child(2),
    .section.in-view .result-card:nth-child(2),
    .section.in-view .tv-card:nth-child(2),
    .section.in-view .step:nth-child(2),
    .section.in-view .faq-item:nth-child(2),
    .section.in-view .forwho-col:nth-child(2) { transition-delay: 0.08s; }
    .section.in-view .reason-card:nth-child(3),
    .section.in-view .result-card:nth-child(3),
    .section.in-view .tv-card:nth-child(3),
    .section.in-view .step:nth-child(3),
    .section.in-view .faq-item:nth-child(3) { transition-delay: 0.16s; }
    .section.in-view .step:nth-child(4),
    .section.in-view .faq-item:nth-child(4) { transition-delay: 0.24s; }
    .section.in-view .step:nth-child(5),
    .section.in-view .faq-item:nth-child(5) { transition-delay: 0.32s; }
    .section.in-view .faq-item:nth-child(6) { transition-delay: 0.4s; }
    .final-cta.in-view .final-cta-inner > *:nth-child(2) { transition-delay: 0.1s; }
    .final-cta.in-view .final-cta-inner > *:nth-child(3) { transition-delay: 0.2s; }
    .final-cta.in-view .final-cta-inner > *:nth-child(4) { transition-delay: 0.3s; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
    .hero { padding: 60px 0 30px; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-right { max-width: 440px; margin: 0 auto; width: 100%; }
    .guarantee-card { transform: rotate(0); }
    .section { padding: 80px 0; }
    .section-head { margin-bottom: 48px; }
    .forwho { grid-template-columns: 1fr; }
    .reasons { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .tv-grid { grid-template-columns: 1fr 1fr; }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about-photo { max-width: 360px; margin: 0 auto; }
    .about-badge { right: 10px; bottom: 14px; }
    .step { grid-template-columns: 60px 1fr; gap: 18px; padding: 22px 24px 22px 0; }
    .step-num { padding-left: 20px; font-size: 1.6rem; }
    .mc-card { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
    .masterclass { padding: 60px 0 90px; }
    .final-cta { padding: 80px 0 100px; }
}

@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.75rem; }
    .hero { padding: 40px 0 20px; }
    .top { padding: 14px 0; }
    .brand { font-size: 1.05rem; }
    .btn { padding: 12px 18px; font-size: 0.88rem; }
    .btn-xl { padding: 16px 24px; font-size: 0.95rem; }
    .hero-sub { font-size: 1rem; margin: 22px 0 28px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .hero-trust { gap: 10px 18px; font-size: 0.8rem; }
    .chip { font-size: 0.75rem; padding: 6px 12px; }
    .guarantee-card { padding: 30px 22px 22px; }
    .gc-stamp { width: 84px; height: 84px; right: -4px; }
    .gc-stamp-center { font-size: 0.82rem; }
    .forwho-col { padding: 26px 22px; }
    .reason-card { padding: 30px 24px; }
    .result-card { padding: 26px 22px; }
    .result-metric { font-size: 2.1rem; }
    .tv-grid { grid-template-columns: 1fr; }
    .faq-item summary { padding: 18px 20px; font-size: 0.98rem; }
    .faq-answer { padding: 0 20px 18px; }
    .mc-card { padding: 28px 22px; gap: 28px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .step { padding: 20px 20px 20px 0; gap: 14px; grid-template-columns: 50px 1fr; }
    .step-num { padding-left: 16px; font-size: 1.4rem; }
    .step-body h3 { font-size: 1.15rem; }
    .about-badge { right: 0; left: 0; margin: 0 auto; width: fit-content; bottom: -18px; }
}
