/* /Components/Sections/CommunityForAllSection.razor.rz.scp.css */
.cfa-title[b-qnw8twcavr] {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    color: var(--ts-teal);
    margin-bottom: 24px;
}

.cfa-intro[b-qnw8twcavr] {
    max-width: 900px;
    margin: 0 auto 64px auto;
    text-align: center;
    font-size: 1.25rem;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.cfa-row[b-qnw8twcavr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 96px;
}

    .cfa-row.reverse[b-qnw8twcavr] {
        direction: rtl;
    }

        .cfa-row.reverse > *[b-qnw8twcavr] {
            direction: ltr;
        }

    .cfa-row img[b-qnw8twcavr] {
        width: 100%;
        height: auto;
        border-radius: 14px;
        display: block;
    }

    .cfa-row h3[b-qnw8twcavr] {
        margin: 0 0 16px 0;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #fff;
    }

    .cfa-row p[b-qnw8twcavr] {
        color: rgba(255,255,255,0.78);
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.7;
        margin-bottom: 18px;
    }

@media (max-width: 980px) {
    .cfa-row[b-qnw8twcavr] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

        .cfa-row.reverse[b-qnw8twcavr] {
            direction: ltr;
        }
}
/* /Components/Sections/FAQSection.razor.rz.scp.css */
.faq-section[b-rn1nz6yiij] {
    padding: 120px 80px;
    background: #000;
    color: #fff;
}

/* container width + centered like screenshot */
.faq-list[b-rn1nz6yiij] {
    max-width: 980px;
    margin: 0 auto;
}

/* divider line above title */
.faq-title[b-rn1nz6yiij] {
    max-width: 980px;
    margin: 0 auto 40px auto;
    padding-top: 28px;
    text-align: center;
    font-size: clamp(24px, 4.6vw, 46px);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: var(--ts-teal);
}

/* remove the “accordion row” look */
.faq-list details[b-rn1nz6yiij] {
    border: none;
    padding: 0;
    margin: 14px 0;
}

/* question links (teal) */
.faq-list summary[b-rn1nz6yiij] {
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--ts-teal);
    opacity: 0.95;
    /* makes the click target feel like a link line */
    display: inline-block;
}

    .faq-list summary[b-rn1nz6yiij]::marker {
        display: none;
    }

    /* optional hover like screenshot */
    .faq-list summary:hover[b-rn1nz6yiij] {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

/* answer box (only shows when open because details hides it by default) */
.faq-list details[open] p[b-rn1nz6yiij] {
    margin: 14px 0 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

    /* if you have multiple <p> in an open answer, space them nicely */
    .faq-list details[open] p + p[b-rn1nz6yiij] {
        margin-top: 12px;
    }

/* responsive */
@media (max-width: 900px) {
    .faq-section[b-rn1nz6yiij] {
        padding: 80px 20px;
    }

    .faq-title[b-rn1nz6yiij] {
        font-size: 1.6rem;
    }
}
/* /Components/Sections/HeroSection.razor.rz.scp.css */
.ts-hero[b-ekchpnhu3k] {
    position: relative;
    min-height: calc(100vh - 64px);
    overflow: hidden;
    background: #000;
}

.ts-hero *:focus[b-ekchpnhu3k],
.ts-hero *:focus-visible[b-ekchpnhu3k] {
    outline: none !important;
    box-shadow: none !important;
}

/* keep this as a normal container (NOT positioned) */
.ts-hero-inner[b-ekchpnhu3k] {
    max-width: var(--ts-max);
    margin: 0 auto;
    padding: 110px var(--ts-pad) 0;
    width: 100%;
    text-align: center;
}

/* background should size to the hero (its positioned ancestor) */
.ts-hero-bg[b-ekchpnhu3k] {
    position: absolute;
    inset: 0;
    margin: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0;
    box-shadow: none;
    z-index: 0;
}

/* dark top band like your reference */
.ts-hero[b-ekchpnhu3k]::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 22%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.00) 70% );
}

/* push text above overlay */
.ts-hero-title[b-ekchpnhu3k],
.ts-hero-sub[b-ekchpnhu3k] {
    position: relative;
    z-index: 2;
}

.ts-hero-title[b-ekchpnhu3k] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    line-height: 1.05;
    margin: 0 0 42px 0;
    color: var(--ts-teal);
    font-weight: 400;
}

.ts-hero-sub[b-ekchpnhu3k] {
    color: rgba(255,255,255,0.88);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
}


/* /Components/Sections/HowDoesItWorkSection.razor.rz.scp.css */
.hdw-title[b-xlfapbasgp] {
    margin: 0 0 60px 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 5.6vw, 86px);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--ts-teal);
}

