:root {
    --ve-bg: #000;
    --ve-bg-raised: #0a0a0a;
    --ve-border: #27272a;
    --ve-red: #dc2626;
    --ve-red-dark: #b91c1c;
    --ve-text: #fff;
    --ve-text-dim: #a1a1aa;
    --ve-text-faint: #71717a;
}

body {
    background: var(--ve-bg);
    color: var(--ve-text);
}

.ve-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.ve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color .2s, transform .2s;
}

.ve-btn--primary {
    background: var(--ve-red);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(220, 38, 38, .5);
}

.ve-btn--primary:hover {
    background: var(--ve-red-dark);
}

.ve-btn--full {
    width: 100%;
}

/* Hero */
.ve-hero {
    padding: 160px 0 80px;
}

.ve-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 900px) {
    .ve-hero-grid {
        grid-template-columns: 1fr;
    }

    .ve-hero {
        padding-top: 120px;
    }
}

.ve-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ve-red);
    margin: 0 0 16px;
}

.ve-tag {
    padding: 2px 8px;
    border: 1px solid rgba(220, 38, 38, .4);
    border-radius: 999px;
    background: rgba(220, 38, 38, .1);
}

.ve-h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
}

.ve-h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0;
}

.ve-h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.ve-lede {
    color: var(--ve-text-dim);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0;
}

/* Forms */
.ve-form-card {
    background: var(--ve-bg-raised);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    padding: 24px;
}

.ve-form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ve-input {
    flex: 1;
    min-width: 200px;
    background: #000;
    border: 1px solid var(--ve-border);
    border-radius: 999px;
    padding: 14px 20px;
    color: var(--ve-text);
    font-size: 14px;
}

.ve-input:focus {
    outline: none;
    border-color: var(--ve-red);
}

.ve-form-error {
    display: none;
    color: #f87171;
    font-size: 13px;
    margin: 10px 0 0;
}

.ve-form-error.is-visible {
    display: block;
}

.ve-form-note {
    color: var(--ve-text-faint);
    font-size: 12.5px;
    margin: 10px 0 0;
}

/* Decorative retention graph visual */
.ve-visual {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--ve-border);
    background: var(--ve-bg-raised);
    overflow: hidden;
    padding: 24px 24px 18px;
}

.ve-visual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ve-visual-head .dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ve-border);
    margin-right: 5px;
}

.ve-visual-label {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ve-text-faint);
}

.ve-visual svg {
    display: block;
    width: 100%;
    height: auto;
}

.ve-retention-raw {
    stroke: var(--ve-text-faint);
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 4 5;
}

.ve-retention-edited {
    stroke: var(--ve-red);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: ve-draw-line 3.2s ease-out infinite;
}

@keyframes ve-draw-line {
    0% {
        stroke-dashoffset: 400;
    }

    60% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.ve-visual-legend {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ve-text-dim);
}

.ve-visual-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ve-visual-legend i {
    display: inline-block;
    width: 14px;
    height: 3px;
    border-radius: 2px;
}

.ve-visual-legend .raw i {
    background: var(--ve-text-faint);
}

.ve-visual-legend .edited i {
    background: var(--ve-red);
}

@media (max-width: 900px) {
    .ve-visual {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Ticker */
.ve-ticker-pill {
    flex-shrink: 0;
    padding: 8px 18px;
    border: 1px solid var(--ve-border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ve-text-dim);
    white-space: nowrap;
}

/* Sections */
.ve-section {
    padding: 88px 0;
}

.ve-section--tight {
    padding: 24px 0;
}

/* Grid + cards */
.ve-grid {
    display: grid;
    gap: 20px;
}

.ve-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.ve-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.ve-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.ve-grid--6 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {

    .ve-grid--3,
    .ve-grid--4,
    .ve-grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .ve-grid--2,
    .ve-grid--3,
    .ve-grid--4,
    .ve-grid--6 {
        grid-template-columns: 1fr;
    }
}

.ve-card {
    background: var(--ve-bg-raised);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    padding: 28px;
}

.ve-card p {
    color: var(--ve-text-dim);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.ve-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(220, 38, 38, .15);
    border: 1px solid rgba(220, 38, 38, .3);
    color: var(--ve-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ve-card-icon svg {
    width: 20px;
    height: 20px;
}

.ve-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(220, 38, 38, .12);
    border: 1px solid rgba(220, 38, 38, .3);
    color: var(--ve-red);
    font-family: monospace;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
}

/* Pain items */
.ve-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 700px) {
    .ve-pain-grid {
        grid-template-columns: 1fr;
    }
}

.ve-pain-card {
    border: 1px solid var(--ve-border);
    background: var(--ve-bg-raised);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 14px;
}

.ve-pain-mark {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .15);
    color: var(--ve-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.ve-pain-card h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ve-text);
}

.ve-pain-card p {
    margin: 0;
    color: var(--ve-text-dim);
    font-size: 14px;
    line-height: 1.5;
}

/* Checklist card */
.ve-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.ve-checklist li {
    display: flex;
    gap: 12px;
}

.ve-checklist li .mark {
    color: var(--ve-red);
    font-weight: 700;
    flex-shrink: 0;
}

.ve-checklist li .txt {
    color: var(--ve-text-dim);
    font-size: 14.5px;
    line-height: 1.5;
}

.ve-checklist li .txt strong {
    color: var(--ve-text);
}

/* Before/after compare */
.ve-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 700px) {
    .ve-compare {
        grid-template-columns: 1fr;
    }
}

.ve-compare-col {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--ve-border);
    background: var(--ve-bg-raised);
}

.ve-compare-col ul {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--ve-text-dim);
    font-size: 14.5px;
    line-height: 1.7;
}

.ve-compare-col--after {
    border-color: rgba(220, 38, 38, .4);
}

.ve-compare-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ve-compare-tag--before {
    background: rgba(255, 255, 255, .06);
    color: var(--ve-text-faint);
}

.ve-compare-tag--after {
    background: rgba(220, 38, 38, .15);
    color: var(--ve-red);
}

/* Testimonials */
.ve-testimonial {
    background: var(--ve-bg-raised);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    padding: 26px;
}

.ve-testimonial-stars {
    color: var(--ve-red);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.ve-testimonial blockquote {
    margin: 0 0 18px;
    color: #e4e4e7;
    font-size: 14.5px;
    line-height: 1.6;
}

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

.ve-avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .15);
    color: var(--ve-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.ve-testimonial-person .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ve-text);
}

.ve-testimonial-person .role {
    font-size: 12.5px;
    color: var(--ve-text-faint);
}

.ve-illustrative-note {
    margin-top: 24px;
    color: var(--ve-text-faint);
    font-size: 12.5px;
    text-align: center;
}

/* FAQ */
.ve-faq-item {
    border-bottom: 1px solid var(--ve-border);
    padding: 18px 0;
}

.ve-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--ve-text);
}

.ve-faq-item summary::-webkit-details-marker {
    display: none;
}

.ve-faq-item p {
    margin: 12px 0 0;
    color: var(--ve-text-dim);
    font-size: 14.5px;
    line-height: 1.6;
}

.ve-faq-icon {
    flex-shrink: 0;
    color: var(--ve-red);
    font-size: 18px;
    font-weight: 400;
    transition: transform .2s;
}

.ve-faq-item[open] .ve-faq-icon {
    transform: rotate(45deg);
}

/* Sticky mobile CTA */
.ve-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 12px 16px;
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--ve-border);
    display: none;
}

@media (max-width: 760px) {
    .ve-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 76px;
    }
}
