:root {
    --primary: #079fd1;
    --primary-deep: #0787c3;
    --secondary: #3bd0ca;
    --navy: #11243d;
    --navy-soft: #1b3554;
    --text: #42536a;
    --muted: #434b57;
    --line: #dfeaf1;
    --surface: #f6fbfd;
    --surface-blue: #edf9fd;
    --white: #ffffff;
    --success: #16b56f;
    --orange: #f3a13b;
    --shadow-sm: 0 12px 32px rgba(17, 36, 61, 0.08);
    --shadow-md: 0 24px 60px rgba(17, 36, 61, 0.13);
    --shadow-lg: 0 35px 90px rgba(6, 93, 141, 0.22);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --section-space: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    transition: all 0.25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--navy);
    font-family: "Outfit", "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: -1.1px;
    line-height: 1;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--white);
    background: var(--primary);
}

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy);
    border-radius: 0 0 10px 10px;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1240px;
}

.section-space {
    padding: var(--section-space) 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 99px;
    content: "";
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.86);
}

.eyebrow-light::before {
    background: rgba(255, 255, 255, 0.8);
}

.section-heading {
    max-width: 740px;
}

.section-heading h2,
.score-copy h2,
.feature-band-heading h2,
.cta-card h2 {
    margin-bottom: 15px;
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
}

.section-heading p,
.section-side-copy {
    color: #505865;
    font-size: 16px;
    line-height: 1.55;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 21px;
    border-width: 1px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.btn-lg {
    min-height: 48px;
    padding: 14px 26px;
    font-size: 15px;
}

.btn svg {
    width: 19px;
    height: 19px;
    margin-left: 8px;
}

.btn-white {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 14px 30px rgba(12, 45, 71, 0.15);
}

.btn-white:hover,
.btn-white:focus {
    color: var(--navy);
    background: #f1fbff;
    border-color: #f1fbff;
    transform: translateY(-2px);
}

.btn-outline-light-custom {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(10px);
}

.btn-outline-light-custom:hover,
.btn-outline-light-custom:focus {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header .navbar {
    min-height: 96px;
    padding: 12px 0;
    background: #fcfefe;
    border-bottom: 1px solid rgba(17, 36, 61, 0.06);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(16, 49, 78, 0.1);
}

.site-header.is-scrolled .navbar {
    min-height: 80px;
}
.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
    padding: 13px 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 17px;
    box-shadow: 0 22px 45px rgba(5, 68, 104, 0.18);
    backdrop-filter: blur(15px);
}
.navbar-brand img {
    display: block;
    width: 174px;
    height: auto;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 12px 14px !important;
    color: #53657b;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    color: var(--primary-deep);
}

.navbar-nav .nav-link::after {
    margin-left: 6px;
    vertical-align: 2px;
}

.dropdown-menu {
    min-width: 290px;
    margin-top: 1px !important;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 36, 61, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(16, 49, 78, 0.14);
    backdrop-filter: blur(18px);
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 11px 13px;
    color: var(--navy);
    border-radius: 11px;
    white-space: normal;
}

.dropdown-item span {
    font-size: 14px;
    font-weight: 700;
}

.dropdown-item small {
    color: #5b6571;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0px !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--primary-deep);
    background: var(--surface-blue);
}

.btn-portal {
    min-width: 130px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-deep), var(--secondary));
    border: 0;
    box-shadow: 0 12px 24px rgba(7, 159, 209, 0.22);
    letter-spacing: 0.2px;
    margin-right: 10px;
}

.btn-portal:hover,
.btn-portal:focus {
    color: var(--white);
    box-shadow: 0 16px 28px rgba(7, 159, 209, 0.3);
    transform: translateY(-2px);
}

.navbar-toggler {
    width: 48px;
    height: 44px;
    padding: 10px;
    background: var(--surface-blue);
    border: 0;
    border-radius: 13px;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    border-radius: 999px;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 890px;
    padding-top: 96px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 20%, rgba(95, 224, 218, 0.28), transparent 25%),
        linear-gradient(125deg, #078fc7 0%, #0ba6d1 43%, #42d3ca 100%);
}

