/* ==========================================================================
   BlueEye – landing page styles (gnf.dk/blueeye)
   --------------------------------------------------------------------------
   - All rules are scoped under the `.blueeye` body class and use `be-` prefixed
     class names, so nothing here affects the rest of gnf.dk.
   - Colours and spacing are defined once as CSS custom properties.
   - Visual direction: calm blue/grey, light background, dark readable text,
     subtle gradients, rounded cards, generous spacing.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
.blueeye {
    /* Brand & neutrals */
    --be-primary:        #1d63b5;   /* calm, trustworthy blue (CTAs, accents) */
    --be-primary-600:    #17518f;   /* hover */
    --be-primary-700:    #123f6f;   /* deep / headings on light */
    --be-primary-050:    #e9f1fb;   /* light tint (icon backgrounds, badges)  */
    --be-primary-100:    #d7e6f6;

    --be-ink:            #122036;   /* primary headings */
    --be-text:           #36465c;   /* body text */
    --be-muted:          #5d6e84;   /* secondary text */

    --be-bg:             #ffffff;   /* base background */
    --be-bg-alt:         #f3f7fc;   /* alternating section background */
    --be-surface:        #ffffff;   /* cards */
    --be-border:         #e2e9f2;   /* hairline borders */
    --be-border-strong:  #d2deeb;

    /* Functional accents (used sparingly, e.g. dashboard mockup) */
    --be-good:           #1f9266;
    --be-warn:           #b4751a;

    /* Effects */
    --be-shadow-sm: 0 1px 2px rgba(18, 32, 54, .06), 0 1px 3px rgba(18, 32, 54, .05);
    --be-shadow-md: 0 6px 16px rgba(18, 32, 54, .07), 0 2px 6px rgba(18, 32, 54, .05);
    --be-shadow-lg: 0 18px 42px rgba(18, 32, 54, .12);
    --be-ring: 0 0 0 3px rgba(29, 99, 181, .35);

    /* Radius & spacing scale */
    --be-radius-sm: 10px;
    --be-radius:    16px;
    --be-radius-lg: 22px;
    --be-pill:      999px;

    --be-space-1: 4px;
    --be-space-2: 8px;
    --be-space-3: 12px;
    --be-space-4: 16px;
    --be-space-5: 24px;
    --be-space-6: 32px;
    --be-space-7: 48px;
    --be-space-8: 72px;
    --be-space-9: 96px;

    --be-container: 1140px;
    --be-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;

    background: var(--be-bg);
    color: var(--be-text);
    font-family: var(--be-font);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
}

/* ---- Reset-ish, scoped ---------------------------------------------------- */
.blueeye *,
.blueeye *::before,
.blueeye *::after { box-sizing: border-box; }

.blueeye h1,
.blueeye h2,
.blueeye h3,
.blueeye p,
.blueeye ul,
.blueeye figure { margin: 0; }

.blueeye ul { list-style: none; padding: 0; }

.blueeye img,
.blueeye svg { max-width: 100%; }

.blueeye a { color: var(--be-primary-600); text-decoration: none; }
.blueeye a:hover { color: var(--be-primary-700); text-decoration: underline; }

/* Headings */
.blueeye h1,
.blueeye h2,
.blueeye h3 {
    color: var(--be-ink);
    line-height: 1.18;
    letter-spacing: -0.01em;
    font-weight: 700;
}
.blueeye h2 { font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.25rem); }
.blueeye h3 { font-size: 1.18rem; }

/* ---- Accessibility helpers ----------------------------------------------- */
.be-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
    white-space: nowrap;
}

