/* ─────────────────────────────────────────────────────────────────────
   Solhive — Brand-Stylesheet v3 „Honig & Tageslicht"
   Helles Sonnen-Design · Creme + Honig-Amber · Waben-Geometrie
   Dunkle Kontrast-Anker: Terminal + Footer
   Fonts self-hosted (DSGVO): Bricolage Grotesque + Spline Sans Mono
   ───────────────────────────────────────────────────────────────────── */

/* ─── Fonts (self-hosted) ───────────────────────────────────────── */
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/bricolage-grotesque-v9-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/bricolage-grotesque-v9-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/bricolage-grotesque-v9-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/bricolage-grotesque-v9-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/bricolage-grotesque-v9-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/bricolage-grotesque-v9-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Spline Sans Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/spline-sans-mono-v13-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Spline Sans Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/spline-sans-mono-v13-latin-500.woff2') format('woff2');
}

/* ─── Design-Tokens ─────────────────────────────────────────────── */
:root {
    /* Tageslicht-Flächen */
    --bg-0: #fdf4e0;        /* getönte Alt-Sektionen */
    --bg-1: #fffcf4;        /* Haupthintergrund */
    --bg-2: #ffffff;        /* Karten */
    --bg-3: #fff7e4;        /* Hover-Flächen */

    /* Honig */
    --honey: #e8890c;
    --honey-deep: #b45309;
    --honey-soft: #f7b733;
    --honey-pale: #ffd56b;

    /* Signal-Grün = Live/Status (funktional, keine Markenfarbe) */
    --green: #16a34a;
    --green-deep: #15803d;

    /* Text */
    --ink: #2d2416;
    --ink-muted: #6d5e48;
    --ink-faint: #9b8867;

    /* Dunkle Kontrast-Anker (Terminal, Footer) */
    --dark-0: #1d150b;
    --dark-2: #2a1f10;
    --dark-ink: #f6efe3;

    /* Linien + Schatten */
    --line: rgba(180, 83, 9, 0.25);
    --line-soft: rgba(180, 83, 9, 0.13);
    --shadow-sm: 0 2px 10px rgba(146, 64, 14, 0.07);
    --shadow-md: 0 14px 40px rgba(146, 64, 14, 0.13);

    /* Typografie */
    --font-display: 'Bricolage Grotesque', 'Avenir Next', 'Segoe UI', sans-serif;
    --font-mono: 'Spline Sans Mono', 'Cascadia Code', ui-monospace, monospace;

    /* Geometrie — regelmäßiges flat-top-Hexagon: Element braucht B:H = 1:0.866 */
    --hex: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    --radius: 14px;
    --radius-lg: 22px;
    --max-width: 1180px;
    --section-pad: clamp(4.5rem, 9vw, 8rem);

    /* Waben-Textur (heropatterns „Hexagons", CC BY 4.0) — amber auf hell */
    --hex-pattern: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d97706' fill-opacity='0.06' fill-rule='evenodd'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ─── Reset + Basis ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--font-display);
    font-weight: 400;
    background: var(--bg-1);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--honey-soft); color: #2a1c08; }

img, svg { max-width: 100%; height: auto; }

