* {
    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: 1px 1px 0;
}

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




.hero {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 10px;
    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;
}
.hero-logo {
  width: 160px;           /* adjust as needed */
  height: auto;
  margin-bottom: 0px;    /* space below logo */
  filter: drop-shadow(0 0 8px #000);
  animation: none;        /* no pulsing */
}

.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%;
    }
}

:root{
  --bg:#0c0c0c;
  --fg:#e9e9e9;
  --muted:#b8b8b8;
  --accent:#4CFF4C;
  --card:#141414;
  --ring:rgba(76,255,76,.35);
}

*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--fg);font-family:Inter,system-ui,Segoe UI,Helvetica,Arial,sans-serif}

.hero-collab{padding:clamp(2.5rem,4vw,4rem) 1.25rem}
.hero-wrap{
  max-width:1200px;margin:0 auto;
  display:grid;gap:3rem;align-items:center;
  grid-template-columns: 1.1fr 0.9fr;
}

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

h1{
  font-size:clamp(2rem,4.8vw,3.6rem);
  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 var(--ring);
  color:#c8ffc8;border-radius:999px;padding:.4rem .8rem;font-size:.95rem
}

.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:linear-gradient(180deg,#121212,#0f0f0f);
  border:1px solid #1f1f1f;border-left:3px solid var(--accent);
  padding:.7rem .9rem;border-radius:.6rem;color:#d9d9d9
}

.cta-row{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:1.25rem}
.btn-primary{
  display:inline-block;background:var(--accent);color:#000;
  padding:.9rem 1.3rem;border-radius:.7rem;font-weight:700;
  text-decoration:none;box-shadow:0 0 0 6px var(--ring);
  transition:.24s ease
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 0 0 8px var(--ring)}
.btn-ghost{
  display:inline-block;background:transparent;border:1px solid #2b2b2b;
  color:var(--fg);padding:.9rem 1.2rem;border-radius:.7rem;text-decoration:none
}
.btn-ghost:hover{border-color:#3a3a3a;background:#111}

.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}

/* MEDIA SIDE */
.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:var(--card);
  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;inset:auto;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)}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-wrap{grid-template-columns:1fr;gap:2rem}
  .hero-media{order:-1;min-height:300px}
  .hero-collab{padding-top:2rem}
}


/* ===== Our Products (matches previous dark theme) ===== */
.products { padding: clamp(3rem, 6vw, 5rem) 1.25rem; }
.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));
}

@media (max-width: 980px){
  .products .grid { grid-template-columns: 1fr; }
}

