/* 
   Coopo V2 Design System 
   Theme: Obsidian & Performance
*/

:root {
    --primary-bg: #0A0A0A;
    --card-bg: rgba(20, 20, 20, 0.7);
    --accent: #FF5C00;
    --accent-glow: rgba(255, 92, 0, 0.3);
    --success: #00FFA3;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 80px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Glassmorphism Utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navigation */
.main-nav {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo img {
    height: 32px;
}

/* Shown on mobile home only (logo moves from header into hero). */
.hero-logo-mobile {
    display: none;
}

.hero-logo-mobile__link {
    display: inline-block;
}

.hero-logo-mobile img {
    height: 36px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 900px) {
    .site-header--home.main-nav {
        padding-left: 0;
        padding-right: 0;
    }
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Persona Switcher */
.persona-switcher {
    display: flex;
    gap: 32px;
}

.persona-btn {
    padding: 10px 0;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.persona-btn:hover {
    color: var(--text-main);
}

.persona-btn.active {
    color: var(--text-main);
    font-weight: 500;
}

.persona-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
}

.nav-projects-link {
    padding: 10px 0;
    color: var(--text-dim);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-projects-link:hover {
    color: var(--text-main);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
}

.header-language {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease;
    cursor: pointer;
}

.header-language:hover {
    background: rgba(255, 255, 255, 0.2);
}

.globe-icon {
    width: 18px;
    height: 18px;
    color: var(--text-main);
}

.header-language .language-links {
    display: flex;
    gap: 12px;
}

.header-language .language-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: color 0.2s ease;
}

.header-language .language-links a:hover,
.header-language .language-links a.active {
    color: var(--text-main);
    border: none;
    box-shadow: none;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 10px);
    height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    padding-left: 5%;
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: auto;
}

.hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    /* Full-bleed image sits above text in DOM; keep it from stealing clicks on the copy column */
    pointer-events: none;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 40%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-visual #hero-image.hero-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

/* Agency hero: horizontal crop (higher first % = subject further right) */
.hero-visual #hero-image-wrap[data-persona="agency"] #hero-image.hero-photo {
    object-position: 68% 42%;
}

.hero-eyebrow {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--accent);
}

/* Keeps hero headline rows on one line each (e.g. AZ agency: line 1 + line 2). */
.hero-title span.hero-line-nowrap {
    color: var(--text-main);
    white-space: nowrap;
}

.cta-h2 .hero-line-nowrap {
    white-space: nowrap;
}

.hero-desc {
    color: var(--text-dim);
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--success);
}

.stat-item p {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.journey-phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    width: 100%;
}

/* Direction A — "Problem → Coopo" step cards */
.jstep {
    background: var(--card-bg, #1A1A1A);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.jstep::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FF8A4C);
}

.jstep__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.jstep__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.jstep__phase {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim, #9a9a9a);
}

.jstep__title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 2px 0 16px;
    color: #fff;
}

.jblock {
    border-radius: 12px;
    padding: 12px 13px;
}

.jblock--prob {
    background: rgba(224, 86, 75, 0.07);
    border: 1px solid rgba(224, 86, 75, 0.18);
}

.jblock--sol {
    background: rgba(255, 92, 0, 0.09);
    border: 1px solid rgba(255, 92, 0, 0.28);
}

.jrow {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.jbadge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-top: 1px;
}

.jbadge--x {
    background: rgba(224, 86, 75, 0.18);
    color: #E0564B;
}

.jbadge--ok {
    background: var(--accent);
    color: #fff;
}

.jlbl {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim, #888);
    margin-bottom: 3px;
}

.jlbl--sol {
    color: #FF8A4C;
}

.jtxt {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    color: #ededed;
}

