/* ============================================================
   BlueCash.ai — pixel-perfect single page
   ============================================================ */

/* Helvetica Neue is installed by default on macOS / iOS / many Win systems.
   For others it falls back to the system sans-serif stack below. */

:root {
    /* Deep navy palette tuned to the screenshot */
    --bg-navy: #0A1F3D;
    --bg-navy-top: #122E59;
    --bg-navy-dark: #081832;
    --card-navy: #11284B;
    --card-navy-2: #16305A;
    --icon-square: #1E232F;
    --bg-section-dark: #1E232F;
    --bg-redoak: #2A3143;
    --bg-contact: #40444E;

    --gray-slate: #3E4651;
    --gray-slate-2: #4A525C;
    --gray-chip: #E8EAED;
    --gray-bg: #ECEEF2;
    --gray-card: #FFFFFF;

    --blue-500: #1E73FF;
    --blue-400: #4FA6FF;
    --blue-300: #7ab9ff;

    --text-on-dark: #ffffff;
    --text-dim: rgba(255,255,255,0.65);
    --text-faint: rgba(255,255,255,0.45);
    --text-on-light-muted: #5a6578;
    --text-on-light: #0E1A2D;

    --font-display: 'Aldrich', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-navy);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ----------- Titles ----------- */
.section-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 34px;
}
.section-title--dark { color: #0E1A2D; }
.section-title--light { color: #fff; }

/* ----------- Buttons ----------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    background: var(--blue-500);
    color: #fff;
    box-shadow: 0 6px 18px rgba(30,115,255,.28);
}
.btn--primary:hover { background: #2a82ff; }
.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.65);
}
.btn--outline:hover { background: rgba(255,255,255,.08); }
.btn--pill-light {
    background: #fff;
    color: #0E1A2D;
    padding: 8px 20px;
    font-size: 9px;
    letter-spacing: 0.18em;
    border-radius: 999px;
    font-weight: 700;
}
.btn--sm { padding: 10px 20px; font-size: 9px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 20% 15%, rgba(60, 110, 180, 0.55) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 20%, rgba(30, 115, 255, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #0e2650 0%, #0a1c3a 60%, #081832 100%);
    padding: 18px 22px 80px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav__logo { display: flex; align-items: center; gap: 7px; }
.nav__logo img { width: 80px; height: auto; display: block; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
    background: none; border: 0;
    display: flex; flex-direction: column; justify-content: center;
    gap: 4px;
    width: 22px; height: 22px;
    cursor: pointer;
    padding: 0;
}
.nav__toggle span {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 1px;
}

.hero__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 50px;
    width: 100%;
}
.hero__title {
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: #fff;
}
.hero__subtitle {
    font-size: 11px;
    color: rgba(255,255,255,0.78);
    max-width: 460px;
    margin-bottom: 22px;
    line-height: 1.6;
    font-weight: 400;
}
.hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hero__scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 26px;
    width: 22px;
    height: 22px;
    opacity: .7;
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted {
    background: var(--bg-section-dark);
    padding: 30px 24px 34px;
}
.trusted__title {
    font-family: var(--font-display);
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
}
.trusted__logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: center;
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
}
.trusted__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}
.trusted__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(1) contrast(1);
}

/* ============================================================
   WHO IS THIS FOR
   ============================================================ */
.who {
    background: #fff;
    padding: 54px 22px 60px;
}
.who__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}
.who-card {
    background: #fff;
    border-radius: 5px;
    padding: 14px 14px 18px;
    color: var(--text-on-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.who-card__icon {
    width: 90px;
    height: 90px;
    max-width: 90px;
    background: var(--icon-square);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
}
.who-card__icon img,
.who-card__icon svg { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.who-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-on-light);
    letter-spacing: 0;
}
.who-card p {
    font-size: 9.5px;
    line-height: 1.65;
    color: #5a6578;
    font-weight: 400;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
    background: var(--bg-section-dark);
    padding: 54px 22px 60px;
}
.how__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
}
.how-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    align-items: center;
    background: #3A434F;
    border-radius: 8px;
    padding: 18px 18px 18px 10px;
}
.how-step__num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    text-align: center;
    line-height: 1;
}
.how-step__body h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
    color: #fff;
}
.how-step__body p {
    font-size: 7.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}

/* ============================================================
   OUR PRODUCTS
   ============================================================ */
