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

body {
    font-family: 'Fira Mono', monospace;
    background-color: #fff;
    color: #333;
}

.site-header {
    background-color: #3C2DF3;
    padding: 20px 40px;
}



.logo {
    height: 240px;
    width: auto;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 4px;
}

.center-logo {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5px 0;
}

.center-logo img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 8px #000000);
    /* subtle glow */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        /* ⬅️ much more noticeable */
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.center-logo img {
    animation: pulse 4s infinite;
}

.hero {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 0px;
    align-items: center;
    justify-content: space-between;
}

.text-col {
    flex: 1 1 60%;
    max-width: 700px;
}

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

.text-col .sub {
    font-size: 1.5rem;
    font-family: 'Fira Mono', monospace;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #00FF66;
    color: #000000;
}

.image-col {
    flex: 1 1 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-mask {
    padding: 20px;
    border-radius: 50% 40% 60% 40% / 60% 50% 40% 50%;
    transition: all 0.4s ease;
    overflow: hidden;
    max-width: 700px;
}

.blob-mask img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.tools {
    background-color: #000;
    color: #fff;
    text-align: center;
}

.tools h2 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

/* Full-width ticker-style header */
.stock-header {
    width: 100%;
    height: 120px;
    /* Adjust height as needed */
    background-image: url('images/tickerheading.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Overlay ticker strip (center black bar) */
.ticker-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    overflow: hidden;
}

/* Scrolling text */
.ticker-text {
    display: inline-block;
    white-space: nowrap;
    color: #C6FFA3;
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scroll-left 10s linear infinite;
}

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

    100% {
        transform: translateX(-100%);
    }
}

.modules {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 40px;
    background-color: #000;
    color: white;
    flex-wrap: wrap;
}

.module {
    flex: 1 1 30%;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.module img {
    width: 80px;
    margin-bottom: 20px;
}

.module h2 {
    font-family: 'Fira Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.module .tagline {
    font-weight: bold;
    color: #ff4f4f;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.module .description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.read-more {
    background-color: #ff4f4f;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.read-more:hover {
    background-color: #ff1f1f;
}

.module {
    flex: 1 1 30%;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===== PerfPitch Impact Slice ===== */
/* ===== PerfPitch theme match for the Story section ===== */

:root {
    --pp-bg: #000;
    /* site background */
    --pp-text: #EDEDED;
    /* body text */
    --pp-muted: #B9B9B9;
    /* secondary text */
    --pp-white: #fff;
    --pp-accent: #7CFF5E;
    /* ticker green */
    --pp-red: #FF3B30;
    /* site red */
    --pp-card: #0B0B0B;
    --pp-border: rgba(124, 255, 94, 0.08);
    /* faint neon border line */
}

/* section wrapper */
.story {
    background: var(--pp-bg);
    color: var(--pp-text);
    padding: clamp(64px, 10vw, 96px) 6vw 64px;
    border-top: 1px solid var(--pp-border);
}

/* grid stays the same, just spacing tweaks */
.story .story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

/* small eyebrow like your ticker tone */
.story .eyebrow {
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pp-accent);
    opacity: .9;
    margin: 0 0 16px;
}

/* big mono headline */
.story h2 {
    font-family: 'Fira Mono', monospace;
    font-weight: 600;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    color: var(--pp-white);
    margin: 0 0 20px;
}

/* body copy tone like your hero */
.story .lead {
    font-family: 'Fira Mono', monospace;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.6;
    color: var(--pp-muted);
    max-width: 56ch;
}

/* bullets that echo your ▲ ticker vibe */
.story .points {
    margin: 28px 0 0;
}

.story .point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 14px 0;
    font-family: 'Fira Mono', monospace;
    color: var(--pp-text);
}

.story .point::before {
    content: "▲";
    color: var(--pp-accent);
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
}

/* use existing CTA style if you have .cta-btn;
   otherwise these keep it consistent */
.story .cta {
    margin-top: 28px;
}

.story .cta-btn {
    font-family: 'Fira Mono', monospace;
    background: var(--pp-white);
    color: #000;
    border-radius: 999px;
    padding: 12px 22px;
    border: none;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12);
    transition: transform .15s ease, box-shadow .2s ease;
}

.story .cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
}

/* right column: console card + red blob to match hero */
.story .visual {
    position: relative;
    isolation: isolate;
}

