:root {
    --blue: #1026a5;
    --blue-2: #2043ea;
    --ink: #0a1020;
    --muted: #6c7485;
    --paper: #f4f5f8;
    --white: #fff;
    --red: #ed171c;
    --line: rgba(10, 16, 32, .12);
    --radius: 28px;
    --shadow: 0 20px 60px rgba(14, 21, 55, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden
}

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E")
}

.site-header {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 245, 248, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 16, 32, .06)
}

.brand img {
    width: 132px;
    height: 76px;
    object-fit: contain;
    display: block
}

.nav {
    display: flex;
    gap: 28px
}

.nav a,
.results-link,
.text-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px
}

.nav a {
    opacity: .72;
    transition: .25s
}

.nav a:hover {
    opacity: 1
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

/* Learn More Button - Custom Header CTA */
button.learn-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 14.8rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--blue);
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0 0.75rem 2.85rem;
    margin: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.learn-more:hover .circle {
    width: 100%;
    background: var(--blue-2);
}

button.learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button.learn-more:hover .button-text {
    color: #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border: 0;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit
}

.button span {
    font-size: 18px;
    line-height: 1
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(16, 38, 165, .2);
    transition: .25s
}

.button-primary:hover {
    transform: translateY(-2px);
    background: var(--blue-2)
}

.button-dark {
    background: var(--ink);
    color: #fff
}

.button-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(10, 16, 32, .04);
    transition: .25s;
}

.button-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    color: var(--blue);
}

.button-light {
    background: #fff;
    color: var(--blue)
}

.button-large {
    padding: 16px 24px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0
}

.hero {
    padding: 64px 6vw 56px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 5vw;
    align-items: center;
    background: linear-gradient(180deg, #fafbfc 0, #f2f3f6 100%)
}

.eyebrow,
.section-kicker,
.small-label,
.analysis-code {
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue)
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 8px rgba(237, 23, 28, .08)
}

h1,
h2,
h3 {
    font-family: Manrope, sans-serif;
    letter-spacing: -.045em;
    margin: 0
}

h1 {
    font-size: clamp(56px, 6.5vw, 96px);
    line-height: .94;
    margin: 20px 0 24px;
    max-width: 780px
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--blue)
}

.brand {
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.6;
    max-width: 570px;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 84px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.trust-card {
    border-radius: 20px;
    padding: 18px 16px;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    background: #0a1020;
    color: #fff;
    box-shadow: 0 6px 20px rgba(10, 16, 32, 0.08);
    transform: none !important;
    transition: none;
}

.trust-card:hover {
    transform: none !important;
}

.trust-card.trust-dark {
    background: #0a1020;
    color: #fff;
    box-shadow: 0 6px 20px rgba(10, 16, 32, 0.08);
}

.trust-card .trust-badge,
.trust-card.trust-dark .trust-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #93c5fd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
    display: inline-block;
}

.trust-card strong,
.trust-card.trust-dark strong {
    font-family: Manrope, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.trust-card p,
.trust-card.trust-dark p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
}

.trust-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
    display: inline-block;
}

.hero-visual {
    position: relative
}

.hero-image-wrap {
    position: relative;
    aspect-ratio: 1/1.03;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 16px 45px rgba(7, 13, 43, .15);
    border-radius: 18px
}

.floating-card-top {
    top: 26px;
    left: 26px;
    padding: 18px 20px;
    display: grid;
    gap: 8px
}

.floating-card-top strong {
    font-family: Manrope;
    font-size: 19px;
    line-height: 1.1;
}

.floating-sub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.floating-card-bottom {
    right: 24px;
    bottom: 24px;
    padding: 16px 18px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.25
}

.mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: #fff
}

/* ============ MARQUEE TICKER ============ */
.ticker {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
    background: #0a1020;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    user-select: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerSeamless 30s linear infinite;
    will-change: transform;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    flex-shrink: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.25s ease, transform 0.25s ease;
}

.ticker-item:hover {
    color: #fff;
    transform: translateY(-1px);
}

.ticker-icon {
    font-size: 11px;
    color: #93c5fd;
    opacity: 0.85;
    line-height: 1;
}

