* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.template-homepage #header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    box-shadow: none;
}

.template-homepage .nav-icon svg {
    fill: #ffffff;
}

.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
}

.home-hero-overlay {
    display: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 32px;
}

.home-hero-content::before {
    content: '';
    display: block;
    width: 38px;
    height: 2px;
    background: #16a34a;
    border-radius: 99px;
    margin: 0 auto 30px;
    animation: heroFadeUp 0.55s ease 0.05s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.home-hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: #000000;
    margin: 0 0 22px;
    letter-spacing: -1.5px;
    animation: heroFadeUp 0.65s ease 0.18s both;
}

.home-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #4a6356;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 48px;
    animation: heroFadeUp 0.65s ease 0.32s both;
}

.home-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.65s ease 0.46s both;
}

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    letter-spacing: 0.2px;
}

.hero-btn-primary {
    background: #16a34a;
    color: #ffffff;
    border: 1.5px solid #16a34a;
    animation: btnPing 2.8s ease-out 2s infinite;
}

@keyframes btnPing {
    0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); }
    70%  { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.hero-btn-primary:hover {
    background: #15803d;
    border-color: #15803d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(22, 163, 74, 0.35);
    animation: none;
}

.hero-btn-secondary {
    background: transparent;
    color: #000000;
    border: 1.5px solid rgba(0, 0, 0, 0.28);
}

.hero-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.55);
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .home-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.hero-scroll-btn-wrap {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    animation: heroFadeUp 0.65s ease 0.7s both;
}

.hero-scroll-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #16a34a;
    border: 1.5px solid #16a34a;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: heroBob 2s ease-in-out 1.4s infinite;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero-scroll-btn:hover {
    background: #15803d;
    border-color: #15803d;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    animation-play-state: paused;
}

@keyframes heroBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

.text-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 40px;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.text-image-section.tinted {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.04), rgba(22, 163, 74, 0.02));
    border-top: 1px solid rgba(22, 163, 74, 0.1);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
}

.text-image-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-image-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}

.text-image-text {
    font-size: 1.05rem;
    color: #374a3f;
    line-height: 1.8;
    margin: 0;
    max-width: 500px;
}

.text-image-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
}

.text-image-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 960px) {
    .text-image-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 30px;
    }

    .text-image-section.image-left .text-image-image {
        order: 2;
    }
    .text-image-section.image-left .text-image-content {
        order: 1;
    }
}

@media (max-width: 680px) {
    .text-image-section {
        padding: 60px 24px;
        gap: 30px;
    }

    .text-image-title {
        font-size: 1.6rem;
    }

    .text-image-text {
        font-size: 0.95rem;
    }
}

.cs-section {
    background: #fff;
    padding: 80px 0 0;
}

.cs-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 24px;
    text-align: center;
}

.cs-intro-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    line-height: 1.15;
}

.cs-intro-sub {
    font-size: 1.05rem;
    color: #6b7a72;
    line-height: 1.7;
    margin: 0;
}

.cs-carousel {
    position: relative;
    height: 72vh;
    min-height: 520px;
    overflow: hidden;
}

.cs-track {
    position: relative;
    height: 100%;
}

.cs-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}

.cs-slide.is-active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

.cs-slide.cs-from-right  { transform: translateX(100%);  opacity: 0; }
.cs-slide.cs-from-left   { transform: translateX(-100%); opacity: 0; }
.cs-slide.cs-to-left     { transform: translateX(-100%); opacity: 0; z-index: 1; }
.cs-slide.cs-to-right    { transform: translateX(100%);  opacity: 0; z-index: 1; }

/* Background images */
.cs-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.cs-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.cs-slide-bg--placeholder {
    background-color: #1a3a26;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02) 0px,
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 12px
    );
}

.cs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.60) 60%,
        rgba(0, 0, 0, 0.40) 100%
    );
}

.cs-watermark {
    position: absolute;
    right: 6%;
    bottom: -4%;
    font-size: clamp(160px, 22vw, 280px);
    font-weight: 900;
    color: #ffffff;
    opacity: 0.04;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
}

.cs-slide-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 0 8% 0 8%;
}

.cs-step-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 18px;
}

.cs-step-of {
    opacity: 0.55;
    font-weight: 500;
}

.cs-step-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
}

.cs-step-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

.cs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
}