a { color: var(--honey-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: #92400e; text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
    margin-top: 0;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { margin: 0 0 1rem; }
.lead { font-size: 1.15rem; line-height: 1.65; }
.muted { color: var(--ink-muted); }
strong { color: var(--ink); font-weight: 600; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* Honig-Gradient-Wort in Headlines */
.glow-word {
    background: linear-gradient(115deg, #f59e0b 5%, #ea7c0c 45%, #c2570a 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Eyebrow: Mono-Label mit Hex-Marker */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--honey-deep);
    margin-bottom: 1.25rem;
}
.eyebrow::before {
    content: "";
    width: 11px;
    height: 9.5px;
    background: var(--honey);
    clip-path: var(--hex);
    flex-shrink: 0;
}

/* ─── Navigation ────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 238, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
    max-width: var(--max-width);
    margin: 0 auto;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    z-index: 60;
}
.nav-brand:hover { text-decoration: none; color: var(--ink); }
.nav-brand .mark {
    width: 28px;
    height: 28px;
    color: var(--honey);
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    font-size: 0.95rem;
}
.nav-links a {
    color: var(--ink-muted);
    font-weight: 500;
}
.nav-links a:hover { color: var(--honey-deep); text-decoration: none; }
.nav-cta {
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--honey-deep) !important;
    transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover { border-color: var(--honey); background: rgba(247, 183, 51, 0.14); }

.nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding-left: 1.1rem;
    margin-left: 0.2rem;
    border-left: 1px solid var(--line-soft);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
}
.nav-lang a { color: var(--ink-faint); }
.nav-lang a:hover { color: var(--honey-deep); text-decoration: none; }
.nav-lang-active { color: var(--honey-deep); }
.nav-lang span, .nav-lang a { text-transform: uppercase; letter-spacing: 0.05em; }

/* Burger (CSS-only, mobil) */
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
}
.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--honey-deep);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}
@media (max-width: 1080px) {
    .nav-burger { display: flex; }
    /* Dropdown-Panel unter der Leiste — kein position:fixed, da
       backdrop-filter auf .nav den Containing Block verschiebt */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - 64px);
        height: calc(100dvh - 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.6rem;
        background: #fffaf0;
        border-bottom: 1px solid var(--line-soft);
        overflow-y: auto;
        font-size: 1.25rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s;
    }
    .nav-toggle:checked ~ .nav-links { opacity: 1; pointer-events: auto; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-lang { border-left: none; padding-left: 0; margin-left: 0; }
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
    background: linear-gradient(135deg, var(--honey-pale) 0%, var(--honey-soft) 40%, var(--honey) 100%);
    color: #2a1c08;
    box-shadow: 0 4px 20px rgba(232, 137, 12, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 137, 12, 0.45);
    color: #2a1c08;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover {
    border-color: var(--honey);
    color: var(--honey-deep);
    background: rgba(247, 183, 51, 0.1);
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
    background:
        radial-gradient(ellipse 60% 52% at 78% 30%, rgba(247, 183, 51, 0.4) 0%, transparent 68%),
        radial-gradient(ellipse 45% 40% at 12% 85%, rgba(22, 163, 74, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #fff4d6 0%, var(--bg-1) 80%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern);
    background-size: 56px 98px;
    mask-image: radial-gradient(ellipse 75% 80% at 70% 30%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 80% at 70% 30%, black 0%, transparent 75%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; }
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-deep);
    border: 1px solid rgba(21, 128, 61, 0.3);
    background: rgba(22, 163, 74, 0.07);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.75rem;
}
.hero-status .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
    50% { opacity: 0.45; box-shadow: 0 0 2px var(--green); }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero-description {
    font-size: 1.15rem;
    color: var(--ink-muted);
    max-width: 540px;
    margin: 0 0 2.25rem;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.75rem;
}

/* Stats-Zeile */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line-soft);
}
.stat .stat-value {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    font-weight: 500;
    color: #c2570a;
    line-height: 1.2;
}
.stat .stat-label {
    font-size: 0.82rem;
    color: var(--ink-faint);
    letter-spacing: 0.02em;
}

