/* VidCompacter landing. Cream page, navy type, purple accent.
   Layout closer to the public mock: editorial, lots of air, few cards. */

:root {
    --navy: #1e2433;
    --cream: #f7f2ea;
    --accent: #7b6cf6;
    --accent-deep: #6556e0;
    --accent-soft: #ece8ff;
    --ink-muted: rgba(30, 36, 51, 0.66);
    --line: rgba(30, 36, 51, 0.1);
    --max: 1120px;
    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 88px;
}

body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: calc(var(--max) + 48px);
    margin: 0 auto;
    padding: 18px 28px;
    background: rgba(247, 242, 234, 0.9);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.03em;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 22px;
    font-size: 14px;
    font-weight: 600;
}

nav a {
    text-decoration: none;
    color: var(--ink-muted);
}

nav a:hover {
    color: var(--navy);
}

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

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0 72px;
}

.hero > * {
    min-width: 0;
}

h1 {
    font-size: clamp(40px, 5.6vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}

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

.subhead {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 44ch;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 14px;
}

.cta-primary:hover {
    background: var(--accent-deep);
}

.cta-note {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

.hero-art {
    display: flex;
    justify-content: center;
    margin: 0;
}

.hero-art img {
    width: min(380px, 78vw);
    height: auto;
}

.steps-section {
    padding: 12px 0 56px;
}

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

.steps > * {
    min-width: 0;
}

.step {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 8px;
    align-items: start;
    padding: 8px 28px;
    border-right: 1px solid var(--line);
}

.step:first-child {
    padding-left: 0;
}

.step:last-child {
    border-right: 0;
    padding-right: 0;
}

.step-number {
    grid-column: 1;
    grid-row: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
}

.step-icon {
    grid-column: 1;
    grid-row: 2;
    color: var(--accent);
    width: 40px;
    height: 40px;
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    align-self: center;
}

.step p {
    grid-column: 2;
    grid-row: 2;
    color: var(--ink-muted);
    font-size: 14.5px;
}

.privacy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 12px 0 64px;
}

.privacy-art {
    width: min(420px, 100%);
    justify-self: center;
}

.privacy-copy {
    max-width: 560px;
}

.privacy-copy h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 22px;
}

.privacy-copy ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.privacy-copy li {
    position: relative;
    padding-left: 34px;
    color: var(--ink-muted);
    font-size: 16px;
}

.privacy-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l3 3 6-6'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.get-it-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
    align-items: center;
    padding: 12px 0 56px;
}

.get-it-offer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.get-it-icon {
    color: var(--accent);
    width: 112px;
    flex-shrink: 0;
}

.get-it-icon svg {
    width: 112px;
    height: 68px;
}

.get-it-main {
    padding-right: 12px;
}

.get-it-main h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.cta-soon {
    margin-top: 6px;
    color: var(--accent);
    font-weight: 700;
}

.get-it-side {
    border-left: 1px solid var(--line);
    padding-left: 32px;
}

.get-it-side h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.get-it-side p {
    color: var(--ink-muted);
    font-size: 15px;
    max-width: 36ch;
}

.faq-section {
    padding: 8px 0 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

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

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 650;
    padding: 16px 32px 16px 0;
    position: relative;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 14px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.7;
    padding: 0 8px 16px 0;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    max-width: var(--max);
    margin: 0 auto;
    padding: 36px 28px 56px;
    border-top: 1px solid var(--line);
}

.footer-col h2 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-col p {
    font-size: 13.5px;
    color: var(--ink-muted);
    max-width: 36ch;
}

.footer-col:last-child {
    justify-self: end;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    padding-top: 4px;
}

.footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.copyright {
    font-size: 12px;
    font-weight: 500;
    color: rgba(30, 36, 51, 0.45);
}

@media (max-width: 900px) {
    .hero,
    .privacy-section,
    .get-it-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: left;
        padding: 20px 0 40px;
        gap: 28px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .step,
    .step:first-child,
    .step:last-child {
        border-right: 0;
        padding: 0;
    }

    .get-it-side {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 20px;
    }

    .footer-col:last-child {
        justify-self: start;
    }

    .footer-brand {
        order: -1;
    }
}

@media (max-width: 560px) {
    .site-header,
    main,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 14px;
        padding-bottom: 12px;
    }

    h1 {
        font-size: 40px;
        text-wrap: balance;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