.story .red-blob {
    position: absolute;
    right: -6%;
    top: -8%;
    width: 70%;
    height: 70%;
    background: var(--pp-red);
    border-radius: 28% / 24%;
    filter: drop-shadow(0 12px 32px rgba(255, 59, 48, .25));
    z-index: 0;
}

.story .console-card {
    position: relative;
    background: var(--pp-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .6),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.story .console-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* metric pills if you kept them */
.story .metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.story .pill {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
}

.story .pill .num {
    font-family: 'Fira Mono', monospace;
    color: var(--pp-accent);
    font-size: 20px;
}

.story .pill .cap {
    color: var(--pp-muted);
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* responsive stack */
@media (max-width: 980px) {
    .story .story-grid {
        grid-template-columns: 1fr;
    }

    .story .red-blob {
        right: -10%;
        top: -6%;
        width: 72%;
        height: 72%;
    }
}

/* ===== PerfPitch theme match for the Story section ===== */

/* ===== IMPACT SLICE (pp-impact) — matches site theme ===== */

:root {
    --pp-bg: #000;
    --pp-text: #EDEDED;
    --pp-muted: #B9B9B9;
    --pp-white: #fff;
    --pp-accent: #7CFF5E;
    --pp-red: #FF3B30;
    --pp-card: #0B0B0B;
    --pp-border: rgba(124, 255, 94, .08);
}

.pp-impact {
    background: var(--pp-bg);
    color: var(--pp-text);
    padding: clamp(64px, 10vw, 96px) 6vw 64px;
    border-top: 1px solid var(--pp-border);
}

.pp-impact__wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

/* Left copy */
.pp-kicker {
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pp-accent);
    opacity: .9;
    margin: 0 0 16px;
}

.pp-headline {
    font-family: 'Fira Mono', monospace;
    font-weight: 600;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    color: var(--pp-white);
    margin: 0 0 20px;
}

.pp-headline span {
    color: var(--pp-accent);
}

.pp-lead {
    font-family: 'Fira Mono', monospace;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.6;
    color: var(--pp-muted);
    max-width: 56ch;
    margin-bottom: 10px;
}

/* Checklist */
.pp-checklist {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.pp-checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 12px 0;
    color: var(--pp-text);
}

.pp-ico {
    color: var(--pp-accent);
    line-height: 1;
}

/* CTA button (or reuse .cta-btn) */
.pp-btn {
    display: inline-block;
    margin-top: 22px;
    font-family: 'Fira Mono', monospace;
    background: var(--pp-white);
    color: #000;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 22px;
    transition: transform .15s ease, box-shadow .2s ease;
}

.pp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, .08);
}

/* Right visuals */
.pp-impact__right {
    position: relative;
}

.pp-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.pp-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Back photo with soft tint */
.pp-photo--back {
    background: var(--pp-card);
    border: 1px solid rgba(255, 255, 255, .06);
    filter: brightness(.94);
}

/* Red blob vibe behind front image */
.pp-impact__right::before {
    content: "";
    position: absolute;
    right: -6%;
    top: -8%;
    width: 70%;
    height: 70%;
    background: var(--pp-red);
    border-radius: 28% / 24%;
    filter: drop-shadow(0 12px 32px rgba(255, 59, 48, .25));
    z-index: 0;
}

/* Front app shot card */
.pp-photo--front {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 78%;
    background: var(--pp-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .6),
        0 0 0 1px rgba(255, 255, 255, .02) inset;
    z-index: 1;
}

/* Metric pills */
.pp-stats {
    position: absolute;
    top: -18px;
    right: 0;
    display: flex;
    gap: 12px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 2;
}

.pp-stat__num {
    font-family: 'Fira Mono', monospace;
    color: var(--pp-accent);
    font-size: 20px;
}

.pp-stat__label {
    color: var(--pp-muted);
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Responsive stack */
@media (max-width:980px) {
    .pp-impact__wrap {
        grid-template-columns: 1fr;
    }

    .pp-photo--front {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
    }

    .pp-stats {
        position: relative;
        top: auto;
        right: auto;
        margin: 12px 0;
    }

    .pp-impact__right::before {
        right: -10%;
        top: -6%;
        width: 72%;
        height: 72%;
    }
}