/**
 * Scanch marketing homepage — dark, bold, consistent with theme.css tokens
 */

body {
    background: var(--bg-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

#cookie-decline {
    color: #a1a1aa !important;
    border-color: var(--border) !important;
}
#cookie-decline:hover {
    color: #fafafa !important;
    border-color: var(--accent) !important;
}

.pricing-per-mo {
    font-size: 0.45em;
    color: var(--text-muted);
    font-weight: 500;
}
.credit-definition strong {
    color: #fafafa;
    display: block;
    margin-bottom: 0.35rem;
}

/* ——— Nav ——— */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.is-scrolled {
    background: rgba(9, 9, 11, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.header-brand-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}
.nav-links > a:not(.btn) {
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.nav-links > a:not(.btn):hover {
    color: var(--accent);
}
.nav-links .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1.1rem;
}
.nav-links .btn-outline {
    border-color: var(--border);
    color: var(--text-dark);
}
.nav-links .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(212, 255, 0, 0.06);
}

/* ——— Marquee ——— */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #0c0c0e;
    overflow: hidden;
}
.marquee-inner {
    display: flex;
    width: max-content;
    animation: landing-marquee 35s linear infinite;
}
.marquee-group {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.75rem 0;
    flex-shrink: 0;
}
.marquee-item {
    font-family: var(--font-display, sans-serif);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #71717a;
    white-space: nowrap;
    padding: 0 2rem;
    position: relative;
}
.marquee-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}
@keyframes landing-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ——— Hero ——— */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 255, 0, 0.08), transparent 50%),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(255, 45, 107, 0.06), transparent),
        var(--bg-body);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 63, 70, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 63, 70, 0.35) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
    pointer-events: none;
}
.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blob-drift 20s ease-in-out infinite;
}
.hero-blobs .blob--1 {
    width: 400px;
    height: 400px;
    background: #d4ff00;
    top: -10%;
    right: -5%;
}
.hero-blobs .blob--2 {
    width: 320px;
    height: 320px;
    background: #ff2d6b;
    bottom: 5%;
    left: -8%;
    animation-delay: -7s;
}
.hero-blobs .blob--3 {
    width: 200px;
    height: 200px;
    background: #22d3ee;
    top: 45%;
    left: 20%;
    opacity: 0.2;
    animation-delay: -14s;
}
@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}
.hero-layout {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 899px) {
    .hero-layout {
        text-align: center;
    }
    .hero-col-main .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons,
    .hero-tags,
    .hero-stats,
    .hero-trust {
        justify-content: center;
    }
}
@media (min-width: 900px) {
    .hero-layout {
        grid-template-columns: 1.15fr 1fr;
        text-align: left;
    }
    .hero-col-main .hero-eyebrow { margin-left: 0; }
    .hero-col-main h1 { text-align: left; }
    .hero-lead { text-align: left; margin-left: 0; margin-right: 0; }
    .hero-buttons { justify-content: flex-start; }
    .hero-tags { justify-content: flex-start; }
    .hero-stats { justify-content: flex-start; }
    .hero-trust { justify-content: flex-start !important; }
}
.hero-col-side {
    display: none;
}
@media (min-width: 900px) {
    .hero-col-side {
        display: block;
    }
}
.hero-card-floating {
    background: linear-gradient(145deg, #27272a, #18181b);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}
.hero-card-floating .hc-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.hero-card-floating .hc-stat {
    font-family: var(--font-display, sans-serif);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fafafa;
    line-height: 1.1;
}
.hero-card-floating .hc-sub {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 45, 107, 0.4);
    background: rgba(255, 45, 107, 0.08);
}
.hero h1 {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fafafa;
    margin-bottom: 1.25rem;
}
.hero h1 em {
    font-style: normal;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-mid);
    max-width: 38rem;
    margin: 0 auto 1.75rem;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.hero-buttons .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
}
.hero-buttons .btn-primary {
    background: var(--accent);
    color: #09090b;
    box-shadow: 0 0 32px rgba(212, 255, 0, 0.25);
}
.hero-buttons .btn-primary:hover {
    box-shadow: 0 0 40px rgba(212, 255, 0, 0.4);
}
.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: #fafafa;
}
.hero-buttons .btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.hero-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #18181b;
    border: 1px solid var(--border);
    color: var(--text-mid);
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    justify-content: center;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}
.hero-stat strong {
    font-family: var(--font-display, sans-serif);
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-stat span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-trust {
    margin-top: 1.5rem !important;
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ——— Section shell (override theme .container card style on marketing sections) ——— */
.three-steps,
.features,
.pricing,
.testimonials,
.how-it-works,
.faq-section,
.about {
    padding: 5rem 1.5rem;
}
.three-steps .container,
.features .container,
.pricing .container,
.testimonials .container,
.how-it-works .container,
.faq-section .container,
.about .container {
    max-width: 1120px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}
.landing-section {
    padding: 5rem 1.5rem;
}
.landing-section .container {
    max-width: 1120px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}
.section-eyebrow {
    font-family: var(--font-display, sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: 0.65rem;
}
.section-title {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fafafa;
    margin-bottom: 0.75rem;
}
.section-subtitle {
    text-align: center;
    color: var(--text-mid);
    font-size: 1.02rem;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ——— Tour / demo ——— */
.three-steps {
    background: #0c0c0e;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.demo-browser {
    background: #18181b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.demo-browser-bar {
    background: #09090b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.demo-browser-dots {
    display: flex;
    gap: 6px;
}
.demo-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3f3f46;
}
.demo-browser-dots span:nth-child(1) { background: #ff2d6b; }
.demo-browser-dots span:nth-child(2) { background: #d4ff00; }
.demo-browser-dots span:nth-child(3) { background: #22d3ee; }
.demo-browser-url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: ui-monospace, monospace;
}
.demo-screen-wrap {
    position: relative;
    min-height: 420px;
    background: #09090b;
}
.demo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    overflow: auto;
}
.demo-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.demo-screenshot {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}
.demo-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    margin-top: 1.5rem;
}
.demo-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.demo-step-label.active {
    color: var(--accent);
}
.demo-dots {
    display: flex;
    gap: 8px;
}
.demo-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #3f3f46;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, background 0.2s;
}
.demo-dots button.active {
    background: var(--accent);
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(212, 255, 0, 0.5);
}

/* ——— Features bento ——— */
.features {
    background: var(--bg-body);
}
.features-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .features-bento {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-tile--hero {
        grid-column: span 2;
    }
}
.feature-tile {
    background: #18181b;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem 1.35rem;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}
.feature-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 255, 0, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.feature-tile--hero {
    background: linear-gradient(160deg, #1c1c1f 0%, #27272a 100%);
    border-color: rgba(212, 255, 0, 0.25);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
}
.feature-tile h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.feature-tile--hero h3 {
    font-size: 1.35rem;
}
.feature-tile p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ——— Pricing ——— */
.pricing {
    background: #0c0c0e;
    border-top: 1px solid var(--border);
}
.pricing-grid-three {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .pricing-grid-three {
        grid-template-columns: repeat(3, 1fr);
    }
}
.pricing-card {
    background: #18181b;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover {
    transform: translateY(-3px);
}
.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 40px rgba(212, 255, 0, 0.12);
    position: relative;
}
.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background: var(--accent);
    color: #09090b;
    font-family: var(--font-display, sans-serif);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}
.pricing-header {
    text-align: center;
    margin-bottom: 1.25rem;
}
.pricing-amount {
    font-family: var(--font-display, sans-serif);
    font-size: 2rem;
    font-weight: 800;
    color: #fafafa;
}
.pricing-credits {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.35rem;
}
.pricing-per-credit {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-top: 0.35rem;
}
.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.25rem;
}
.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-mid);
    padding-left: 1.35rem;
    position: relative;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-cta-wrap .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.pricing-cta-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.65rem;
}
.pricing-extra-box {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: #18181b;
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-extra-box h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.05rem;
    color: #fafafa;
    margin-bottom: 0.5rem;
}
.pricing-extra-box p {
    color: var(--text-mid);
    font-size: 0.92rem;
}
.pricing-extra-box p strong {
    color: #fafafa;
}
.pricing-stripe-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.credit-definition {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.1rem 1.25rem;
    background: #18181b;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 0.92rem;
    color: var(--text-mid);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ——— Testimonials ——— */
.testimonials {
    background: linear-gradient(180deg, #09090b 0%, #18181b 100%);
    border-top: 1px solid var(--border);
}
.testimonials .section-eyebrow {
    color: var(--accent-2);
}
.testimonials .section-title {
    color: #fafafa;
}
.testimonials .section-subtitle {
    color: var(--text-mid);
}
.testimonials-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card {
    background: #0c0c0e;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}
.testimonial-text {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, sans-serif);
    font-weight: 800;
    font-size: 0.85rem;
    color: #09090b;
}
.testimonial-info h4 {
    color: #fafafa;
    font-size: 0.9rem;
}
.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ——— How it works ——— */
.how-it-works {
    background: var(--bg-body);
    border-top: 1px solid var(--border);
}
.steps {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}
.step {
    background: #18181b;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.35rem;
    text-align: center;
}
.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: var(--accent);
    color: #09090b;
    font-family: var(--font-display, sans-serif);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.step h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 0.95rem;
    color: #fafafa;
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.55;
}

/* ——— FAQ ——— */
.faq-section {
    background: #0c0c0e;
    border-top: 1px solid var(--border);
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 1.35rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-q {
    font-family: var(--font-display, sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 0.5rem;
}
.faq-a {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.65;
}
.faq-a a {
    color: var(--accent-cyan);
}

/* ——— About ——— */
.about {
    background: var(--bg-body);
    border-top: 1px solid var(--border);
}
.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.about-content p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.about-content a {
    color: var(--accent-cyan);
}
.about-entity {
    font-size: 0.95em;
}
.about-entity a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.disclosure-box {
    background: #18181b;
    padding: 1.5rem;
    border-radius: 14px;
    margin-top: 1.75rem;
    text-align: left;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}
.disclosure-box strong {
    color: #fafafa;
    display: block;
    margin-bottom: 0.5rem;
}
.disclosure-box p {
    text-align: left;
    margin-bottom: 0;
    font-size: 0.88rem;
}

/* ——— Contact ——— */
.contact {
    background: var(--accent);
    color: #09090b;
    padding: 4rem 1.5rem;
}
.contact-content {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}
.contact-content h2 {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: -0.03em;
}
.contact-content > p {
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}
.contact-form input,
.contact-form textarea {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(9, 9, 11, 0.15);
    background: rgba(255, 255, 255, 0.95);
    color: #09090b;
    font-family: inherit;
    font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #09090b;
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.btn-contact-submit {
    background: #09090b !important;
    color: var(--accent) !important;
    border: none !important;
    padding: 0.9rem 1.5rem !important;
    font-weight: 800 !important;
    border-radius: 999px !important;
    cursor: pointer;
    margin-top: 0.25rem;
}
.btn-contact-submit:hover {
    transform: scale(1.02);
}
.contact-content .contact-foot {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}
.contact-content .contact-foot a {
    color: #09090b;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ——— Footer ——— */
.footer {
    background: #050506;
    color: #a1a1aa;
    padding: 2.5rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    font-size: 0.82rem;
}
.footer-row a {
    color: #d4d4d8;
    text-decoration: none;
    font-weight: 600;
}
.footer-row a:hover {
    color: var(--accent);
}
.footer-row .sep {
    color: #52525b;
}
.footer-company {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #71717a;
    line-height: 1.5;
}
.footer-disclosure {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #27272a;
    font-size: 0.72rem;
    color: #52525b;
    line-height: 1.5;
}
.footer-disclosure a {
    color: #a1a1aa;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #18181b;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
    background: var(--accent);
    color: #09090b;
    border-color: var(--accent);
}
.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer-copy {
    margin-top: 1.25rem;
    font-size: 0.72rem;
    color: #52525b;
}

/* ——— Cookie ——— */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #18181b;
    border-top: 1px solid var(--border);
    color: #e4e4e7;
    padding: 1rem 1.5rem;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}
#cookie-consent.show {
    display: flex;
}
#cookie-consent p {
    margin: 0;
    font-size: 0.88rem;
    max-width: 560px;
    color: var(--text-mid);
}
#cookie-consent a {
    color: var(--accent-cyan);
}
#cookie-consent-btns {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}
#cookie-consent .btn-outline {
    border-color: var(--border);
    color: #fafafa;
}

/* ——— Motion (respect reduced motion) ——— */
@media (prefers-reduced-motion: reduce) {
    .marquee-inner,
    .hero-blobs .blob {
        animation: none !important;
    }
    .marquee-inner {
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .landing-section {
        padding: 3.5rem 1.25rem;
    }
    .hero {
        min-height: auto;
        padding-top: 6.5rem;
    }
}