.cs-arrow:hover {
    background: rgba(22, 163, 74, 0.5);
    border-color: rgba(22, 163, 74, 0.7);
}

.cs-prev { left: 28px; }
.cs-next { right: 28px; }

/* Dot indicators */
.cs-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.cs-dot.is-active {
    background: #16a34a;
    width: 28px;
    border-radius: 4px;
    transform: none;
}

@media (max-width: 768px) {
    .cs-section {
        padding: 60px 0 0;
    }

    .cs-carousel {
        height: 88vmax;
        min-height: 480px;
    }

    .cs-slide-content {
        padding: 0 24px 60px;
    }

    .cs-watermark {
        font-size: 38vw;
        right: -4%;
        bottom: 0;
    }

    .cs-prev { left: 12px; }
    .cs-next { right: 12px; }

    .cs-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ─── Hero Carousel ──────────────────────────────────────────────── */

.hc-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: #0a0a0a;
}

.hc-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hc-brand {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 0 5% 0 9%;
    pointer-events: none;
}

.hc-brand > * { pointer-events: auto; }

.hc-brand-inner {
    max-width: 440px;
    animation: hcFadeIn 0.65s ease 0.15s both;
}

@keyframes hcFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hc-accent-bar {
    display: block;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.40);
    border-radius: 99px;
    margin-bottom: 28px;
}

.hc-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.06;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
}

.hc-subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0 0 40px;
    max-width: 380px;
}

.hc-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hc-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hc-hero-btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.hc-hero-btn--primary {
    background: #fff;
    color: #0a0a0a;
    border: 2px solid #fff;
}

.hc-hero-btn--primary:hover {
    background: transparent;
    color: #fff;
}

.hc-hero-btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.hc-hero-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.hc-section .hero-scroll-btn-wrap {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
    animation: heroFadeUp 0.65s ease 0.7s both;
    pointer-events: none;
}

.hc-section .hero-scroll-btn-wrap .hero-scroll-btn {
    pointer-events: auto;
}

.hc-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}

.hc-slide.is-active        { transform: translateX(0);     opacity: 1; z-index: 2; }
.hc-slide.hc-from-right    { transform: translateX(100%);  opacity: 0; }
.hc-slide.hc-from-left     { transform: translateX(-100%); opacity: 0; }
.hc-slide.hc-to-left       { transform: translateX(-100%); opacity: 0; z-index: 1; }
.hc-slide.hc-to-right      { transform: translateX(100%);  opacity: 0; z-index: 1; }

.hc-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.hc-slide-bg-placeholder {
    position: absolute;
    inset: 0;
    background-color: #0a0a0a;
}

.hc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.85) 48%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.hc-watermark {
    position: absolute;
    bottom: -8%;
    right: 3%;
    font-size: clamp(160px, 20vw, 280px);
    font-weight: 900;
    color: #ffffff;
    opacity: 0.04;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.hc-slide-content {
    position: relative;
    z-index: 3;
    padding: 0 8% 0 2%;
    max-width: 46%;
}

.hc-step-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 16px;
}

.hc-step-of {
    opacity: 0.55;
    font-weight: 500;
}

.hc-step-title {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}

.hc-step-desc {
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin: 0;
}

/* Arrows — bottom-right of carousel panel */
.hc-arrow {
    position: absolute;
    bottom: 32px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
}

.hc-arrow:hover {
    background: rgba(22, 163, 74, 0.5);
    border-color: rgba(22, 163, 74, 0.7);
}

.hc-prev { right: 88px; }
.hc-next { right: 32px; }

.hc-dots {
    position: absolute;
    bottom: 46px;
    right: 152px;
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, width 0.25s ease;
}

.hc-dot.is-active {
    background: rgba(255, 255, 255, 0.85);
    width: 24px;
    border-radius: 4px;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hc-section {
        height: 100svh;
    }

    .hc-brand {
        width: 100%;
        align-items: flex-start;
        padding: 80px 24px 0;
    }

    .hc-brand-inner {
        max-width: 100%;
    }

    .hc-slide {
        align-items: flex-end;
        justify-content: flex-start;
    }

    .hc-slide-content {
        max-width: 100%;
        padding: 0 24px 120px;
    }

    .hc-section .hero-scroll-btn-wrap {
        display: none;
    }

    .hc-watermark {
        font-size: 38vw;
        right: -2%;
    }

    .hc-prev { right: 72px; }
}