.jquote {
    font-size: 12.5px;
    font-style: italic;
    color: var(--text-dim, #888);
    margin: 9px 0 0 32px;
}

.jarrow {
    align-self: center;
    color: var(--accent);
    font-size: 18px;
    margin: 9px 0;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .journey-phases {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Journey Map Module */
.journey-container {
    max-width: 1200px;
    margin: 10px auto;
    position: relative;
    padding: 0 20px 100px;
}

@media (max-width: 900px) {
    .journey-phases,
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    .matrix-label {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 10px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-head);
}

.step-card p {
    font-size: 14px;
    color: var(--text-dim);
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* Modules */
.section-module {
    padding: 30px 5%;
}

.section-label {
    text-align: center;
    margin-bottom: 30px;
}

.section-label h2 {
    font-size: 48px;
}

/* Tech UGC Module */
.tech-module {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tech-image {
    width: 55%;
}

.tech-info {
    width: 45%;
}

.tech-image img {
    border-radius: 24px;
    width: 100%;
}

/* Matrix Table */
.matrix-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
}

.matrix-table th, .matrix-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.matrix-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 14px;
}

.matrix-table .coopo-col {
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 700;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 24px);
        height: auto;
        min-height: auto;
        padding-bottom: 48px;
    }
    .hero-content, .hero-visual {
        width: 100%;
        padding: 0 5%;
    }
    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero-visual {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-desc {
        margin: 0 auto 40px;
    }
    .tech-module {
        flex-direction: column;
    }
    .tech-image, .tech-info {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .hero-logo-mobile {
        display: block;
        margin-bottom: 1.25rem;
    }

    .hero {
        padding-top: calc(52px + 20px);
    }
}

/* CTA Split Section */
.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.cta-image-frame img.cta-photo {
    width: 100%;
    display: block;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cta-image-frame:hover img {
    transform: scale(1.05);
}

.cta-h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 700;
}

.cta-p {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cta-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.cta-feature-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.cta-feature-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.cta-feature-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .cta-feature {
        text-align: left;
    }
    .cta-h2 {
        font-size: 32px;
    }
}

/* Footer Styles */
.footer {
    background: #000;
    padding: 100px 0 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
}

.footer-downloads {
    text-align: center;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.download-eyebrow {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.download-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-btns img {
    height: 50px;
    transition: transform 0.3s ease;
}

.download-btns img:hover {
    transform: scale(1.05);
}

.footer-main-links {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) minmax(190px, 1fr) minmax(170px, 0.8fr) minmax(190px, 0.9fr);
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-info .footer-logo {
    height: 35px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 15px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.divider {
    width: 1px;
    height: 12px;
    background: var(--glass-border);
}

.footer-col h4 {
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact h4 {
    margin-bottom: 6px;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link i {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.social-links i,
.social-links svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
}

.footer-site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1.25rem;
}

.footer-site-nav a {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-site-nav a:hover {
    color: var(--text-main);
}

.footer-app-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
}

/* Store badges: matched by height so App Store / Google Play align visually */
.footer-store-badge {
    display: block;
    height: 44px;
    line-height: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-app-btns .footer-store-badge img {
    display: block;
    width: auto;
    height: 44px;
    max-width: none;
    transition: transform 0.2s ease;
}

.footer-store-badge:hover img {
    transform: scale(1.04);
}

.footer-app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-app-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.footer-language {
    margin-top: 22px;
}

.footer-language span {
    display: block;
    color: var(--text-dim);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.language-links {
    display: flex;
    gap: 8px;
}

.language-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    transition: all 0.3s ease;
}

.language-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 12px;
}

.copyright {
    margin: 0 auto;
}

@media (max-width: 992px) {
    .footer-main-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        width: min(100% - 40px, 1180px);
    }
    .footer-main-links {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .footer-info .footer-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-info p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-legal {
        justify-content: center;
    }
    .footer-contact {
        align-items: center;
    }
    .contact-link {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-app-btns {
        justify-content: center;
    }
    .footer-language {
        text-align: center;
    }
    .language-links {
        justify-content: center;
    }
    .download-title {
        font-size: 32px;
    }
}

/* Brand Ticker — single light strip (logos sit on the strip, not on individual white tiles) */
.brand-ticker {
    --ticker-strip-bg: #f0f0f3;
    background: var(--ticker-strip-bg);
    padding: 22px 0;
    border-top: 1px solid #e4e4e8;
    border-bottom: 1px solid #e4e4e8;
    overflow: hidden;
    position: relative;
}

.brand-ticker::before,
.brand-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--ticker-strip-bg), transparent);
}

.brand-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--ticker-strip-bg), transparent);
}

.ticker-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.ticker-scroll {
    display: flex;
    gap: 80px;
    animation: scroll 40s linear infinite;
    align-items: center;
    padding-left: 80px;
}

.ticker-logo {
    height: 36px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.95;
    filter: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ticker-logo:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: none;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.brand-ticker:hover .ticker-scroll {
    animation-play-state: paused;
}

.footer-motto {
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* ============================================
   Gateway landing page (home) — lp-* blocks
   ============================================ */

/* make the shared .reveal mechanism work on this page (v2.css lacks .visible) */
.reveal { transition: opacity .6s var(--ease-out, ease), transform .6s var(--ease-out, ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.lp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .16em; font-size: 12.5px; text-transform: uppercase; margin: 0; }

/* hero / gateway */
.lp-hero { position: relative; padding: calc(var(--nav-height, 80px) + 56px) 0 72px; overflow: hidden; text-align: center; }
.lp-hero::before { content: ""; position: absolute; left: 50%; top: -8%; transform: translateX(-50%); width: 900px; max-width: 120%; height: 540px; z-index: 0; background: radial-gradient(50% 50% at 50% 0%, var(--accent-glow), transparent 70%); opacity: .75; pointer-events: none; }
.lp-hero__in { position: relative; z-index: 1; }
.lp-hero__title { font-family: 'Outfit', 'Inter', sans-serif; font-weight: 800; letter-spacing: -.02em; font-size: clamp(34px, 5.6vw, 62px); line-height: 1.04; margin: 0 auto 16px; text-wrap: balance; }
.lp-hero__lead { color: var(--text-dim, #a0a0a0); font-size: clamp(16px, 2.2vw, 20px); max-width: 600px; margin: 0 auto 30px; }
.lp-choose { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #7c7c7c; margin: 0 0 18px; }

.lp-gateway { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.lp-gate { position: relative; border: 1px solid var(--glass-border, rgba(255,255,255,.1)); border-radius: 20px; padding: 30px 26px; text-align: left; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); transition: transform .22s var(--ease-out, ease), border-color .22s, background .22s; overflow: hidden; color: inherit; text-decoration: none; }
.lp-gate::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--accent), #ff8a4c); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out, ease); }
.lp-gate:hover { transform: translateY(-6px); border-color: rgba(255,92,0,.5); background: linear-gradient(180deg, rgba(255,92,0,.10), rgba(255,255,255,.012)); }
.lp-gate:hover::after { transform: scaleX(1); }
.lp-gate__ic { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: rgba(255,92,0,.14); color: var(--accent); margin-bottom: 18px; }
.lp-gate__ic svg { width: 24px; height: 24px; }
.lp-gate__title { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.lp-gate__desc { color: var(--text-dim, #a0a0a0); font-size: 14.5px; line-height: 1.5; margin: 0 0 22px; min-height: 44px; }
.lp-gate__cta { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--accent); font-size: 14.5px; }
.lp-gate__cta svg { width: 16px; height: 16px; transition: transform .18s; }
.lp-gate:hover .lp-gate__cta svg { transform: translateX(4px); }

/* trust */
.lp-trust { border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 28px 0; }
.lp-trust__label { text-align: center; color: #7c7c7c; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; }
.lp-trust__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.lp-trust__logos img { height: 30px; width: auto; opacity: .72; filter: grayscale(1) brightness(1.7); transition: opacity .2s; }
.lp-trust__logos img:hover { opacity: 1; }

/* sections */
.lp-section { padding: 80px 0; }
.lp-why { background: rgba(255,255,255,.015); border-top: 1px solid var(--glass-border); }
.lp-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.lp-sec-head--center { display: block; text-align: center; margin-bottom: 0; }
.lp-sec-title { font-family: 'Outfit', 'Inter', sans-serif; font-weight: 800; letter-spacing: -.02em; font-size: clamp(26px, 4vw, 42px); margin: 8px 0 0; color: #fff; }
.lp-sec-link { color: var(--accent); font-weight: 700; font-size: 15px; white-space: nowrap; text-decoration: none; }
.lp-sec-link:hover { text-decoration: underline; }
.lp-sec-lead { color: var(--text-dim, #a0a0a0); font-size: 16px; max-width: 660px; margin: 0 0 34px; }

/* projects */
.lp-projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.lp-proj { display: flex; flex-direction: column; border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; background: var(--card-bg, #161616); text-decoration: none; color: inherit; transition: transform .22s var(--ease-out, ease), border-color .22s; }
.lp-proj:hover { transform: translateY(-5px); border-color: rgba(255,92,0,.4); }
.lp-proj__media { aspect-ratio: 16 / 9; overflow: hidden; background: #111; }
.lp-proj__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease-out, ease); }
.lp-proj:hover .lp-proj__media img { transform: scale(1.04); }
.lp-proj__body { padding: 24px; }
.lp-proj__body h3 { font-family: 'Outfit', sans-serif; font-size: 21px; font-weight: 800; margin: 0 0 10px; color: #fff; }
.lp-proj__body p { color: var(--text-dim, #a0a0a0); font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; }
.lp-proj__cta { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; font-size: 14.5px; }
.lp-proj__cta svg { width: 16px; height: 16px; transition: transform .18s; }
.lp-proj:hover .lp-proj__cta svg { transform: translateX(4px); }

/* why grid */
.lp-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.lp-feat { background: var(--card-bg, #161616); border: 1px solid var(--glass-border); border-radius: 16px; padding: 24px; }
.lp-feat__ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(255,92,0,.13); color: var(--accent); margin-bottom: 16px; }
.lp-feat__ic svg { width: 22px; height: 22px; }
.lp-feat h4 { font-size: 17px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.lp-feat p { color: var(--text-dim, #a0a0a0); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 980px) {
    .lp-gateway { grid-template-columns: 1fr; max-width: 480px; }
    .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .lp-hero { padding-top: calc(52px + 36px); }
    .lp-projects { grid-template-columns: 1fr; }
    .lp-sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
    .lp-why-grid { grid-template-columns: 1fr; }
}

/* Partner logos on a full-bleed white band so client marks stay legible */
.lp-trust__logos--panel {
  background: #ffffff;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: none;
  padding: 30px 40px;
  gap: 48px;
}
.lp-trust__logos--panel img {
  height: 38px;
  width: auto;
  opacity: 1;
  filter: none;
}
