:root {
    --navy: #071D49;
    --sky: #5BC2E7;
    --sky-mid: #8DD4EE;
    --sky-light: #CDEDF7;
    --charcoal: #10182C;
    --teal: #16978A;
    --teal-light: #D0EAE7;
    --gold: #D2B231;
    --navy-mid: #526180;
    --bg-light: #F4F6F9;
    --white: #FFFFFF;
    --text-mid: #777877;
    --border: #E2E8F0;
}

/* HERO */
.hero {
    background: var(--charcoal);
    min-height: 100vh;
    padding: 100px 6% 90px;
    background-image: url('../images/banner-bg.png');
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-banner-lp {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 48px;
}

.hero-shape-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: var(--sky);
    opacity: 0.06;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
    transform: rotate(12deg);
    pointer-events: none;
}

.hero-shape-2 {
    position: absolute;
    bottom: -100px;
    right: 30%;
    width: 260px;
    height: 260px;
    background: var(--teal);
    opacity: 0.05;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
    transform: rotate(-18deg);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 194, 231, 0.12);
    border: 1px solid rgba(91, 194, 231, 0.3);
    color: var(--sky);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--sky);
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--sky);
    color: var(--navy);
    padding: 13px 26px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-primary:hover {
    background: var(--sky-mid);
}

.btn-ghost {
    border: 1.5px solid rgba(91, 194, 231, 0.35);
    color: var(--sky);
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}

.btn-ghost:hover {
    border-color: var(--sky);
    background: rgba(91, 194, 231, 0.07);
}

/* HERO PANEL */
.hero-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(91, 194, 231, 0.16);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    z-index: 1;
}

.panel-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 18px;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 18px 14px;
}

.stat-n {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--sky);
}

.stat-n.gold {
    color: var(--gold);
}

.stat-n.teal {
    color: var(--teal);
}

.stat-l {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 5px;
    line-height: 1.4;
}

.hero-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 16px;
    margin-top: 2px;
}

.hero-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    line-height: 1.5;
}

.hero-tagline strong {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

/* TRUST BAR */
.trust {
    background: var(--bg-light);
    padding: 20px 6%;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-label {
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.trust-items {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-mid);
    opacity: 0.6;
    letter-spacing: 0.3px;
}

/* SECTIONS */
section {
    padding: 88px 6%;
}

.s-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.s-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.s-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 44px;
    max-width: 600px;
}

.centered {
    text-align: center;
}

.centered .s-sub {
    margin-left: auto;
    margin-right: auto;
}

/* PROBLEM */
.problem {
    background: var(--white);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.pain-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.pain {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: border-color .2s;
}

.pain:hover {
    border-left-color: var(--sky);
}

.pain-ico {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 4px;
    background: rgba(91, 194, 231, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-ico svg {
    width: 17px;
    height: 17px;
    stroke: var(--sky);
    stroke-width: 2;
    fill: none;
}

.pain h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.pain p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
}

.problem-callout {
    background: var(--navy);
    border-radius: 10px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.callout-quote {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    border-left: 3px solid var(--sky);
    padding-left: 20px;
}

.callout-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    padding-left: 20px;
}

.callout-stat {
    background: rgba(91, 194, 231, 0.1);
    border: 1px solid rgba(91, 194, 231, 0.2);
    border-radius: 6px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.callout-stat-n {
    font-size: 36px;
    font-weight: 700;
    color: var(--sky);
    flex-shrink: 0;
    line-height: 1;
}

.callout-stat-l {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.callout-reg {
    background: rgba(210, 178, 49, 0.1);
    border: 1px solid rgba(210, 178, 49, 0.2);
    border-radius: 6px;
    padding: 16px 18px;
}

.callout-reg-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.callout-reg-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* PRODUCTS */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 26px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 29, 73, 0.07);
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.product-ico {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-ico svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
    fill: none;
}

.product-ico.sky {
    background: rgba(91, 194, 231, 0.12);
}

.product-ico.sky svg {
    stroke: var(--sky);
}

.product-ico.teal {
    background: rgba(22, 151, 138, 0.1);
}

.product-ico.teal svg {
    stroke: var(--teal);
}

.product-ico.gold {
    background: rgba(210, 178, 49, 0.1);
}

.product-ico.gold svg {
    stroke: var(--gold);
}

.product-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 3px;
}

.product-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25;
}

.product-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
}

.product-metrics {
    display: flex;
    gap: 20px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.pm-n {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

.pm-l {
    font-size: 11px;
    color: var(--text-mid);
    margin-top: 1px;
}

/* OUTCOMES */
.outcomes {
    background: var(--navy);
    padding: 88px 6%;
    /* background-image: url('data:image/png); */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.outcomes .s-eyebrow {
    color: var(--gold);
}

.outcomes .s-title {
    color: var(--white);
}

.outcomes .s-sub {
    color: rgba(255, 255, 255, 0.6);
}

.outcomes-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.oc {
    background: rgba(255, 255, 255, 0.04);
    padding: 32px 24px;
    text-align: center;
    transition: background .2s;
}

.oc:hover {
    background: rgba(91, 194, 231, 0.08);
}

.oc-n {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.oc-n.sky {
    color: var(--sky);
}

.oc-n.gold {
    color: var(--gold);
}

.oc-n.teal {
    color: var(--teal);
}

.oc-l {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    line-height: 1.5;
}

/* LIFECYCLE */
.lifecycle {
    background: var(--white);
}

.lifecycle-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    position: relative;
}

.lifecycle-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, var(--sky), var(--teal));
    opacity: 0.25;
}

.lc-step {
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.lc-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--sky);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all .2s;
}

.lc-dot.on {
    background: var(--sky);
    border-color: var(--sky);
}

.lc-dot svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
    stroke-width: 1.8;
    fill: none;
}