/* ─── Customisable Services Section ────────────────────────────────── */

/* ─── Feature / Services Section ─────────────────────────────────────── */

.feat-section {
    background: #ffffff;
    padding: 100px 80px;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.feat-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.feat-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 56px;
    max-width: 640px;
}

.feat-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
}

.feat-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.feat-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.04em;
}

.feat-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.48);
    line-height: 1.78;
    margin: 0;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.feat-card {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 0;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.2s ease;
}

.feat-card:hover {
    background: rgba(0, 0, 0, 0.02);
    box-shadow: none;
}

.feat-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(0, 0, 0, 0.20);
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.feat-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.feat-item-desc {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.48);
    line-height: 1.72;
    margin: 0;
}

@media (max-width: 960px) {
    .feat-section {
        padding: 80px 32px;
    }

    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .feat-section {
        padding: 60px 20px;
    }

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

/* ─── Team Section ──────────────────────────────────────────────────── */

.team-section {
    padding: 100px 80px;
    background: #f7f7f7;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.team-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    max-width: 640px;
}

.team-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
}

.team-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.team-title {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.04em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding: 28px 24px 28px;
}

.team-card-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e8e8e8;
    margin-bottom: 20px;
    border-radius: 4px;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-img {
    transform: scale(1.03);
}

.team-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
}

.team-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-card-name {
    font-size: 0.97rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    letter-spacing: -0.01em;
}

.team-card-position {
    font-size: 0.80rem;
    color: rgba(0, 0, 0, 0.42);
    margin: 0;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .team-section {
        padding: 80px 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 20px;
    }
}

/* ─── Partner Section ───────────────────────────────────────────────── */

.partner-section {
    padding: 100px 80px;
    background: #111111;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.partner-section:hover::before {
    opacity: 1;
}

.partner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.partner-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.partner-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.partner-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.partner-title {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
}

.partner-desc {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.78;
    margin: 0;
    max-width: 420px;
}

.partner-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.partner-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.partner-list-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
    width: fit-content;
}

.partner-btn::after {
    content: '→';
    display: inline-block;
    transition: transform 0.25s ease;
}

.partner-btn:hover {
    border-color: #4ade80;
    color: #4ade80;
}

.partner-btn:hover::after {
    transform: translateX(4px);
}

.partner-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 6%,  black 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,  transparent 0%, black 8%, black 92%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 6%,  black 92%, transparent 100%);
    mask-composite: intersect;
}

.partner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.05);
}

/* ── Partner network graphic ── */

.partner-network {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.50);
}

.pn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pn-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.pn-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 99px;
    padding: 3px 10px;
}

/* Hub + spokes layout */
.pn-hub-wrap {
    position: relative;
    height: 220px;
}

.pn-spokes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pn-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pn-hub-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* Nodes — positioned at same coords as SVG lines */
.pn-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.pn-node span {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.pn-node svg {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    padding: 8px;
    width: 14px;
    height: 14px;
    box-sizing: content-box;
}

.pn-node--active svg {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.25);
}

.pn-node--active span {
    color: #4ade80;
}

/* Position each node — mirroring SVG line endpoints */
.pn-node--tl { top: 4px;   left: calc(60px / 320 * 100% - 15px); }
.pn-node--tr { top: 4px;   right: calc((320px - 260px) / 320 * 100% - 15px); }
.pn-node--ml { top: 50%;   left: 0;    transform: translateY(-50%); }
.pn-node--mr { top: 50%;   right: 0;   transform: translateY(-50%); }
.pn-node--bl { bottom: 4px; left: calc(80px / 320 * 100% - 15px); }
.pn-node--br { bottom: 4px; right: calc((320px - 240px) / 320 * 100% - 15px); }

/* Stats bar */
.pn-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pn-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}

.pn-stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.pn-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pn-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .partner-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .partner-section {
        padding: 80px 32px;
    }
}

@media (max-width: 600px) {
    .partner-section {
        padding: 60px 20px;
    }

    .partner-title {
        font-size: 1.7rem;
    }
}

/* ─── J P Jenkins Section ───────────────────────────────────────────── */

/* Outer section — stays white, provides breathing room around the card */
.jpj-section {
    padding: 80px 40px;
    background: #ffffff;
}

