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

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --card: #111111;
    --card2: #161616;
    --border: #222222;
    --green: #00e559;
    --green-dim: rgba(0, 229, 89, 0.12);
    --green-glow: rgba(0, 229, 89, 0.25);
    --white: #f2f2f2;
    --muted: #666666;
    --muted2: #999999;
    --font-head: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--green);
    overflow: hidden;
    padding: 9px 0;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    color: #000;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 62px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.nav-logo .dot {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--muted2);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-ghost {
    color: var(--muted2);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-nav-ghost:hover {
    color: var(--white);
}

.btn-nav {
    background: var(--green);
    color: #000;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    padding: 9px 22px;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-nav:hover {
    opacity: 0.88;
    transform: scale(1.02);
}

.btn-nav svg {
    width: 13px;
    height: 13px;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 229, 89, 0.12) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.75rem;
    color: var(--muted2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: var(--font-head);
    font-weight: 600;
    animation: fadeUp 0.5s ease both;
}

.hero-eyebrow .live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    animation: fadeUp 0.5s 0.08s ease both;
}

h1 .accent {
    color: var(--green);
}

h1 .dim {
    color: #555;
}

.hero-sub {
    max-width: 580px;
    font-size: 1.1rem;
    color: var(--muted2);
    margin-bottom: 40px;
    line-height: 1.65;
    animation: fadeUp 0.5s 0.16s ease both;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.5s 0.24s ease both;
    margin-bottom: 20px;
}

.btn-primary {
    background: var(--green);
    color: #000;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 40px rgba(0, 229, 89, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 60px rgba(0, 229, 89, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: 100px;
    border: 1px solid var(--border);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: #444;
    background: rgba(255, 255, 255, 0.04);
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 0.82rem;
    color: var(--muted);
    animation: fadeUp 0.5s 0.32s ease both;
    flex-wrap: wrap;
}

.hero-proof span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-proof svg {
    color: var(--green);
}

/* VSL */
.vsl-container {
    width: 100%;
    max-width: 860px;
    margin: 56px auto 0;
    position: relative;
    animation: fadeUp 0.6s 0.4s ease both;
}

.vsl-glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 229, 89, 0.25), transparent 50%, transparent);
    pointer-events: none;
    z-index: 0;
}

.vsl-frame {
    position: relative;
    z-index: 1;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 229, 89, 0.04) 0%, transparent 40%);
}

.vsl-play-btn {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 0 0 0 rgba(0, 229, 89, 0.5);
    animation: pulseGreen 2.5s infinite;
}

.vsl-play-btn:hover {
    transform: scale(1.08);
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 89, 0.5);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(0, 229, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 89, 0);
    }
}

.vsl-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

.vsl-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #1a1a1a;
    z-index: 2;
}

.wdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wdot.r {
    background: #ff5f57;
}

.wdot.y {
    background: #febc2e;
}

.wdot.g {
    background: #28c840;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ── SOCIAL PROOF TICKER ── */
.brand-ticker-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    background: var(--dark);
}

.brand-ticker-inner {
    display: inline-flex;
    animation: ticker 18s linear infinite;
}

.brand-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-ticker-item svg {
    color: var(--green);
    opacity: 0.7;
}

/* ── SECTIONS COMMON ── */
section {
    position: relative;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec-eyebrow {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}

h2 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h2 .dim {
    color: #555;
}

h2 .accent {
    color: var(--green);
}

.sec-desc {
    color: var(--muted2);
    font-size: 1rem;
    max-width: 480px;
    margin-top: 14px;
    line-height: 1.7;
}

/* ── CASE STUDY ── */
#case {
    padding: 100px 0;
    background: var(--dark);
}

.case-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), rgba(0, 229, 89, 0.3));
}

.case-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.case-left {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.case-left h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.case-left h3 .accent {
    color: var(--green);
}

.case-quote {
    font-size: 0.9rem;
    color: var(--muted2);
    line-height: 1.7;
    border-left: 2px solid var(--green);
    padding-left: 16px;
}

.case-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #00a03c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.case-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
}

.case-handle {
    font-size: 0.78rem;
    color: var(--muted);
}

.case-right {
    background: #0d0d0d;
    border-left: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.case-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 229, 89, 0.08) 0%, transparent 60%);
}

/* dashboard mock */
.dash-mock {
    background: #141414;
    border: 1px solid #252525;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.dash-header {
    padding: 14px 16px;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-title {
    font-size: 0.7rem;
    color: #555;
    font-family: var(--font-head);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dash-badge {
    font-size: 0.65rem;
    background: var(--green-dim);
    border: 1px solid rgba(0, 229, 89, 0.2);
    color: var(--green);
    border-radius: 4px;
    padding: 2px 8px;
    font-family: var(--font-head);
    font-weight: 700;
}

.dash-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--muted);
}

.stat-val {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--green);
}

.stat-val.white {
    color: var(--white);
}

.dash-divider {
    height: 1px;
    background: #1e1e1e;
    margin: 4px 0;
}