.hero-grid,
.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-section::after {
    position: absolute;
    right: -8%;
    bottom: -220px;
    left: -8%;
    height: 280px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    content: "";
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.hero-orb-one {
    top: 120px;
    right: 5%;
    width: 550px;
    height: 550px;
}

.hero-orb-two {
    top: 190px;
    right: 10%;
    width: 390px;
    height: 390px;
}

.min-vh-hero {
    min-height: 745px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding-bottom: 80px;
}

.hero-copy h1 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(3rem, 4.1vw, 4.2rem);
    letter-spacing: -1px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 67px;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16.4px;
    line-height: 1.55;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 600;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points i {
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.hero-visual {
    position: relative;
    z-index: 2;
    min-height: 690px;
}



.hero-device {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 88% !important;
    max-width: 570px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    transform: none !important;
    animation: none !important;
    filter: drop-shadow(0 28px 38px rgba(5, 63, 98, 0.22));
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: auto;
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.visual-ring-one {
    width: 520px;
    height: 520px;
}

.visual-ring-two {
    width: 410px;
    height: 410px;
}
/* Floating cards animation can remain */
.floating-card {
    position: absolute;
    z-index: 4;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.floating-card-score {
    top: 21%;
    right: -2%;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-property {
    bottom: 20%;
    left: -3%;
    animation: floatCard 4.6s ease-in-out infinite 0.8s;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 13px;
    line-height: 1.35;
}

.floating-card small {
    margin-top: 1px;
    color: #000000d6;
    font-size: 11px;
    letter-spacing: 0.1px;
}

.floating-icon {
    display: inline-flex;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.score-icon {
    color: var(--success);
    background: #e7f8f0;
    border: 4px solid rgba(22, 181, 111, 0.18);
}

.property-icon {
    color: var(--primary-deep);
    background: var(--surface-blue);
}
.section-intro {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
}
.property-icon svg {
    width: 23px;
    height: 23px;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(-47%, -50%); }
    50% { transform: translate(-47%, calc(-50% - 13px)); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Trust strip */
.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.trust-strip .container {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(17, 36, 61, 0.07);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.trust-item {
    display: flex;
    min-height: 115px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.trust-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--navy);
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.trust-item span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

/* Audience cards */
.audience-section {
    background: radial-gradient(circle at 2% 16%, rgb(255 255 255 / 9%), transparent 20%), var(--white);
}

.audience-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 42px rgba(17, 36, 61, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.audience-image {
    display: flex;
    min-height: 295px;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: linear-gradient(145deg, #ecfaff, #f8fcfe);
}

.audience-image img {
    width: 86%;
    max-width: 315px;
}

.audience-content {
    padding: 30px 30px 34px;
}

.card-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--primary-deep);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.audience-content h3 {
    margin-bottom: 14px;
    font-size: 27px;
    letter-spacing: -0.4px !important;
}

.audience-content p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-deep);
    font-size: 13px;
    font-weight: 700;
}

.text-link:hover {
    gap: 12px;
    color: var(--navy);
}

.audience-card-dark {
    background: var(--navy);
    border-color: var(--navy);
}

.audience-card-dark .audience-image {
    background: linear-gradient(145deg, #1d3555, #172c49);
}

.audience-card-dark h3,
.audience-card-dark .text-link {
    color: var(--white);
}

.audience-card-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.audience-card-dark .card-kicker {
    color: var(--secondary);
}

/* Process */
.process-section {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.process-shape {
    position: absolute;
    top: 80px;
    right: -190px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(7, 159, 209, 0.04);
    border-radius: 50%;
}

.section-side-copy {
    margin-bottom: 0;
}

.process-list {
    display: grid;
    gap: 28px;
}

.process-card {
    position: relative;
    overflow: hidden;
    padding: 52px 58px;
    background: var(--white);
    border: 1px solid rgba(17, 36, 61, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.platform-facts-section .section-heading.text-center.reveal.is-visible {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}
.process-number {
    position: absolute;
    top: 20px;
    right: 28px;
    color: rgba(7, 159, 209, 0.08);
    font-family: "Outfit", sans-serif;
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
}

.process-card h3 {
    max-width: 610px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.process-card p {
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-socials a i {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.footer-socials a:hover {
    color: #ffffff;
    background: #17bad0;
    border-color: #17bad0;
    transform: translateY(-2px);
}
.footer-brand-text {
    display: inline-block;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-brand-text:hover {
    color: #26c6da;
}

.footer-intro {
    max-width: 390px;
    margin-bottom: 22px;
}

.process-media {
    overflow: hidden;
    padding: 10px;
    background: linear-gradient(145deg, #ebf9fd, #f8fcfe);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(8, 101, 147, 0.13);
}

.process-media img {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    color: var(--navy-soft);
    font-size: 13px;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 3px;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
    font-size: 10px;
    line-height: 1;
    place-items: center;
}

.report-preview-card {
    overflow: hidden;
    max-width: 430px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(8, 101, 147, 0.18);
    transform: rotate(2deg);
}

.preview-topbar {
    display: flex;
    gap: 6px;
    padding: 14px 16px;
    background: #edf5f9;
}

.preview-topbar span {
    width: 8px;
    height: 8px;
    background: #c8d7df;
    border-radius: 50%;
}

.preview-content {
    padding: 32px;
    text-align: center;
}

.preview-score {
    display: grid;
    width: 130px;
    height: 130px;
    margin: 0 auto 14px;
    color: var(--success);
    background: #effbf6;
    border: 10px solid rgba(22, 181, 111, 0.18);
    border-radius: 50%;
    font-family: "Outfit", sans-serif;
    font-size: 52px;
    font-weight: 800;
    place-items: center;
}

.preview-label {
    margin-bottom: 24px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.preview-bars {
    display: grid;
    gap: 11px;
}

.preview-bars i {
    position: relative;
    display: block;
    height: 8px;
    overflow: hidden;
    background: #e9f1f5;
    border-radius: 99px;
}

.preview-bars i::after {
    display: block;
    width: var(--w);
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: inherit;
    content: "";
}

/* Score */
.score-section {
    position: relative;
    background: var(--white);
}

.score-panel {
    position: relative;
    overflow: hidden;
    padding: 70px;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 208, 202, 0.25), transparent 25%),
        linear-gradient(135deg, #0c2745 0%, #0b3f65 53%, #087cac 100%);
    border-radius: 42px;
    box-shadow: var(--shadow-lg);
}

.score-panel::before {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.score-visual {
    position: relative;
    text-align: center;
}

.score-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.2));
}

.score-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    background: rgba(53, 217, 210, 0.14);
    border-radius: 50%;
    filter: blur(15px);
    transform: translate(-50%, -50%);
}

.score-copy {
    position: relative;
    z-index: 2;
}

.score-copy h2 {
    color: var(--white);
}

.score-copy > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.65;
}

.score-scale {
    margin: 34px 0 32px;
}

.scale-labels,
.scale-descriptions {
    display: flex;
    justify-content: space-between;
}

.scale-labels {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.scale-track {
    height: 11px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 99px;
}

.scale-track i {
    display: block;
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, #f0a54b 0%, #ffd06f 38%, #4cdfb7 72%, #22c479 100%);
    border-radius: inherit;
}

.scale-descriptions {
    margin-top: 8px;
    color: rgb(265 265 265 / 72%);
    font-size: 12px;
    font-weight: 500;
}

.score-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.inline-light-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.inline-light-link:hover {
    color: var(--secondary);
}

/* Account cards */
.account-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f7fbfd 100%);
}

.account-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 300px);
    gap: 22px;
}

.account-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.account-card-large {
    grid-row: 1 / span 2;
}

.account-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.account-card:hover img {
    transform: scale(1.05);
}

.account-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 27, 47, 0.92) 0%, rgba(8, 27, 47, 0.2) 65%, transparent 100%);
}

.account-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px;
    color: var(--white);
}

.account-card-large .account-content {
    padding: 42px;
}

.account-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    place-items: center;
}

.account-icon svg {
    width: 24px;
    height: 24px;
}

.account-content h3 {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 26px;
    letter-spacing: -0.4px;
    font-weight: 600;
}

.account-card-large .account-content h3 {
    font-size: 36px;
    letter-spacing: -0.5px;
}

.account-content p {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.79);
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* Feature band */
.feature-band-section {
    padding-top: 20px;
    background: #f7fbfd;
}

.feature-band {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    padding: 70px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow-sm);
}

.feature-band-heading h2 {
    font-size: clamp(2.3rem, 3.5vw, 3.5rem);
}

.feature-band-heading p {
    color: var(--muted);
    font-size: 16px;
}

.feature-band-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mini-feature {
    padding: 25px;
    background: var(--surface);
    border: 1px solid rgba(17, 36, 61, 0.05);
    border-radius: 20px;
}

.mini-feature > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--primary-deep);
    background: var(--surface-blue);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
}

.mini-feature h3 {
    margin-bottom: 9px;
    font-size: 20px;
}

.mini-feature p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

/* CTA */
.cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(130deg, #0892c8 0%, #0fb4d1 50%, #3fd0c9 100%);
}

.cta-section::before,
.cta-section::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.cta-section::before {
    top: -230px;
    right: -80px;
    width: 560px;
    height: 560px;
}

.cta-section::after {
    bottom: -250px;
    left: -100px;
    width: 500px;
    height: 500px;
}

.cta-card {
    /* position: relative; */
    /* z-index: 2; */
    /* padding: 56px 60px; */
    /* color: var(--white); */
    /* background: rgba(7, 47, 78, 0.27); */
    /* border: 1px solid rgba(255, 255, 255, 0.22); */
    border-radius: 30px;
    /* box-shadow: 0 25px 70px rgba(4, 76, 109, 0.22); */
    /* backdrop-filter: blur(15px); */
}

.cta-card h2 {
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.cta-card p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.cta-secondary-link {
    display: block;
    margin-top: 17px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.cta-secondary-link:hover {
    color: var(--navy);
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.66);
    background: #08192d;
}

.footer-main {
    padding: 76px 0 62px;
}

.footer-brand img {
    width: 184px;
}

.footer-intro {
    max-width: 370px;
    margin: 24px 0 18px;
    font-size: 14px;
    line-height: 1.75;
}

.footer-email {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}

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

.footer-title {
    margin-bottom: 20px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-small {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.7;
}

.footer-portal {
    min-width: 135px;
    min-height: 45px;
    color: var(--navy);
    font-size: 12px;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

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

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(7, 159, 209, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    place-items: center;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 23px;
    height: 23px;
}

/* Inner / placeholder */
.inner-hero {
    position: relative;
    min-height: 520px;
    padding: 200px 0 110px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(130deg, #098ec4 0%, #0eadd1 50%, #3bd0ca 100%);
}

.inner-hero h1 {
    max-width: 880px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
}

.inner-hero p {
    max-width: 750px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.inner-orb {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.inner-orb-one {
    top: -180px;
    right: -80px;
    width: 520px;
    height: 520px;
}

.inner-orb-two {
    right: 130px;
    bottom: -200px;
    width: 400px;
    height: 400px;
}

.placeholder-section {
    padding: 95px 0;
    background: var(--surface);
}

.placeholder-card {
    display: flex;
    max-width: 850px;
    align-items: flex-start;
    gap: 24px;
    margin: 0 auto;
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.placeholder-card h2 {
    margin-bottom: 12px;
    font-size: 30px;
}

.placeholder-card p {
    color: var(--muted);
}

.placeholder-icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    color: var(--primary-deep);
    background: var(--surface-blue);
    border-radius: 17px;
    place-items: center;
}

.placeholder-icon svg {
    width: 28px;
    height: 28px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

/* Responsive */

@media (max-width: 1500px) {
.hero-copy h1 {
    line-height: 60px;
}

.audience-section {
    padding: 70px 0px;
}

.score-section-full {
    padding: 0px;
}

}

@media (min-width: 1200px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu {
        animation: dropdownIn 0.2s ease;
    }

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

@media (max-width: 1199.98px) {
    :root {
        --section-space: 92px;
    }
 .hero-visual {
        min-height: 550px;
    }

    .hero-device {
        max-width: 580px !important;
    }
    .site-header .navbar,
    .site-header.is-scrolled .navbar {
        min-height: 82px;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 11px 10px !important;
    }

    .dropdown-menu {
        margin: 0 0 8px !important;
        padding: 7px;
        background: var(--surface);
        border: 0;
        border-radius: 13px;
        box-shadow: none;
    }

    .btn-portal {
        width: 100%;
        margin-top: 8px;
        margin-left: 0 !important;
    }

    .hero-section {
        min-height: auto;
        padding-top: 82px;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 90px 0 120px;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .hero-visual {
        min-height: 620px;
    }

    .hero-device {
        width: min(82%, 560px);
    }

    .floating-card-score {
        right: 2%;
    }

    .floating-card-property {
        left: 2%;
    }

    .score-panel,
    .feature-band {
        padding: 55px;
    }
}

@media (max-width: 991.98px) {
    .hero-section::after {
        bottom: -230px;
    }

    .hero-copy {
        max-width: 760px;
        text-align: center;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        min-height: 600px;
    }    .hero-visual {
        min-height: auto;
        margin-top: 35px;
        padding-bottom: 20px;
    }

    .hero-device {
        max-width: 550px !important;
    }

    .hero-orb-one,
    .hero-orb-two {
        right: 50%;
        transform: translateX(50%);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .process-card {
        padding: 44px;
    }

    .process-media,
    .report-preview-card {
        max-width: 560px;
        margin: 0 auto 12px;
    }

    .score-panel {
        padding: 52px 44px;
    }

    .score-copy {
        max-width: 680px;
        margin: 0 auto;
    }

    .account-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 450px 320px;
    }

    .account-card-large {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .feature-band {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-card {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-space: 74px;
    }

    body {
        font-size: 15px;
    }

    .navbar-brand img {
        width: 150px;
    }

    .section-heading h2,
    .score-copy h2,
    .feature-band-heading h2,
    .cta-card h2 {
        font-size: 2.55rem;
    }

    .hero-copy h1 {
        font-size: 3.25rem;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-device {
        width: min(90%, 490px);
    }

    .visual-ring-one {
        width: 420px;
        height: 420px;
    }

    .visual-ring-two {
        width: 320px;
        height: 320px;
    }

    .floating-card {
        min-width: 175px;
        padding: 10px 12px;
    }

    .floating-card-score {
        top: 18%;
        right: -2%;
    }

    .floating-card-property {
        bottom: 14%;
        left: -2%;
    }

    .trust-strip {
        margin-top: -16px;
        padding: 0 12px;
    }

    .trust-item {
        min-height: 100px;
        padding: 16px 8px;
    }

    .trust-item strong {
        font-size: 25px;
    }

    .trust-item span {
        font-size: 10px;
    }

    .audience-image {
        min-height: 250px;
    }

    .process-card {
        padding: 38px 28px;
        border-radius: 25px;
    }

    .process-number {
        top: 12px;
        right: 16px;
        font-size: 72px;
    }

    .process-card h3 {
        font-size: 2.25rem;
    }

    .check-list {
        flex-direction: column;
    }

    .score-panel {
        padding: 40px 26px;
        border-radius: 28px;
    }

    .score-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 380px);
    }

    .account-card-large {
        grid-column: auto;
    }

    .account-content,
    .account-card-large .account-content {
        padding: 28px;
    }

    .account-content h3,
    .account-card-large .account-content h3 {
        font-size: 28px;
    }

    .feature-band {
        padding: 38px 26px;
        border-radius: 25px;
    }

    .feature-band-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 75px 0;
    }

    .cta-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .inner-hero {
        min-height: 460px;
        padding: 165px 0 85px;
    }

    .inner-hero h1 {
        font-size: 3rem;
    }

    .placeholder-card {
        flex-direction: column;
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        min-height: 430px;
    }
  .hero-visual {
        margin-top: 25px;
    }

    .hero-device {
        width: 100% !important;
        max-width: 100% !important;
        filter: drop-shadow(0 18px 25px rgba(5, 63, 98, 0.18));
    }
    .floating-card {
        display: none;
    }

    .visual-ring-one {
        width: 360px;
        height: 360px;
    }

    .visual-ring-two {
        width: 270px;
        height: 270px;
    }

    .section-heading h2,
    .score-copy h2,
    .feature-band-heading h2,
    .cta-card h2 {
        font-size: 2.25rem;
    }

    .audience-content {
        padding: 25px;
    }

    .process-card h3 {
        font-size: 2rem;
    }

    .score-panel {
        margin: 0 -4px;
    }

    .account-grid {
        grid-template-rows: repeat(3, 340px);
    }

    .footer-main {
        padding-top: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   Homepage refinement ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â August 2026
   ========================================================= */

/* Hero is intentionally cleaner: the old stat strip and bullet row were moved lower. */
.hero-copy {
    padding-bottom: 36px;
}

/* Transparent illustration treatment for the three audience cards. */
.audience-section {
    padding-top: 96px;
}

.audience-card {
    display: flex;
    flex-direction: column;
}

.audience-image {
    position: relative;
    min-height: 280px;
    padding: 20px 20px 8px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 54%, rgba(59, 208, 202, 0.20), transparent 36%),
        linear-gradient(145deg, #f5fcff, #edf9fd);
}

.audience-image::after {
    position: absolute;
    right: 28px;
    bottom: 22px;
    left: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 159, 209, 0.20), transparent);
    content: "";
}

.audience-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 22px 25px rgba(17, 36, 61, 0.12));
}

.audience-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.audience-content .text-link {
    margin-top: auto;
}

.audience-card-dark .audience-image {
    background:
        radial-gradient(circle at 50% 54%, rgba(59, 208, 202, 0.20), transparent 36%),
        linear-gradient(145deg, #1e395b, #142b48);
}

/* Full-width BOLAR score story. */
.score-section-full {
    position: relative;
    padding: 24px 0;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 42%, rgba(59, 208, 202, 0.24), transparent 25%),
        radial-gradient(circle at 90% 8%, rgba(7, 159, 209, 0.24), transparent 25%),
        linear-gradient(125deg, #0a223d 0%, #0b4168 52%, #0784b4 100%);
}

.score-section-full::before,
.score-section-full::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    content: "";
}

.score-section-full::before {
    top: -260px;
    right: -120px;
    width: 620px;
    height: 620px;
}

.score-section-full::after {
    bottom: -320px;
    left: -180px;
    width: 700px;
    height: 700px;
}

.score-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(90deg, black, transparent 75%);
}

.score-container {
    z-index: 2;
    max-width: 1460px;
    padding-right: clamp(28px, 5vw, 86px);
    padding-left: clamp(28px, 5vw, 86px);
}

.score-section-full .score-visual {
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-section-full .score-visual img {
    width: min(100%, 760px);
    max-width: none;
    filter: drop-shadow(0 38px 54px rgba(0, 0, 0, 0.28));
    transform: scale(1.08);
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-right: 10px;
}

.score-section-full .score-glow {
    width: 520px;
    height: 520px;
    background: rgba(59, 208, 202, 0.15);
    filter: blur(26px);
}

.score-section-full .score-copy {
    max-width: 650px;
    padding: 28px 40px 20px 10px;
}

.score-section-full .score-copy h2 {
    margin-bottom: 19px;
    font-size: clamp(3rem, 3.4vw, 3.5rem);
}

.score-section-full .score-copy > p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
}

.score-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -8px 0 30px;
    display: none;
}

.score-factors span {
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* Repositioned platform facts. */
.platform-facts-section {
    background:
        radial-gradient(circle at 94% 10%, rgba(59, 208, 202, 0.12), transparent 25%),
        #f6fbfd;
    /* background: #f0f8ff !important; */
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 8% 28%, rgb(33 172 199 / 24%), transparent 27%), radial-gradient(circle at 96% 83%, rgba(7, 159, 209, 0.21), transparent 28%), #f5fbfd;
    border-top: 1px solid #20aac729;
}

.platform-facts-shell {
    /* padding: 70px; */
    /* background: var(--white); */
    /* border: 1px solid var(--line); */
    /* border-radius: 34px; */
    /* box-shadow: var(--shadow-sm); */
}

.platform-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.platform-fact {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 150px;
    padding: 27px 25px;
    background: #fff;
    border: 1px solid rgba(17, 36, 61, 0.06);
    border-radius: 22px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.platform-fact:hover {
    box-shadow: 0 20px 45px rgba(17, 36, 61, 0.09);
    transform: translateY(-5px);
}

.platform-fact strong {
    display: inline-flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-deep), var(--secondary));
    border-radius: 22px;
    box-shadow: 0 16px 28px rgba(7, 159, 209, 0.20);
    font-family: "Outfit", sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0px;
}

.platform-fact h3 {
    margin-bottom: 8px;
    font-size: 20px;
    letter-spacing: -0.2px !IMPORTANT;
}

.platform-fact p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

/* Image-led final CTA. */
.cta-section-image {
    position: relative;
    padding: 124px 0;
    background-image:
        linear-gradient(90deg, rgba(6, 30, 51, 0.92) 0%, rgba(6, 51, 79, 0.82) 48%, rgba(0, 132, 170, 0.58) 100%),
        url('../images/properties.webp');
    background-position: center;
    background-size: cover;
}

.cta-section-image .cta-grid {
    opacity: 0.08;
}

.cta-section-image::before,
.cta-section-image::after {
    display: none;
}

.cta-section-image .cta-card {
    /* padding: 64px 68px; */
    /* background: rgba(8, 28, 49, 0.64); */
    /* border-color: rgba(255, 255, 255, 0.20); */
    /* box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24); */
    /* backdrop-filter: blur(13px); */
}

.cta-section-image .cta-card h2 {
    max-width: 720px;
    font-size: clamp(2.7rem, 3.7vw, 3.9rem);
}

.cta-section-image .cta-secondary-link:hover {
    color: var(--secondary);
}

/* Newsletter */
.newsletter-section {
    padding: 92px 0;
    background: var(--white);
}

.newsletter-card {
    /* position: relative; */
    /* overflow: hidden; */
    /* padding: 58px 62px; */
    /* background:
        radial-gradient(circle at 95% 15%, rgba(59, 208, 202, 0.18), transparent 28%),
        linear-gradient(145deg, #f5fbfe, #edf8fc); */
    /* border: 1px solid var(--line); */
    /* border-radius: 32px; */
    /* box-shadow: var(--shadow-sm); */
}

.newsletter-card::after {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(7, 159, 209, 0.14);
    border-radius: 50%;
    content: "";
}

.newsletter-card h2 {
    max-width: 620px;
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 3.5vw, 3.5rem);
}

.newsletter-card p {
    max-width: 620px;
    color: var(--muted);
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: var(--white);
    border: 1px solid rgba(17, 36, 61, 0.10);
    border-radius: 999px;
    box-shadow: 0 15px 32px rgba(17, 36, 61, 0.08);
}

.newsletter-input-group input {
    min-width: 0;
    flex: 1;
    padding: 0 20px;
    color: var(--navy);
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
}

.newsletter-input-group input::placeholder {
    color: #93a1b2;
}

.btn-newsletter {
    min-width: 145px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-deep), var(--secondary));
    border: 0;
    box-shadow: 0 12px 25px rgba(7, 159, 209, 0.20);
}

.btn-newsletter:hover,
.btn-newsletter:focus {
    color: var(--white);
    transform: translateY(-2px);
}

.newsletter-consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.newsletter-consent input {
    margin-top: 3px;
    accent-color: var(--primary-deep);
}

.newsletter-message {
    min-height: 22px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
}

.newsletter-message.is-success {
    color: #128357;
}

.newsletter-message.is-error {
    color: #b63b3b;
}

@media (max-width: 991.98px) {
    .audience-section {
        padding-top: 96px;
    }

    .score-section-full {
        padding: 96px 0;
    }

    .score-section-full .score-visual {
        min-height: 440px;
    }

    .score-section-full .score-visual img {
        width: min(100%, 680px);
        transform: none;
    }

    .score-section-full .score-copy {
        max-width: 760px;
        margin: 0 auto;
        padding-bottom: 0;
    }

    .platform-facts-shell {
        padding: 52px 44px;
    }

    .platform-facts-grid {
        grid-template-columns: 1fr;
    }

    .cta-section-image .cta-card {
        padding: 54px 46px;
    }

    .newsletter-card {
        padding: 48px 44px;
    }
}

@media (max-width: 767.98px) {
    .audience-image {
        min-height: 245px;
    }

    .score-section-full {
        padding: 76px 0;
    }

    .score-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .score-section-full .score-visual {
        min-height: 330px;
    }

    .score-section-full .score-copy h2 {
        font-size: 2.75rem;
    }

    .platform-facts-shell {
        padding: 38px 24px;
        border-radius: 26px;
    }

    .platform-fact {
        grid-template-columns: 72px 1fr;
        min-height: 0;
        padding: 22px;
    }

    .platform-fact strong {
        width: 66px;
        height: 66px;
        border-radius: 18px;
        font-size: 22px;
    }

    .cta-section-image {
        padding: 78px 0;
        background-position: 58% center;
    }

    .cta-section-image .cta-card {
        padding: 42px 25px;
    }

    .newsletter-section {
        padding: 72px 0;
    }

    .newsletter-card {
        padding: 38px 25px;
        border-radius: 25px;
    }

    .newsletter-input-group {
        align-items: stretch;
        flex-direction: column;
        padding: 10px;
        border-radius: 22px;
    }

    .newsletter-input-group input {
        min-height: 52px;
        padding: 0 14px;
    }

    .btn-newsletter {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .platform-fact {
        grid-template-columns: 1fr;
    }

    .platform-fact strong {
        width: auto;
        max-width: 96px;
        padding: 0 16px;
    }
}

/* Homepage video story */
.video-story-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(59, 208, 202, 0.12), transparent 26%),
        radial-gradient(circle at 94% 82%, rgba(7, 159, 209, 0.11), transparent 28%),
        #f5fbfd;
}

.video-story-orb {
    position: absolute;
    border: 1px solid rgba(7, 159, 209, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.video-story-orb-one {
    top: -210px;
    left: -180px;
    width: 520px;
    height: 520px;
}

.video-story-orb-two {
    right: -220px;
    bottom: -260px;
    width: 650px;
    height: 650px;
}

.video-story-shell {
    /* position: relative; */
    /* padding: clamp(28px, 4vw, 62px); */
    /* overflow: hidden; */
    /* background: rgba(255, 255, 255, 0.94); */
    /* border: 1px solid rgba(17, 36, 61, 0.08); */
    /* border-radius: 34px; */
    /* box-shadow: 0 28px 80px rgba(17, 36, 61, 0.10); */
}

.video-story-shell::before {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* width: 7px; */
    /* height: 100%; */
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    content: "";
}

.video-embed-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    background: var(--navy);
    border: 1px solid rgba(17, 36, 61, 0.10);
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(8, 56, 86, 0.18);
}

.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-story-copy {
    max-width: 580px;
    padding: 5px 0 9px 8px;
}

.video-story-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2.45rem, 4.2vw, 2.75rem);
    line-height: 1.02;
}