/* ── Hive-Cluster (Hero rechts) ── */
.hive {
    position: relative;
    width: 100%;
    max-width: 470px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
}
@media (max-width: 920px) {
    .hive { max-width: 400px; }
}
.hive-hex {
    position: absolute;
    clip-path: var(--hex);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: float 7s ease-in-out infinite alternate;
}
.hive-hex .v {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    color: var(--ink);
    line-height: 1.25;
}
.hive-hex .l {
    font-family: var(--font-mono);
    font-size: clamp(0.58rem, 1vw, 0.68rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-faint);
}
.hive-hex--solid {
    background: linear-gradient(160deg, #ffffff 0%, #fdeecd 100%);
    filter: drop-shadow(0 6px 18px rgba(146, 64, 14, 0.16));
}
.hive-hex--core {
    background: linear-gradient(150deg, var(--honey-pale) 0%, var(--honey-soft) 45%, var(--honey) 100%);
    filter: drop-shadow(0 10px 30px rgba(232, 137, 12, 0.45));
}
.hive-hex--core .mark { width: 54%; height: auto; color: #2a1a04; }
.hive-hex--green {
    background: linear-gradient(160deg, #f2fdf5 0%, #d9f7e2 100%);
    filter: drop-shadow(0 6px 18px rgba(21, 128, 61, 0.14));
}
.hive-hex--green .v { color: var(--green-deep); }
.hive-hex--outline { background: rgba(232, 137, 12, 0.4); }
.hive-hex--outline::after {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: var(--hex);
    background: #fff9ec;
}

/* Positionen im Cluster — echte Honeycomb-Geometrie:
   Satelliten docken diagonal an den Core an (Zentrenversatz
   dx=(3/8)(W1+W2), dy=(√3/8)(W1+W2), plus kleine Fuge) */
.hive-hex { aspect-ratio: 1 / 0.866; }
.hx-core  { width: 34%; top: 35.7%; left: 33%; animation-delay: 0s; }
.hx-pv    { width: 27%; top: 20.1%; left: 11%; animation-delay: -2.1s; }
.hx-bat   { width: 27%; top: 20.1%; left: 62%; animation-delay: -4.4s; }
.hx-wb    { width: 27%; top: 59.3%; left: 11%; animation-delay: -1.2s; }
.hx-wp    { width: 27%; top: 59.3%; left: 62%; animation-delay: -3.3s; }
.hx-o1    { width: 18%; top: 6%;    left: 79%; animation-delay: -5s; }
.hx-o2    { width: 13%; top: 77.7%; left: 43.5%; animation-delay: -2.8s; }

@keyframes float {
    from { transform: translateY(-6px); }
    to   { transform: translateY(6px); }
}

/* ─── Sections ──────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; position: relative; }
.section-alt { background: var(--bg-0); }
.section-alt.section-hexbg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern);
    background-size: 42px 73px;
    opacity: 0.7;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }

.section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
}
.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-header.center .eyebrow { justify-content: center; }

/* ─── Pillars (3 Säulen) ────────────────────────────────────────── */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.pillar {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.3s;
    overflow: hidden;
}
.pillar:hover {
    transform: translateY(-5px);
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}
.pillar-num {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--ink-faint);
    letter-spacing: 0.1em;
}
.pillar-badge {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-deep);
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

/* Systemanforderungen (Betrieb) */
.spec-caption {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-faint);
    text-align: center;
    margin: 2.75rem 0 1rem;
}
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 1.1rem;
    max-width: 940px;
    margin: 0 auto;
}
.spec {
    background: var(--bg-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.spec-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-faint);
}
.spec-value {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 500;
    color: #c2570a;
    line-height: 1.25;
}
.spec-hint {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

/* Hinweisbox unter den Betriebs-Karten */
.deploy-notes {
    max-width: 820px;
    margin: 2.5rem auto 0;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    box-shadow: var(--shadow-sm);
    padding: 1.6rem 2rem;
}
.deploy-notes p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin: 0 0 0.85rem;
}
.deploy-notes p:last-child { margin-bottom: 0; }
.pillar-icon {
    width: 54px;
    height: 47px;
    clip-path: var(--hex);
    background: linear-gradient(160deg, rgba(247, 183, 51, 0.4) 0%, rgba(232, 137, 12, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--honey-deep);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar p { color: var(--ink-muted); margin: 0; font-size: 0.97rem; }

/* ─── Features-Grid ─────────────────────────────────────────────── */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.1rem;
}
.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem 1.3rem;
    background: var(--bg-2);
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s;
}
.feature:hover {
    border-color: rgba(232, 137, 12, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 36px;
    clip-path: var(--hex);
    background: linear-gradient(160deg, rgba(247, 183, 51, 0.45) 0%, rgba(232, 137, 12, 0.16) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honey-deep);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.04rem; margin-bottom: 0.3rem; font-weight: 600; }
.feature p { margin: 0; font-size: 0.9rem; color: var(--ink-muted); }

/* ─── Warum Solhive? (Abgrenzung + Vergleich) ───────────────────── */
.versus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.versus-card {
    background: var(--bg-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s;
}
.versus-card:hover {
    border-color: var(--line);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.versus-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--honey-deep);
    background: rgba(232, 137, 12, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.versus-card h3 { font-size: 1.2rem; }
.versus-card p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }

.compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    background: var(--bg-2);
    box-shadow: var(--shadow-sm);
}
.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    font-size: 0.92rem;
}
.compare th, .compare td {
    padding: 0.8rem 1.1rem;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
}
.compare thead th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-faint);
    font-weight: 500;
}
.compare tbody th {
    text-align: left;
    font-weight: 500;
    color: var(--ink);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: none; }