.card{
  background: linear-gradient(180deg, #141414, #0f0f0f);
  border: 1px solid #212121;
  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::before{
  content:""; position:absolute; inset:-2px;
  background: radial-gradient(600px 200px at -10% -20%, rgba(76,255,76,.06), transparent 60%);
  pointer-events:none;
}
.card:hover{ transform: translateY(-3px); border-color:#2b2b2b; box-shadow:0 18px 60px rgba(0,0,0,.35); }

.icon svg {
  width:32px;
  height:32px;
  color:#c9ffc9;   /* drives stroke via currentColor */
  fill: none;      /* never fill outline icons */
}
.icon:hover svg { color:#4CFF4C; }
.icon svg path, .icon svg rect, .icon svg circle, .icon svg line, .icon svg polyline, .icon svg polygon {
  fill: none;      /* belt & braces */
}
/* force outline icons (Lucide) */
.products .icon svg {
  width: 32px;
  height: 32px;
  color: #c9ffc9;        /* drives stroke via currentColor */
  stroke: currentColor;
  fill: none !important; /* stop the white/solid fill */
}
.products .icon svg * {
  fill: none !important; /* belt + braces */
}
.products .icon:hover svg { color: #4CFF4C; }

.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;
}

.chip{
  display:inline-flex; align-items:center; gap:.5rem;
  background:#101810; 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:#132213; }
.chip svg{ width:18px;height:18px; stroke:#b9ffb9; fill:none; stroke-width:2; }

/* ===== 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;
}
/* ===== Testimonials carousel ===== */
.testimonials { padding: clamp(3rem,6vw,5rem) 1.25rem; background: linear-gradient(180deg,#06060a,#05060d 40%); }
.testimonials .wrap{ max-width:1200px; margin:0 auto; color:var(--fg); }
.testimonials h2{ font-size:clamp(1.8rem,3.2vw,2.6rem); margin:0 0 .25rem; font-weight:800; text-align:center; }
.testimonials .lead{ color:var(--muted); text-align:center; margin:0 0 1.5rem; }

/* carousel frame */
.carousel{ display:flex; align-items:center; gap:12px; position:relative; }
.carousel__nav{ background:transparent; color:var(--muted); border:0; font-size:36px; width:48px; height:48px;
  display:grid; place-items:center; cursor:pointer; opacity:.9; }
.carousel__nav:hover{ color:var(--fg); transform:translateY(-2px); }

/* viewport and track */
.carousel-viewport{ overflow:hidden; flex:1; }
.carousel-track{ display:flex; gap:1.25rem; transition: transform .9s cubic-bezier(.2,.9,.2,1); will-change: transform; }

/* card */
.tcard{
  min-width: calc((100% - 2.5rem) / 3);  /* 3 visible */
  background: linear-gradient(180deg,#12131a,#0f1015);
  border-radius:18px; padding:1.4rem; border:1px solid rgba(255,255,255,0.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  display:flex; flex-direction:column; gap:.9rem; position:relative; overflow:hidden;
}
.thead{ display:flex; gap:12px; align-items:center; }
.t-avatar{ width:56px; height:56px; border-radius:12px; object-fit:cover; border:3px solid rgba(255,255,255,0.03); }
.thead h3{ margin:0; font-size:1.05rem; font-weight:800; }
.meta{ color:var(--muted); font-size:.9rem; margin-top:4px; }
.stars{ color:#FFD24D; margin-top:6px; font-size:1rem; }

/* body + footer */
.tbody{ color:var(--muted); line-height:1.6; margin-top:6px; min-height:84px; }
.tfoot{ display:flex; justify-content:space-between; align-items:center; gap:8px; margin-top:8px; }
.tag{ background:#0f1220; color:#9aa0ff; padding:.5rem .8rem; border-radius:999px; font-size:.85rem; }
.verified{ color:var(--accent); font-weight:700; font-size:.9rem; }

/* swoop entrance (applied by JS when item enters viewport) */
.tcard.enter { animation: swoop .9s cubic-bezier(.2,.9,.2,1); opacity:1; transform:none; }
@keyframes swoop {
  0%{ transform: translateY(20px) scale(.99); opacity:0; filter:blur(6px); }
  60%{ transform: translateY(-6px) scale(1.01); opacity:1; filter:blur(0); }
  100%{ transform: translateY(0) scale(1); opacity:1; }
}


.pp-photo-wide{
  margin: 1rem 0 0;
  background: #0B0B0B;
  border: 1px solid rgba(124,255,94,.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}
.pp-photo-wide img{
  display:block;
  width:100%;
  height:auto;
  /* optional subtle zoom on hover */
  transition: transform .6s ease;
}
.pp-photo-wide:hover img{
  transform: scale(1.02);
}

/* ==== PerfPitch Training photo styling ==== */
.pp-photo-wide {
  margin: 3rem auto;
  background: #0B0B0B;
  border: 1px solid rgba(124, 255, 94, .15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
  width: 50%;                  /* half the width */
  min-width: 320px;            /* prevents it shrinking too small on phones */
  max-width: 600px;            /* limits it on large screens */
  display: flex;
  justify-content: center;
}

.pp-photo-wide img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s ease;
}

.pp-photo-wide:hover img {
  transform: scale(1.02);
}
/* ==== Glowing background behind training image ==== */
.pp-photo-glow {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 3rem auto;
}

.pp-photo-glow::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(76, 255, 76, 0.35) 0%,
    rgba(76, 255, 76, 0.1) 40%,
    transparent 70%
  );
  filter: blur(90px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* ensure image sits above the glow */
.pp-photo-wide {
  position: relative;
  z-index: 1;
}


/* Responsive tweak for mobile */
@media (max-width: 768px) {
  .pp-photo-wide {
    width: 85%;
  }
}

/* responsive */
@media (max-width:980px){
  .tcard{ min-width: 100%; }         /* show one at a time */
  .carousel__nav{ display:none; }    /* hide arrows on mobile */
  .carousel{ padding:0 8px; }
}


/* 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%;
    }
}
/* ==== Footer ==== */
.pp-footer {
  background: #000;
  border-top: 1px solid rgba(124,255,94,.12);
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: #bbb;
  font-family: 'Fira Mono', monospace;
}

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

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 36px rgba(124,255,94,.3));
}

.pp-footer p {
  margin: 0.3rem 0;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-socials a {
  text-decoration: none;
  color: #4CFF4C;
  font-size: 1.1rem;
  transition: color .2s ease, transform .2s ease;
}

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

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