.video-story-copy > p {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 15.7px;
    line-height: 1.6;
}

.video-story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
    display: none;
}

.video-story-points span {
    position: relative;
    padding: 9px 13px 9px 31px;
    color: var(--navy-soft);
    background: #eef9fc;
    border: 1px solid rgba(7, 159, 209, 0.11);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.video-story-points span::before {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 9px;
    height: 9px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.video-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    align-items: center;
}

@media (max-width: 991.98px) {
    .video-story-copy {
        max-width: none;
        padding: 18px 0 0;
    }
}

@media (max-width: 767.98px) {
    .video-story-shell {
        padding: 22px;
        border-radius: 25px;
    }

    .video-story-shell::before {
        width: 100%;
        height: 5px;
    }

    .video-embed-wrap {
        border-radius: 18px;
    }

    .video-story-copy h2 {
        font-size: 2.55rem;
    }

    .video-story-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Header contact bar and refreshed BOLAR logo */
.contact-topbar {
    min-height: 38px;
    color: #fff;
    background: linear-gradient(90deg, #082b4a 0%, #07567c 55%, #078fc7 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.topbar-contact svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}

.topbar-contact strong {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.topbar-contact:hover,
.topbar-contact:focus {
    color: #8ff4ee;
}

.topbar-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.28);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    width: 38px;
    height: 62px;
    object-fit: contain;
}

.brand-wordmark {
    color: var(--navy);
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.site-header .navbar {
    min-height: 88px;
}

.site-header.is-scrolled .navbar {
    min-height: 76px;
}

.hero-section {
    padding-top: 136px;
}

@media (max-width: 1199.98px) {
    .site-header .navbar,
    .site-header.is-scrolled .navbar {
        min-height: 78px;
    }

    .hero-section {
        padding-top: 116px;
    }
}

@media (max-width: 767.98px) {
    .contact-topbar-inner {
        min-height: 42px;
        justify-content: center;
        gap: 10px;
    }

    .topbar-contact {
        font-size: 10px;
        gap: 5px;
    }

    .topbar-contact svg {
        width: 13px;
        height: 13px;
    }

    .topbar-contact strong {
        display: none;
    }

    .topbar-divider {
        height: 13px;
    }

    .navbar-brand {
        gap: 8px;
    }

    .navbar-brand img {
        width: 30px;
        height: 52px;
    }

    .brand-wordmark {
        font-size: 23px;
    }

    .hero-section {
        padding-top: 120px;
    }
}

@media (max-width: 420px) {
    .contact-topbar-inner {
        gap: 7px;
    }

    .topbar-contact {
        font-size: 9px;
    }
}
