/* PinUs marketing page — extends style.css's tokens */

body.marketing {
    height: auto;
    overflow-x: hidden;
}

.marketing h1, .marketing h2, .marketing h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}

.m-wordmark {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
}
.m-wordmark .dot { color: var(--accent); }
.m-wordmark .tld { color: var(--text-muted); font-weight: 500; }

.m-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6vw;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(15, 23, 32, 0.85);
    backdrop-filter: blur(10px);
    z-index: 50;
}
.m-header nav { display: flex; align-items: center; gap: 22px; }
.m-header nav a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14.5px;
}
.m-header nav a:not(.btn):hover { color: var(--text); }

@media (max-width: 640px) {
    .m-header nav a:not(.btn) { display: none; }
}

.m-hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 8vw 6vw 6vw;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 860px) {
    .m-hero { grid-template-columns: 1fr; padding-top: 48px; }
    .m-hero-art { display: none; }
}

.m-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.12;
    max-width: 620px;
}

.m-lead {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
    max-width: 520px;
    margin: 22px 0 30px;
}

.m-cta-row { display: flex; gap: 12px; }
.m-cta-row .btn { padding: 13px 24px; font-size: 15.5px; }

.m-hero-art {
    position: relative;
    height: 360px;
}
.m-hero-art .ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ripple 3.6s ease-out infinite;
}
.m-hero-art .ring:nth-child(2) { animation-delay: 0.9s; }
.m-hero-art .ring:nth-child(3) { animation-delay: 1.8s; }
.m-hero-art .pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 26px;
    background: var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -70%) rotate(-45deg);
    box-shadow: 0 0 0 8px rgba(255, 107, 74, 0.14);
}

@media (prefers-reduced-motion: reduce) {
    .m-hero-art .ring { animation: none; opacity: 0.15; width: 260px; height: 260px; }
}

.m-section {
    padding: 5vw 6vw;
    max-width: 1120px;
    margin: 0 auto;
}
.m-section-alt { background: var(--surface-2); max-width: none; }
.m-section-alt > * { max-width: 1120px; margin-left: auto; margin-right: auto; }

.m-section h2 {
    font-size: clamp(24px, 3.4vw, 34px);
    margin-bottom: 32px;
}

.m-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.m-feature-card {
    background: var(--surface-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    padding: 22px;
}
.m-feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.m-feature-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 0; }

.m-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}
.m-steps li { display: flex; gap: 14px; }
.m-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-steps h3 { font-size: 16px; margin-bottom: 6px; }
.m-steps p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin: 0; }

.m-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.m-faq-item {
    background: var(--surface-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-s);
    padding: 4px 18px;
}
.m-faq-item summary {
    cursor: pointer;
    padding: 15px 0;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
}
.m-faq-item summary::-webkit-details-marker { display: none; }
.m-faq-item summary::after {
    content: '+';
    float: right;
    color: var(--accent);
    font-size: 18px;
}
.m-faq-item[open] summary::after { content: '−'; }
.m-faq-item p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.m-cta-final {
    text-align: center;
    padding-top: 4vw;
    padding-bottom: 8vw;
}
.m-cta-final p { color: var(--text-muted); margin: 12px 0 26px; }

.m-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 6vw;
    border-top: 1px solid var(--border);
}
.m-footer nav { display: flex; gap: 18px; }
.m-footer nav a { color: var(--text-muted); text-decoration: none; font-size: 13.5px; }
.m-footer nav a:hover { color: var(--text); }
