/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
    --red: #E10D20;
    --red-d: #B50E1A;
    --red-xl: rgba(225, 13, 32, .07);
    --amb: #FFA000;
    --amb-l: rgba(255, 160, 0, .12);
    --green: #4ade80;
    --ink: #0E0D0C;
    --ink2: #171614;
    --body: #48433E;
    --muted: #78726C;
    --border: #DED9D2;
    --border-l: rgba(222, 217, 210, .5);
    --surf: #EDE9E2;
    --bg: #F8F4ED;
    --white: #FEFDFB;
    --head: 'Nunito', sans-serif;
    --sans: 'Nunito Sans', sans-serif;
    --sh-s: 0 1px 3px rgba(14, 13, 12, .07), 0 4px 14px rgba(14, 13, 12, .05);
    --sh-m: 0 2px 8px rgba(14, 13, 12, .08), 0 14px 36px rgba(14, 13, 12, .07);
    --sh-l: 0 4px 18px rgba(14, 13, 12, .1), 0 28px 64px rgba(14, 13, 12, .09);
    --sh-red: 0 4px 18px rgba(225, 13, 32, .22), 0 12px 40px rgba(225, 13, 32, .14);
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 74px;
    -webkit-font-smoothing: antialiased
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .page-loader {
        display: none !important
    }

    .fd,
    .fd-l,
    .fd-r,
    .fd-s {
        opacity: 1 !important;
        transform: none !important
    }
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    outline: none
}

::selection {
    background: var(--red);
    color: #fff
}

/* Grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* Scroll progress */
#scroll-prog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--red), var(--amb));
    transition: width .08s linear;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(225, 13, 32, .4), 0 0 4px rgba(255, 160, 0, .3);
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
}

/* LAYOUT */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 56px
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--head);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .3s var(--ease), background .2s;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(.95) !important
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .18) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .45s var(--ease);
}

.btn:hover::after {
    transform: translateX(100%)
}

.btn-r {
    background: var(--red);
    color: #fff;
    box-shadow: var(--sh-red)
}

.btn-r:hover {
    background: var(--red-d);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 28px rgba(225, 13, 32, .38)
}

.btn-g {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border)
}

.btn-g::after {
    display: none
}

.btn-g:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px)
}

.btn-d {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16)
}

.btn-d:hover {
    background: #1a1918;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .26)
}

.btn-lg {
    font-size: 16px;
    padding: 16px 34px
}

.btn-sm {
    font-size: 13px;
    padding: 10px 20px
}

/* ══════════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════════ */
.ey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.ey::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.ey.light {
    color: rgba(255, 255, 255, .4)
}

.ey.light::before {
    background: var(--amb)
}

/* HEADING */
.h {
    font-family: var(--head);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 52px);
    line-height: .97;
    letter-spacing: -.04em;
    color: var(--ink);
}

.h em {
    font-style: italic;
    color: var(--red)
}

.h.inv {
    color: #fff
}

.h.inv em {
    color: var(--amb)
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 56px;
    transition: background .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s, padding .4s cubic-bezier(.16, 1, .3, 1);
}

.nav.on {
    background: rgba(248, 244, 237, .88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, .06);
    padding-top: 14px;
    padding-bottom: 14px;
}

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

.lm {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--red);
    display: grid;
    place-items: center;
    font-family: var(--head);
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    letter-spacing: -1px;
    box-shadow: 0 2px 8px rgba(225, 13, 32, .35);
    transition: transform .35s var(--ease-spring);
}

.logo:hover .lm {
    transform: rotate(-8deg) scale(1.08)
}

.ln {
    font-family: var(--head);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -.3px;
    color: var(--ink)
}

.ln b {
    color: var(--red);
    font-weight: 900
}

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

.nl {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    color: var(--muted);
    padding: 7px 12px;
    border-radius: 7px;
    transition: color .18s;
    position: relative;
}

.nl::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 1.5px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.nl:hover {
    color: var(--ink)
}

.nl:hover::after {
    transform: scaleX(1)
}

.nl.active {
    color: var(--red)
}

.nl.active::after {
    transform: scaleX(1)
}

