/* CyberHive static landing — docs/landing */
:root {
    --hive-cyan: #1aa6b7;
    --hive-teal: #0e6b8a;
    --hive-navy: #0b3d5c;
    --hive-amber: #f5a623;
    --hive-ink: #0f172a;
    --hive-mist: #f4f7fa;
    --shadow-soft: 0 10px 40px -12px rgba(11, 61, 92, 0.18);
    --shadow-lg: 0 25px 50px -12px rgba(11, 61, 92, 0.28);
    --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-display: "Outfit", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--hive-ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 2rem;
    }
}

.font-display {
    font-family: var(--font-display);
}

.text-navy { color: var(--hive-navy); }
.text-teal { color: var(--hive-teal); }
.text-cyan { color: var(--hive-cyan); }
.text-amber { color: var(--hive-amber); }
.text-muted { color: #64748b; }
.bg-mist { background: var(--hive-mist); }

/* Logo — wide PNG (843×345), preserve aspect ratio */
.brand-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.brand-logo {
    height: 2.75rem;
    width: auto;
    max-width: 10.5rem;
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 640px) {
    .brand-logo {
        height: 3rem;
        max-width: 13rem;
    }
}

.brand-logo--footer {
    height: 2.35rem;
    max-width: 11rem;
    filter: brightness(1.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.35rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: filter 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
    background: linear-gradient(to right, var(--hive-teal), var(--hive-cyan));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-secondary {
    background: #fff;
    color: var(--hive-navy);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: rgba(26, 166, 183, 0.45);
}

.btn-amber {
    background: var(--hive-amber);
    color: var(--hive-ink);
    box-shadow: 0 14px 40px -12px rgba(245, 166, 35, 0.65);
    min-height: 3rem;
    padding-inline: 1.75rem;
}

.btn-amber:hover {
    filter: brightness(1.06);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    min-height: 3rem;
    padding-inline: 1.75rem;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-white {
    background: #fff;
    color: var(--hive-navy);
}

.field {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font: inherit;
}

.field:focus {
    outline: 2px solid var(--hive-cyan);
    outline-offset: 0;
    border-color: var(--hive-cyan);
}

.card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 166, 183, 0.28);
}

.service-card img {
    height: 10rem;
    width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.25rem;
    gap: 1rem;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.125rem;
}

@media (min-width: 900px) {
    .nav-desktop {
        display: flex;
    }
    .nav-mobile {
        display: none !important;
    }
    .header-ctas {
        display: flex;
    }
}

.nav-desktop a {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--hive-navy);
    background: rgba(11, 61, 92, 0.06);
}

.header-ctas {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-mobile {
    position: relative;
}

.nav-mobile summary {
    list-style: none;
    cursor: pointer;
    padding: 0.5rem 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    color: var(--hive-navy);
    font-weight: 600;
}

.nav-mobile summary::-webkit-details-marker {
    display: none;
}

.nav-mobile menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    margin: 0;
    min-width: 15rem;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: var(--shadow-lg);
    list-style: none;
}

.nav-mobile menu a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-mobile menu a:hover {
    background: var(--hive-mist);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #0a3550 0%, var(--hive-navy) 100%);
    color: #fff;
}

.site-footer a {
    color: #cbd5e1;
}

.site-footer a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding: 3.25rem 0;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }
}

.footer-tagline {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hive-amber);
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.1rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Hero — full bleed image */
.hero-cinema {
    position: relative;
    isolation: isolate;
    min-height: min(92vh, 920px);
    overflow: hidden;
    background: var(--hive-navy);
    color: #fff;
}

.hero-cinema__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.hero-cinema__shade-a {
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 92, 0.55);
}

.hero-cinema__shade-b {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(11, 61, 92, 0.72), rgba(11, 61, 92, 0.22));
}

.hero-cinema__shade-c {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 45%, rgba(0, 0, 0, 0.35));
}

.hero-cinema__content {
    position: relative;
    display: flex;
    min-height: min(92vh, 920px);
    align-items: flex-end;
    padding: 7rem 0 4rem;
}

@media (min-width: 640px) {
    .hero-cinema__content {
        align-items: center;
        padding: 6rem 0;
    }
}

.hero-brand-word {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .hero-brand-word {
        font-size: 2rem;
    }
}

.hero-title {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    display: block;
    margin-top: 0.25rem;
    color: var(--hive-amber);
}

.hero-lead {
    margin-top: 1.25rem;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(241, 245, 249, 0.95);
}

@media (min-width: 640px) {
    .hero-lead {
        margin-top: 1.5rem;
        font-size: 1.125rem;
    }
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 2.5rem;
    }
}

.stat-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
    .stat-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-bar__cell {
    background: #fff;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stat-bar__cell {
        padding: 2rem 1.5rem;
    }
}

.stat-bar__value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--hive-navy);
}

@media (min-width: 640px) {
    .stat-bar__value {
        font-size: 1.5rem;
    }
}

.stat-bar__label {
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.section {
    padding: 3.5rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 5rem 0;
    }
}

.section-head {
    max-width: 40rem;
}

.section-head h2 {
    margin: 0.75rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hive-navy);
}

.section-head p {
    margin-top: 0.85rem;
    color: #64748b;
    line-height: 1.65;
}

.eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.split-media {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-media {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.media-frame {
    position: relative;
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: -0.75rem;
    border-radius: 1.75rem;
    background: linear-gradient(to bottom right, rgba(14, 107, 138, 0.22), rgba(245, 166, 35, 0.12));
}

@media (min-width: 640px) {
    .media-frame::before {
        inset: -1rem;
    }
}

.media-frame img {
    position: relative;
    border-radius: 1.25rem;
    width: 100%;
    height: 16rem;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
    .media-frame img {
        height: 20rem;
        border-radius: 1.5rem;
    }
}

.grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: rgba(244, 247, 250, 0.65);
    padding: 1.25rem;
}

.process-step__num {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hive-amber);
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.tech-pills li {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hive-navy);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.reason-chip {
    border-radius: 999px;
    border: 1px solid rgba(14, 107, 138, 0.2);
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hive-navy);
}

.cta-band {
    background: linear-gradient(135deg, var(--hive-navy), var(--hive-teal) 55%, var(--hive-cyan));
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.cta-band h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.cta-band p {
    margin: 1rem auto 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.cta-band .actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.prose p {
    margin: 0 0 1rem;
    color: #334155;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: rgba(26, 166, 183, 0.12);
    color: var(--hive-teal);
    font-size: 0.75rem;
    font-weight: 600;
}

.notice {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 0.875rem;
}

.link-arrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hive-teal);
}

.link-arrow:hover {
    color: var(--hive-navy);
}

.section-header-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .section-header-row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
