/* ============================================================
   Steelhead — Ghost Theme
   Dark, modern, tech-forward.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    --bg:            #0a0a0a;
    --bg-elevated:   #111213;
    --bg-card:       #0d0e0f;
    --accent:        #01619C;
    --accent-hover:  #0277b8;
    --text:          #ffffff;
    --text-muted:    #9aa0a6;
    --border:        #1f2123;
    --border-hover:  #01619C;
    --max-width:     1180px;
    --reading-width: 720px;
    --radius:        12px;
    --header-height: 76px;
    --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5em;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1.25em;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 760px;
}

.site-main {
    min-height: 60vh;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 11px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    text-align: center;
    line-height: 1.2;
}

/* Frosted glass button — transparent with subtle light border + blur */
.btn-accent {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-lg {
    font-size: 17px;
    padding: 15px 32px;
    border-radius: 10px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* Frosted dark glass — only once user has scrolled past 50px */
.site-header.is-scrolled {
    background-color: rgba(10, 10, 10, 0.65);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header-left {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.site-header-right {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
}

.site-header-logo {
    display: inline-flex;
    align-items: center;
}

.site-header .site-logo {
    width: 140px;
    height: auto;
    display: block;
}

.site-logo-text {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--text);
}

/* Centered nav */
.site-nav {
    flex: 0 1 auto;
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Nav text stays white at all times; hover gives a subtle fade for feedback */
.site-nav-list a:hover {
    color: #ffffff;
    opacity: 0.7;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--header-height) 24px 60px;
}

/* Fullscreen looping video background */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #0a0a0a;
}

/* Dark overlay (~50%) so hero text stays readable over the video */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(10, 10, 10, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: -0.03em;
    max-width: 800px;
}

.hero-description {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 960px;
    margin-bottom: 2.2em;
    line-height: 1.6;
}

.hero-cta {
    align-self: center;
}

/* Gradient at the bottom of the hero that fades the video to pure black #000,
   creating a seamless transition into the Why Us preview section below */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5%;
    z-index: 3;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    pointer-events: none;
}

/* ============================================================
   Built Differently section (homepage)
   ============================================================ */
.built-differently {
    background-color: #000000;
    padding: 110px 0 130px;
}

/* Shared eyebrow label used in all homepage sections */
.section-eyebrow {
    display: block;
    color: #01619C;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.bd-header {
    text-align: center;
    margin-bottom: 64px;
}

.bd-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.bd-sub {
    color: #888888;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 2x2 grid on desktop, 1-col on mobile */
.bd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.bd-card {
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 36px 32px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bd-card:hover {
    background-color: #111111;
    border-color: #01619C;
    box-shadow: 0 8px 30px rgba(1, 97, 156, 0.25), 0 0 0 1px #01619C;
}

.bd-card-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bd-card-body {
    color: #888888;
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

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

/* Frosted glass button variant with accent border */
.btn-outline-accent {
    border-color: rgba(1, 97, 156, 0.6);
}

.btn-outline-accent:hover {
    border-color: #01619C;
    box-shadow: 0 0 20px rgba(1, 97, 156, 0.2), 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 680px) {
    .bd-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Blog teaser section (homepage)
   ============================================================ */
.blog-teaser {
    background-color: #0d0d0d;
    padding: 110px 0 130px;
}

.bt-header {
    text-align: center;
    margin-bottom: 64px;
}

.bt-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.bt-sub {
    color: #888888;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 3-col on desktop, 1-col on mobile */
.bt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.bt-card {
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px 28px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bt-card:hover {
    background-color: #111111;
    border-color: #01619C;
    box-shadow: 0 8px 30px rgba(1, 97, 156, 0.25), 0 0 0 1px #01619C;
}

.bt-card-topic {
    display: block;
    color: #01619C;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bt-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.bt-card-title a {
    color: inherit;
    text-decoration: none;
}

.bt-card-title a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bt-card-excerpt {
    color: #888888;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 860px) {
    .bt-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Pricing teaser section (homepage)
   ============================================================ */
.pricing-teaser {
    background-color: #0a0a0a;
    padding: 110px 0 130px;
}

.pt-header {
    text-align: center;
    margin-bottom: 56px;
}

.pt-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.pt-body {
    color: #888888;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 14px;
    line-height: 1.75;
}

/* Trust signals — horizontal row centered on desktop, stacked on mobile */
.pt-trust-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
    flex-wrap: wrap;
}

.pt-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.pt-check {
    flex: 0 0 auto;
}

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

.pt-microtext {
    margin: 14px 0 0;
    color: #888888;
    font-size: 0.85rem;
}

@media (max-width: 780px) {
    .pt-trust-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .pt-trust-item {
        white-space: normal;
    }
}

/* ============================================================
   Closing CTA section
   ============================================================ */
.closing-cta {
    background-color: #000000;
    padding: 110px 0 130px;
    position: relative;
}

/* Full-width 1px accent rule at the very top of the section */
.closing-cta-rule {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #01619C;
}

.closing-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closing-cta-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.15;
}

.closing-cta-body {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 0 16px;
}

.closing-cta-microtext {
    color: #666666;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 0 48px;
}

/* Button wrapper — positions the radial glow behind the button only */
.closing-cta-button-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Radial glow centered on the button position */
.closing-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 160px;
    background: radial-gradient(ellipse at center, rgba(1, 97, 156, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Primary CTA button — most prominent on the page */
.btn-primary-cta {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(1, 97, 156, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #ffffff;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-cta:hover {
    background-color: rgba(255, 255, 255, 0.13);
    border-color: #01619C;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(1, 97, 156, 0.35), 0 0 0 1px #01619C;
}

.closing-cta-sub {
    position: relative;
    z-index: 1;
    color: #555555;
    font-size: 0.82rem;
    margin: 0;
}

/* ============================================================
   Scroll reveal animation (Intersection Observer)
   ============================================================ */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================================
   Why Us page
   ============================================================ */
.why-us-page {
    background-color: #000000;
    min-height: 100vh;
}

/* Short video peek at the top — roughly 60vh tall */
.why-us-video-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.why-us-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient fades the video to pure black over the bottom 300px */
.why-us-video-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        #000000 100%
    );
    pointer-events: none;
}

.why-us-content {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 120px;
    max-width: var(--reading-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ============================================================
   Why Us page — full content layout
   ============================================================ */
.wu-page {
    background-color: #000000;
}

/* ---- Page header ---- */
.wu-pg-header {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    padding: calc(var(--header-height) + 100px) 0 0;
}

.wu-pg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wu-pg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.wu-pg-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    z-index: 2;
}

.wu-pg-header .container {
    position: relative;
    z-index: 3;
}

.wu-pg-header-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}

.wu-pg-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 28px;
}

.wu-pg-body {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ---- Four Pillars — full-width stacked layout ---- */
.wu-pillars {
    padding: 80px 0 100px;
}

.wu-pillar {
    display: flex;
    align-items: stretch;
    gap: 36px;
    padding: 52px 0;
}

.wu-pillar-line {
    width: 3px;
    flex-shrink: 0;
    background-color: #01619C;
    border-radius: 2px;
    min-height: 120px;
}

.wu-pillar-text {
    flex: 1;
}

.wu-pillar-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 18px;
}

.wu-pillar-body {
    color: #888888;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
}

.wu-pillar-rule {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 760px) {
    .wu-pillar {
        gap: 24px;
        padding: 40px 0;
    }

    .wu-pillar-title {
        font-size: 1.5rem;
    }
}

/* ---- Shared section header (reused across all sections) ---- */
.wu-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.wu-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.wu-section-sub {
    color: #888888;
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

/* ---- How It Works / Timeline ---- */
.wu-how {
    padding: 110px 0 130px;
}

.wu-tl-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

/* Vertical line that draws downward when section enters viewport */
.wu-tl-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #01619C;
    top: 28px;
    height: 0;
    transition: height 2.4s ease-out;
    z-index: 0;
    box-shadow: 0 0 8px rgba(1, 97, 156, 0.3);
}

.wu-tl-line.is-animated {
    height: calc(100% - 28px);
}

.wu-steps {
    position: relative;
    z-index: 1;
}

.wu-step {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    padding-bottom: 56px;
}

.wu-step-content {
    padding: 0 48px 0 0;
    text-align: right;
}

.wu-step-content--right {
    padding: 0 0 0 48px;
    text-align: left;
}

.wu-step-dot {
    width: 12px;
    height: 12px;
    background-color: #01619C;
    border-radius: 50%;
    justify-self: center;
    margin-top: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(1, 97, 156, 0.5);
}

.wu-step-num {
    display: block;
    color: #01619C;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.wu-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.wu-step-body {
    color: #888888;
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 680px) {
    .wu-tl-line {
        left: 19px;
        transform: none;
    }

    .wu-step {
        grid-template-columns: 40px 1fr;
    }

    .wu-step-content,
    .wu-step-content--right {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 0 20px;
        text-align: left;
    }

    .wu-step-dot {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
        margin-top: 6px;
    }

    .wu-step-spacer {
        display: none;
    }
}

/* ---- Who We Serve ---- */
.wu-serve {
    padding: 110px 0 130px;
}

.wu-serve-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 64px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.wu-serve-divider {
    background-color: rgba(255, 255, 255, 0.06);
    align-self: stretch;
}

.wu-serve-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.wu-serve-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.wu-serve-col-title--muted {
    color: #555555;
}

.wu-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wu-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #888888;
    font-size: 0.98rem;
    line-height: 1.6;
}

.wu-check-icon {
    flex: 0 0 auto;
    margin-top: 2px;
}

.wu-dash-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.6;
}

.wu-dash-icon {
    color: #555555;
    flex: 0 0 auto;
    font-size: 0.9rem;
    margin-top: 1px;
}

@media (max-width: 720px) {
    .wu-serve-grid {
        grid-template-columns: 1fr;
        gap: 48px 0;
    }

    .wu-serve-divider {
        height: 1px;
        width: 100%;
        align-self: auto;
    }
}

/* ---- The Difference ---- */
.wu-diff {
    padding: 110px 0 130px;
}

.wu-diff-rows {
    margin-bottom: 80px;
}

.wu-diff-row {
    padding: 40px 0;
}

.wu-diff-rule {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.wu-diff-label {
    display: block;
    color: #01619C;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wu-diff-cols {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0 32px;
    align-items: center;
}

.wu-diff-other {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.wu-diff-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wu-diff-ours {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

.wu-diff-statement {
    text-align: center;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

@media (max-width: 680px) {
    .wu-diff-cols {
        grid-template-columns: 1fr;
        gap: 16px 0;
    }

    .wu-diff-arrow {
        justify-content: flex-start;
        transform: rotate(90deg);
        width: 20px;
    }
}

/* ============================================================
   Blog listing
   ============================================================ */
.blog-listing {
    padding: calc(var(--header-height) + 72px) 0 100px;
}

.blog-intro {
    max-width: 760px;
    margin-bottom: 44px;
}

.blog-intro-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 0.4em;
}

.blog-intro-body {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Search bar */
.blog-search {
    margin-bottom: 48px;
    max-width: 760px;
}

.blog-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    text-align: left;
}

.blog-search-bar:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.blog-search-icon {
    flex: 0 0 auto;
    color: var(--accent);
}

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.post-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 26px 22px;
    min-height: 240px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(1, 97, 156, 0.18);
}

/* Full-card click target */
.post-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.post-card-category {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.post-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px;
}

.post-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 22px;
    flex: 1 1 auto;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
}

.post-card-author {
    color: var(--text);
    font-weight: 500;
}

.post-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
}

.post-card-tag {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.post-card-tag::before {
    content: "#";
    opacity: 0.6;
}

.blog-empty {
    color: var(--text-muted);
}

/* ============================================================
   Blog listing page — index.hbs full layout
   ============================================================ */

.bl-pg { display: block; width: 100%; }

.bl-pg-header { position: relative; min-height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }

.bl-pg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.bl-pg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); z-index: 1; }

.bl-pg-fade { position: absolute; bottom: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(to bottom, transparent, #000000); z-index: 2; }

.bl-pg-header .container { position: relative; z-index: 3; width: 100%; }

.bl-pg-header-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }

.bl-pg-header .section-eyebrow { color: #01619C; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; margin-bottom: 16px; display: block; }

.bl-pg-title { color: #ffffff; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 20px; text-align: center; }

.bl-pg-body { color: #888888; font-size: 1.1rem; max-width: 640px; line-height: 1.7; margin: 0 auto; text-align: center; }

.bl-search-section { padding: 48px 0 32px; background: #000000; }

.bl-search-wrap { position: relative; display: flex; align-items: center; max-width: 560px; margin: 0 auto; background: #111111; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0 16px; }

.bl-search-icon { flex-shrink: 0; margin-right: 12px; }

.bl-search-input { flex: 1; background: transparent; border: none; outline: none; color: #ffffff; font-size: 1rem; padding: 14px 0; }

.bl-search-input::placeholder { color: #555555; }

.bl-search-wrap:focus-within { border-color: #01619C; box-shadow: 0 0 0 2px rgba(1,97,156,0.15); }

.bl-grid-section { padding: 32px 0 80px; background: #000000; }

.bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 900px) { .bl-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .bl-grid { grid-template-columns: 1fr; } }

.bl-card { display: flex; flex-direction: column; background: #111111; border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 28px; text-decoration: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }

.bl-card:hover { border-color: #01619C; box-shadow: 0 8px 30px rgba(1,97,156,0.2), 0 0 0 1px #01619C; }

.bl-card-topic { color: #01619C; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; display: block; }

.bl-card-title { color: #ffffff; font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }

.bl-card-excerpt { color: #888888; font-size: 14px; line-height: 1.6; flex: 1; margin-bottom: 20px; }

.bl-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }

.bl-card-author, .bl-card-date { color: #555555; font-size: 12px; }

/* ============================================================
   Post / Page reading layout
   ============================================================ */
.post,
.page {
    padding: calc(var(--header-height) + 72px) 0 100px;
}

.post-reading {
    max-width: var(--reading-width);
    margin: 0 auto;
    padding: 0 24px;
}

.post-header {
    margin-bottom: 36px;
}

.post-title {
    font-size: clamp(2.1rem, 5vw, 3.1rem);
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-meta-author {
    color: var(--text);
    font-weight: 500;
}

.post-feature-image {
    margin: 0 0 40px;
}

.post-feature-image img {
    width: 100%;
    border-radius: var(--radius);
}

.post-feature-image figcaption {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.post-meta-separator {
    opacity: 0.4;
}

.post-meta-reading-time {
    color: var(--text-muted);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.post-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #01619C;
    background-color: rgba(1, 97, 156, 0.1);
    border: 1px solid rgba(1, 97, 156, 0.25);
    border-radius: 6px;
    padding: 4px 10px;
}

.post-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.post-back-link {
    color: #888888;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.post-back-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Article body */
.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.post-content > * {
    margin-bottom: 1.5em;
}

.post-content h2 {
    font-size: 1.7rem;
    margin-top: 1.6em;
}

.post-content h3 {
    font-size: 1.35rem;
    margin-top: 1.4em;
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content a:hover {
    color: var(--accent-hover);
}

.post-content img {
    border-radius: var(--radius);
    margin: 1em auto;
}

.post-content blockquote {
    margin: 1.5em 0;
    padding: 6px 24px;
    border-left: 3px solid var(--accent);
    color: var(--text-muted);
    font-style: italic;
}

.post-content pre {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    overflow-x: auto;
    font-size: 0.9rem;
}

.post-content code {
    font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.9em;
    background-color: var(--bg-elevated);
    padding: 2px 6px;
    border-radius: 5px;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5em 0;
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
    padding: calc(var(--header-height) + 80px) 0 110px;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-title {
    font-size: clamp(2.1rem, 5vw, 3rem);
    margin-bottom: 14px;
}

.contact-subheading {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.form-field input,
.form-field textarea {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(1, 97, 156, 0.2);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ============================================================
   Contact page — full layout
   ============================================================ */

.ct-pg-header {
    background-color: #000000;
    padding: calc(var(--header-height) + 100px) 0 90px;
    text-align: center;
}

.ct-pg-header-inner {
    max-width: 720px;
    margin: 0 auto;
}

.ct-pg-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.ct-pg-body {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.ct-form-section {
    background-color: #000000;
    padding: 0 0 120px;
}

.ct-form-card {
    max-width: 620px;
    margin: 0 auto;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 52px 52px 48px;
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #888888;
    letter-spacing: 0.01em;
}

.ct-input {
    width: 100%;
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ct-input::placeholder {
    color: #555555;
}

.ct-input:focus {
    outline: none;
    border-color: #01619C;
    box-shadow: 0 0 0 3px rgba(1, 97, 156, 0.18);
}

.ct-textarea {
    min-height: 140px;
    resize: vertical;
}

.ct-submit-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgba(1, 97, 156, 0.12);
    border: 1px solid rgba(1, 97, 156, 0.75);
    border-radius: var(--radius);
    color: #ffffff;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 24px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    letter-spacing: 0.01em;
    margin-top: 4px;
}

.ct-submit-btn:hover {
    background-color: rgba(1, 97, 156, 0.24);
    border-color: #01619C;
    box-shadow: 0 8px 32px rgba(1, 97, 156, 0.35), 0 0 0 1px rgba(1, 97, 156, 0.4);
}

.ct-microtext {
    text-align: center;
    color: #555555;
    font-size: 0.85rem;
    margin: 4px 0 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .ct-form-card {
        padding: 36px 24px 32px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
    padding: calc(var(--header-height) + 80px) 0 110px;
    min-height: 70vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-title {
    font-size: clamp(2.1rem, 5vw, 3rem);
}

.pricing-content {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.pricing-placeholder {
    padding: 60px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--bg-card);
}

.pricing-placeholder p {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text);
}

/* ============================================================
   Pricing page — full layout
   ============================================================ */

/* ---- Page header ---- */
.pr-pg-header {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    padding: calc(var(--header-height) + 100px) 0 0;
}

.pr-pg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.pr-pg-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.pr-pg-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    z-index: 2;
}

.pr-pg-header .container {
    position: relative;
    z-index: 3;
}

.pr-pg-header-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}

.pr-pg-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 28px;
}

.pr-pg-body {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

/* ---- Cards section ---- */
.pr-cards {
    padding: 100px 0 80px;
    background-color: #000000;
}

.pr-card {
    max-width: 680px;
    margin: 0 auto 48px;
    background-color: #111111;
    border: 1px solid #01619C;
    border-radius: 16px;
    padding: 56px 56px 48px;
    box-shadow:
        0 0 60px rgba(1, 97, 156, 0.13),
        0 0 120px rgba(1, 97, 156, 0.07);
}

.pr-card--secondary {
    background: linear-gradient(to bottom, #111111, #0d0d0d);
    border: 1px dashed #01619C;
    box-shadow: none;
    margin-bottom: 0;
}

.pr-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #01619C;
    margin-bottom: 16px;
}

.pr-card-label--muted {
    color: #888888;
}

.pr-card-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 20px;
}

.pr-card-name--sm {
    font-size: 1.5rem;
}

.pr-card-desc {
    color: #888888;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 40px;
}

/* ---- Pricing rows ---- */
.pr-card-pricing {
    margin-bottom: 44px;
}

.pr-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pr-price-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pr-price-label {
    color: #888888;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pr-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: right;
}

/* ---- Feature list ---- */
.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pr-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.5;
}

.pr-feature-check {
    flex-shrink: 0;
}

/* ---- Card CTA buttons ---- */
.pr-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgba(1, 97, 156, 0.12);
    border: 1px solid rgba(1, 97, 156, 0.75);
    border-radius: var(--radius);
    color: #ffffff;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 24px;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.pr-card-btn:hover {
    background-color: rgba(1, 97, 156, 0.24);
    border-color: #01619C;
    box-shadow: 0 8px 32px rgba(1, 97, 156, 0.35), 0 0 0 1px rgba(1, 97, 156, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.pr-card-btn--secondary {
    display: block;
    width: 100%;
    text-align: center;
}

.pr-card-consultation {
    color: #ffffff;
    font-style: normal;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 36px;
}

/* ---- What You Are Investing In ---- */
.pr-invest {
    padding: 110px 0 130px;
    background-color: #000000;
}

.pr-invest-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.pr-invest-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.15;
}

.pr-invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 80px;
    max-width: 860px;
    margin: 0 auto;
}

.pr-invest-item {
    text-align: center;
}

.pr-invest-accent {
    width: 30px;
    height: 2px;
    background-color: #01619C;
    margin: 0 auto 20px;
}

.pr-invest-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    line-height: 1.3;
}

.pr-invest-body {
    color: #888888;
    font-size: 0.97rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 700px) {
    .pr-card {
        padding: 40px 28px 36px;
    }

    .pr-price-row {
        flex-direction: column;
        gap: 6px;
    }

    .pr-price-value {
        text-align: left;
        font-size: 1.25rem;
    }

    .pr-invest-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 28px;
}

.site-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer-logo {
    width: 120px;
    height: auto;
    display: block;
}

.site-footer-tagline {
    margin: 8px 0 0;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
}

.site-footer-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.site-footer-nav a {
    font-size: 0.92rem;
    color: var(--text-muted);
}

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

.site-footer-copyright {
    max-width: var(--max-width);
    margin: 28px auto 0;
    padding: 22px 24px 0;
    border-top: 1px solid var(--border);
}

.site-footer-copyright p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
    .site-nav {
        display: none;
    }

    .site-header-left,
    .site-header-right {
        flex: 0 0 auto;
    }

    .site-header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 17px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header-right .btn {
        padding: 9px 16px;
        font-size: 14px;
    }
}