/* Dropdown */
.nl-drop {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none
}

.nl-drop::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4.5px solid currentColor;
    opacity: .5;
    transition: transform .22s;
}

.nl-drop.open {
    color: var(--ink);
    background: rgba(0, 0, 0, .05)
}

.nl-drop.open::after {
    transform: rotate(180deg)
}

.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08), 0 16px 40px rgba(0, 0, 0, .07);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 300;
}

.nl-drop.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 9px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    color: var(--body);
    transition: background .15s, color .15s;
}

.dd-item:hover {
    background: var(--surf);
    color: var(--ink)
}

.dd-item:hover .dd-icon {
    background: var(--red);
    color: #fff
}

.dd-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--surf);
    display: grid;
    place-items: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.dd-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0
}

/* Mobile hamburger */
.nav-ham {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--surf);
    border: 1.5px solid var(--border);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 9px;
    transition: background .15s;
}

.nav-ham:hover {
    background: var(--border)
}

.ham-line {
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
    transform-origin: center;
}

.nav-ham.open .ham-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.nav-ham.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.nav-ham.open .ham-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

/* Mobile drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    background: rgba(10, 9, 8, .5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s, visibility .28s;
}

.nav-drawer.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 90vw);
    background: var(--bg);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    padding: 80px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.nav-drawer.open .drawer-panel {
    transform: translateX(0)
}

.dm-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--head);
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    padding: 14px 16px;
    border-radius: 12px;
    transition: background .2s, color .2s, transform .3s cubic-bezier(.16, 1, .3, 1);
    opacity: 0;
    transform: translateX(30px);
}

.nav-drawer.open .dm-link {
    opacity: 1;
    transform: translateX(0)
}

.nav-drawer.open .dm-link:nth-child(1) {
    transition-delay: .05s
}

.nav-drawer.open .dm-link:nth-child(2) {
    transition-delay: .08s
}

.nav-drawer.open .dm-link:nth-child(3) {
    transition-delay: .11s
}

.nav-drawer.open .dm-link:nth-child(4) {
    transition-delay: .14s
}

.nav-drawer.open .dm-link:nth-child(5) {
    transition-delay: .17s
}

.nav-drawer.open .dm-link:nth-child(6) {
    transition-delay: .20s
}

.nav-drawer.open .dm-link:nth-child(7) {
    transition-delay: .23s
}

.nav-drawer.open .dm-link:nth-child(8) {
    transition-delay: .26s
}

.nav-drawer.open .dm-link:nth-child(9) {
    transition-delay: .29s
}

.nav-drawer.open .dm-link:nth-child(10) {
    transition-delay: .32s
}

.dm-link:hover {
    background: var(--surf)
}

.dm-link.cta {
    background: var(--red);
    color: #fff;
    margin-top: 12px;
    justify-content: center
}

.dm-link.cta:hover {
    background: var(--red-d)
}

.dm-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0
}

.dm-ext {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 5px;
    background: var(--surf);
    color: var(--muted);
    font-weight: 700;
    letter-spacing: .04em
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 108px 56px 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .35;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(225, 13, 32, .12);
    top: -100px;
    right: 15%
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 160, 0, .08);
    bottom: 10%;
    left: 5%;
    animation-delay: -4s
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(30px, -20px) scale(1.1)
    }
}

.hero-slash {
    position: absolute;
    top: -80px;
    right: -40px;
    width: 520px;
    height: calc(100% + 80px);
    background: linear-gradient(160deg, rgba(225, 13, 32, .032) 0%, rgba(255, 160, 0, .018) 100%);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    bottom: 0;
    pointer-events: none;
    background-image: radial-gradient(var(--border) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to left, black 30%, transparent 100%);
    opacity: .45;
}

.hero-body {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    flex: 1;
    padding-bottom: 72px;
    position: relative;
    z-index: 1;
}

/* Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
    margin-bottom: 28px;
    box-shadow: var(--sh-s);
    width: fit-content;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(225, 13, 32, .14);
    animation: lpulse 2s ease-in-out infinite;
}

@keyframes lpulse {
    0% {
        box-shadow: 0 0 0 3px rgba(225, 13, 32, .14);
        transform: scale(1)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(225, 13, 32, .02);
        transform: scale(1.15)
    }

    100% {
        box-shadow: 0 0 0 3px rgba(225, 13, 32, .14);
        transform: scale(1)
    }
}

.live-txt {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    color: var(--muted)
}

/* H1 */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(48px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes heroH1Reveal {
    from {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
        filter: blur(8px)
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0% 0);
        filter: blur(0px)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1)
    }
}

