/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
    --navy: #1E3264;
    --navy-d: #111D3C;
    --navy-m: #162550;
    --gold: #B8860B;
    --gold-l: rgba(184, 134, 11, .1);
    --gold-b: rgba(184, 134, 11, .25);
    --orange: #E8640A;
    --white: #FFFFFF;
    --off: #F5F6FA;
    --warm: #F5F2EC;
    --muted: #6B7A96;
    --border: rgba(30, 50, 100, .08);
    --fh: 'Instrument Serif', Georgia, serif;
    --fb: 'DM Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROGRESS BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width .1s linear;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 80px;
    transition: background .4s, border-color .4s, padding .3s;
    border-bottom: 1px solid transparent;
}

nav.solid {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    padding: 14px 80px;
    box-shadow: 0 2px 24px rgba(30, 50, 100, .06);
}

.logo {
    font-family: var(--fb);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -.01em;
    transition: color .3s;
}

nav.solid .logo {
    color: var(--navy);
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .2s;
}

nav.solid .nav-links a {
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--white);
}

nav.solid .nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--gold);
    color: var(--navy-d);
    padding: 10px 22px;
    border-radius: 6px;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #9A7209;
    transform: translateY(-1px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO — full viewport, two column
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    min-height: 100vh;
    background: var(--navy-d);
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    padding: 140px 80px 100px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

/* atmospheric background */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, .09), transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255, 255, 255, .012) 60px, rgba(255, 255, 255, .012) 61px);
}

/* top gold rule */
.hero-rule {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(184, 134, 11, .3) 40%, transparent 70%);
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-l);
    border: 1px solid var(--gold-b);
    color: var(--gold);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
    width: fit-content;
    opacity: 0;
    animation: fadeUp .6s .1s ease forwards;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-h1 {
    font-family: var(--fh);
    font-size: clamp(4.5rem, 8.5vw, 9.5rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp .9s .2s ease forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-punchline {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .75;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .7s .3s ease forwards;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.8;
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp .7s .35s ease forwards;
}

.hero-trust {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .08em;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp .7s .4s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .45s ease forwards;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-d);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: #9A7209;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 134, 11, .3);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .65);
    padding: 15px 32px;
    border-radius: 8px;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .2s, color .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    color: var(--white);
}

/* Right side — proof cards stacked */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: fadeIn 1s .6s ease forwards;
}

.hcard {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-left: 3px solid var(--gold);
    border-radius: 14px;
    padding: 24px 26px;
    backdrop-filter: blur(8px);
    transition: background .3s, border-color .3s;
}

.hcard:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(184, 134, 11, .5);
}

.hcard-label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.hcard-val {
    font-family: var(--fb);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -.03em;
}