/* The dark elevated card */
.jpj-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    background: #111111;
    border-radius: 20px;
    padding: 72px 68px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.20),
        0 32px 72px rgba(0, 0, 0, 0.28);
}

.jpj-showcase {
    position: relative;
}

.jpj-showcase::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at 40% 55%, rgba(255, 255, 255, 0.04) 0%, transparent 68%);
    pointer-events: none;
    border-radius: 24px;
}

.venues-carousel {
    position: relative;
    width: 100%;
}

.venue-slide {
    display: none;
}

.venue-slide.is-active {
    display: block;
}

.venues-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.venue-dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.venue-dot:hover {
    background: rgba(255, 255, 255, 0.50);
    transform: scale(1.2);
}

.venue-dot.is-active {
    background: rgba(255, 255, 255, 0.88);
}

.venues-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.jpj-nav-prev,
.jpj-nav-next {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.jpj-nav-prev:hover,
.jpj-nav-next:hover {
    border-color: rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.jpj-img-frame {
    position: relative;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 12%, black 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 88%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,  transparent 0%, black 12%, black 88%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 88%, transparent 100%);
    mask-composite: intersect;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.jpj-img-frame.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.jpj-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.venue-content {
    display: none;
}

.venue-content.is-active {
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.jpj-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.jpj-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.jpj-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
}

.jpj-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0;
    max-width: 440px;
}

.jpj-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.jpj-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.jpj-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    flex-shrink: 0;
}

.jpj-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 7px;
    background: #ffffff;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
    margin-top: 8px;
}

.jpj-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .jpj-inner {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 52px 36px;
    }

    .jpj-section {
        padding: 60px 24px;
    }
}

@media (max-width: 600px) {
    .jpj-section {
        padding: 48px 16px;
    }

    .jpj-inner {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .jpj-title {
        font-size: 1.7rem;
    }

    .jpj-desc {
        font-size: 0.95rem;
    }
}

.te-section {
    padding: 80px 40px;
    background: #ffffff;
}

.te-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    background: #111111;
    border-radius: 20px;
    padding: 72px 68px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.10),
        0 8px 24px rgba(0, 0, 0, 0.20),
        0 32px 72px rgba(0, 0, 0, 0.28);
}

.te-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.te-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.te-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.te-title {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.03em;
}

.te-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin: 0;
    max-width: 440px;
}

.te-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.te-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.te-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    flex-shrink: 0;
}

.te-showcase {
    position: relative;
}

.te-img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 8%,  black 90%, transparent 100%);
    mask-composite: intersect;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.te-img-frame.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 960px) {
    .te-inner {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 52px 36px;
    }

    .te-section {
        padding: 60px 24px;
    }

    .te-showcase {
        order: -1;
    }
}

@media (max-width: 600px) {
    .te-section {
        padding: 48px 16px;
    }

    .te-inner {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .te-title {
        font-size: 1.7rem;
    }

    .te-desc {
        font-size: 0.95rem;
    }
}


.platform-section {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
}

.platform-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.platform-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.platform-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(8, 13, 10, 0.97) 0%,
            rgba(8, 13, 10, 0.90) 28%,
            rgba(8, 13, 10, 0.60) 52%,
            rgba(8, 13, 10, 0.22) 72%,
            rgba(8, 13, 10, 0.06) 100%
        ),
        linear-gradient(to bottom,
            rgba(8, 13, 10, 0.55) 0%,
            transparent 14%,
            transparent 72%,
            rgba(8, 13, 10, 0.90) 100%
        );
}

.platform-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 72px;
    box-sizing: border-box;
}

.platform-upper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.platform-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
}

.platform-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
}

.platform-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.platform-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.04em;
}

.platform-subtitle {
    font-size: 1.02rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding-top: 36px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 32px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: opacity 0.22s ease;
    cursor: default;
}

.platform-card:last-child {
    border-right: none;
    padding-right: 0;
}

.platform-card:not(:first-child) {
    padding-left: 32px;
}