.he {
    animation: slideUp .85s cubic-bezier(.16, 1, .3, 1) both
}

.he.d1 {
    animation-delay: .1s
}

.he.d2 {
    animation-delay: .2s
}

.he.d3 {
    animation-delay: .32s
}

.he.d4 {
    animation-delay: .44s
}

.he-r {
    animation: slideInRight 1s cubic-bezier(.16, 1, .3, 1) .25s both
}

.hero-h1 {
    overflow: hidden
}

.hero-h1 .line {
    display: block;
    animation: heroH1Reveal .9s cubic-bezier(.16, 1, .3, 1) both
}

.hero-h1 .line:nth-child(1) {
    animation-delay: .15s
}

.hero-h1 .line:nth-child(2) {
    animation-delay: .25s
}

.hero-h1 .line:nth-child(3) {
    animation-delay: .35s
}

.hero-h1 {
    font-family: var(--head);
    font-weight: 900;
    font-size: clamp(52px, 7.5vw, 80px);
    line-height: .91;
    letter-spacing: -.05em;
    color: var(--ink);
    margin-bottom: 26px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--red);
    display: inline-block
}

.uscore {
    position: relative;
    display: inline-block
}

.uscore svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 14px;
    overflow: visible
}

.hero-p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body);
    max-width: 420px;
    margin-bottom: 36px;
    font-weight: 500
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap
}

/* Proof strip */
.hero-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 28px;
    border-top: 1.5px solid var(--border);
}

.proof-item {
    padding: 0 20px 0 0;
    border-right: 1.5px solid var(--border)
}

.proof-item:first-child {
    padding-left: 0
}

.proof-item:last-child {
    border-right: none;
    padding-right: 0
}

.pv {
    font-family: var(--head);
    font-weight: 900;
    font-size: 24px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 5px
}

.pv .ac {
    color: var(--red)
}

.pv .ac2 {
    color: var(--amb)
}

.pl {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4
}

/* Hero right — phone mockup */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 48px
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 13, 32, .09) 0%, rgba(255, 160, 0, .03) 55%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.phone-frame {
    position: relative;
    z-index: 1;
    width: 255px;
    flex-shrink: 0;
    background: #0f0e0d;
    border-radius: 40px;
    padding: 14px 11px;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, .11), 0 8px 24px rgba(0, 0, 0, .24), 0 32px 80px rgba(0, 0, 0, .2), inset 0 0 0 1px rgba(255, 255, 255, .05);
    animation: gfloat 6s ease-in-out infinite;
}

@keyframes gfloat {
    0% {
        transform: translateY(0) rotate(0deg)
    }

    25% {
        transform: translateY(-6px) rotate(.5deg)
    }

    50% {
        transform: translateY(-10px) rotate(0deg)
    }

    75% {
        transform: translateY(-4px) rotate(-.5deg)
    }

    100% {
        transform: translateY(0) rotate(0deg)
    }
}

@keyframes gfloat2 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg)
    }

    33% {
        transform: translateY(-8px) translateX(3px) rotate(.8deg)
    }

    66% {
        transform: translateY(-4px) translateX(-2px) rotate(-.4deg)
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg)
    }
}

@keyframes gfloat3 {
    0% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(-7px) translateX(-4px)
    }

    100% {
        transform: translateY(0) translateX(0)
    }
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 26px;
    background: #0f0e0d;
    border-radius: 0 0 16px 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.notch-cam {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1a1918
}

.notch-speaker {
    width: 38px;
    height: 4px;
    border-radius: 3px;
    background: #1a1918
}

.phone-btn-r {
    position: absolute;
    right: -3px;
    top: 100px;
    width: 3px;
    height: 56px;
    background: #1a1918;
    border-radius: 0 3px 3px 0
}

