:root {
    --blue-950: #071b33;
    --blue-850: #0b2d52;
    --blue-700: #1261a6;
    --teal-500: #17a9a2;
    --green-500: #58b36b;
    --ink: #142033;
    --muted: #5c6b7d;
    --line: #d9e3ef;
    --surface: #f5f8fb;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    background: var(--white);
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 14px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: rgba(7, 27, 51, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--teal-500);
    color: var(--blue-950);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
}

.nav a,
.header-cta,
.btn,
.text-cta {
    text-decoration: none;
}

.nav a {
    color: rgba(255, 255, 255, 0.86);
}

.header-cta {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 76vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--blue-950);
    padding-top: 78px;
    padding-bottom: 38px;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(7, 27, 51, 0.96) 0%, rgba(7, 27, 51, 0.82) 38%, rgba(7, 27, 51, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 40px));
    margin: 0 0 0 clamp(20px, 5vw, 72px);
    color: var(--white);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal-500);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 670px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 7px;
    font-weight: 800;
}

.btn-primary {
    color: var(--blue-950);
    background: var(--teal-500);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.trust-strip span {
    padding: 8px 11px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.section {
    padding: clamp(58px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.intro {
    padding-top: 44px;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 36px;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.25;
}

.intro {
    background: var(--white);
}

.intro-grid,
.steps,
.rgpd-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.intro-grid article,
.steps article,
.rgpd-grid article,
.feature-list div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
}

.intro-grid p,
.steps p,
.rgpd-grid p,
.split p,
.final-cta p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: var(--surface);
}

.text-cta {
    display: inline-flex;
    margin-top: 16px;
    color: var(--blue-700);
    font-weight: 800;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-list div {
    display: grid;
    gap: 4px;
}

.feature-list span {
    color: var(--muted);
}

.process {
    background: var(--blue-950);
    color: var(--white);
}

.process .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.steps span {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--teal-500);
    font-weight: 900;
}

.steps p {
    color: rgba(255, 255, 255, 0.75);
}

.rgpd {
    background: var(--white);
}

.final-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.final-cta h2,
.final-cta p {
    max-width: 760px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    padding: 54px clamp(20px, 5vw, 72px) 26px;
    color: rgba(255, 255, 255, 0.82);
    background: #061526;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
    gap: 32px;
}

.footer-brand {
    color: var(--white);
}

.site-footer p {
    max-width: 430px;
    margin: 18px 0 0;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer a {
    display: table;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.legal-body {
    background: var(--surface);
}

.legal-header {
    position: sticky;
    color: var(--white);
}

.legal-main {
    padding-top: 0;
}

.legal-hero {
    padding: 96px clamp(20px, 5vw, 72px) 52px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.legal-hero h1 {
    max-width: 900px;
}

.legal-hero p:last-child {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
}

.legal-content {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 44px 20px 72px;
}

.legal-section {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.legal-section h2,
.legal-cta h2 {
    font-size: 24px;
}

.legal-section p,
.legal-section li,
.legal-cta p {
    color: var(--muted);
}

.legal-section ul {
    margin: 0;
    padding-left: 20px;
}

.legal-section li + li {
    margin-top: 8px;
}

.legal-cta {
    padding: 52px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: var(--blue-950);
}

.legal-cta p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.about-body {
    background: var(--white);
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(28px, 6vw, 82px);
    align-items: center;
    padding: 112px clamp(20px, 5vw, 72px) 72px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(18, 97, 166, 0.9)),
        url("../img/boescan-hero.png") center/cover;
}

.about-hero h1 {
    max-width: 920px;
}

.about-hero p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
}

.about-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-meta {
    margin-top: 30px;
}

.about-meta span,
.tag-row span {
    padding: 8px 11px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.about-proof {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-proof strong {
    font-size: 26px;
}

.about-proof span {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
}

.story-grid,
.values-grid,
.number-grid,
.trust-grid {
    display: grid;
    gap: 18px;
}

.story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article,
.values-grid article,
.number-grid article,
.trust-grid article,
.founder-card,
.location-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.story-grid article,
.values-grid article,
.trust-grid article {
    padding: 24px;
}

.story-grid span {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--teal-500);
    font-weight: 900;
}

.story-grid p,
.values-grid p,
.about-founder p,
.about-location p,
.number-note {
    color: var(--muted);
}

.about-values,
.about-numbers {
    background: var(--surface);
}

.values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-founder,
.about-location {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.founder-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    padding: 26px;
}

.founder-avatar {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 8px;
    color: var(--blue-950);
    background: var(--teal-500);
    font-size: 36px;
    font-weight: 900;
}

.founder-card .tag-row span {
    color: var(--blue-950);
    background: var(--surface);
}

.number-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.number-grid article {
    padding: 26px;
}

.number-grid strong {
    display: block;
    color: var(--blue-700);
    font-size: 44px;
    line-height: 1;
}

.number-grid span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 700;
}

.number-note {
    margin-top: 20px;
}

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

.trust-grid ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.trust-grid li + li {
    margin-top: 8px;
}

.about-location {
    color: var(--white);
    background: var(--blue-950);
}

.about-location p {
    color: rgba(255, 255, 255, 0.78);
}

.location-card {
    display: grid;
    gap: 8px;
    padding: 28px;
    color: var(--ink);
}

.location-card strong {
    color: var(--blue-700);
    font-size: 36px;
}

.location-card a {
    color: var(--blue-700);
    font-weight: 800;
    text-decoration: none;
}

.about-final {
    background: linear-gradient(135deg, var(--blue-700), var(--teal-500));
}

.about-hero-v2 {
    min-height: 78vh;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.52fr);
    padding-top: 128px;
    background:
        linear-gradient(90deg, rgba(7, 27, 51, 0.98) 0%, rgba(7, 27, 51, 0.88) 46%, rgba(7, 27, 51, 0.35) 100%),
        url("../img/boescan-hero.png") center/cover;
}

.about-hero-copy {
    max-width: 860px;
}

.about-hero-v2 h1 {
    font-size: clamp(42px, 5vw, 68px);
}

.about-hero-v2 .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
}

.about-hero-panel {
    align-self: end;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(6, 21, 38, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.about-hero-panel div:first-child {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.about-hero-panel span,
.about-hero-panel dt {
    color: var(--teal-500);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-hero-panel strong {
    font-size: 72px;
    line-height: 0.9;
}

.about-hero-panel p {
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.about-hero-panel dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.about-hero-panel dl div {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-panel dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 88px);
    padding: 46px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: var(--blue-950);
}

.about-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.35;
}

.about-story-v2 {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: start;
    background: var(--white);
}

.story-heading {
    position: sticky;
    top: 96px;
}

.story-heading p:last-child {
    color: var(--muted);
}

.timeline {
    position: relative;
    display: grid;
    gap: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 9px;
    width: 2px;
    background: var(--line);
}

.timeline article {
    position: relative;
    padding: 0 0 42px 46px;
}

.timeline article:last-child {
    padding-bottom: 0;
}

.timeline article::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 5px solid var(--teal-500);
    border-radius: 50%;
    background: var(--white);
}

.timeline span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--blue-700);
    font-weight: 900;
}

.timeline h3 {
    font-size: 26px;
}

.timeline p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.about-values-v2 {
    background: #eef5f8;
}

.about-values-v2 .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-values-v2 .values-grid article {
    display: grid;
    grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid rgba(20, 32, 51, 0.16);
    border-radius: 0;
    background: transparent;
}

.about-values-v2 .values-grid h3 {
    color: var(--blue-700);
}

.about-values-v2 .values-grid p {
    margin: 0;
}

.about-founder-v2 {
    background: var(--white);
}

.founder-feature {
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
}

.founder-copy p:not(.eyebrow) {
    max-width: 680px;
    font-size: 18px;
}

.about-founder-v2 .founder-card {
    border: 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.about-founder-v2 .founder-card p {
    color: rgba(255, 255, 255, 0.78);
}

.about-founder-v2 .founder-card .tag-row span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.founder-portrait-card {
    display: grid;
    gap: 14px;
}

.founder-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border-radius: 8px;
    background: var(--blue-950);
    box-shadow: 0 28px 70px rgba(7, 27, 51, 0.18);
}

.founder-image-wrap > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) contrast(1.04);
}