.products {
    background: var(--bg-section-dark);
    padding: 50px 22px 56px;
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}
.products__grid > .product-card:nth-child(1) { grid-column: span 2; }
.products__grid > .product-card:nth-child(2) { grid-column: span 3; }
.products__grid > .product-card:nth-child(3) { grid-column: span 3; }
.products__grid > .product-card:nth-child(4) { grid-column: span 2; }
.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background: #0a1a33;
}
.product-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}
.product-card__info {
    position: relative;
    padding: 10px 12px 12px;
    z-index: 3;
    width: 100%;
}
.product-card__info h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
    color: #fff;
}
.product-card__info p {
    font-size: 7px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    max-width: 90%;
}
.product-card__info--overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 75%, rgba(0,0,0,0) 100%);
}
.product-card__chevron {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 22px; height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.product-card__chevron svg { width: 10px; height: 10px; }
.product-card__chevron svg path { stroke: #0E1A2D; }

.products__cta {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

/* ============================================================
   TRUST & CREDIBILITY
   ============================================================ */
.trust {
    background: var(--gray-slate);
    padding: 44px 22px 48px;
}
.trust .section-title--light {
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 400;
}
.trust__subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 9.5px;
    margin-bottom: 24px;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 860px;
    margin: 0 auto;
}
.trust-card {
    background: #58606c00;
    border-radius: 5px;
    padding: 10px 6px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: 64px;
    justify-content: center;
}
.trust-card__label {
    font-size: 6.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.04em;
}
.trust-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 100%;
}
.trust-card__logo svg,
.trust-card__logo img {
    max-width: 86%;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
}

/* ============================================================
   SECURE BY DESIGN
   ============================================================ */
.secure {
    background: var(--gray-bg);
    padding: 52px 22px 60px;
}
.secure__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}
.secure-card {
    background: #d6d3d3;
    border-radius: 5px;
    padding: 14px 12px 14px;
    box-shadow: 0 1px 4px rgba(14, 26, 45, 0.05);
    position: relative;
    min-height: 110px;
}
.secure-card__tag {
    display: inline-block;
    width: 22px;
    height: 5px;
    background: var(--blue-500);
    border-radius: 2px;
    margin-bottom: 10px;
}
.secure-card h5 {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0e1a2d;
    margin-bottom: 7px;
    line-height: 1.35;
    text-transform: uppercase;
}
.secure-card p {
    font-size: 7px;
    line-height: 1.55;
    color: #5a6578;
}

/* ============================================================
   RED OAK YOUTH
   ============================================================ */
.redoak {
    background: var(--bg-redoak);
    padding: 52px 22px 56px;
}
.redoak__inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center;
}
.redoak__media {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.redoak__media svg,
.redoak__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.redoak__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 6px;
}
.redoak__label {
    font-size: 8.5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    font-weight: 500;
}
.redoak__text p {
    font-size: 8px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin-bottom: 12px;
}

/* ============================================================
   WHY BLUECASH WINS
   ============================================================ */
.why {
    background: #fff;
    padding: 54px 22px 60px;
}
.why .section-title { color: var(--text-on-light); }
.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
    max-width: 860px;
    margin: 0 auto;
}
.why-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
}
.why-card__icon {
    width: 70px; height: 70px;
    background: var(--icon-square);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-card__icon svg,
.why-card__icon img { width: 32px; height: 32px; display: block; }
.why-card h5 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    color: var(--text-on-light);
    line-height: 1.2;
    text-transform: uppercase;
}
.why-card p {
    font-size: 9.5px;
    color: #5a6578;
    line-height: 1.55;
}

/* ============================================================
   LATEST PRESS
   ============================================================ */
.press {
    background: var(--bg-section-dark);
    padding: 40px 22px 52px;
}
.press__inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center;
}
.press__media {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.4);
}
.press__media iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.press__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}
.press__text p {
    font-size: 8px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
    margin-bottom: 12px;
}
.press__text strong { color: #fff; font-weight: 700; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    background: var(--gray-slate-2);
    padding: 28px 22px 36px;
}
.contact__panel {
    background: var(--gray-slate-2);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.contact__panel h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}
.contact__panel p {
    font-size: 9px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 16px;
    line-height: 1.55;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.contact__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-section-dark);
    padding: 24px 22px 28px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 860px;
    margin: 0 auto 14px;
}
.footer__top .nav__logo img { width: 80px; }
.footer__social {
    width: 22px; height: 22px; display: block;
}
.footer__bottom {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 7px;
    color: rgba(255,255,255,0.45);
}
.footer__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer__links a { color: rgba(255,255,255,0.45); font-size: 7px; }
.footer__links a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE — scale up for tablet/desktop
   ============================================================ */