.phone-btn-l1,
.phone-btn-l2 {
    position: absolute;
    left: -3px;
    background: #1a1918;
    width: 3px;
    border-radius: 3px 0 0 3px
}

.phone-btn-l1 {
    top: 76px;
    height: 34px
}

.phone-btn-l2 {
    top: 122px;
    height: 50px
}

.phone-screen {
    border-radius: 29px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 9/19.5;
    position: relative
}

/* App UI inside phone */
.app-ui {
    width: 100%;
    height: 100%;
    background: #f5f2ed;
    overflow: hidden;
    font-family: var(--sans);
    display: flex;
    flex-direction: column
}

.app-sb {
    background: #fff;
    padding: 9px 12px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0
}

.app-sb-time {
    font-size: 10px;
    font-weight: 700;
    color: #111
}

.app-sb-icons {
    display: flex;
    gap: 3px;
    align-items: center
}

.sb-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%
}

.app-header {
    background: #fff;
    padding: 5px 12px 9px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0
}

.app-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px
}

.app-logo-m {
    display: flex;
    align-items: center;
    gap: 5px
}

.app-logo-mark {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: #E10D20;
    display: grid;
    place-items: center;
    font-size: 7.5px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px
}

.app-logo-name {
    font-size: 10px;
    font-weight: 800;
    color: #111
}

.app-notif {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f5f2ed;
    display: grid;
    place-items: center;
    font-size: 11px
}

.app-addr {
    background: #f5f2ed;
    border-radius: 7px;
    padding: 6px 9px;
    display: flex;
    align-items: center;
    gap: 6px
}

.app-addr-icon {
    font-size: 10px
}

.app-addr-text {
    font-size: 9px;
    font-weight: 600;
    color: #4A4540
}

.app-scroll {
    flex: 1;
    overflow: hidden
}

.app-banner {
    margin: 9px 10px;
    border-radius: 11px;
    background: linear-gradient(135deg, #E10D20 0%, #B50E1A 100%);
    padding: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden
}

.app-banner::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -8px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07)
}

.app-banner-t {
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3
}

.app-banner-s {
    font-size: 7.5px;
    color: rgba(255, 255, 255, .7);
    margin-top: 2px
}

.app-banner-btn {
    background: #fff;
    border-radius: 18px;
    padding: 4px 9px;
    font-size: 8.5px;
    font-weight: 800;
    color: #E10D20;
    white-space: nowrap;
    z-index: 1;
    flex-shrink: 0
}

.app-cats {
    padding: 0 10px;
    margin-bottom: 6px
}

.app-cats-title {
    font-size: 9.5px;
    font-weight: 800;
    color: #111;
    margin-bottom: 7px
}

.app-cats-row {
    display: flex;
    gap: 7px
}

.app-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px
}

.app-cat-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 16px
}

.app-cat-lbl {
    font-size: 7.5px;
    font-weight: 700;
    color: #4A4540
}

.app-rests {
    padding: 0 10px
}

.app-rests-title {
    font-size: 9.5px;
    font-weight: 800;
    color: #111;
    margin-bottom: 7px
}

.app-rest {
    background: #fff;
    border-radius: 9px;
    margin-bottom: 7px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06)
}

.app-rest-img {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.app-rest-info {
    padding: 6px 8px
}

.app-rest-name {
    font-size: 9px;
    font-weight: 800;
    color: #111;
    margin-bottom: 2px
}

.app-rest-meta {
    font-size: 7.5px;
    color: #7A746E;
    display: flex;
    align-items: center;
    gap: 5px
}

.app-rest-tag {
    background: rgba(225, 13, 32, .08);
    color: #E10D20;
    font-size: 7px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px
}

.app-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 7px 0 10px;
    display: flex;
    justify-content: space-around
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 6.5px;
    font-weight: 700;
    color: #aaa
}

.app-nav-item.active {
    color: #E10D20
}

.app-nav-icon {
    font-size: 14px
}

/* Floating cards */
.earn-card {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 15px 18px;
    box-shadow: var(--sh-l);
    min-width: 168px;
    z-index: 2;
    animation: gfloat2 5.5s ease-in-out .8s infinite;
}