.founder-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 51, 0.02), rgba(7, 27, 51, 0.72));
}

.founder-mini-card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--white);
    background: rgba(6, 21, 38, 0.74);
    backdrop-filter: blur(12px);
}

.founder-mini-card img {
    width: 68px;
    height: 68px;
    border: 3px solid rgba(23, 169, 162, 0.65);
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.founder-mini-card h3 {
    margin-bottom: 2px;
    font-size: 19px;
}

.founder-mini-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.founder-tags {
    justify-content: flex-end;
}

.founder-tags span {
    color: var(--blue-950);
    background: var(--surface);
}

.about-numbers-v2 {
    padding-top: 42px;
    padding-bottom: 42px;
    background: var(--blue-950);
}

.about-numbers-v2 .number-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.about-numbers-v2 .number-grid article {
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.about-numbers-v2 .number-grid strong {
    color: var(--teal-500);
}

.about-numbers-v2 .number-grid span {
    color: rgba(255, 255, 255, 0.78);
}

.about-trust-v2 {
    background: var(--white);
}

.about-trust-v2 .trust-grid article {
    padding: 32px;
    border-color: transparent;
    background: var(--surface);
}

.about-location-v2 {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    background:
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(11, 45, 82, 0.94)),
        url("../img/boescan-hero.png") center/cover;
}

.about-location-v2 .location-card {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.about-location-v2 .location-card strong,
.about-location-v2 .location-card a {
    color: var(--teal-500);
}

@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .intro-grid,
    .steps,
    .rgpd-grid,
    .footer-grid,
    .about-hero,
    .story-grid,
    .values-grid,
    .number-grid,
    .trust-grid,
    .about-founder,
    .about-location,
    .founder-feature,
    .about-intro,
    .about-story-v2,
    .process .steps,
    .split {
        grid-template-columns: 1fr;
    }

    .story-heading {
        position: static;
    }

    .about-values-v2 .values-grid article {
        grid-template-columns: 1fr;
    }

    .founder-tags {
        justify-content: flex-start;
    }

    .hero-overlay {
        background: rgba(7, 27, 51, 0.84);
    }
}

@media (max-width: 620px) {
    .site-header {
        min-height: 64px;
        padding: 12px 16px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-left: 16px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .btn {
        width: 100%;
    }
}

.home-body {
    background: #f7faf8;
}

.home-header {
    background: rgba(6, 21, 38, 0.86);
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    padding: 128px clamp(20px, 5vw, 72px) 54px;
    color: var(--white);
    background: #061526;
}

.home-hero-bg,
.home-hero-bg img {
    position: absolute;
    inset: 0;
}

.home-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.27;
    filter: saturate(0.92) contrast(1.08);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 26%, rgba(23, 169, 162, 0.28), transparent 26%),
        linear-gradient(115deg, rgba(6, 21, 38, 0.98) 0%, rgba(7, 27, 51, 0.93) 48%, rgba(18, 97, 166, 0.62) 100%);
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.62fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
}