@keyframes tickerSeamless {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.section {
    padding: 130px 6vw;
    scroll-margin-top: 86px;
}

.intro {
    background: #fff
}

.intro-grid,
.section-head {
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 7vw;
    align-items: end
}

.intro h2,
.section h2 {
    font-size: clamp(44px, 5vw, 76px);
    line-height: .98
}

.intro-copy {
    max-width: 510px
}

.intro-copy p,
.section-head p,
.contact-copy>p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
    margin-top: 62px
}

.editorial-image,
.editorial-card {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 470px;
    position: relative
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px
}

.editorial-card {
    padding: 30px;
    display: flex;
    flex-direction: column
}

.editorial-card.dark {
    background: #0b1121;
    color: #fff
}

.editorial-card.blue {
    background: var(--blue);
    color: #fff
}

.number {
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 800;
    opacity: .65
}

.editorial-card h3 {
    font-size: 34px;
    line-height: 1.02;
    margin-top: auto
}

.editorial-card p {
    font-size: 14px;
    line-height: 1.55;
    opacity: .7;
    max-width: 280px
}

.card-arrow {
    margin-top: auto;
    font-size: 26px
}

.analyses-section {
    background: var(--paper)
}

.section-head {
    margin-bottom: 42px
}

.search-shell {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    padding: 0 18px;
    height: 68px;
    box-shadow: 0 12px 30px rgba(13, 20, 50, .04)
}

.search-icon {
    font-size: 28px;
    opacity: .45
}

.search-shell input {
    border: 0;
    outline: 0;
    width: 100%;
    font: inherit;
    font-size: 16px;
    background: transparent
}

.search-key {
    font-size: 10px;
    font-weight: 800;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px 8px;
    color: var(--muted)
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0 28px
}

.chip {
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer
}

.chip.active,
.chip:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.analysis-card {
    min-height: 240px;
    background: #fff;
    border: 1px solid rgba(10, 16, 32, .08);
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s
}

.analysis-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.analysis-card h3 {
    font-size: 25px;
    line-height: 1.04;
    margin-top: auto
}

.analysis-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45
}

.arrow {
    margin-top: 14px;
    color: var(--blue);
    font-size: 20px
}



/* ============ 03 TEAM SHOWCASE ============ */
.team-section {
    background: #eef0f5;
    position: relative;
}

.team-showcase {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    height: 520px;
    align-items: stretch;
}

.team-member-card {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #080d1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(10, 16, 32, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    outline: none;
    transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease,
        filter 0.4s ease;
}

.team-member-card.member-featured {
    flex: 1.28;
    border: 1.5px solid rgba(16, 38, 165, 0.35);
    box-shadow: 0 16px 40px rgba(16, 38, 165, 0.12);
}

.team-showcase:hover .team-member-card {
    flex: 0.82;
    opacity: 0.82;
    filter: saturate(0.9);
}

.team-showcase:hover .team-member-card:hover,
.team-member-card:focus-visible {
    flex: 1.62;
    opacity: 1;
    filter: saturate(1);
    transform: translateY(-6px);
    border-color: rgba(32, 67, 234, 0.5);
    box-shadow: 0 24px 60px rgba(16, 38, 165, 0.24);
}

.team-photo-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.team-member-card:hover .team-photo-wrap img,
.team-member-card:focus-visible .team-photo-wrap img {
    transform: scale(1.07);
}

.team-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 13, 26, 0.05) 0%,
            rgba(8, 13, 26, 0.15) 30%,
            rgba(8, 13, 26, 0.72) 65%,
            rgba(8, 13, 26, 0.98) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.member-featured .team-card-gradient {
    background: linear-gradient(180deg,
            rgba(8, 13, 26, 0.05) 0%,
            rgba(16, 38, 165, 0.12) 28%,
            rgba(8, 13, 26, 0.78) 65%,
            rgba(8, 13, 26, 0.98) 100%);
}