.be-skip-link {
    position: absolute;
    left: 50%; top: -60px;
    transform: translateX(-50%);
    z-index: 200;
    background: var(--be-primary-700);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 var(--be-radius-sm) var(--be-radius-sm);
    transition: top .15s ease;
}
.be-skip-link:hover { color: #fff; text-decoration: none; }
.be-skip-link:focus { top: 0; outline: none; box-shadow: var(--be-ring); }

/* Visible, consistent focus state for keyboard users */
.blueeye a:focus-visible,
.blueeye button:focus-visible {
    outline: none;
    box-shadow: var(--be-ring);
    border-radius: var(--be-radius-sm);
}

/* ---- Layout primitives ---------------------------------------------------- */
.be-container {
    width: 100%;
    max-width: var(--be-container);
    margin-inline: auto;
    padding-inline: var(--be-space-5);
}

.be-section { padding-block: var(--be-space-9); }
.be-section--alt { background: var(--be-bg-alt); border-block: 1px solid var(--be-border); }

.be-section-head {
    max-width: 760px;
    margin: 0 auto var(--be-space-7);
    text-align: center;
}
.be-section-intro {
    margin-top: var(--be-space-4);
    color: var(--be-muted);
    font-size: 1.075rem;
}

.be-kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--be-primary);
    margin-bottom: var(--be-space-3);
}
.be-eyebrow {
    display: inline-block;
    background: var(--be-primary-050);
    color: var(--be-primary-700);
    border: 1px solid var(--be-primary-100);
    padding: 6px 14px;
    border-radius: var(--be-pill);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: var(--be-space-5);
}

/* ---- Buttons -------------------------------------------------------------- */
.be-btn {
    --_bg: var(--be-primary);
    --_fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--be-space-2);
    padding: 12px 22px;
    border-radius: var(--be-pill);
    border: 1px solid transparent;
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    background: var(--_bg);
    color: var(--_fg);
    transition: background-color .16s ease, color .16s ease,
                border-color .16s ease, transform .08s ease, box-shadow .16s ease;
}
.be-btn:hover { text-decoration: none; transform: translateY(-1px); }
.be-btn:active { transform: translateY(0); }
.be-btn--lg { padding: 14px 26px; font-size: 1.02rem; }

.be-btn--primary { background: var(--be-primary); color: #fff; box-shadow: var(--be-shadow-sm); }
.be-btn--primary:hover { background: var(--be-primary-600); color: #fff; }

.be-btn--secondary {
    background: #fff;
    color: var(--be-primary-700);
    border-color: var(--be-border-strong);
    box-shadow: var(--be-shadow-sm);
}
.be-btn--secondary:hover { background: var(--be-primary-050); color: var(--be-primary-700); border-color: var(--be-primary-100); }

.be-btn--light { background: #fff; color: var(--be-primary-700); }
.be-btn--light:hover { background: var(--be-primary-050); color: var(--be-primary-700); }

.be-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.be-btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.be-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--be-border);
}
.be-header.is-scrolled { box-shadow: var(--be-shadow-sm); }

.be-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--be-space-5);
    min-height: 68px;
}

.be-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--be-space-3);
    color: var(--be-primary);
}
.be-brand:hover { text-decoration: none; }
.be-brand-mark { display: inline-flex; color: var(--be-primary); }
.be-brand-mark svg { display: block; border-radius: 8px; }
.be-brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.be-brand-name { color: var(--be-ink); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em; }
.be-brand-by { color: var(--be-muted); font-size: .72rem; font-weight: 600; letter-spacing: .04em; }

.be-nav {
    display: flex;
    align-items: center;
    gap: var(--be-space-6);
}
.be-nav-list {
    display: flex;
    align-items: center;
    gap: var(--be-space-2);
}
.be-nav-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: var(--be-radius-sm);
    color: var(--be-text);
    font-size: .95rem;
    font-weight: 500;
}
.be-nav-link:hover { color: var(--be-primary-700); background: var(--be-primary-050); text-decoration: none; }
.be-nav-link.is-active { color: var(--be-primary-700); }