.home-hero-copy h1 {
    max-width: 860px;
    font-size: clamp(43px, 5.7vw, 76px);
}

.home-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    max-width: 900px;
    margin-top: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.home-proof-strip span {
    min-height: 62px;
    display: grid;
    align-items: center;
    padding: 14px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(6, 21, 38, 0.52);
    font-size: 14px;
    font-weight: 700;
}

.signal-console {
    position: relative;
    display: grid;
    gap: 22px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(6, 21, 38, 0.76);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.console-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.console-top span {
    color: var(--teal-500);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.console-top strong {
    font-size: 15px;
}

.radar {
    position: relative;
    aspect-ratio: 1 / 1;
    width: min(100%, 370px);
    margin: 0 auto;
    border: 1px solid rgba(23, 169, 162, 0.46);
    border-radius: 50%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        rgba(23, 169, 162, 0.08);
    background-size: 28px 28px;
}

.radar::before,
.radar::after,
.radar-ring {
    content: "";
    position: absolute;
    inset: 16%;
    border: 1px solid rgba(23, 169, 162, 0.34);
    border-radius: 50%;
}

.radar::after {
    inset: 34%;
}

.radar-ring.ring-one {
    inset: 6%;
}

.radar-ring.ring-two {
    inset: 48%;
}

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42%;
    height: 2px;
    background: linear-gradient(90deg, rgba(23, 169, 162, 0.95), transparent);
    transform-origin: left center;
    transform: rotate(-28deg);
}

.radar-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #f3c35b;
    box-shadow: 0 0 0 6px rgba(243, 195, 91, 0.14);
}

.dot-one {
    top: 24%;
    left: 63%;
}

.dot-two {
    top: 56%;
    left: 28%;
    background: var(--teal-500);
}

.dot-three {
    right: 24%;
    bottom: 22%;
    background: var(--green-500);
}

.console-events {
    display: grid;
    gap: 10px;
}

.console-events div {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.event-status {
    width: 11px;
    height: 11px;
    margin-top: 7px;
    border-radius: 50%;
    background: #f3c35b;
}

.event-status.sent {
    background: var(--teal-500);
}

.event-status.report {
    background: var(--green-500);
}

.console-events p {
    margin: 0;
}

.console-events small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.65);
}

.home-intent-band {
    padding: 32px clamp(20px, 5vw, 72px);
    color: #061526;
    background: #dff5ef;
}