.hdw-grid[b-xlfapbasgp] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: start;
    margin-top: 10px;
}

.hdw-step[b-xlfapbasgp] {
    padding-top: 10px;
}

.hdw-step-label[b-xlfapbasgp] {
    color: rgba(255,255,255,0.85);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.hdw-line[b-xlfapbasgp] {
    height: 1px;
    background: rgba(255,255,255,0.30);
    margin-bottom: 22px;
}

.hdw-step-text[b-xlfapbasgp] {
    color: rgba(255,255,255,0.85);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .hdw-grid[b-xlfapbasgp] {
        grid-template-columns: 1fr;
    }

    .hdw-title[b-xlfapbasgp] {
        margin-bottom: 36px;
    }
}
/* /Components/Sections/IntegrationSection.razor.rz.scp.css */
.int-title[b-bsvaixlp1p] {
    margin: 0 0 48px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    color: var(--ts-teal);
}

.int-grid[b-bsvaixlp1p] {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 56px;
    align-items: center;
}

.int-copy p[b-bsvaixlp1p] {
    color: rgba(255,255,255,0.78);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 22px 0;
    max-width: 360px;
}

.int-art img[b-bsvaixlp1p] {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 980px) {
    .int-grid[b-bsvaixlp1p] {
        grid-template-columns: 1fr;
    }

    .int-copy p[b-bsvaixlp1p] {
        max-width: 100%;
    }
}
/* /Components/Sections/IsThisNowSection.razor.rz.scp.css */
.itn-wrap[b-gzckjaaa27] {
    text-align: left;
}

.itn-title[b-gzckjaaa27] {
    margin: 0 0 32px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    color: var(--ts-teal);
}

.itn-cta-wrap[b-gzckjaaa27] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* spacing between elements */
}
.itn-subtitle[b-gzckjaaa27] {
    color: #fff;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.itn-note[b-gzckjaaa27] {
    color: rgba(255,255,255,0.78);
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin-bottom: 28px;
}

.itn-shot[b-gzckjaaa27] {
    width: min(1020px, 100%);
    height: auto;
    display: block;
    margin: 0 auto 26px auto;
    border-radius: 2px;
}

.itn-cta-text[b-gzckjaaa27] {
    color: rgba(255,255,255,0.85);
    margin: 12px 0 16px 0;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

.itn-btn[b-gzckjaaa27] {
    margin-top: 0;
}
/* /Components/Sections/MarketChallengeSection.razor.rz.scp.css */
.mc-grid[b-ebdchwjo54] {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
}

.mc-title[b-ebdchwjo54] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    color: var(--ts-teal);
    margin: 0 0 24px 0;
}

.mc-text p[b-ebdchwjo54] {
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin: 0 0 20px 0;
}

.mc-image img[b-ebdchwjo54] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