.ec-ey {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted);
    margin-bottom: 4px
}

.ec-val {
    font-family: var(--head);
    font-weight: 900;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 3px
}

.ec-sub {
    font-size: 10px;
    color: var(--muted)
}

.ec-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 9px;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .22);
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: #15803d
}

.order-notif {
    position: absolute;
    top: 14px;
    left: -14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: 10px 13px;
    box-shadow: var(--sh-l);
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 2;
    max-width: 192px;
    animation: gfloat3 6s ease-in-out .4s infinite;
}

.on-icon {
    font-size: 16px;
    flex-shrink: 0
}

.on-t1 {
    font-family: var(--head);
    font-weight: 800;
    font-size: 11.5px;
    color: var(--ink);
    line-height: 1.2
}

.on-t2 {
    font-size: 9.5px;
    color: var(--muted);
    margin-top: 2px
}

.on-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .18);
    flex-shrink: 0;
    animation: lpulse 2s ease-in-out infinite
}

/* Ticker */
.ticker {
    background: var(--ink);
    overflow: hidden;
    margin: 0 -56px;
    padding: 13px 0;
    position: relative;
    z-index: 1
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--ink), transparent)
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ink), transparent)
}

.ticker-t {
    display: flex;
    width: max-content;
    animation: xtick 36s linear infinite
}

.ticker:hover .ticker-t {
    animation-play-state: paused
}

@keyframes xtick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ti {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 36px;
    white-space: nowrap;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
    border-right: 1px solid rgba(255, 255, 255, .06)
}

.ti.hi {
    color: rgba(255, 255, 255, .88)
}

.td {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0
}

.ti.hi .td {
    background: var(--amb)
}

/* ══════════════════════════════════════════════
   FEATURES — "Simples, assim"
══════════════════════════════════════════════ */
.features {
    background: var(--surf);
    padding: 112px 56px
}

.features-in {
    max-width: 1180px;
    margin: 0 auto
}

.features-head {
    text-align: center;
    margin-bottom: 64px
}

.features-sub {
    font-size: 17px;
    color: var(--body);
    font-weight: 500;
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65
}

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

.feat {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 36px 28px 38px;
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .35s, border-color .25s;
}

.feat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--red), var(--amb));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .38s var(--ease-out);
}

.feat:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .09), 0 24px 56px rgba(0, 0, 0, .08);
    border-color: transparent
}

.feat:hover::after {
    transform: scaleX(1)
}

.feat:hover .feat-ico {
    background: var(--red-xl);
    transform: scale(1.12) rotate(-3deg)
}

.feat-ico {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--surf);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: background .25s, transform .3s var(--ease-spring);
}

.feat h3 {
    font-family: var(--head);
    font-weight: 800;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 10px
}

.feat p {
    font-size: 14px;
    line-height: 1.72;
    color: var(--body);
    font-weight: 500
}

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
    background: var(--ink2);
    padding: 96px 56px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(225, 13, 32, .1), transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cta-inner .h {
    margin-bottom: 20px
}

.cta-p {
    font-size: 17px;
    color: rgba(255, 255, 255, .43);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 36px
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════════ */
.blog-preview {
    background: var(--bg);
    padding: 112px 56px
}

.blog-in {
    max-width: 1180px;
    margin: 0 auto
}

.blog-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px
}

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

.blog-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .35s, border-color .25s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-m);
    border-color: transparent
}

.blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    overflow: hidden;
}

.blog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .1) 100%)
}

.blog-body {
    padding: 22px 22px 24px
}

.blog-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-xl);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-family: var(--head);
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.3;
    margin-bottom: 8px
}

.blog-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500
}