.mini-chart {
    height: 52px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 8px 0 0;
}

.bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: rgba(0, 229, 89, 0.15);
    transition: background 0.2s;
}

.bar:hover {
    background: rgba(0, 229, 89, 0.35);
}

.bar.high {
    background: rgba(0, 229, 89, 0.5);
}

/* ── PROBLEM ── */
#problem {
    padding: 100px 0;
    background: var(--black);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.prob-card {
    background: var(--black);
    padding: 40px 32px;
    position: relative;
    transition: background 0.3s;
}

.prob-card:hover {
    background: #0a0a0a;
}

.prob-num {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.prob-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.prob-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
}

.problem-solution {
    margin-top: 24px;
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 28px 32px;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.65;
}

.problem-solution .green {
    color: var(--green);
    font-weight: 600;
}

/* ── FEATURES ── */
#features {
    padding: 100px 0;
    background: var(--dark);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .sec-desc {
    margin: 14px auto 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.feature-row:hover {
    border-color: rgba(0, 229, 89, 0.18);
}

.feature-row.flip .feat-content {
    order: 2;
}

.feature-row.flip .feat-visual {
    order: 1;
}

.feat-content {
    padding: 52px 48px;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-dim);
    border: 1px solid rgba(0, 229, 89, 0.2);
    color: var(--green);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    width: fit-content;
}

.feat-content h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.feat-content p {
    font-size: 0.9rem;
    color: var(--muted2);
    line-height: 1.7;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted2);
    line-height: 1.55;
}

.feat-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%2300e559' stroke-opacity='0.3'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2300e559' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    margin-top: 1px;
}

.feat-visual {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.feat-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 229, 89, 0.05) 0%, transparent 65%);
}

/* mock cards */
.mock-window {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: relative;
}

.mock-titlebar {
    background: #0d0d0d;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #1e1e1e;
}

.mock-titlebar .d {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.mock-titlebar .d.r {
    background: #ff5f57;
}

.mock-titlebar .d.y {
    background: #febc2e;
}

.mock-titlebar .d.g {
    background: #28c840;
}

.mock-titlebar span {
    flex: 1;
    font-size: 0.65rem;
    color: #333;
    text-align: center;
    letter-spacing: 0.04em;
    font-family: var(--font-head);
}

.mock-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-row-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 10px 12px;
}

.mock-thumb-sq {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    flex-shrink: 0;
}

.mock-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mock-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.mock-line.s {
    width: 55%;
}

.roas-pill {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.68rem;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid rgba(0, 229, 89, 0.2);
    border-radius: 5px;
    padding: 3px 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ai mock */
.ai-chat {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: relative;
}

.ai-header {
    background: #0d0d0d;
    padding: 12px 16px;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.ai-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
}

.ai-status {
    font-size: 0.65rem;
    color: var(--green);
}

.ai-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-bubble {
    background: #1a1a1a;
    border-radius: 0 10px 10px 10px;
    padding: 10px 12px;
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.6;
    border: 1px solid #222;
}

.ai-bubble .green {
    color: var(--green);
    font-weight: 600;
}

.ai-bubble .yellow {
    color: #f5c842;
}

.ai-score {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.ai-tag {
    font-size: 0.62rem;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: 4px;
    padding: 3px 7px;
}

.ai-tag.g {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(0, 229, 89, 0.2);
}

.ai-tag.y {
    background: rgba(245, 200, 66, 0.08);
    color: #f5c842;
    border: 1px solid rgba(245, 200, 66, 0.2);
}

/* clone mock */
.clone-mock {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: relative;
}

.clone-header {
    background: #0d0d0d;
    padding: 10px 14px;
    border-bottom: 1px solid #1e1e1e;
    font-family: var(--font-head);
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.clone-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pb-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #555;
}

.pb-label span:last-child {
    color: var(--green);
    font-weight: 700;
    font-family: var(--font-head);
}

.pb-track {
    background: #1e1e1e;
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
}

.pb-fill {
    height: 100%;
    background: var(--green);
    border-radius: 100px;
}

.clone-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.clone-panel {
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 0.7rem;
}

.clone-panel .plabel {
    color: #444;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.clone-panel.active {
    border-color: rgba(0, 229, 89, 0.3);
    background: var(--green-dim);
}

.clone-panel.active .pname {
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
}

.clone-panel .pname {
    color: #555;
}

.clone-check {
    color: var(--green);
    font-size: 0.9rem;
}

/* ── ACADEMY ── */
#academy {
    padding: 100px 0;
    background: var(--black);
}

.academy-header {
    text-align: center;
    margin-bottom: 56px;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ac-card {
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.ac-card:hover {
    border-color: rgba(0, 229, 89, 0.2);
    transform: translateY(-4px);
}

.ac-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    opacity: 0;
    transition: opacity 0.3s;
}

.ac-card:hover::before {
    opacity: 1;
}

.ac-icon {
    font-size: 2rem;
    line-height: 1;
}

.ac-card h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.ac-card p {
    font-size: 0.86rem;
    color: var(--muted2);
    line-height: 1.65;
}

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.testi-card {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(0, 229, 89, 0.2);
}

.testi-stars {
    color: var(--green);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.85rem;
    color: var(--muted2);
    line-height: 1.7;
}

.testi-text strong {
    color: var(--white);
    font-weight: 500;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.testi-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    color: #000;
    flex-shrink: 0;
}

.testi-meta .name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
}

.testi-meta .handle {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ── PRICING (NEW TABLE) ── */
#pricing {
    padding: 100px 0;
    background: var(--black);
}

.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.plans-table-wrap {
    max-width: 980px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.plans-table {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

/* HEADER ROW */
.plans-th {
    padding: 24px 20px;
    background: #111;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plans-th-feature {
    background: #0a0a0a;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    justify-content: flex-end;
}

.plans-th-basic,
.plans-th-pro,
.plans-th-annual {
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--border);
}

.plans-th-pro {
    background: #0f1a0f;
    position: relative;
}

.plans-th-pro::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #000;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 0 0 6px 6px;
}

.plans-th-annual {
    background: #0f1a0f;
}

.plan-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    margin-top: 10px;
}