@media (max-width: 980px) {
    .mc-grid[b-ebdchwjo54] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/RoadMapSection.razor.rz.scp.css */
.roadmap-section[b-6gakr5u0fk] {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

.roadmap-inner[b-6gakr5u0fk] {
    max-width: var(--ts-max);
    margin: 0 auto;
    padding: 0 var(--ts-pad);
}

.roadmap-title[b-6gakr5u0fk] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 70px 0;
    color: var(--ts-teal);
    letter-spacing: -0.02em;
}

/* optional: if you want the image to behave nicely */
.roadmap-img[b-6gakr5u0fk] {
    width: 100%;
    height: auto;
    display: block;
}
/* /Components/Sections/TokenomicsSection.razor.rz.scp.css */
.tokenomics-section[b-yv2e12bbi4] {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

.tokenomics-inner[b-yv2e12bbi4] {
    max-width: var(--ts-max);
    margin: 0 auto;
    padding: 0 var(--ts-pad);
}

.tokenomics-title[b-yv2e12bbi4] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ts-teal);
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.tokenomics-description[b-yv2e12bbi4] {
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin: 0 0 80px 0;
}

.tokenomics-chart[b-yv2e12bbi4] {
    display: flex;
    justify-content: center;
}

    .tokenomics-chart img[b-yv2e12bbi4] {
        width: 100%;
        max-width: 800px;
        height: auto;
        display: block;
    }
/* /Components/Sections/WhalerIntroSection.razor.rz.scp.css */
.ts-section-title[b-vavckkyjiy] {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6.6vw, 86px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 60px 0;
    color: var(--ts-teal);
    letter-spacing: -0.02em;
}

/* Overall 2-column section: LEFT | RIGHT */
.ts-two-col[b-vavckkyjiy] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

/* LEFT: 2x2 grid where bottom row spans both columns */
.ts-left-grid[b-vavckkyjiy] {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-areas:
        "logo cta"
        "copy copy";
    gap: 22px 0px;
    align-items: center; /* <-- key: centers logo + cta vertically in row 1 */
}


.ts-left-logo[b-vavckkyjiy] {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 22px; /* aligns logo visually with title row */
}

.ts-logo[b-vavckkyjiy] {
    width: 100%;
    max-width: 190px;
    height: auto;
    display: block;
}

.ts-image img[b-vavckkyjiy] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.ts-left-cta[b-vavckkyjiy] {
    grid-area: cta;
    text-align: center; /* centers title */
    display: flex;
    flex-direction: column;
    align-items: center; /* centers button under title */
    justify-content: center; /* keeps the block vertically centered */
    padding-top: 0; /* remove any top offsets */
}

    .ts-left-cta .ts-btn-pill[b-vavckkyjiy] {
        margin: 14px 0 0 0; /* centered automatically */
    }

    /* Make sure the "Introducing Whaler" looks like the reference (not giant teal section header) */
    .ts-left-cta .ts-h2[b-vavckkyjiy] {
        margin: 0 0 24px 0;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 400;
        font-size: 2.2rem;
        line-height: 1.1;
        color: #fff;
        font-weight: 500;
    }

    .ts-left-cta .ts-btn-pill[b-vavckkyjiy] {
        display: inline-flex;
        margin: 0 0 10px 0;
    }

.ts-left-copy[b-vavckkyjiy] {
    grid-area: copy;
    max-width: 760px;
}

    .ts-left-copy .ts-paragraph[b-vavckkyjiy] {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 400;
        line-height: 1.75;
        font-size: 1rem;
        max-width: 760px;
    }

/* RIGHT */
.ts-right .ts-h2[b-vavckkyjiy] {
    margin: 0 0 14px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 1.1;
    color: #fff;
    font-weight: 500;
}

.ts-right img[b-vavckkyjiy] {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}

.ts-right-caption[b-vavckkyjiy] {
    margin-top: 18px;
    color: rgba(255,255,255,0.9);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 1.35;
    text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
    .ts-two-col[b-vavckkyjiy] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/Footer.razor.rz.scp.css */
.ts-footer[b-zgi8rvj387] {
    padding: 40px 80px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.ts-footer-inner[b-zgi8rvj387] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ts-footer-left[b-zgi8rvj387] {
    opacity: 0.65;
    font-size: 14px;
    white-space: nowrap;
}

/* Right group (buttons) */
.ts-footer-right[b-zgi8rvj387] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px; /* <-- space between buttons */
    white-space: nowrap;
}

/* Teal pills like screenshot */
.ts-footer-pill[b-zgi8rvj387] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #1aa9a9; /* <-- teal fill */
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1;
    opacity: 0.95;
    transition: transform 150ms ease, opacity 150ms ease, filter 150ms ease, border-color 150ms ease;
}

    .ts-footer-pill:hover[b-zgi8rvj387] {
        opacity: 1;
        transform: translateY(-1px);
        filter: brightness(1.05);
        border-color: rgba(255,255,255,0.25);
    }

/* Discord pill (blurple like screenshot) */
.ts-footer-pill--discord[b-zgi8rvj387] {
    background: #5865F2; /* Discord blurple */
    border-color: rgba(255,255,255,0.18);
}

    .ts-footer-pill--discord:hover[b-zgi8rvj387] {
        filter: brightness(1.05);
        border-color: rgba(255,255,255,0.28);
    }

/* X button: pill + white border */
.ts-footer-x[b-zgi8rvj387] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.85); /* <-- white border */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    opacity: 0.9;
    transition: transform 150ms ease, opacity 150ms ease, border-color 150ms ease;
}

    .ts-footer-x:hover[b-zgi8rvj387] {
        opacity: 1;
        transform: translateY(-1px);
        border-color: #fff;
    }