.lc-dot.on svg {
    stroke: var(--white);
}

.lc-step h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.lc-step p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.45;
}

.lc-tag {
    display: inline-block;
    margin-top: 8px;
    background: rgba(91, 194, 231, 0.1);
    border: 1px solid rgba(91, 194, 231, 0.25);
    color: var(--sky);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
}

.lc-tag.teal-tag {
    background: rgba(22, 151, 138, 0.08);
    border-color: rgba(22, 151, 138, 0.25);
    color: var(--teal);
}

/* APPROACH */
.approach {
    background: var(--bg-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.pillar:first-child {
    padding-top: 0;
}

.pillar-n {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 5px;
}

.pillar h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.pillar p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.gov-panel {
    background: var(--navy);
    border-radius: 10px;
    padding: 30px;
    position: sticky;
    top: 88px;
}

.gov-panel h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.gov-panel>p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    line-height: 1.6;
}

.gov-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gov-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 11px 14px;
}

.gov-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(91, 194, 231, 0.18);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gov-check svg {
    width: 11px;
    height: 11px;
    stroke: var(--sky);
    stroke-width: 2.5;
    fill: none;
}

.gov-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.groups {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.group {
    padding: 14px;
    border-radius: 6px;
}

.group.a {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.group.b {
    background: rgba(22, 151, 138, 0.1);
    border: 1px solid rgba(22, 151, 138, 0.2);
}

.group-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.group.a .group-label {
    color: rgba(255, 255, 255, 0.38);
}

.group.b .group-label {
    color: var(--teal);
}

.group p {
    font-size: 13px;
    line-height: 1.5;
}

.group.a p {
    color: rgba(255, 255, 255, 0.5);
}

.group.b p {
    color: rgba(255, 255, 255, 0.8);
}

/* CLOSING STATEMENT */
.closing {
    background: var(--charcoal);
    padding: 72px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.closing::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: var(--sky);
    opacity: 0.04;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
    transform: rotate(-8deg);
}

.closing::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: var(--teal);
    opacity: 0.05;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
    transform: rotate(14deg);
}

.closing-statement {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto 12px;
    position: relative;
    z-index: 1;
}

.closing-statement em {
    font-style: normal;
    color: var(--sky);
}

.closing-tagline {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* CTA */
.cta-band {
    background: var(--sky);
    padding: 88px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: var(--navy);
    opacity: 0.07;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
    transform: rotate(10deg);
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: var(--navy);
    opacity: 0.05;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
    transform: rotate(-15deg);
}

.cta-band h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band p {
    font-size: 16px;
    color: rgba(7, 29, 73, 0.72);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    padding: 13px 26px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.btn-dark:hover {
    background: var(--charcoal);
}

.btn-outline-dark {
    border: 1.5px solid rgba(7, 29, 73, 0.35);
    color: var(--navy);
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    background: rgba(7, 29, 73, 0.06);
}

.cta-note {
    font-size: 12px;
    color: rgba(7, 29, 73, 0.5);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* RESPONSIVE */
@media(max-width:960px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }

    .two-col,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .gov-panel {
        position: relative;
        top: 0;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .outcomes-strip {
        grid-template-columns: 1fr 1fr;
    }

    .lifecycle-track {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .lifecycle-track::before {
        display: none;
    }
}

@media(max-width:600px) {
    section {
        padding: 60px 5%;
    }

    .nav-links {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
}