.home-intent-band p {
    max-width: 1160px;
    margin: 0 auto;
    font-size: clamp(21px, 2.4vw, 31px);
    line-height: 1.28;
    font-weight: 800;
}

.pain-section,
.audience-section,
.seo-section,
.faq-section {
    background: #f7faf8;
}

.pain-grid,
.audience-grid,
.query-grid {
    display: grid;
    gap: 18px;
}

.pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-grid article,
.audience-grid article,
.query-grid article,
.faq-list details {
    border: 1px solid rgba(20, 32, 51, 0.12);
    border-radius: 8px;
    background: var(--white);
}

.pain-grid article {
    padding: 28px;
}

.pain-grid span {
    display: inline-flex;
    margin-bottom: 36px;
    color: #b86b20;
    font-weight: 900;
}

.pain-grid p,
.home-solution p,
.audience-grid p,
.audience-grid li,
.process-rail p,
.proof-panel p,
.rgpd-section p,
.query-grid p,
.faq-list p {
    color: var(--muted);
}

.home-solution {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
    gap: clamp(32px, 6vw, 86px);
    align-items: center;
    background: var(--white);
}

.solution-copy p:not(.eyebrow) {
    max-width: 680px;
    font-size: 18px;
}

.btn-dark {
    color: var(--blue-950);
    border: 1px solid rgba(7, 27, 51, 0.22);
    background: var(--white);
}

.solution-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(20, 32, 51, 0.13);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.solution-matrix div {
    min-height: 132px;
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 22px;
    border-right: 1px solid rgba(20, 32, 51, 0.1);
    border-bottom: 1px solid rgba(20, 32, 51, 0.1);
}

.solution-matrix div:nth-child(2n) {
    border-right: 0;
}

.solution-matrix div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.solution-matrix strong {
    color: var(--blue-700);
    font-size: 23px;
}

.solution-matrix span {
    color: var(--muted);
}

.audience-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.audience-grid article {
    padding: 30px;
}

.featured-audience {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(18, 97, 166, 0.9)),
        url("../img/boescan-hero.png") center/cover;
}

.featured-audience p,
.featured-audience li {
    color: rgba(255, 255, 255, 0.76);
}

.featured-audience .text-cta {
    color: var(--teal-500);
}

.audience-label {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--blue-950);
    background: #dff5ef;
    font-size: 13px;
    font-weight: 900;
}

.audience-grid ul {
    margin: 20px 0 0;
    padding-left: 20px;
}

.audience-grid li + li {
    margin-top: 8px;
}

.home-process {
    color: var(--white);
    background: #061526;
}

.process-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    overflow: hidden;
}

.process-rail article {
    min-height: 280px;
    display: grid;
    align-content: start;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.055);
}

.process-rail article:last-child {
    border-right: 0;
}

.process-rail span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 50%;
    color: var(--blue-950);
    background: var(--teal-500);
    font-weight: 900;
}

.process-rail p {
    color: rgba(255, 255, 255, 0.72);
}

.proof-section {
    background: #eef5f0;
}

.proof-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, #09233f, #1261a6);
}

.proof-panel p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.proof-stats div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.proof-stats dt {
    color: var(--teal-500);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.proof-stats dd {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.rgpd-section {
    background: var(--white);
}

.home-rgpd-grid article {
    min-height: 210px;
}

.query-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.query-grid article {
    padding: 24px;
}

.query-grid h3 {
    color: var(--blue-700);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.faq-list details {
    padding: 20px 22px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.faq-list p {
    margin-bottom: 0;
}

.home-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(7, 27, 51, 0.98), rgba(18, 97, 166, 0.88)),
        url("../img/boescan-hero.png") center/cover;
}

.final-actions {
    display: grid;
    gap: 12px;
}

.final-actions span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

@media (max-width: 1060px) {
    .home-hero-grid,
    .home-solution,
    .proof-panel,
    .home-final-cta {
        grid-template-columns: 1fr;
    }

    .query-grid,
    .process-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-rail article:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .home-hero {
        min-height: auto;
        padding-top: 108px;
    }

    .home-proof-strip,
    .pain-grid,
    .audience-grid,
    .query-grid,
    .process-rail,
    .proof-stats,
    .solution-matrix {
        grid-template-columns: 1fr;
    }

    .solution-matrix div,
    .solution-matrix div:nth-child(2n),
    .solution-matrix div:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 32, 51, 0.1);
    }

    .solution-matrix div:last-child {
        border-bottom: 0;
    }

    .process-rail article,
    .process-rail article:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .process-rail article:last-child {
        border-bottom: 0;
    }

    .signal-console {
        padding: 20px;
    }
}