/* Responsive */
@media (max-width: 900px) {
    .ts-footer[b-zgi8rvj387] {
        padding: 28px 20px;
    }

    .ts-footer-inner[b-zgi8rvj387] {
        flex-direction: column;
        gap: 18px;
    }

    .ts-footer-right[b-zgi8rvj387] {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* /Components/Shared/Header.razor.rz.scp.css */
.ts-header[b-uex6ei7dtw] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.ts-header-inner[b-uex6ei7dtw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    position: relative;
}

.ts-image img[b-uex6ei7dtw] {
    width: 65%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Desktop nav */
.ts-nav[b-uex6ei7dtw] {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .ts-nav a[b-uex6ei7dtw] {
        white-space: nowrap;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-decoration: none;
        padding: 8px 10px;
    }

/* Mobile */
.ts-menu-btn[b-uex6ei7dtw] {
    display: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 24px;
    padding: 8px 10px;
}

@media (max-width: 640px) {
    .ts-menu-btn[b-uex6ei7dtw] {
        display: block;
    }

    /* dropdown panel */
    .ts-nav[b-uex6ei7dtw] {
        display: none;
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 10px);
        padding: 8px;
        background: rgba(10,10,10,0.98);
        border: 1px solid rgba(255,255,255,0.10);
        box-shadow: 0 18px 50px rgba(0,0,0,0.65);
        flex-direction: column;
        gap: 6px;
    }

        .ts-nav.open[b-uex6ei7dtw] {
            display: flex;
        }

        /* menu items */
        .ts-nav a[b-uex6ei7dtw] {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 12px 12px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            color: rgba(255,255,255,0.92);
            background: rgba(255,255,255,0.04);
        }

            .ts-nav a:hover[b-uex6ei7dtw] {
                background: rgba(95,230,215,0.14);
            }
}
/* /Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-7ec5kuc6p4] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-7ec5kuc6p4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* /Pages/Technology.razor.rz.scp.css */
/* =========================
   TECHNOLOGY PAGE (CLONE)
   ========================= */

.ts-tech-page .ts-section[b-ohsafmhj4t] {
    padding: 90px 0;
}

.tech-h1[b-ohsafmhj4t] {
    margin: 0;
    font-weight: 500;
    color: var(--ts-teal);
    font-size: clamp(46px, 5.6vw, 92px);
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.tech-p[b-ohsafmhj4t] {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.65;
    max-width: 62ch;
}

.tech-lead[b-ohsafmhj4t] {
    margin-top: 24px;
    max-width: 95ch;
}

.tech-img[b-ohsafmhj4t] {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== SECTION 1: HERO ===== */
.tech-hero-grid[b-ohsafmhj4t] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.tech-hero-left[b-ohsafmhj4t] {
    padding-top: 10px; /* matches screenshot where title sits slightly down */
}

.tech-hero-right[b-ohsafmhj4t] {
    padding-top: 14px;
}

/* keep hero image visually smaller than full width like screenshot */
.hero-img[b-ohsafmhj4t] {
    max-width: 560px;
    margin-left: auto;
    opacity: 0.98;
}

/* ===== SECTION 2: COLLAGE ===== */
.tech-collage-grid[b-ohsafmhj4t] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 44px 70px;
    align-items: start;
}

/* map blocks to the screenshot layout */
.collage-a[b-ohsafmhj4t] {
    grid-column: 1;
    grid-row: 1;
}

.collage-b[b-ohsafmhj4t] {
    grid-column: 2;
    grid-row: 1;
}

.collage-c[b-ohsafmhj4t] {
    grid-column: 1;
    grid-row: 2;
}

.collage-d[b-ohsafmhj4t] {
    grid-column: 2;
    grid-row: 2;
}

/* phone image is tall and narrow in screenshot */
.phone-img[b-ohsafmhj4t] {
    max-width: 420px;
    margin-left: auto;
}

/* diagram sits left and feels “anchored” */
.diagram-img[b-ohsafmhj4t] {
    max-width: 640px;
}

/* bottom-right paragraph starts lower in screenshot */
.collage-d[b-ohsafmhj4t] {
    padding-top: 110px;
}

/* ===== SECTION 3: PILLS ===== */
.better-pill-grid[b-ohsafmhj4t] {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 34px;
}

.pill[b-ohsafmhj4t] {
    background: #07b7c3; /* close to your teal */
    color: #fff;
    border-radius: 999px;
    padding: 28px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.42);
}

.pill-title[b-ohsafmhj4t] {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 14px;
}

.pill-desc[b-ohsafmhj4t] {
    font-size: 14px;
    line-height: 1.35;
    opacity: 0.98;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .tech-hero-grid[b-ohsafmhj4t] {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-img[b-ohsafmhj4t] {
        margin-left: 0;
        max-width: 720px;
    }

    .tech-collage-grid[b-ohsafmhj4t] {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .collage-d[b-ohsafmhj4t] {
        padding-top: 0;
    }

    .phone-img[b-ohsafmhj4t] {
        margin-left: 0;
        max-width: 520px;
    }

    .better-pill-grid[b-ohsafmhj4t] {
        grid-template-columns: 1fr;
    }

    .pill[b-ohsafmhj4t] {
        border-radius: 26px;
        text-align: left;
    }
}