/* Mobile toggle (hidden on desktop) */
.be-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--be-border-strong);
    border-radius: var(--be-radius-sm);
    cursor: pointer;
}
.be-nav-toggle-bar {
    display: block;
    width: 20px; height: 2px;
    margin-inline: auto;
    background: var(--be-ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.be-nav-toggle[aria-expanded="true"] .be-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.be-nav-toggle[aria-expanded="true"] .be-nav-toggle-bar:nth-child(2) { opacity: 0; }
.be-nav-toggle[aria-expanded="true"] .be-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.be-hero {
    position: relative;
    padding-block: var(--be-space-9);
    background:
        radial-gradient(60% 70% at 85% 0%, rgba(29,99,181,.10), transparent 60%),
        radial-gradient(50% 60% at 0% 100%, rgba(29,99,181,.06), transparent 60%),
        linear-gradient(180deg, #f5f9fd 0%, #ffffff 70%);
    overflow: hidden;
}
.be-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--be-space-8);
    align-items: center;
}
.be-hero-title {
    font-size: clamp(2.05rem, 1.3rem + 3vw, 3.2rem);
    margin-bottom: var(--be-space-5);
}
.be-hero-sub {
    font-size: 1.16rem;
    color: var(--be-muted);
    max-width: 36em;
    margin-bottom: var(--be-space-6);
}
.be-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--be-space-3);
    margin-bottom: var(--be-space-6);
}
.be-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--be-space-2) var(--be-space-3);
}
.be-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--be-space-2);
    background: #fff;
    border: 1px solid var(--be-border);
    box-shadow: var(--be-shadow-sm);
    color: var(--be-ink);
    font-size: .9rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--be-pill);
}
.be-badge-icon { width: 18px; height: 18px; color: var(--be-primary); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Dashboard mockup ---- */
.be-hero-visual { display: flex; justify-content: center; }
.be-dash {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius-lg);
    box-shadow: var(--be-shadow-lg);
    padding: var(--be-space-5);
}
.be-dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--be-space-4);
}
.be-dash-title { font-weight: 700; color: var(--be-ink); }
.be-dash-tag {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--be-muted);
    background: var(--be-bg-alt);
    border: 1px solid var(--be-border);
    padding: 3px 9px;
    border-radius: var(--be-pill);
}
.be-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--be-space-3);
}
.be-stat {
    background: #fff;
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius-sm);
    padding: var(--be-space-4);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.be-stat-label { font-size: .8rem; color: var(--be-muted); font-weight: 600; }
.be-stat-value { font-size: 1.7rem; font-weight: 800; color: var(--be-ink); line-height: 1.1; }
.be-stat-value--sm { font-size: 1.3rem; }
.be-stat-value--warn { color: var(--be-warn); }
.be-stat-unit { font-size: .9rem; font-weight: 600; color: var(--be-muted); }
.be-stat-meta { font-size: .76rem; color: var(--be-muted); }
.be-stat-meta--up { color: var(--be-good); font-weight: 600; }
.be-stat-meta--warn { color: var(--be-warn); font-weight: 600; }

.be-dash-foot { margin-top: var(--be-space-4); }
.be-meter-row { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; }
.be-meter-label { color: var(--be-muted); font-weight: 600; }
.be-meter-value { color: var(--be-ink); font-weight: 700; }
.be-meter {
    height: 10px;
    background: var(--be-primary-050);
    border-radius: var(--be-pill);
    overflow: hidden;
}
.be-meter-fill {
    display: block;
    height: 100%;
    border-radius: var(--be-pill);
    background: linear-gradient(90deg, var(--be-primary), var(--be-primary-600));
}

/* ==========================================================================
   SPLIT LAYOUT (problem / employees / audience)
   ========================================================================== */
.be-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: var(--be-space-8);
    align-items: start;
}
.be-lead { font-size: 1.12rem; color: var(--be-muted); margin-top: var(--be-space-4); }
.be-callout {
    margin-top: var(--be-space-5);
    padding: var(--be-space-5);
    background: var(--be-primary-050);
    border-left: 4px solid var(--be-primary);
    border-radius: 0 var(--be-radius-sm) var(--be-radius-sm) 0;
    color: var(--be-ink);
    font-size: 1.05rem;
}