.compare td.yes  { color: var(--green-deep); font-weight: 700; }
.compare td.no   { color: #c4b393; }
.compare td.part { color: var(--ink-muted); font-size: 0.8rem; }
.compare .col-solhive { background: rgba(247, 183, 51, 0.14); }
.compare thead .col-solhive { color: var(--honey-deep); }
.compare-note {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ink-faint);
    margin-top: 1rem;
    text-align: center;
}

/* ─── Audience (2 Karten) ───────────────────────────────────────── */
.audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.audience-card {
    background: var(--bg-2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s;
}
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.audience-card--pro { border-top: 3px solid var(--honey); }
.audience-card--pro:hover { border-color: rgba(232, 137, 12, 0.5); border-top-color: var(--honey); }
.audience-card--home { border-top: 3px solid var(--green); }
.audience-card--home:hover { border-color: rgba(22, 163, 74, 0.45); border-top-color: var(--green); }
.audience-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.audience-card--pro .audience-tag { color: var(--honey-deep); background: rgba(247, 183, 51, 0.16); }
.audience-card--home .audience-tag { color: var(--green-deep); background: rgba(22, 163, 74, 0.09); }
.audience-card h3 { font-size: 1.55rem; font-weight: 700; margin-bottom: 1rem; }
.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.audience-card li {
    padding: 0.5rem 0 0.5rem 1.9rem;
    position: relative;
    color: var(--ink-muted);
}
.audience-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 12px;
    height: 10.4px;
    clip-path: var(--hex);
}
.audience-card--pro li::before { background: var(--honey); }
.audience-card--home li::before { background: var(--green); }