.team-card-top {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: flex-start;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-badge.badge-featured {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 38, 165, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-card-body {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #fff;
}

.team-role-label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #93c5fd;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role-label.label-featured {
    color: #bfdbfe;
}

.team-name {
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 2px 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.member-featured .team-name {
    font-size: 22px;
}

.team-expand-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease,
        transform 0.4s ease;
}

.member-featured .team-expand-info,
.team-member-card:hover .team-expand-info,
.team-member-card:focus-visible .team-expand-info {
    max-height: 140px;
    opacity: 1;
    transform: translateY(0);
}

.team-expand-info p {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.team-pill {
    display: inline-flex;
    align-items: center;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}

.team-pill.pill-featured {
    background: rgba(32, 67, 234, 0.35);
    border-color: rgba(147, 197, 253, 0.3);
    color: #fff;
}

.results-panel {
    margin: 0 6vw;
    padding: 80px 70px;
    border-radius: 34px;
    background: var(--blue);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 8vw;
    align-items: end;
    scroll-margin-top: 100px;
}

.results-panel .section-kicker {
    color: #fff;
    opacity: .65
}

.results-panel h2 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: .96;
    margin-top: 18px
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stats-band div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-band strong {
    font-family: Manrope, sans-serif;
    font-size: 44px;
    line-height: 1;
}

.stats-band span {
    font-size: 13px;
    opacity: 0.7;
}

.results-action p {
    line-height: 1.7;
    opacity: .78;
    max-width: 430px
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 8vw;
    background: #fff;
    margin-top: 130px
}

.contact-copy h2 {
    font-size: clamp(52px, 6vw, 84px);
    line-height: .95;
    margin: 18px 0 24px
}

.contact-details {
    margin-top: 44px;
    display: grid;
    gap: 22px
}

.contact-details div {
    display: grid;
    gap: 4px
}

.contact-details span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted);
    font-weight: 800
}

.contact-details strong {
    font-family: Manrope;
    font-size: 18px
}

.contact-form {
    display: grid;
    gap: 16px
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 12px;
    font-weight: 700
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font: inherit;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    outline: none
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(32, 67, 234, .08)
}

.footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: center;
    padding: 36px 6vw;
    background: #0a1020;
    color: #fff
}

.footer-brand img {
    width: 140px;
    filter: brightness(0) invert(1)
}

.footer-links {
    display: flex;
    gap: 22px
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    opacity: .7
}