.be-list-title { font-weight: 700; color: var(--be-ink); margin-bottom: var(--be-space-4); }
.be-list { display: grid; gap: var(--be-space-3); }
.be-list--check li {
    position: relative;
    padding-left: 32px;
    color: var(--be-text);
}
.be-list--check li::before {
    content: "";
    position: absolute;
    left: 0; top: 2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--be-primary-050);
    /* check mark */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d63b5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 13px;
}

.be-subcard {
    margin-top: var(--be-space-6);
    background: #fff;
    border: 1px solid var(--be-border);
    border-left: 4px solid var(--be-primary);
    border-radius: var(--be-radius-sm);
    padding: var(--be-space-5);
    box-shadow: var(--be-shadow-sm);
}
.be-subcard-title { margin-bottom: var(--be-space-2); }

/* ==========================================================================
   CARD GRIDS
   ========================================================================== */
.be-grid { display: grid; gap: var(--be-space-5); }
.be-grid--2 { grid-template-columns: repeat(2, 1fr); }
.be-grid--3 { grid-template-columns: repeat(3, 1fr); }

.be-card {
    background: var(--be-surface);
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius);
    padding: var(--be-space-5);
    box-shadow: var(--be-shadow-sm);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.be-card:hover { transform: translateY(-3px); box-shadow: var(--be-shadow-md); border-color: var(--be-border-strong); }

.be-card-icon,
.be-principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--be-primary-050);
    color: var(--be-primary);
    margin-bottom: var(--be-space-4);
}
.be-card-icon svg,
.be-principle-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.be-card-title { margin-bottom: var(--be-space-2); }
.be-card-text { color: var(--be-muted); font-size: .98rem; }

/* ==========================================================================
   4. COMPARISON TABLE (responsive: table -> stacked cards)
   ========================================================================== */
.be-table-wrap {
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius);
    overflow: hidden;
    box-shadow: var(--be-shadow-sm);
    background: #fff;
}
.be-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .96rem;
}
.be-table thead th {
    background: var(--be-primary-700);
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding: 14px 18px;
    vertical-align: top;
}
.be-table tbody th,
.be-table tbody td {
    padding: 16px 18px;
    border-top: 1px solid var(--be-border);
    vertical-align: top;
    text-align: left;
}
.be-table tbody th {
    font-weight: 700;
    color: var(--be-ink);
    white-space: nowrap;
}
.be-table tbody td { color: var(--be-text); }
.be-table tbody tr:nth-child(even) { background: var(--be-bg-alt); }
/* Emphasise the "how BlueEye complements it" column */
.be-table tbody td:last-child { color: var(--be-primary-700); font-weight: 500; }

.be-conclusion {
    max-width: 820px;
    margin: var(--be-space-6) auto 0;
    text-align: center;
    font-size: 1.08rem;
    color: var(--be-ink);
}

/* 13. Transparency disclaimer / info box */
.be-disclaimer {
    display: flex;
    gap: var(--be-space-4);
    align-items: flex-start;
    margin-top: var(--be-space-6);
    padding: var(--be-space-5) var(--be-space-6);
    background: #fff;
    border: 1px solid var(--be-primary-100);
    border-radius: var(--be-radius);
    box-shadow: var(--be-shadow-sm);
}
.be-disclaimer-icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--be-primary-050);
    color: var(--be-primary);
}
.be-disclaimer-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.be-disclaimer-title { margin-bottom: var(--be-space-2); }
.be-disclaimer p { color: var(--be-muted); }

/* ==========================================================================
   7. TRANSPARENCY PRINCIPLES
   ========================================================================== */
.be-principle {
    background: var(--be-surface);
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius);
    padding: var(--be-space-5);
    box-shadow: var(--be-shadow-sm);
}
.be-principle-title { margin-bottom: var(--be-space-2); }
.be-principle p { color: var(--be-muted); font-size: .98rem; }

