/* THE VESSEL CODE — Marketing landing (WordPress copy integration) */
:root {
    --home-bg-top: #0a101e;
    --home-bg-bottom: #0f172a;
    --home-card: rgba(15, 23, 42, 0.75);
    --home-card-soft: rgba(15, 23, 42, 0.55);
    --home-border: rgba(56, 189, 248, 0.18);
    --home-text: #f8fafc;
    --home-muted: #94a3b8;
    --home-accent: #38bdf8;
    --home-accent-2: #38bdf8;
    --home-gold: #38bdf8;
    --home-navy: #0e7490;
    --home-radius: 18px;
    --home-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body.home-page {
    margin: 0;
    color: var(--home-muted);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.home-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 20px 64px;
}

.home-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 0 14px;
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(5, 13, 24, 0.94), rgba(5, 13, 24, 0.72));
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.home-brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    flex-shrink: 0;
}

.home-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-brand-name {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home-brand-tag {
    font-size: 0.72rem;
    color: var(--home-muted);
}

.home-topnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 16px;
}

.home-topnav a {
    color: var(--home-muted);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 6px 2px;
}

.home-topnav a:hover,
.home-topnav a[aria-current="page"] {
    color: var(--home-accent);
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-btn:hover {
    transform: translateY(-1px);
}

.home-btn-primary {
    background: linear-gradient(135deg, #1d8fe8, #0b3d91);
    color: #fff;
    box-shadow: 0 10px 24px rgba(11, 61, 145, 0.35);
}

.home-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--home-text);
    border-color: var(--home-border);
}

.home-btn-ghost {
    background: transparent;
    color: var(--home-accent);
    border-color: rgba(94, 234, 212, 0.35);
}

.home-hero {
    padding: 44px 0 28px;
    display: grid;
    gap: 28px;
    align-items: start;
}

@media (min-width: 960px) {
    .home-hero {
        grid-template-columns: 1.15fr 0.85fr;
        padding-top: 56px;
        gap: 36px;
    }
}

.home-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.22);
    color: var(--home-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-hero-tagline {
    margin: 0 0 16px;
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    line-height: 1.35;
    color: #dbeafe;
    font-weight: 600;
}

.home-quote {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-left: 3px solid var(--home-gold);
    background: rgba(201, 162, 39, 0.08);
    border-radius: 0 12px 12px 0;
    color: #e2e8f0;
    font-size: 0.98rem;
    font-style: italic;
}

.home-lead {
    margin: 0 0 24px;
    max-width: 58ch;
    color: var(--home-muted);
    font-size: 1.02rem;
}

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

.home-hero-card {
    border-radius: var(--home-radius);
    padding: 24px;
}

.home-hero-card h2 {
    margin: 0 0 16px;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--home-accent-2);
}

.home-topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.home-topic-list li {
    padding: 14px;
    border-radius: 12px;
}

.home-topic-list strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 0.95rem;
}

.home-topic-list span {
    color: var(--home-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.home-section {
    padding: 44px 0 8px;
}

.home-section-head {
    margin-bottom: 22px;
}

.home-section h2 {
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    letter-spacing: -0.02em;
}

.home-section-lead {
    margin: 0;
    max-width: 68ch;
    color: var(--home-muted);
    font-size: 1rem;
}

.home-service-stack {
    display: grid;
    gap: 18px;
}

.home-service-card {
    border-radius: var(--home-radius);
    padding: 24px;
}

.home-service-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.home-service-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(11, 61, 145, 0.45));
    color: var(--home-accent-2);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.home-service-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.home-service-intro {
    margin: 0 0 16px;
    color: #cbd5e1;
    font-size: 0.96rem;
    max-width: 78ch;
}

.home-service-intro a {
    color: var(--home-accent-2);
    text-decoration: none;
    font-weight: 600;
}

.home-service-card h4 {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--home-accent);
}

.home-service-cols {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .home-service-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.home-service-card ul,
.home-service-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--home-muted);
    font-size: 0.9rem;
}

.home-service-card li {
    margin-bottom: 10px;
}

.home-service-card li strong {
    color: #e2e8f0;
}

.home-edge-section {
    padding-top: 36px;
}

.home-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .home-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

.home-card {
    border-radius: var(--home-radius);
    padding: 22px;
}

.home-card-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.home-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.home-card p {
    margin: 0 0 14px;
    color: var(--home-muted);
    font-size: 0.92rem;
}

.home-card a {
    color: var(--home-accent-2);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.875rem;
}

.home-product-card {
    min-height: 100%;
}

.home-cta-band {
    margin-top: 40px;
    padding: 28px 24px;
    border-radius: var(--home-radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-cta-band h2 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.home-cta-band p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.94rem;
}

.home-seo-index-link {
    margin-top: 28px;
    font-size: 0.78rem;
    color: var(--home-muted);
}

.home-seo-index-link a {
    color: var(--home-muted);
    text-decoration: none;
}

.home-seo-index-link a:hover,
.home-seo-index-link a:focus-visible {
    color: var(--home-accent-2);
    text-decoration: underline;
}

.home-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--home-border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: space-between;
    color: var(--home-muted);
    font-size: 0.8rem;
}

.home-footer a {
    color: var(--home-accent-2);
    text-decoration: none;
}

@media (max-width: 767px) {
    .home-topbar {
        justify-content: space-between;
    }

    .home-topnav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 4px;
        gap: 10px 14px;
    }

    .home-topbar-cta {
        display: none;
    }

    .home-service-card {
        padding: 18px;
    }
}