.blog-date {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about {
    background: var(--surf);
    padding: 112px 56px
}

.about-in {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-visual {
    background: linear-gradient(135deg, var(--ink2) 0%, #1a1918 50%, var(--ink2) 100%);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 30% 80%, rgba(225, 13, 32, .12), transparent 60%);
}

.about-logo-big {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--red);
    display: grid;
    place-items: center;
    font-family: var(--head);
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    letter-spacing: -1px;
    box-shadow: 0 8px 32px rgba(225, 13, 32, .4);
    position: relative;
    z-index: 1;
}

.about-visual-name {
    font-family: var(--head);
    font-weight: 800;
    font-size: 18px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .06em;
    text-transform: uppercase;
    position: relative;
    z-index: 1
}

.about-visual-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .28);
    font-weight: 500;
    position: relative;
    z-index: 1
}

.about-badges {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1
}

.about-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35)
}

.about-text-side {
    position: relative
}

.about-mission {
    font-size: 16px;
    font-style: italic;
    line-height: 1.72;
    color: var(--body);
    border-left: 3px solid var(--red);
    padding: 14px 0 14px 20px;
    margin: 18px 0 24px;
    position: relative;
}

.about-p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    font-weight: 500;
    margin-bottom: 18px
}

.about-vals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px
}

.aval {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    transition: transform .28s var(--ease-spring), box-shadow .22s, border-color .22s;
}

.aval:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--sh-m);
    border-color: transparent
}

.aval-icon {
    font-size: 22px;
    margin-bottom: 8px
}

.aval-title {
    font-family: var(--head);
    font-weight: 800;
    font-size: 14px;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: 4px
}

.aval-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 500
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    background: #0A0908;
    padding: 72px 56px 36px
}

.foot-in {
    max-width: 1180px;
    margin: 0 auto
}

.foot-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 28px;
}

.foot-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .28);
    margin-top: 14px;
    font-weight: 500
}

.foot-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.fct {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 14px
}

.fcl {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fcl a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .43);
    font-weight: 500;
    transition: color .25s;
    position: relative;
    display: inline;
    background: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5)) no-repeat right bottom;
    background-size: 0 1px;
    transition: color .25s, background-size .35s cubic-bezier(.16, 1, .3, 1);
    padding-bottom: 1px;
}

.fcl a:hover {
    color: #fff;
    background-size: 100% 1px;
    background-position: left bottom
}

.foot-btm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.foot-copy,
.foot-cnpj {
    font-size: 12px;
    color: rgba(255, 255, 255, .2);
    font-weight: 500
}

/* Dividers */
.divider-diag {
    height: 60px;
    overflow: hidden;
    position: relative;
    margin: 0;
    z-index: 1
}

.divider-diag.surf-to-bg {
    background: var(--surf)
}

.divider-diag.surf-to-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 40%, 100% 100%)
}

.divider-diag.bg-to-surf {
    background: var(--bg)
}

.divider-diag.bg-to-surf::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--surf);
    clip-path: polygon(0 40%, 100% 100%, 0 100%)
}

.divider-diag.dark-to-bg {
    background: var(--ink2)
}

.divider-diag.dark-to-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 30%, 100% 100%)
}

.divider-diag.bg-to-dark {
    background: var(--bg)
}

.divider-diag.bg-to-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--ink2);
    clip-path: polygon(0 30%, 100% 100%, 0 100%)
}

.divider-diag.surf-to-dark {
    background: var(--surf)
}

.divider-diag.surf-to-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--ink2);
    clip-path: polygon(0 40%, 100% 100%, 0 100%)
}

.divider-diag.bg-to-foot {
    background: var(--bg)
}

.divider-diag.bg-to-foot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #0A0908;
    clip-path: polygon(0 30%, 100% 100%, 0 100%)
}

/* WhatsApp */
.wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 180;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
    transition: transform .35s var(--ease-spring), box-shadow .3s;
    animation: waBounce 3s ease-in-out infinite;
}

@keyframes waBounce {

    0%,
    100% {
        transform: scale(1)
    }

    15% {
        transform: scale(1.08)
    }

    30% {
        transform: scale(1)
    }
}

.wa::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2.5px solid rgba(37, 211, 102, .3);
    animation: wa-ring 3s ease-in-out infinite
}

@keyframes wa-ring {
    0% {
        transform: scale(1);
        opacity: .8
    }

    70% {
        transform: scale(1.5);
        opacity: 0
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

.wa:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55)
}