.be-statement {
    display: flex;
    gap: var(--be-space-4);
    align-items: center;
    max-width: 880px;
    margin: var(--be-space-7) auto 0;
    padding: var(--be-space-5) var(--be-space-6);
    background: linear-gradient(180deg, var(--be-primary-700), var(--be-primary-600));
    color: #eaf2fb;
    border-radius: var(--be-radius-lg);
    font-size: 1.08rem;
    box-shadow: var(--be-shadow-md);
}
.be-statement-icon { flex: none; display: inline-flex; color: #fff; }
.be-statement-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   9. USE CASES
   ========================================================================== */
.be-usecase {
    display: flex;
    gap: var(--be-space-4);
    align-items: flex-start;
    background: var(--be-surface);
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius);
    padding: var(--be-space-5);
    box-shadow: var(--be-shadow-sm);
}
.be-usecase-step {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--be-primary-050);
    color: var(--be-primary-700);
    font-weight: 800;
    font-size: 1.05rem;
}
.be-usecase-title { margin-bottom: var(--be-space-2); }
.be-usecase p { color: var(--be-muted); }

/* ==========================================================================
   10. AUDIENCE CHIPS
   ========================================================================== */
.be-chips { display: flex; flex-wrap: wrap; gap: var(--be-space-3); }
.be-chip {
    background: #fff;
    border: 1px solid var(--be-border-strong);
    color: var(--be-ink);
    font-weight: 600;
    font-size: .95rem;
    padding: 10px 16px;
    border-radius: var(--be-pill);
    box-shadow: var(--be-shadow-sm);
}

/* ==========================================================================
   11. PRICING
   ========================================================================== */
.be-plan {
    position: relative;
    background: var(--be-surface);
    border: 1px solid var(--be-border);
    border-radius: var(--be-radius);
    padding: var(--be-space-6) var(--be-space-5);
    box-shadow: var(--be-shadow-sm);
    text-align: center;
}
.be-plan--featured {
    border-color: var(--be-primary);
    box-shadow: 0 0 0 1px var(--be-primary), var(--be-shadow-md);
}
.be-plan-flag {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--be-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--be-pill);
    white-space: nowrap;
}
.be-plan-name { font-size: 1.4rem; margin-bottom: var(--be-space-3); }
.be-plan-text { color: var(--be-muted); }

.be-pricing-cta { text-align: center; margin-top: var(--be-space-7); }
.be-pricing-note { color: var(--be-muted); margin-bottom: var(--be-space-4); }

/* ==========================================================================
   12. FINAL CTA
   ========================================================================== */