.hcard-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .48);
    font-weight: 300;
    line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRANDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.brands {
    padding: 32px 80px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brands-label {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.6;
    max-width: 160px;
}

.brands-sep {
    width: 1px;
    height: 22px;
    background: var(--border);
    flex-shrink: 0;
}

.brands-row {
    display: flex;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
    flex: 1;
}

.b-img {
    height: 24px;
    opacity: .2;
    filter: grayscale(1) contrast(1.2);
    transition: opacity .25s;
}

.b-img:hover {
    opacity: .55;
}

.b-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker {
    background: var(--gold);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    font-weight: 300;
    padding: 0 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ticker-item::after {
    content: '·';
    color: var(--gold);
    font-size: 1rem;
    opacity: .7;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section {
    padding: 120px 80px;
}

.section-warm {
    background: var(--warm);
}

.section-off {
    background: var(--off);
}

.section-navy {
    background: var(--navy-d);
}

.kicker {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kicker::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.kicker.center {
    justify-content: center;
}

.kicker.light {
    color: rgba(184, 134, 11, .8);
}

.kicker.light::before {
    background: rgba(184, 134, 11, .6);
}

.h2 {
    font-family: var(--fh);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--navy);
    margin-bottom: 20px;
}

.h2 em {
    font-style: italic;
    color: var(--gold);
}

.h2.white {
    color: var(--white);
}

.h2.center {
    text-align: center;
}

.body {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
}

.body strong {
    color: var(--navy);
    font-weight: 500;
}

.body.white {
    color: rgba(255, 255, 255, .58);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROBLEM SECTION — two column
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.silo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.silo-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid rgba(184, 134, 11, .3);
    border-radius: 12px;
    padding: 20px 18px;
    transition: border-left-color .3s, box-shadow .3s;
}

.silo-item:hover {
    border-left-color: var(--gold);
    box-shadow: 0 4px 20px rgba(30, 50, 100, .06);
}

.silo-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.silo-name {
    font-family: var(--fh);
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.silo-status {
    font-size: .72rem;
    color: #b03030;
    font-weight: 500;
    letter-spacing: .02em;
}

.silo-arrow {
    grid-column: 1/-1;
    text-align: center;
    font-size: .78rem;
    color: var(--muted);
    padding: 10px;
    font-weight: 300;
}

.silo-result {
    grid-column: 1/-1;
    background: var(--navy-d);
    border-radius: 12px;
    padding: 24px;
}

.silo-result-text {
    font-family: var(--fh);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
}

.silo-result-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATEMENT — full bleed editorial
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.statement {
    background: var(--warm);
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.statement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, .06), transparent 65%);
    pointer-events: none;
}

.statement-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.statement-eyebrow span {
    width: 32px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.statement-eyebrow label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: italic;
    font-family: var(--fh);
}

.statement-h {
    font-family: var(--fh);
    font-size: clamp(3.5rem, 7vw, 8rem);
    font-weight: 400;
    letter-spacing: -.02em;
    color: var(--navy);
    line-height: 1.04;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.statement-h em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.statement-sub {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.statement-link {
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 3px;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
    position: relative;
    z-index: 2;
}

.statement-link:hover {
    color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROOF STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proof-strip {
    background: var(--navy-d);
    padding: 44px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.ps-item {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.ps-num {
    font-family: var(--fb);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.03em;
}

.ps-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 8px;
    font-weight: 300;
    line-height: 1.6;
}

.ps-div {
    width: 1px;
    background: rgba(255, 255, 255, .07);
    align-self: stretch;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES — 2×2 grid
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
    align-items: end;
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.svc-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.svc-card:hover {
    background: var(--warm);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-num {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.svc-icon {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.svc-name {
    font-family: var(--fh);
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.svc-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cs-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 52px;
    align-items: end;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cs-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}

.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(30, 50, 100, .1);
}

.cs-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.cs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.cs-card:hover .cs-img img {
    transform: scale(1.04);
}

.cs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 29, 60, .75), transparent 50%);
}

.cs-tags {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
}

.cs-tag {
    background: var(--gold);
    color: var(--navy-d);
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 50px;
}

.cs-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cs-client {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.cs-pfo-label {
    font-size: .65rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 8px;
}

.cs-pfo {
    font-family: var(--fh);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 0;
}

.cs-link {
    font-size: .78rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    display: inline-block;
    margin-top: 18px;
    transition: color .2s;
}

.cs-link:hover {
    color: var(--gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AI SEARCH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ai-sec {
    background: var(--navy-d);
    padding: 96px 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ai-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange) 50%, transparent);
}

.ai-sec::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, .07), transparent 65%);
    pointer-events: none;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-l);
    border: 1px solid var(--gold-b);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

.ai-platforms {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ai-platform {
    font-size: .75rem;
    color: rgba(255, 255, 255, .38);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-orange-grad {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
}

.btn-orange-grad:hover {
    opacity: .88;
    transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY US — two column
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diff-items {
    display: flex;
    flex-direction: column;
}

.diff-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left .3s;
    cursor: default;
}

.diff-item:last-child {
    border-bottom: none;
}

.diff-item:hover {
    padding-left: 6px;
}

.diff-check {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    flex-shrink: 0;
    background: var(--gold-l);
    border: 1px solid var(--gold-b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--gold);
    font-weight: 700;
    transition: background .3s, border-color .3s;
}

.diff-item:hover .diff-check {
    background: var(--gold);
    color: var(--navy-d);
    border-color: var(--gold);
}

.diff-title {
    font-family: var(--fh);
    font-size: 1rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.diff-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INSIGHTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.insight-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    transition: transform .3s, box-shadow .3s;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 50, 100, .08);
}

.insight-quote {
    font-family: var(--fh);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 16px;
}

.insight-body {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
}

.insight-source {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold);
    font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BAND — Abuzz style
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-band {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 55%, #9A7209 100%);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-band::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 65%);
    pointer-events: none;
}

.cta-kicker {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 12px;
}

.cta-h {
    font-family: var(--fh);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.cta-scarcity {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    font-style: italic;
    font-family: var(--fh);
    position: relative;
    z-index: 2;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .2);
}

.btn-ghost-cta {
    background: rgba(255, 255, 255, .14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.btn-ghost-cta:hover {
    background: rgba(255, 255, 255, .22);
}

.cta-note {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    font-style: italic;
    font-family: var(--fh);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
    background: #07090F;
    padding: 72px 80px 48px;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ft-logo {
    font-family: var(--fb);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.ft-desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.8;
    font-weight: 300;
    max-width: 240px;
}

.ft-col-title {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
    opacity: .85;
}

.ft-col a {
    display: block;
    font-size: .84rem;
    color: rgba(255, 255, 255, .32);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
    font-weight: 300;
}

.ft-col a:hover {
    color: var(--white);
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-copy {
    font-size: .72rem;
    color: rgba(255, 255, 255, .18);
}

.ft-punchline {
    font-family: var(--fh);
    font-size: .88rem;
    color: var(--gold);
    font-style: italic;
    opacity: .7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes floatA {

    0%,
    100% {
        transform: rotate(2deg) translateY(0)
    }

    50% {
        transform: rotate(2deg) translateY(-10px)
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: rotate(-2.5deg) translateY(-6px)
    }

    50% {
        transform: rotate(-2.5deg) translateY(8px)
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}


/* Desktop Default */
.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

/* Mobile */    
@media (max-width: 991px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }
}