.footer-note {
    font-size: 11px;
    opacity: .45;
    text-align: right
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.reveal-delay {
    transition-delay: .12s
}

.analysis-card.hidden {
    display: none
}

/* Voices Section */
.voices-section {
    background: var(--paper);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.voice-card {
    padding: 40px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 12px 30px rgba(13, 20, 50, .04);
}

.voice-dark {
    background: #0b1121;
    color: #fff;
}

.voice-blue {
    background: var(--blue);
    color: #fff;
}

.voice-white {
    background: #fff;
    border: 1px solid var(--line);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.voice-card blockquote {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-family: Manrope, sans-serif;
}

.voice-meta {
    margin-top: auto;
    display: grid;
    gap: 4px;
}

.voice-meta strong {
    font-family: Manrope;
    font-size: 16px;
}

.voice-meta span {
    font-size: 13px;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 20px;
    color: var(--blue);
    transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-q[aria-expanded="true"]+.faq-a {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-a p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

/* Map Section */
.map-section {
    background: var(--paper);
}

.map-card-wrapper {
    margin-top: 50px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.map-frame-container {
    width: 100%;
    height: 460px;
    background: #1026a5;
    position: relative;
    overflow: hidden;
}

.map-frame-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(100%) invert(14%) sepia(95%) saturate(6000%) hue-rotate(233deg) brightness(86%) contrast(112%);
}

.map-frame-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #1026a5;
    mix-blend-mode: color;
    pointer-events: none;
    opacity: 0.85;
    z-index: 1;
}

/* Button 17 — Centered Map Action */
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-17 {
    -webkit-tap-highlight-color: transparent;
    appearance: button;
    -webkit-appearance: button;
    background-color: var(--blue);
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
    margin: 0;
    padding: 0.9rem 2.5rem;
    text-transform: uppercase;
    border-radius: 99rem;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(10, 16, 32, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-17:hover {
    transform: translate(-50%, -52%) scale(1.04);
    box-shadow: 0 18px 48px rgba(16, 38, 165, 0.65);
}

.btn-17:disabled {
    cursor: default;
}

.btn-17:-moz-focusring {
    outline: auto;
}

.btn-17 svg {
    display: block;
}

.btn-17 [hidden] {
    display: none;
}

.btn-17 .text-container {
    overflow: hidden;
    position: relative;
    display: block;
    z-index: 5;
    color: #fff;
    transition: color 0.25s ease;
}

.btn-17:hover .text-container {
    color: var(--blue);
}

.btn-17 .text {
    display: block;
    position: relative;
}

.btn-17:hover .text {
    -webkit-animation: move-up-alternate 0.3s forwards;
    animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-17:after,
.btn-17:before {
    --skew: 0.2;
    background: #ffffff;
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
    transition: transform 0.25s ease;
    width: 100%;
    z-index: 2;
}

.btn-17:after {
    --progress: 0%;
    left: calc(50% + 50% * var(--skew));
    top: 102%;
}

.btn-17:hover:before {
    --progress: 100%;
}

.btn-17:hover:after {
    --progress: -102%;
}

@media(max-width:1100px) {
    .nav {
        gap: 16px
    }

    .results-link {
        display: none
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-visual {
        max-width: 720px
    }

    .analysis-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .voices-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .editorial-grid {
        grid-template-columns: 1fr 1fr
    }

    .editorial-image {
        grid-row: span 2
    }

    .contact-section,
    .results-panel {
        grid-template-columns: 1fr
    }

    .team-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 16px;
    }

    .team-showcase:hover .team-member-card {
        flex: auto;
        opacity: 1;
        filter: none;
    }

    .team-member-card {
        min-height: 480px;
        flex: auto !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .team-member-card.member-featured {
        grid-column: span 2;
    }

    .team-expand-info {
        max-height: 140px;
        opacity: 1;
        transform: none;
    }

    .results-panel {
        gap: 30px
    }

    .footer {
        grid-template-columns: 1fr 1fr
    }

    .footer-note {
        text-align: left
    }
}

@media(max-width:760px) {
    .site-header {
        padding: 0 18px;
        height: 74px
    }

    .brand img {
        width: 104px;
        height: 64px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        z-index: 60;
        padding: 8px;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        transition: transform .3s ease, opacity .3s ease;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(244, 245, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 28px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .nav.is-open {
        display: flex;
    }

    .nav.is-open a {
        font-size: 16px;
    }

    .header-actions {
        display: none
    }

    .hero {
        padding: 52px 20px
    }

    .hero h1 {
        font-size: 56px
    }

    .hero-lead {
        font-size: 16px
    }



    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .floating-card-top {
        top: 16px;
        left: 16px
    }

    .floating-card-bottom {
        right: 14px;
        bottom: 14px
    }

    .section {
        padding: 82px 20px
    }

    .intro-grid,
    .section-head {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .editorial-grid {
        grid-template-columns: 1fr
    }

    .editorial-image {
        min-height: 330px;
        grid-row: auto
    }

    .editorial-card {
        min-height: 330px
    }

    .analysis-grid {
        grid-template-columns: 1fr
    }

    .voices-grid {
        grid-template-columns: 1fr
    }



    .results-panel {
        margin: 0 20px;
        padding: 48px 28px
    }

    .team-showcase {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        height: auto;
        gap: 14px;
        margin: 28px -20px 0;
        padding: 4px 20px 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .team-showcase::-webkit-scrollbar {
        display: none;
    }

    .team-showcase:hover .team-member-card {
        opacity: 1;
        filter: none;
        flex: 0 0 270px;
    }

    .team-member-card {
        min-width: 270px;
        max-width: 290px;
        height: 460px;
        min-height: 460px;
        flex: 0 0 270px !important;
        scroll-snap-align: start;
        opacity: 1 !important;
        filter: none !important;
    }

    .team-member-card.member-featured {
        grid-column: auto;
        flex: 0 0 280px !important;
    }

    .team-expand-info {
        max-height: 140px;
        opacity: 1;
        transform: none;
    }

    .contact-section {
        grid-template-columns: 1fr;
        margin-top: 80px
    }

    .map-frame-container {
        height: 380px;
    }

    .btn-17 {
        padding: 0.75rem 1.8rem;
        font-size: 12px;
    }

    .footer {
        grid-template-columns: 1fr;
        padding: 30px 20px
    }

    .footer-links {
        flex-wrap: wrap
    }

    .footer-note {
        text-align: left
    }

    .ticker {
        padding: 14px 0;
    }

    .ticker-group {
        gap: 26px;
        padding-right: 26px;
    }

    .ticker-item {
        font-size: 11px;
        gap: 8px;
    }

    .ticker-icon {
        font-size: 9px;
    }
}