@media (min-width: 640px) {
    .hero { padding: 24px 36px 90px; }
    .hero__title { font-size: 52px; }
    .hero__subtitle { font-size: 12px; }
    .section-title { font-size: 28px; }
    .who-card h4 { font-size: 16px; }
    .who-card p { font-size: 11px; }
    .how-step__body h4 { font-size: 12px; }
    .how-step__body p { font-size: 9.5px; }
    .product-card__info h4 { font-size: 13px; }
    .product-card__info p { font-size: 9px; }
    .secure-card h5 { font-size: 11px; }
    .secure-card p { font-size: 9px; }
    .why-card h5 { font-size: 14px; }
    .why-card p { font-size: 11px; }
    .redoak__title { font-size: 20px; }
    .redoak__text p { font-size: 10px; }
    .redoak__label { font-size: 10px; }
    .press__title { font-size: 22px; }
    .press__text p { font-size: 10px; }
    .contact__panel h3 { font-size: 26px; }
    .contact__panel p { font-size: 11px; }
    .footer__bottom { font-size: 9px; }
    .footer__links a { font-size: 9px; }
    .trusted__title { font-size: 16px; }
    .trust .section-title--light { font-size: 26px; }
    .trust__subtitle { font-size: 11px; }
    .trust-card__label { font-size: 8px; }
    .nav__logo img { width: 100px; }
}

@media (min-width: 900px) {
    .hero { padding: 30px 56px 120px; min-height: 680px; }
    .hero__title { font-size: 68px; }
    .hero__subtitle { font-size: 14px; max-width: 560px; }
    .hero__inner { padding-top: 70px; }
    .section-title { font-size: 34px; margin-bottom: 46px; }
    .nav__logo img { width: 130px; }

    .trusted { padding: 44px 40px 46px; }
    .trusted__logo { height: 56px; }

    .who { padding: 90px 40px; }
    .who__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .who-card { padding: 0; border-radius: 0; background: transparent; align-items: flex-start; }
    .who-card__icon { width: 90px; height: 90px; max-width: 90px; border-radius: 14px; margin: 0 0 22px; }
    .who-card__icon img,
    .who-card__icon svg { width: 36px; height: 36px; }
    .who-card h4 { font-size: 18px; margin-bottom: 14px; }
    .who-card p { font-size: 12px; line-height: 1.7; }

    .how { padding: 90px 40px; }
    .how__list { max-width: 820px; gap: 14px; }
    .how-step { padding: 26px 26px 26px 14px; grid-template-columns: 80px 1fr; border-radius: 10px; }
    .how-step__num { font-size: 68px; }
    .how-step__body h4 { font-size: 13px; }
    .how-step__body p { font-size: 11.5px; }

    .products { padding: 90px 40px; }
    .products__grid { gap: 18px; }
    .product-card { height: 260px; border-radius: 12px; }
    .products__cta { margin-top: 36px; }
    .product-card__chevron { width: 30px; height: 30px; right: 12px; top: 12px; }
    .product-card__chevron svg { width: 12px; height: 12px; }
    .product-card__info { padding: 18px 22px 22px; }

    .trust { padding: 64px 40px; }
    .trust__grid { gap: 12px; }
    .trust-card { min-height: 96px; padding: 16px 14px; border-radius: 6px; gap: 8px; }
    .trust-card__label { font-size: 10px; }
    .trust-card__logo { height: 44px; }
    .trust-card__logo img,
    .trust-card__logo svg { max-height: 40px; }

    .secure { padding: 90px 40px; }
    .secure__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .secure-card { min-height: 170px; padding: 22px 18px; border-radius: 8px; }
    .secure-card__tag { width: 32px; height: 7px; border-radius: 3px; }
    .secure-card h5 { font-size: 12.5px; }
    .secure-card p { font-size: 10.5px; }

    .redoak { padding: 90px 40px; }
    .redoak__title { font-size: 26px; }
    .redoak__label { font-size: 12px; }
    .redoak__text p { font-size: 11.5px; }

    .why { padding: 90px 40px; }
    .why__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; max-width: 880px; }
    .why-card { padding: 22px 22px; border-radius: 8px; gap: 16px; align-items: center; }
    .why-card__icon { width: 72px; height: 72px; border-radius: 6px; }
    .why-card__icon svg,
    .why-card__icon img { width: 20px; height: 20px; }
    .why-card h5 { font-size: 13px; }
    .why-card p { font-size: 11px; }

    .press { padding: 80px 40px; }
    .press__title { font-size: 28px; }
    .press__text p { font-size: 11.5px; }

    .contact { padding: 60px 40px 80px; }
    .contact__panel { padding: 56px 40px; border-radius: 12px; }
    .contact__panel h3 { font-size: 32px; }
    .contact__panel p { font-size: 13px; max-width: 560px; }

    .footer { padding: 40px 40px 36px; }
    .footer__top .nav__logo img { width: 130px; }
    .footer__bottom { font-size: 10px; }
    .footer__links a { font-size: 10px; }

    .btn { font-size: 11px; padding: 13px 26px; }
}

@media (min-width: 1200px) {
    .who__grid,
    .secure__grid { max-width: 1100px; }
    .why__grid { max-width: 980px; }
    .how__list { max-width: 960px; }
    .products__grid { max-width: 1100px; }
    .trust__grid { max-width: 1000px; }
    .redoak__inner,
    .press__inner { max-width: 1100px; gap: 60px; }
    .hero__inner { max-width: 1100px; }
}