/* Page loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s .2s, visibility .5s .2s;
}

.page-loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-logo {
    font-family: var(--head);
    font-weight: 900;
    font-size: 28px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: loaderIn .6s var(--ease-out) .1s both
}

.loader-mark {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--red);
    display: grid;
    place-items: center;
    font-size: 15px;
    color: #fff;
    letter-spacing: -1px;
    box-shadow: 0 0 40px rgba(225, 13, 32, .5)
}

@keyframes loaderIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

/* Scroll animations */
.fd {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
    will-change: opacity, transform
}

.fd.on {
    opacity: 1;
    transform: translateY(0)
}

.fd.d1 {
    transition-delay: .12s
}

.fd.d2 {
    transition-delay: .24s
}

.fd.d3 {
    transition-delay: .36s
}

.fd-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.fd-l.on {
    opacity: 1;
    transform: translateX(0)
}

.fd-r {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.fd-r.on {
    opacity: 1;
    transform: translateX(0)
}

.fd-s {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.fd-s.on {
    opacity: 1;
    transform: scale(1)
}

.fd-r.d1,
.fd-l.d1,
.fd-s.d1 {
    transition-delay: .12s
}

.fd-r.d2,
.fd-l.d2,
.fd-s.d2 {
    transition-delay: .24s
}

/* Ripple */
.ripple-wrap {
    position: relative;
    overflow: hidden
}

.ripple-wrap .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transform: scale(0);
    animation: rippleAnim .6s ease-out;
    pointer-events: none
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:1024px) {
    .nav {
        padding: 16px 32px
    }

    .nav-links {
        display: none
    }

    .nav-ham {
        display: flex
    }

    .hero {
        padding: 100px 32px 0
    }

    .hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 56px
    }

    .hero-right {
        display: none
    }

    .ticker {
        margin: 0 -32px
    }

    .features {
        padding: 80px 32px
    }

    .features-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-section {
        padding: 80px 32px
    }

    .blog-preview {
        padding: 80px 32px
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr
    }

    .about {
        padding: 80px 32px
    }

    .about-in {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .about-vals {
        grid-template-columns: 1fr 1fr
    }

    .footer {
        padding: 56px 32px 28px
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .foot-cols {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {
    .nav {
        padding: 14px 20px
    }

    .hero {
        padding: 86px 20px 0
    }

    .hero-body {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 0
    }

    .hero-right {
        display: flex !important;
        padding: 0 0 32px;
        margin: 0 -20px;
        justify-content: center;
        background: var(--bg);
    }

    .phone-frame {
        width: 220px
    }

    .earn-card {
        right: -8px;
        bottom: 44px;
        min-width: 148px;
        padding: 12px 14px
    }

    .ec-val {
        font-size: 18px
    }

    .order-notif {
        left: -8px;
        top: 16px;
        max-width: 170px;
        padding: 8px 11px
    }

    .on-t1 {
        font-size: 11px
    }

    .hero-h1 {
        font-size: clamp(44px, 12vw, 64px)
    }

    .hero-proof {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 1.5px solid var(--border);
        padding-top: 0;
        margin-top: 28px
    }

    .proof-item {
        padding: 18px 14px;
        border-right: 1.5px solid var(--border);
        border-bottom: 1.5px solid var(--border)
    }

    .proof-item:nth-child(2) {
        border-right: none
    }

    .proof-item:nth-child(3) {
        border-bottom: none
    }

    .proof-item:nth-child(4) {
        border-right: none;
        border-bottom: none
    }

    .proof-item:first-child {
        padding-left: 14px
    }

    .pv {
        font-size: 20px
    }

    .ticker {
        margin: 0 -20px
    }

    .features {
        padding: 64px 20px
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .cta-section {
        padding: 64px 20px
    }

    .blog-preview {
        padding: 64px 20px
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .about {
        padding: 64px 20px
    }

    .about-in {
        grid-template-columns: 1fr
    }

    .about-vals {
        grid-template-columns: 1fr
    }

    .footer {
        padding: 48px 20px 24px
    }

    .foot-cols {
        grid-template-columns: 1fr 1fr
    }

    .wa {
        bottom: 24px;
        right: 20px
    }
}