:root {
    --honey: #f7b733;
    --amber: #f59e0b;
    --ink: #201405;
    --brown: #5b3603;
    --cream: #fff8e7;
    --paper: #fffdf6;
    --black: #171006;
    --line: #f3d18b;
    --max: 1160px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 24px;
}

nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff7dfcc;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #f2d590;
}

.navin {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-weight: 1000;
    font-size: 24px;
    letter-spacing: -.05em;
    display: flex;
    gap: 10px;
    align-items: center;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.bee {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--honey), #fff);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px -14px #000;
}

.navlinks {
    display: flex;
    gap: 22px;
    font-weight: 800;
    font-size: 14px;
    color: #7c4c06;
}

.call {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    background: var(--black);
    color: #fff;
    border-radius: 14px;
    padding: 13px 22px;
    font-weight: 1000;
    box-shadow: 0 16px 36px -20px #000;
    transition: .3s var(--ease);
}

.call:hover {
    transform: translateY(-2px) rotate(-1deg);
}

.hero {
    position: relative;
    overflow: hidden;
    background: #ffefb7;
    padding: 98px 0 80px;
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, #e2a128 1px, transparent 0);
    background-size: 28px 28px;
    opacity: .35;
}

.grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 42px;
    align-items: center;
}

.tag {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fff;
    border: 2px solid #251807;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 1000;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 5px 5px 0 #251807;
}

h1 {
    font-size: clamp(48px, 7.8vw, 72px);
    line-height: .9;
    letter-spacing: -.08em;
    margin: 24px 0 18px;
}

h1 span {
    color: #d97706;
}

.lede {
    font-size: 20px;
    color: #5f3c09;
    max-width: 570px;
    font-weight: 600;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.outline {
    display: inline-flex;
    border: 2px solid #251807;
    background: #fff;
    border-radius: 14px;
    padding: 13px 22px;
    font-weight: 1000;
    box-shadow: 5px 5px 0 #251807;
}

.board {
    background: #fffdf4;
    border: 3px solid #251807;
    border-radius: 30px;
    box-shadow: 12px 12px 0 #251807;
    padding: 28px;
    transform: rotate(2deg);
}

.board h2 {
    font-size: 34px;
    letter-spacing: -.05em;
}

.alerts {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.alert {
    background: #fff0be;
    border: 2px solid #251807;
    border-radius: 18px;
    padding: 14px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.alert small {
    display: block;
    color: #80520c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.hexes {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 260px;
    height: 260px;
    opacity: .22;
    background: repeating-linear-gradient(60deg, #000 0 2px, transparent 2px 30px);
}

.buzz {
    background: #251807;
    color: #fff;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.buzz .track {
    display: inline-flex;
    gap: 34px;
    animation: mq 24s linear infinite;
}

.buzz span {
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .12em;
    color: #ffe59c;
}

@keyframes mq {
    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 86px 0;
}

.head {
    max-width: 760px;
    margin-bottom: 36px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #b46705;
}

.head h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -.06em;
    margin-top: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .8s var(--ease);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    background: #fff;
    border: 2px solid #251807;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 7px 7px 0 #251807;
}

.card h3 {
    font-size: 20px;
    letter-spacing: -.03em;
}

.card p,
.card li {
    color: #68430b;
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step {
    background: #251807;
    color: #fff;
    border-radius: 28px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.step b {
    display: block;
    font-size: 56px;
    color: #f7b733;
    line-height: 1;
}

.compare {
    background: #171006;
    color: white;
    position: relative;
    overflow: hidden;
}

.compare .eyebrow {
    color: #f7b733;
}

.compare h2 {
    color: #fff;
}

.vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vsbox {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    padding: 30px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vsbox.good {
    background: #f7b733;
    color: #201405;
}

.vsbox ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.vsbox li:before {
    content: "●";
    margin-right: 10px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.panel {
    background: #fff7df;
    border: 2px solid #251807;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 8px 8px 0 #251807;
}
.panel img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/2;
    margin-bottom: 1.25rem;
    object-fit: cover;
    border-radius: 1.25rem;
}

.panel.alt {
    background: #fff;
}

.panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.panel li:before {
    content: "✓";
    margin-right: 10px;
    color: #d97706;
    font-weight: 1000;
}

.story {
    background: #fff4cc;
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quote {
    background: white;
    border-radius: 24px;
    padding: 24px;
    border: 2px solid #251807;
    box-shadow: 7px 7px 0 #251807;
}

.quote p {
    font-style: italic;
    color: #5f3c09;
}

.faq-list {
    max-width: 840px;
    margin: auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: white;
    border: 2px solid #251807;
    border-radius: 20px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    padding: 21px 24px;
    font-size: 18px;
    font-weight: 1000;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .4s;
}

.faq-a p {
    padding: 0 24px 22px;
    color: #6b4308;
    font-weight: 600;
}

.faq-item.open .faq-a {
    max-height: 240px;
}

.final {
    background: linear-gradient(135deg, #f7b733, #ffdd67);
    text-align: center;
}

.final h2 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .94;
    letter-spacing: -.07em;
    margin-bottom: 1rem;
}

.final p {
    margin-bottom: 2rem;
}

footer {
    background: #171006;
    color: #f7d787;
    padding: 28px 0;
}

.foot {
    text-align: center;
    font-size: 14px;
}

@media(max-width: 920px) {
    .navlinks {
        display: none;
    }

    .grid,
    .split,
    .vs {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .quotes,
    .steps {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 560px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .board {
        transform: none;
    }
}