.be-cta { padding-block: var(--be-space-8); }
.be-cta-card {
    text-align: center;
    background:
        radial-gradient(70% 120% at 50% 0%, rgba(255,255,255,.10), transparent 60%),
        linear-gradient(160deg, var(--be-primary-700), var(--be-primary-600));
    color: #eaf2fb;
    border-radius: var(--be-radius-lg);
    padding: var(--be-space-8) var(--be-space-6);
    box-shadow: var(--be-shadow-lg);
}
.be-cta-title { color: #fff; max-width: 18em; margin-inline: auto; }
.be-cta-text { margin: var(--be-space-4) auto var(--be-space-6); max-width: 40em; color: #d8e6f6; font-size: 1.1rem; }
.be-cta-actions { display: flex; flex-wrap: wrap; gap: var(--be-space-3); justify-content: center; }
.be-cta-contact { margin-top: var(--be-space-5); color: #cfe0f3; font-size: .95rem; }
.be-cta-contact a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.be-cta-contact a:hover { color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.be-footer { background: #0f1d31; color: #b9c6d6; padding-top: var(--be-space-8); }
.be-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--be-space-7);
    padding-bottom: var(--be-space-7);
}
.be-brand--footer .be-brand-name { color: #fff; }
.be-brand--footer .be-brand-mark { color: var(--be-primary); }
.be-footer-tagline { margin-top: var(--be-space-4); color: #93a4b8; max-width: 34ch; }

.be-footer-heading {
    color: #fff;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: var(--be-space-4);
}
.be-footer-col ul { display: grid; gap: var(--be-space-2); }
.be-footer-col a { color: #b9c6d6; }
.be-footer-col a:hover { color: #fff; }
.be-footer-address { font-style: normal; margin-top: var(--be-space-4); color: #93a4b8; line-height: 1.7; }

.be-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.be-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--be-space-3);
    justify-content: space-between;
    align-items: center;
    padding-block: var(--be-space-5);
    font-size: .88rem;
    color: #8194a9;
}
.be-footer-bottom-inner a { color: #b9c6d6; }
.be-footer-bottom-inner a:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 960px) {
    .be-hero-grid { grid-template-columns: 1fr; gap: var(--be-space-7); }
    .be-hero-visual { order: -1; }
    .be-dash { max-width: 520px; }
    .be-split { grid-template-columns: 1fr; gap: var(--be-space-6); }
    .be-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .be-footer-grid { grid-template-columns: 1fr 1fr; }
    .be-footer-brand { grid-column: 1 / -1; }

    /* Collapse the navigation into a toggle here: the full horizontal menu
       (six links + CTA) no longer fits comfortably below this width. */
    .be-nav-toggle { display: flex; }
    .be-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: var(--be-space-4);
        background: #fff;
        border-bottom: 1px solid var(--be-border);
        box-shadow: var(--be-shadow-md);
        padding: var(--be-space-5);
        /* Hidden by default; revealed via [data-open] from blueeye.js */
        display: none;
    }
    .be-nav[data-open="true"] { display: flex; }
    .be-nav-list { flex-direction: column; align-items: stretch; gap: var(--be-space-1); }
    .be-nav-link { padding: 12px 14px; font-size: 1rem; }
    .be-nav-cta { width: 100%; }
}

/* Mobile + collapsed navigation */
@media (max-width: 720px) {
    .blueeye { font-size: 16px; }
    .be-section { padding-block: var(--be-space-8); }
    .be-hero { padding-block: var(--be-space-7); }

    .be-grid--2,
    .be-grid--3 { grid-template-columns: 1fr; }
    .be-footer-grid { grid-template-columns: 1fr; gap: var(--be-space-6); }

    .be-statement { flex-direction: column; align-items: flex-start; text-align: left; }
    .be-disclaimer { flex-direction: column; }

    /* ---- Comparison table -> stacked cards ---- */
    .be-table-wrap { border: 0; box-shadow: none; background: transparent; overflow: visible; }
    .be-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); }
    .be-table,
    .be-table tbody,
    .be-table tr,
    .be-table th,
    .be-table td { display: block; width: 100%; }
    .be-table tbody tr {
        background: #fff !important;
        border: 1px solid var(--be-border);
        border-radius: var(--be-radius);
        box-shadow: var(--be-shadow-sm);
        padding: var(--be-space-4) var(--be-space-5);
        margin-bottom: var(--be-space-4);
    }
    .be-table tbody th {
        white-space: normal;
        font-size: 1.15rem;
        padding: 0 0 var(--be-space-3);
        border: 0;
        border-bottom: 1px solid var(--be-border);
        margin-bottom: var(--be-space-3);
        color: var(--be-primary-700);
    }
    .be-table tbody td {
        padding: var(--be-space-3) 0 0;
        border: 0;
    }
    /* Field label from data-label attribute */
    .be-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: .72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .07em;
        color: var(--be-muted);
        margin-bottom: 2px;
    }
    .be-table tbody td:last-child { color: var(--be-primary-700); }
}

/* Small phones */
@media (max-width: 420px) {
    .be-dash-grid { grid-template-columns: 1fr; }
    .be-btn { width: 100%; }
    .be-hero-actions,
    .be-cta-actions { flex-direction: column; }
}

/* ==========================================================================
   MOTION / PRINT
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .blueeye { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
    .blueeye *,
    .blueeye *::before,
    .blueeye *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Account for the sticky header when jumping to in-page anchors */
.blueeye :target { scroll-margin-top: 86px; }
.blueeye [id] { scroll-margin-top: 86px; }