/* ─── Co-Branding-Showcase ──────────────────────────────────────── */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 880px) {
    .showcase { grid-template-columns: 1fr; }
}
.showcase-visual {
    position: relative;
    background:
        radial-gradient(ellipse 80% 70% at 50% 45%, rgba(247, 183, 51, 0.25) 0%, transparent 70%),
        var(--bg-2);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem 2.25rem;
    text-align: center;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.showcase-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hex-pattern);
    background-size: 34px 59px;
    opacity: 0.8;
    pointer-events: none;
}
.showcase-rows { position: relative; }
.showcase-row {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}
.showcase-hex {
    width: 64px;
    height: 55px;
    clip-path: var(--hex);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    color: #2a1c08;
    background: linear-gradient(150deg, var(--honey-pale), var(--honey));
}
.showcase-hex .mark { width: 52%; color: rgba(42, 26, 4, 0.85); }
.showcase-hex.partner-1 { background: linear-gradient(150deg, #7aa7ff, #2f5fd0); color: #eef4ff; }
.showcase-hex.partner-2 { background: linear-gradient(150deg, #6fe294, #1f8a4c); color: #f0fff5; }
.showcase-hex.partner-3 { background: linear-gradient(150deg, #c5a3ff, #7c4bd6); color: #f7f2ff; }
.showcase-caption {
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--ink-faint);
    margin: 1.5rem 0 0;
    line-height: 1.7;
}

/* ─── Source-Available / Terminal (bewusst dunkel) ──────────────── */
.terminal {
    max-width: 780px;
    margin: 0 auto;
    background: var(--dark-0);
    border: 1px solid rgba(247, 183, 51, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(146, 64, 14, 0.22);
}
.terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid rgba(247, 183, 51, 0.12);
    background: var(--dark-2);
}
.terminal-bar i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #6b5d49;
    opacity: 0.5;
}
.terminal-bar i:nth-child(1) { background: #e8743b; opacity: 0.85; }
.terminal-bar i:nth-child(2) { background: var(--honey-soft); opacity: 0.85; }
.terminal-bar i:nth-child(3) { background: #4ade80; opacity: 0.85; }
.terminal-bar .terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #9b8867;
}
.terminal-body {
    padding: 1.5rem 1.4rem;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--dark-ink);
    overflow-x: auto;
}
.terminal-body .ln { white-space: pre; display: block; }
.terminal-body .p  { color: #4ade80; }
.terminal-body .c  { color: #8a7a5f; }
.terminal-body .o  { color: #d6c9b2; }
.terminal-body .h  { color: var(--honey-soft); }

.os-text {
    max-width: 780px;
    margin: 2.25rem auto 0;
    text-align: center;
}

/* ─── CTA-Block (Pilot) — sonniger Honig-Block ──────────────────── */
.cta-block {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    border-radius: var(--radius-lg);
    padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(135deg, #ffd56b 0%, #f7b733 45%, #ef9d0e 100%);
    box-shadow: 0 24px 60px rgba(232, 137, 12, 0.35);
    overflow: hidden;
}
.cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237c2d12' fill-opacity='0.07' fill-rule='evenodd'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 42px 73px;
    pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { margin-bottom: 1.25rem; color: #2a1c08; }
.cta-block .glow-word {
    background: linear-gradient(115deg, #7c2d12, #431407);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cta-block .eyebrow { color: #7c4a05; }
.cta-block .eyebrow::before { background: #7c4a05; }
.cta-block p {
    color: rgba(42, 28, 8, 0.82);
    font-size: 1.08rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.cta-block .btn-primary {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    background: #2a1c08;
    color: var(--honey-pale);
    box-shadow: 0 6px 24px rgba(42, 28, 8, 0.35);
}
.cta-block .btn-primary:hover {
    color: var(--honey-pale);
    box-shadow: 0 10px 36px rgba(42, 28, 8, 0.45);
}
.cta-note {
    font-family: var(--font-mono);
    font-size: 0.78rem !important;
    color: rgba(42, 28, 8, 0.6) !important;
    margin-top: 1.25rem !important;
}

/* ─── Footer (bewusst dunkel — der Stock unter der Sonne) ───────── */
.footer {
    background: #241a0c;
    border-top: 1px solid rgba(247, 183, 51, 0.2);
    padding: 3.5rem 0 2rem;
    font-size: 0.95rem;
    color: rgba(246, 239, 227, 0.75);
}
.footer a { color: rgba(246, 239, 227, 0.75); }
.footer a:hover { color: var(--honey-soft); text-decoration: none; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fdf6e5;
    margin-bottom: 0.9rem;
}
.footer-brand .mark { width: 28px; height: 28px; color: var(--honey-soft); }
.footer-tagline { color: rgba(246, 239, 227, 0.55); max-width: 320px; }
.footer h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(246, 239, 227, 0.45);
    margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 0.32rem 0; }
.footer-bottom {
    border-top: 1px solid rgba(246, 239, 227, 0.12);
    padding-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: rgba(246, 239, 227, 0.45);
}

/* ─── Legal-Seiten (Impressum / Datenschutz / AGB) ──────────────── */
.legal-page {
    min-height: 70vh;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg-2);
    padding: clamp(2rem, 5vw, 3.25rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.legal-content h1 { font-size: 2.3rem; margin-bottom: 1.5rem; }
.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--honey-deep);
    font-weight: 700;
}
.legal-content h3 {
    font-size: 1.08rem;
    margin-top: 1.5rem;
    color: var(--ink);
}
.legal-content p, .legal-content li { color: var(--ink-muted); }
.legal-content strong { color: var(--ink); }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; }
.legal-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

/* ─── Reveal-on-Scroll (progressive enhancement) ────────────────── */
html.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-d1 { transition-delay: 0.08s; }
html.js .reveal-d2 { transition-delay: 0.16s; }
html.js .reveal-d3 { transition-delay: 0.24s; }

/* Hero-Intro beim Laden */
@keyframes rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
.hero .rise { animation: rise 0.85s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
.hero .rise-1 { animation-delay: 0.05s; }
.hero .rise-2 { animation-delay: 0.15s; }
.hero .rise-3 { animation-delay: 0.25s; }
.hero .rise-4 { animation-delay: 0.35s; }
.hero .rise-5 { animation-delay: 0.5s; }
.hive { animation: rise 1s 0.3s cubic-bezier(0.2, 0.6, 0.2, 1) both; }

/* ─── Reduced Motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html.js .reveal { opacity: 1; transform: none; }
}
