:root {
    --green: #009b78;
    --green-dark: #00674f;
    --ink: #062f28;
    --muted: #394e48;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 77% 24%, rgba(191, 229, 205, 0.58), transparent 28%),
        radial-gradient(circle at 18% 67%, rgba(244, 230, 172, 0.35), transparent 25%),
        linear-gradient(135deg, #fbfdfb 0%, #f6faf5 50%, #eef7ef 100%);
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    z-index: -2;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(0, 126, 92, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 126, 92, 0.08) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: radial-gradient(circle at 92% 42%, #000, transparent 26%);
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-glow {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.page-glow-left {
    width: 430px;
    height: 430px;
    left: -250px;
    bottom: -130px;
    background: rgba(128, 194, 82, 0.16);
}

.page-glow-right {
    width: 380px;
    height: 380px;
    top: 10%;
    right: -180px;
    background: rgba(15, 150, 109, 0.13);
}

.site-header {
    position: fixed;
    z-index: 40;
    top: 24px;
    left: 50%;
    display: flex;
    width: min(84vw, 1390px);
    height: 113px;
    min-height: 113px;
    align-items: center;
    gap: 28px;
    padding: 13px 28px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.77);
    box-shadow: 0 16px 42px rgba(32, 80, 60, 0.11), inset 0 1px 0 #fff;
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.brand {
    display: block;
    width: 245px;
    margin-right: auto;
}

.brand img {
    display: block;
    width: 245px;
    height: 90px;
    object-fit: fill;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3.1vw, 52px);
}

.main-nav a {
    position: relative;
    padding: 15px 0;
    color: #10241f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
    color: var(--green-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-whatsapp {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #0aaf89, #00846a);
    box-shadow: 0 8px 18px rgba(0, 134, 104, 0.23), inset 0 1px 0 rgba(255,255,255,.3);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible {
    box-shadow: 0 11px 24px rgba(0, 134, 104, 0.32);
    transform: translateY(-2px);
}

.header-whatsapp svg {
    width: 30px;
    fill: #fff;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
}

.hero-inner {
    position: static;
    z-index: 5;
    display: block;
    width: 100%;
    min-height: 100svh;
    margin: 0;
}

.hero-copy {
    position: absolute;
    z-index: 4;
    top: 24.55svh;
    left: 45.45%;
    width: min(31.5vw, 528px);
    padding: 0;
    text-align: center;
    transform: translateX(-50%);
}

.maintenance-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 292px;
    justify-content: center;
    margin: 0 0 30px;
    padding: 12px 27px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 999px;
    background: rgba(220, 242, 231, 0.82);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    color: #087453;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.maintenance-pill svg {
    width: 23px;
    fill: currentColor;
}

.hero h1 {
    margin: 0;
    color: #082e28;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(47px, 3.62vw, 61px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.048em;
    text-wrap: balance;
}

.hero h1 em,
.hero h1 span {
    color: var(--green);
    font-style: normal;
    font-weight: 500;
}

.leaf-divider {
    display: flex;
    width: 172px;
    align-items: center;
    gap: 11px;
    margin: 24px auto 17px;
}

.leaf-divider i {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(0, 155, 120, 0.75));
}

.leaf-divider i:last-child {
    background: linear-gradient(90deg, rgba(0, 155, 120, 0.75), transparent);
}

.leaf-divider svg {
    width: 23px;
    fill: var(--green);
}

.hero-subtitle {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: clamp(17px, 1.4vw, 21px);
}

.order-button {
    display: inline-flex;
    min-width: 318px;
    min-height: 75px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 15px 28px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 20px;
    background: linear-gradient(180deg, #10ad7a, #01925e);
    box-shadow: 0 13px 28px rgba(1, 146, 94, 0.27), inset 0 1px 0 rgba(255,255,255,.32);
    color: #fff;
    font-size: 18px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 170ms ease, box-shadow 170ms ease;
}

.order-button svg {
    width: 30px;
    fill: currentColor;
}

.order-button:hover,
.order-button:focus-visible {
    box-shadow: 0 17px 34px rgba(1, 146, 94, 0.35), inset 0 1px 0 rgba(255,255,255,.32);
    transform: translateY(-3px);
}

.order-button:focus-visible,
.header-whatsapp:focus-visible {
    outline: 3px solid rgba(0, 103, 79, 0.38);
    outline-offset: 4px;
}

.hero-visual {
    position: absolute;
    z-index: 2;
    top: 13.2svh;
    left: 52.5%;
    width: min(49vw, 820px);
    aspect-ratio: 3 / 2;
    margin: 0;
    animation: scene-float 6.6s ease-in-out infinite;
}

.visual-halo {
    position: absolute;
    z-index: -1;
    width: 64%;
    height: 68%;
    top: 12%;
    left: 22%;
    border-radius: 50%;
    background: rgba(193, 227, 200, 0.43);
    filter: blur(46px);
}

.product-scene {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    mask-image: radial-gradient(ellipse 70% 67% at 53% 53%, #000 56%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 67% at 53% 53%, #000 56%, transparent 100%);
}

.generated-label {
    position: absolute;
    z-index: 3;
    top: 57.7%;
    left: 50.6%;
    display: flex;
    width: 19%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    color: #132c25;
    text-align: center;
    pointer-events: none;
}

.generated-label img {
    width: 78%;
    max-height: 42px;
    margin-bottom: 2px;
    object-fit: contain;
}

.generated-label b {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(7px, .72vw, 12px);
    letter-spacing: .11em;
}

.generated-label strong {
    margin-top: -1px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(12px, 1.35vw, 22px);
    letter-spacing: .08em;
}

.generated-label span {
    margin-top: 2px;
    font-size: clamp(5px, .5vw, 8px);
    font-weight: 700;
}

.brand-orb {
    position: absolute;
    z-index: 3;
    top: 24.6svh;
    left: 6.1vw;
    display: grid;
    width: clamp(250px, 23vw, 390px);
    aspect-ratio: 1;
    place-items: center;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background:
        radial-gradient(circle at 33% 25%, rgba(255,255,255,.92), transparent 18%),
        radial-gradient(circle at 64% 68%, rgba(188,222,194,.34), rgba(255,255,255,.5) 60%);
    box-shadow: inset 0 0 35px rgba(121, 173, 139, 0.22), 0 16px 44px rgba(57, 104, 72, 0.12);
    animation: orb-float 7s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.brand-orb img {
    width: 72%;
    filter: drop-shadow(0 8px 12px rgba(27, 72, 52, 0.1));
}

.orb-shine {
    position: absolute;
    top: 18%;
    left: 17%;
    width: 13%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,.88);
    filter: blur(2px);
}

.floating-decorations {
    position: absolute;
    z-index: 6;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.honey-dipper {
    position: absolute;
    top: 7%;
    right: -1.5%;
    width: clamp(145px, 15vw, 270px);
    filter: drop-shadow(0 15px 12px rgba(120, 75, 8, 0.13));
    animation: dipper-float 7s ease-in-out infinite;
}

.floating-leaf {
    position: absolute;
    width: clamp(44px, 4.3vw, 82px);
    filter: drop-shadow(0 8px 9px rgba(51, 112, 40, 0.16));
}

.leaf-one {
    top: 20%;
    left: 27%;
    animation: leaf-drift-one 8.2s ease-in-out infinite;
}

.leaf-two {
    top: 46%;
    left: 7%;
    width: clamp(36px, 3.4vw, 64px);
    animation: leaf-drift-two 7.3s ease-in-out -2s infinite;
}

.leaf-three {
    right: 37%;
    bottom: 21%;
    width: clamp(32px, 3vw, 57px);
    animation: leaf-drift-two 8.8s ease-in-out -4s infinite reverse;
}

.leaf-four {
    top: 25%;
    right: 30%;
    width: clamp(28px, 2.7vw, 50px);
    animation: leaf-drift-one 6.9s ease-in-out -1s infinite reverse;
}

.bubble {
    position: absolute;
    display: block;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 24%, #fff 0 5%, rgba(255,255,255,.16) 17%, rgba(215,239,223,.2) 58%, rgba(255,255,255,.54) 100%);
    box-shadow: inset 0 0 8px rgba(72, 139, 101, 0.12), 0 6px 16px rgba(62, 111, 83, 0.08);
    animation: bubble-rise 7s ease-in-out infinite;
}

.bubble-one { width: 58px; height: 58px; left: 3%; top: 29%; }
.bubble-two { width: 31px; height: 31px; left: 26%; top: 53%; animation-delay: -3s; }
.bubble-three { width: 73px; height: 73px; right: 13%; top: 28%; animation-delay: -5s; }
.bubble-four { width: 24px; height: 24px; right: 5%; top: 43%; animation-delay: -1s; }

.benefit-strip {
    position: absolute;
    z-index: 20;
    right: 0;
    bottom: 5.1svh;
    left: 0;
    display: grid;
    width: min(82.4vw, 1380px);
    margin: 0 auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.benefit-card {
    display: flex;
    min-height: 151px;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 25px;
    background: rgba(255,255,255,.46);
    box-shadow: 0 12px 30px rgba(53, 93, 63, 0.09), inset 0 1px 0 #fff;
    backdrop-filter: blur(15px);
    transition: transform 180ms ease, background 180ms ease;
}

.benefit-card:hover {
    background: rgba(255,255,255,.66);
    transform: translateY(-5px);
}

.benefit-icon {
    display: grid;
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    place-items: center;
    border: 1px solid rgba(0, 145, 104, 0.15);
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

.benefit-icon svg {
    width: 46px;
    fill: none;
    stroke: #087252;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.benefit-card p {
    display: flex;
    margin: 0;
    flex-direction: column;
    gap: 6px;
    color: #174e3d;
    font-size: 14px;
    line-height: 1.25;
}

.benefit-card strong {
    color: #056448;
    font-size: 14px;
    white-space: nowrap;
}

@keyframes scene-float {
    0%, 100% { transform: translateY(0) rotate(-.2deg); }
    50% { transform: translateY(-12px) rotate(.25deg); }
}

@keyframes orb-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -15px, 0); }
}

@keyframes dipper-float {
    0%, 100% { transform: translateY(0) rotate(4deg); }
    50% { transform: translateY(12px) rotate(7deg); }
}

@keyframes leaf-drift-one {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-17deg) scale(.95); }
    50% { transform: translate3d(13px, -18px, 0) rotate(5deg) scale(1.04); }
}

@keyframes leaf-drift-two {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(28deg); }
    50% { transform: translate3d(-12px, -20px, 0) rotate(49deg); }
}

@keyframes bubble-rise {
    0%, 100% { transform: translateY(0) scale(1); opacity: .72; }
    50% { transform: translateY(-17px) scale(1.06); opacity: 1; }
}

@media (max-width: 1220px) {
    .site-header,
    .benefit-strip {
        width: 92vw;
    }

    .site-header {
        height: 96px;
        min-height: 96px;
    }

    .brand {
        width: 210px;
    }

    .brand img {
        width: 210px;
        height: 76px;
    }

    .main-nav {
        gap: 24px;
    }

    .brand-orb {
        display: none;
    }

    .hero-copy {
        left: 29.5%;
        width: 48vw;
    }

    .hero h1 {
        font-size: clamp(42px, 4.3vw, 53px);
    }

    .hero-visual {
        left: 50.5%;
        width: 54vw;
    }

    .benefit-strip {
        gap: 10px;
    }

    .benefit-card {
        min-height: 122px;
        gap: 10px;
        padding: 17px 10px;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .benefit-icon svg {
        width: 37px;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: relative;
        top: auto;
        left: auto;
        width: calc(100% - 28px);
        height: auto;
        min-height: 86px;
        margin: 14px;
        padding: 10px 14px;
        border-radius: 22px;
        transform: none;
    }

    .brand {
        width: min(200px, calc(100vw - 120px));
    }

    .brand img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 28px 18px 35px;
        overflow: visible;
    }

    .hero-inner {
        position: relative;
        width: min(100%, 720px);
        min-height: 0;
    }

    .hero-copy {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding: 20px 0 0;
        transform: none;
    }

    .hero h1 {
        font-size: clamp(45px, 10vw, 68px);
    }

    .hero-visual {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 720px);
        margin: 32px auto 0;
    }

    .brand-orb {
        display: none;
    }

    .honey-dipper {
        top: 28%;
        right: -8%;
        width: clamp(110px, 27vw, 185px);
        opacity: .9;
    }

    .leaf-one { top: 10%; left: 3%; }
    .leaf-two { top: 33%; left: -2%; }
    .leaf-three { right: 3%; bottom: 29%; }
    .leaf-four { top: 42%; right: 12%; }
    .bubble-one { top: 20%; left: 2%; }
    .bubble-two { top: 45%; left: 9%; }
    .bubble-three { top: 35%; right: 2%; }

    .benefit-strip {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 18px;
        padding: 5px 2px 14px;
        grid-auto-columns: minmax(210px, 1fr);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .benefit-strip::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        min-height: 118px;
        scroll-snap-align: center;
    }
}

@media (max-width: 520px) {
    .site-header {
        min-height: 76px;
    }

    .brand img {
        height: auto;
    }

    .header-whatsapp {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .maintenance-pill {
        margin-bottom: 20px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: clamp(38px, 10.7vw, 46px);
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .order-button {
        min-height: 61px;
        padding-inline: 23px;
        font-size: 16px;
    }

    .hero-visual {
        width: 115%;
        left: 50%;
        margin-top: 22px;
        transform: translateX(-50%);
        animation: none;
    }

    .generated-label {
        top: 58%;
    }

    .honey-dipper {
        top: 31%;
        right: -15%;
    }

    .bubble-three,
    .bubble-four,
    .leaf-four {
        display: none;
    }
}

@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;
    }
}