.plan-price-badge {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--green);
    letter-spacing: -0.03em;
    line-height: 1;
}

.plan-price-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0;
}

/* DATA ROWS */
.plans-td {
    padding: 14px 20px;
    font-size: 0.875rem;
    color: var(--muted2);
    border-bottom: 1px solid #181818;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    transition: background 0.2s;
}

.plans-td:nth-child(4n+1) {
    /* feature label cells */
    background: #0a0a0a;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--white);
}

.plans-td:not(:nth-child(4n+1)) {
    justify-content: center;
    text-align: center;
    border-left: 1px solid #181818;
}

/* Pro column highlight */
.plans-td:nth-child(4n+3) {
    background: #0b160b;
}

/* Annual column highlight */
.plans-td-annual {
    background: #0b160b !important;
    color: var(--white) !important;
}

/* Hover rows */
.plans-table>.plans-td:hover,
.plans-table>.plans-td:nth-child(4n+1):hover~.plans-td {
    background: #121212;
}

/* CTA cells */
.plans-cta-cell {
    padding: 20px 16px !important;
    background: #0a0a0a !important;
    border-bottom: none !important;
}

.plans-cta-cell:nth-child(4n+3),
.plans-cta-cell.plans-td-annual {
    background: #0b160b !important;
}

.plans-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 12px 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    letter-spacing: 0.02em;
}

.plans-cta-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.plans-cta-ghost:hover {
    border-color: #444;
    background: rgba(255, 255, 255, 0.04);
}

.plans-cta-green {
    background: var(--green);
    color: #000;
    border: 1px solid var(--green);
    box-shadow: 0 0 30px rgba(0, 229, 89, 0.2);
}

.plans-cta-green:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 40px rgba(0, 229, 89, 0.35);
}

/* guarantee */
.guarantee-card {
    max-width: 980px;
    margin: 28px auto 0;
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 36px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gu-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.gu-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 6px;
}

.gu-title .accent {
    color: var(--green);
}

.gu-text {
    font-size: 0.85rem;
    color: var(--muted2);
    line-height: 1.65;
}

/* ── FAQ ── */
#faq {
    padding: 100px 0;
    background: var(--dark);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    padding: 22px 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--green);
}

.faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--green-dim);
    border-color: rgba(0, 229, 89, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 0.9rem;
    color: var(--muted2);
    line-height: 1.75;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.footer-logo .dot {
    color: var(--green);
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.78rem;
    color: #333;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .case-inner {
        grid-template-columns: 1fr;
    }

    .case-right {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

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

    .feature-row.flip .feat-content {
        order: 1;
    }

    .feature-row.flip .feat-visual {
        order: 2;
    }

    .feat-visual {
        min-height: 220px;
    }

    .academy-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .plans-table {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        font-size: 0.78rem;
        min-width: 600px;
    }

    .plans-td,
    .plans-th {
        padding: 10px 8px;
    }

    .plan-price-badge {
        font-size: 1.2rem;
    }

    .plan-name {
        font-size: 0.78rem;
    }
}

.plans-scroll-hint {
    display: none;
}

@media (max-width: 600px) {
    .plans-scroll-hint {
        display: block;
        text-align: center;
        font-size: 0.72rem;
        color: var(--muted);
        margin-bottom: 10px;
        letter-spacing: 0.03em;
    }

    .plans-table-wrap {
        border-radius: 16px;
        padding-bottom: 4px;
    }

    .plans-table {
        grid-template-columns: 140px repeat(3, 120px);
        font-size: 0.72rem;
        min-width: 500px;
    }

    .plans-td,
    .plans-th {
        padding: 10px 10px;
    }

    .plan-price-badge {
        font-size: 1.1rem;
    }

    .plan-name {
        font-size: 0.72rem;
        margin-top: 6px;
    }

    .plans-cta-btn {
        font-size: 0.7rem;
        padding: 10px 8px;
    }
}