.platform-card-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.platform-card-body {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.50);
    line-height: 1.65;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .platform-inner {
        padding: 72px 32px;
        gap: 48px;
    }

    .platform-upper {
        flex-direction: column;
        gap: 28px;
    }

    .platform-features {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .platform-card {
        border-right: none;
        padding-right: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .platform-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .platform-card:not(:first-child) {
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    .platform-inner {
        padding: 60px 24px;
        min-height: auto;
    }

    .platform-title {
        font-size: 2.8rem;
    }
}

/* ─── Investor CTA Section ──────────────────────────────────────────────── */

.inv-cta-section {
    padding: 100px 80px;
    background: #ffffff;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.inv-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.inv-cta-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.inv-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
}

.inv-cta-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.inv-cta-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.04em;
}

.inv-cta-desc {
    font-size: 0.97rem;
    color: rgba(0, 0, 0, 0.48);
    line-height: 1.78;
    margin: 0;
    max-width: 420px;
}

.inv-cta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.inv-cta-list li {
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.60);
    line-height: 1.5;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.inv-cta-icon { display: none; }

.inv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
    width: fit-content;
}

.inv-cta-btn::after {
    content: '→';
    display: inline-block;
    transition: transform 0.25s ease;
}

.inv-cta-btn:hover {
    border-color: #000000;
}

.inv-cta-btn:hover::after {
    transform: translateX(4px);
}

/* ── Mock market graphic ── */

.inv-cta-graphic {
    position: relative;
}

.inv-mock-market {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 0.82rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30);
}

.inv-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.inv-mock-title-bar {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.inv-mock-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.inv-mock-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 8px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
}

.inv-mock-col-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
}

.inv-mock-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 8px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.inv-mock-row--muted {
    opacity: 0.5;
}

.inv-mock-name {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.inv-blur {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.inv-mock-price {
    font-size: 0.84rem;
    font-weight: 600;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.inv-mock-change {
    font-size: 0.78rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.inv-mock-change.inv-up {
    color: #4ade80;
}

.inv-mock-change.inv-down {
    color: #f87171;
}

.inv-spark {
    width: 60px;
    height: 24px;
    display: block;
}

.inv-mock-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
}

.inv-mock-footer strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

@media (max-width: 960px) {
    .inv-cta-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .inv-cta-section {
        padding: 80px 32px;
    }
}

@media (max-width: 600px) {
    .inv-cta-section {
        padding: 60px 20px;
    }

    .inv-cta-title {
        font-size: 1.9rem;
    }

    .inv-mock-market {
        padding: 18px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────── */

/* ─── Split CTA Section ─────────────────────────────────────────────── */

.split-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.split-cta-panel {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 72px 68px;
    text-decoration: none;
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.split-cta-panel--companies {
    background: #111111;
}

.split-cta-panel--partners {
    background: #1a1a1a;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.split-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(74, 222, 128, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.split-cta-panel--partners::before {
    background: radial-gradient(ellipse at 100% 100%, rgba(74, 222, 128, 0.07) 0%, transparent 60%);
}

.split-cta-panel:hover::before {
    opacity: 1;
}

.split-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 460px;
}

.split-cta-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.split-cta-heading {
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
}

.split-cta-body {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}

.split-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
    width: fit-content;
}

.split-cta-btn::after {
    content: '→';
    display: inline-block;
    transition: transform 0.25s ease;
}

.split-cta-panel:hover .split-cta-btn {
    border-color: #4ade80;
    color: #4ade80;
}

.split-cta-panel:hover .split-cta-btn::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .split-cta-section {
        grid-template-columns: 1fr;
    }

    .split-cta-panel {
        padding: 64px 32px;
        min-height: 340px;
    }

    .split-cta-panel--partners {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 480px) {
    .split-cta-panel {
        padding: 48px 24px;
    }
}

/* ─── Legacy Signup Styles (deprecated) ────────────────────────────── */

.signup-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.signup-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.38);
}

.signup-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(0, 0, 0, 0.20);
    flex-shrink: 0;
}

.signup-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.04em;
}

.signup-subtitle {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.60);
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.signup-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.signup-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.58);
    letter-spacing: 0.04em;
}

.signup-field input,
.signup-field textarea {
    background: #f8f8f8;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #000000;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    resize: vertical;
}

.signup-field input::placeholder,
.signup-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.30);
}

.signup-field input:focus,
.signup-field textarea:focus {
    border-color: rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.signup-btn {
    align-self: flex-start;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.signup-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .signup-section {
        padding: 80px 32px;
    }

    .signup-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .signup-text {
        position: static;
    }

    .signup-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .signup-section {
        padding: 64px 20px;
    }

    .signup-title {
        font-size: 1.9rem;
    }
}
