/* ===== Global reset & tokens ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000000;
    --fg: #e9e9e9;
    --muted: #b8b8b8;
    --accent: #4CFF4C;
}

/* Base */
html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg); /* PURE BLACK */
    color: var(--fg);
    font-family: 'Fira Mono', monospace;
}

body {
    line-height: 1.5;
}

a {
    color: inherit;
}

/* ===== Top logo strip ===== */
.logotop {
    width: 100%;
    padding: 24px 0 8px;
    background: #000000;
    text-align: center;
    border-bottom: 1px solid #111111;
}

.logotop .hero-logo {
    width: 120px;
    height: auto;
    display: inline-block;
    margin: 0 auto;
    filter: none; /* no glow */
}

/* ===== HERO COLLAB SECTION ===== */
.hero-collab {
    padding: clamp(2.5rem, 4vw, 4rem) 1.25rem;
    background-color: #000000;
    color: #ffffff;
}

.hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1.1fr 0.9fr;
}

/* Left copy */
.hero-copy .eyebrow {
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    font-size: .8rem;
    margin: 0 0 .75rem;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    line-height: 1.1;
    margin: .25rem 0 1rem;
    font-weight: 800;
}

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

.badges {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge {
    background: #122112;
    border: 1px solid rgba(76, 255, 76, .35);
    color: #c8ffc8;
    border-radius: 999px;
    padding: .4rem .8rem;
    font-size: .9rem;
}

.intro {
    color: var(--muted);
    line-height: 1.7;
    max-width: 58ch;
    margin: 0 0 1.25rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: .5rem;
}

.features li {
    background: #050505;
    border: 1px solid #1f1f1f;
    border-left: 3px solid var(--accent);
    padding: .7rem .9rem;
    border-radius: .6rem;
    color: #d9d9d9;
}

/* CTAs */
.cta-row {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.btn-primary,
.btn-ghost {
    display: inline-block;
    text-decoration: none;
    border-radius: .7rem;
    padding: .9rem 1.3rem;
    font-weight: 700;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 0 6px rgba(76, 255, 76, .25);
    transition: .24s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 8px rgba(76, 255, 76, .25);
}

.btn-ghost {
    background: transparent;
    border: 1px solid #2b2b2b;
    color: var(--fg);
    padding: .9rem 1.2rem;
}

.btn-ghost:hover {
    border-color: #3a3a3a;
    background: #111111;
}

/* proof KPIs */
.proof {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.proof .kpi {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent);
}

.proof .label {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-top: .1rem;
}

/* Right media pane */
.hero-media {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.hero-media picture {
    width: min(560px, 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #202020;
    background: #000000;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .6),
        0 0 0 8px rgba(255, 255, 255, .02);
}

.hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

/* colored glows */
.glow {
    position: absolute;
    filter: blur(60px);
    border-radius: 999px;
    opacity: .6;
    z-index: -1;
}

.glow.red {
    width: 46%;
    height: 46%;
    right: 6%;
    top: 8%;
    background: radial-gradient(closest-side, #ff453a33, #ff453a00);
}

.glow.blue {
    width: 55%;
    height: 55%;
    right: -4%;
    bottom: -6%;
    background: radial-gradient(closest-side, #3a7bff33, #3a7bff00);
}

/* ===== SECOND HERO (centered headline) ===== */
.hero {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .text-col h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .sub {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero .cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.hero .cta-btn:hover {
    background: #70ff70;
}

/* ===== PRODUCTS / IMPACT CARDS ===== */
.products {
    padding: clamp(3rem, 6vw, 5rem) 1.25rem 4rem;
    background: #000000;
}

.products .wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.products h2 {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: 0 0 .5rem;
    font-weight: 800;
}

.products h2::first-letter {
    color: var(--accent);
}

.products .lead {
    color: var(--muted);
    max-width: 68ch;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.products .grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: #000000;
    border: 1px solid #202020;
    border-radius: 18px;
    padding: 1.4rem 1.4rem 1.1rem;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: #2b2b2b;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

/* icon styling for SVGs */
.icon svg {
    width: 32px;
    height: 32px;
    color: #c9ffc9;
    stroke: currentColor;
    fill: none !important;
}

.icon:hover svg {
    color: var(--accent);
}

.card h3 {
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    margin: .1rem 0 .5rem;
    font-weight: 800;
}

.card .desc {
    color: #d8d8d8;
    line-height: 1.7;
    margin: 0 0 1.1rem;
    max-width: 60ch;
}

/* chips / links on cards */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #050805;
    border: 1px solid rgba(76, 255, 76, .35);
    color: #c9ffc9;
    text-decoration: none;
    font-weight: 600;
    padding: .55rem .8rem;
    border-radius: 999px;
    transition: .22s ease;
}

.chip:hover {
    transform: translateY(-1px);
    background: #091409;
}

.chip svg {
    width: 18px;
    height: 18px;
    stroke: #b9ffb9;
    fill: none;
    stroke-width: 2;
}

/* ===== FOOTER ===== */
.pp-footer {
    background: #000000;
    border-top: 1px solid rgba(76, 255, 76, .15);
    padding: 2.5rem 1.25rem 2rem;
    text-align: center;
    color: #bbbbbb;
}

.footer-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.pp-footer p {
    margin: .3rem 0;
    font-size: .9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 .5rem;
}

.footer-socials a {
    text-decoration: none;
    color: var(--accent);
    font-size: 1.1rem;
    transition: color .2s ease, transform .2s ease;
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-copy {
    margin-top: 1rem;
    font-size: .8rem;
    color: #777777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-media {
        order: -1;
        min-height: 300px;
    }

    .products .grid {
        grid-template-columns: 1fr;
    }
}
