:root {
    --navy: #10213f;
    --blue: #2857ff;
    --sky: #edf3ff;
    --aqua: #adf1e3;
    --orange: #ff785b;
    --ink: #172033;
    --muted: #647089;
    --line: #dce2ed;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font: 16px/1.62 Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif
}

.shell {
    max-width: 1190px;
    margin: auto;
    padding: 0 28px
}

a {
    color: inherit
}

.demo-strip {
    background: #fff3cd;
    color: #6e4d00;
    text-align: center;
    padding: 8px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em
}

header {
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px)
}

nav {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.brand {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.07em;
    text-decoration: none
}

.brand i {
    color: var(--blue);
    font-style: normal
}

.links {
    display: flex;
    align-items: center;
    gap: 25px
}

.links a {
    text-decoration: none;
    font-size: .9rem;
    font-weight: 650
}

.links a:hover {
    color: var(--blue)
}

.notice {
    display: none
}

.hero-modern {
    background: linear-gradient(115deg, #f4f7ff 0%, #f4f7ff 63%, #e1edff 63%);
    padding: 98px 0 85px;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns:1.18fr .82fr;
    align-items: center;
    gap: 40px
}

.eyebrow {
    color: var(--blue);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase
}

.eyebrow:before {
    content: '●';
    margin-right: 8px
}

.hero-modern h1, .article h1, .legal h1 {
    font-family: Inter, ui-sans-serif, sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -.085em;
    line-height: .91;
    margin: 18px 0 25px
}

.hero-modern h1 em {
    color: var(--blue);
    font-style: normal
}

.lead {
    font-size: 1.12rem;
    max-width: 610px;
    color: var(--muted)
}

.hero-chips {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 26px
}

.chip {
    padding: 8px 13px;
    border: 1px solid #cbd7ed;
    border-radius: 100px;
    background: #fff;
    font-size: .77rem;
    font-weight: 750
}

.orb-wrap {
    display: grid;
    place-items: center;
    min-height: 360px
}

.orb {
    width: 315px;
    height: 315px;
    border-radius: 33% 67% 64% 36%/38% 39% 61% 62%;
    background: linear-gradient(140deg, #2857ff, #70a4ff);
    box-shadow: -22px 24px 0 var(--aqua), 20px -18px 0 #ffb6a7;
    position: relative;
    animation: morph 7s ease-in-out infinite
}

.orb:before {
    content: '?';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 10rem;
    font-weight: 900
}

.orb:after {
    content: 'FAKTEN';
    position: absolute;
    bottom: 12px;
    right: -45px;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 9px 13px;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em
}

@keyframes morph {
    50% {
        border-radius: 58% 42% 35% 65%/57% 59% 41% 43%;
        transform: rotate(7deg)
    }
}

.ticker {
    background: var(--navy);
    color: #fff;
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em
}

.ticker-track {
    display: inline-block;
    animation: ticker 24s linear infinite
}

.ticker b {
    color: var(--aqua);
    margin: 0 24px
}

@keyframes ticker {
    to {
        transform: translateX(-130%)
    }
}

.section {
    padding: 100px 0
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin-bottom: 36px
}

.section h2, .compare-modern h2, .product-demo h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: -.075em;
    line-height: .98;
    margin: 12px 0 0
}

.section-intro p {
    color: var(--muted);
    max-width: 430px;
    margin: 0
}

.bento {
    display: grid;
    grid-template-columns:1.18fr 1fr 1fr;
    gap: 15px
}

.bento-card {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 25px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.bento-card h3, .card h3, .product h3 {
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -.06em;
    margin: 36px 0 11px
}

.bento-card p, .card p, .product p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem
}

.num {
    font-size: .7rem;
    font-weight: 850;
    color: var(--blue);
    letter-spacing: .1em
}

.bento-main {
    background: var(--blue);
    border: 0;
    color: #fff
}

.bento-main .num {
    color: var(--aqua)
}

.bento-main p {
    color: #dbe4ff
}

.big-no {
    position: absolute;
    right: -14px;
    bottom: -37px;
    font-size: 9rem;
    font-weight: 950;
    color: rgba(255, 255, 255, .13);
    letter-spacing: -.14em
}

.bento-violet {
    background: var(--sky)
}

.bento-pink {
    background: #fff1ed
}

.bento-dark {
    background: var(--navy);
    border: 0;
    color: #fff
}

.bento-dark p {
    color: #c9d5f0
}

.compare-modern {
    background: #f6f8fc;
    padding: 94px 0
}

.compare-modern h2 {
    color: var(--navy)
}

.compare-layout {
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: 80px
}

.compare-modern p {
    color: var(--muted);
    font-size: 1.04rem
}

.meter {
    margin-top: 30px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px
}

.meter-row {
    margin: 0 0 23px
}

.meter-row:last-child {
    margin: 0
}

.meter-head {
    display: flex;
    justify-content: space-between;
    font-size: .86rem;
    font-weight: 800
}

.bar {
    height: 10px;
    background: #e6eaf2;
    border-radius: 10px;
    margin-top: 9px;
    overflow: hidden
}

.fill {
    height: 100%;
    width: 82%;
    background: var(--orange);
    border-radius: 10px
}

.fill.vape {
    width: 44%;
    background: var(--blue)
}

.compare-note {
    border-left: 3px solid var(--blue);
    padding: 14px 16px;
    background: var(--sky);
    font-size: .88rem !important;
    margin: 22px 0 !important
}

.product-demo {
    background: #fff;
    padding: 90px 0
}

.product-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 28px
}

.product-head p {
    max-width: 430px;
    color: var(--muted);
    margin: 0
}

.products {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.product {
    min-height: 265px;
    padding: 28px;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.product:after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    border: 35px solid var(--blue);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
    transition: .25s
}

.product:hover:after {
    transform: scale(1.2)
}

.product small, .product span {
    position: relative;
    z-index: 1;
    color: var(--aqua);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em
}

.product p {
    position: relative;
    z-index: 1;
    color: #c9d5f0;
    max-width: 280px
}

.product span {
    display: block;
    margin-top: 38px
}

.product h3 {
    position: relative;
    z-index: 1;
    font-size: 2rem
}

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

.card {
    border: 1px solid var(--line);
    border-radius: 14px;
    min-height: 250px;
    padding: 25px;
    text-decoration: none;
    background: #fff;
    transition: .2s
}

.card:hover {
    box-shadow: 0 15px 35px rgba(23, 32, 51, .1);
    transform: translateY(-4px);
    border-color: #b8c8e6
}

.card .arrow {
    display: block;
    margin-top: 31px;
    color: var(--blue);
    font-weight: 900
}

.reveal {
    opacity: 0;
    transform: translateY(23px);
    transition: .65s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.article, .legal {
    max-width: 850px;
    padding: 76px 0 100px
}

.article h1, .legal h1 {
    font-size: clamp(3rem, 6vw, 5.1rem);
    color: var(--navy)
}

.article h2, .legal h2 {
    font-size: 2rem;
    letter-spacing: -.055em;
    line-height: 1;
    margin: 48px 0 14px
}

.article p, .article li, .legal p {
    color: #48556c;
    font-size: 1.04rem
}

.article .intro {
    font-size: 1.2rem;
    color: var(--muted)
}

.callout {
    padding: 21px 23px;
    background: var(--sky);
    border-radius: 9px;
    border-left: 4px solid var(--blue);
    font-weight: 700
}

.sources {
    margin-top: 38px;
    padding: 22px 25px;
    border-radius: 12px;
    background: #f6f8fc;
    font-size: .9rem
}

.sources li {
    margin: 8px 0
}

.todo {
    background: #fff5dd;
    padding: 20px;
    border-radius: 10px
}

.footer {
    border-top: 1px solid var(--line);
    padding: 30px 0 42px;
    color: var(--muted);
    font-size: .8rem
}

.footer > div {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.footer a {
    margin-left: 16px
}

.partner {
    display: flex;
    align-items: center;
    gap: 10px
}

.partner-label {
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

.partner-logo {
    font-weight: 950;
    font-size: 1rem;
    letter-spacing: -.06em;
    text-decoration: none;
    color: var(--blue) !important
}

@media (max-width: 720px) {
    .shell {
        padding: 0 20px
    }

    .links {
        gap: 13px
    }

    .links a:nth-child(2) {
        display: none
    }

    .hero-modern {
        padding: 62px 0
    }

    .hero-grid, .compare-layout {
        grid-template-columns:1fr
    }

    .orb-wrap {
        min-height: 260px
    }

    .orb {
        width: 215px;
        height: 215px
    }

    .orb:before {
        font-size: 7rem
    }

    .section {
        padding: 70px 20px;
    }

    .product-demo {
        background: #fff;
        padding: 90px 20px;
    }

    .section-intro, .product-head {
        display: block
    }

    .section-intro p, .product-head p {
        margin-top: 19px
    }

    .bento, .cards, .products {
        grid-template-columns:1fr
    }

    .bento-card {
        min-height: 210px
    }

    .footer > div {
        display: block
    }

    .partner {
        margin-top: 15px
    }

    .footer a {
        margin: 0 14px 0 0
    }
}

.article-visual {
    margin: 38px 0 10px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--sky);
    border: 1px solid var(--line)
}

.article-visual img {
    width: 100%;
    height: 355px;
    display: block;
    object-fit: cover
}

.article-visual figcaption {
    padding: 11px 16px;
    color: var(--muted);
    font-size: .76rem
}

.qa {
    margin: 28px 0;
    border-top: 1px solid var(--line)
}

.qa div {
    padding: 19px 0;
    border-bottom: 1px solid var(--line)
}

.qa h3 {
    font-size: 1.12rem;
    letter-spacing: -.03em;
    margin: 0 0 7px
}

.qa p {
    margin: 0 !important;
    font-size: .96rem !important
}

@media (max-width: 720px) {
    .article-visual img {
        height: 250px
    }
}

.links a[href="/elfbar-besser-als-rauchen/"], .links a[href="/elfbar-gesundheitliche-risiken/"], .links a[href="/elfbar-nikotin/"] {
    font-size: 0
}

.links a[href="/elfbar-besser-als-rauchen/"]::after {
    content: "Elfbar vs. Zigaretten"
}

.links a[href="/elfbar-gesundheitliche-risiken/"]::after {
    content: "Elfbar: Risiken"
}

.links a[href="/elfbar-nikotin/"]::after {
    content: "Nikotin in Elfbar"
}

.links a[href="/elfbar-besser-als-rauchen/"]::after, .links a[href="/elfbar-gesundheitliche-risiken/"]::after, .links a[href="/elfbar-nikotin/"]::after {
    font-size: .9rem
}
