/* =====================================================
   PayoApps Landing — Crimson Edition
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg-dark: #07060a;
    --bg-surface: #0c0a10;
    --bg-card: rgba(15, 12, 17, 0.55);
    --bg-card-strong: rgba(18, 14, 22, 0.85);
    --primary: #ffffff;
    --secondary: #a1a1aa;
    --muted: #6e6873;

    --crimson: #ff2d4f;
    --crimson-deep: #d11237;
    --crimson-light: #ff5773;
    --crimson-glow: rgba(255, 45, 79, 0.45);
    --crimson-soft: rgba(255, 45, 79, 0.10);
    --crimson-dim: rgba(255, 45, 79, 0.18);
    --crimson-grad: linear-gradient(135deg, #ff2d4f 0%, #ff5773 50%, #d11237 100%);

    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 45, 79, 0.32);
    --success: #10b981;

    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { background: var(--bg-dark); }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior: none;
}

::selection { background: var(--crimson-dim); color: white; }

/* ===== Background fx ===== */
.bg-grid {
    position: fixed; inset: 0; z-index: -3;
    background-image:
        linear-gradient(rgba(255, 45, 79, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 79, 0.045) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 90%);
}

.bg-aurora {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(255, 45, 79, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 35%, rgba(140, 20, 60, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 45, 79, 0.10) 0%, transparent 60%);
    filter: blur(60px);
    animation: auroraDrift 24s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(-3%, 3%) scale(1.05); }
}

.bg-noise {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    opacity: 0.04;
    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='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ===== Layout ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ===== Header ===== */
.site-header {
    height: 72px;
    display: flex; align-items: center;
    position: fixed; top: 0; width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(7,6,10,0.6) 0%, transparent 100%);
    transition: all 0.35s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(7,6,10,0.85);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%;
}

.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-weight: 800; font-size: 18px;
    color: white; letter-spacing: -0.02em;
}
.logo-mark {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--crimson-grad);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-size: 17px;
    box-shadow: 0 8px 24px var(--crimson-glow), inset 0 1px 0 rgba(255,255,255,0.25);
    letter-spacing: -0.04em;
    position: relative;
    overflow: hidden;
}
.logo-mark::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
    animation: brandShine 4s ease-in-out infinite;
}
@keyframes brandShine { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }
.logo-text em { color: var(--crimson); font-style: normal; }

.nav-pill {
    display: flex; gap: 32px; align-items: center;
    background: rgba(255,255,255,0.025);
    padding: 8px 28px;
    border-radius: 99px;
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}
.nav-pill a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: 0.25s; position: relative;
}
.nav-pill a:hover { color: white; }
.nav-pill a:hover::after {
    content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--crimson);
    box-shadow: 0 0 8px var(--crimson-glow);
}

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

/* ===== Buttons ===== */
.btn {
    padding: 11px 22px;
    border-radius: 11px;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid transparent;
    font-family: inherit;
    white-space: nowrap;
}
.btn-primary {
    background: var(--crimson-grad);
    color: white;
    box-shadow: 0 14px 36px var(--crimson-glow);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px var(--crimson-glow);
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    backdrop-filter: blur(12px);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--border-hover);
}

.btn-ghost-light {
    background: transparent;
    color: var(--secondary);
    padding: 10px 16px;
}
.btn-ghost-light:hover { color: white; background: rgba(255,255,255,0.04); }

.btn-lg { padding: 16px 28px; font-size: 15.5px; border-radius: 13px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

.i-xs { width: 12px; height: 12px; }
.i-sm { width: 14px; height: 14px; }
.i-md { width: 18px; height: 18px; }

/* ===== Hero ===== */
.hero {
    padding: 90px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px 7px 14px;
    background: rgba(255, 45, 79, 0.07);
    border: 1px solid var(--crimson-dim);
    border-radius: 99px;
    font-size: 13px; font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(20px);
}
.hero-badge:hover { border-color: var(--crimson); transform: translateY(-1px); box-shadow: 0 8px 22px var(--crimson-glow); }
.hero-badge b { color: var(--crimson); font-weight: 700; }
.badge-pulse {
    width: 8px; height: 8px;
    background: var(--crimson); border-radius: 50%;
    box-shadow: 0 0 14px var(--crimson);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(48px, 7.5vw, 88px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #c5c0c8 50%, #ff5773 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.crimson-text {
    color: var(--crimson);
    background: linear-gradient(135deg, #ff5773 0%, #ff2d4f 50%, #d11237 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 80px var(--crimson-glow);
}

.hero-sub {
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--secondary);
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.6;
    font-weight: 400;
}
.hero-sub strong { color: white; font-weight: 600; }

.hero-actions {
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Trust */
.hero-trust {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 12px 22px 12px 12px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 99px;
    backdrop-filter: blur(14px);
}
.trust-avatars { display: flex; }
.trust-avatars .avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
    background: linear-gradient(135deg, #ff5773, #d11237);
}
.trust-avatars .avatar:first-child { margin-left: 0; }
.trust-avatars .a2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.trust-avatars .a3 { background: linear-gradient(135deg, #10b981, #059669); }
.trust-avatars .a4 { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.trust-avatars .a5 { background: linear-gradient(135deg, #a855f7, #7c3aed); }

.trust-meta { font-size: 13px; color: var(--secondary); text-align: left; }
.trust-meta b { color: white; font-weight: 700; }
.stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; line-height: 1; margin-bottom: 2px; }

/* Live ticker */
.live-ticker {
    margin-top: 90px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    display: flex; align-items: center; gap: 22px;
    overflow: hidden;
    text-align: left;
}
.ticker-label {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--secondary);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
    padding-right: 22px;
    border-right: 1px solid var(--border);
}
.ticker-label .dot.live {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s ease-in-out infinite;
}
.ticker-track {
    display: flex; gap: 48px;
    flex-shrink: 0;
    animation: tickerScroll 28s linear infinite;
    white-space: nowrap;
    font-size: 14px; color: var(--secondary);
}
.ticker-track span b { color: white; font-weight: 700; }
.ticker-track span i { color: var(--crimson); font-style: normal; font-weight: 600; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Meteors */
.meteor-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.meteor {
    position: absolute;
    width: 240px; height: 1px;
    background: linear-gradient(90deg, var(--crimson), transparent);
    animation: meteor-fall linear infinite;
    opacity: 0.65;
}
.meteor::before {
    content: '';
    position: absolute;
    width: 4px; height: 4px; border-radius: 50%;
    background: white; top: 50%; transform: translateY(-50%); left: 0;
    box-shadow: 0 0 14px 2px var(--crimson);
}
@keyframes meteor-fall {
    0% { transform: rotate(215deg) translateX(0); opacity: 1; }
    70% { opacity: 1; }
    100% { transform: rotate(215deg) translateX(-1800px); opacity: 0; }
}

/* ===== Logos strip ===== */
.logos-strip {
    padding: 50px 0 40px;
    border-bottom: 1px solid var(--border);
}
.logos-label {
    text-align: center; color: var(--muted); font-size: 12px;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 28px;
}
.logos-row {
    display: flex; justify-content: center; align-items: center;
    gap: 60px; flex-wrap: wrap;
    color: var(--secondary); font-size: 18px; font-weight: 600;
}
.logos-row span { transition: 0.25s; opacity: 0.6; }
.logos-row span:hover { opacity: 1; color: var(--crimson); transform: scale(1.05); }

/* ===== Section base ===== */
.section { padding: 60px 0; position: relative; }
.section-eyebrow {
    color: var(--crimson); font-size: 13px;
    font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 18px; text-align: center;
}
.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800; letter-spacing: -0.025em;
    margin-bottom: 18px; text-align: center; line-height: 1.1;
}
.section-lead {
    text-align: center; max-width: 640px; margin: 0 auto;
    color: var(--secondary); font-size: 17px; line-height: 1.6;
}
.section-head { margin-bottom: 44px; }

/* ===== Impact ===== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}
.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(20px);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}
.impact-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--crimson-grad);
    opacity: 0.6;
}
.impact-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 28px 60px rgba(255,45,79,0.15);
}
.impact-num {
    font-size: 56px; font-weight: 900;
    background: var(--crimson-grad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    line-height: 1; letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 14px;
}
.impact-label {
    font-size: 15px; color: white; font-weight: 700;
    margin-bottom: 8px;
}
.impact-desc { font-size: 13.5px; color: var(--secondary); line-height: 1.55; }

@media (max-width: 1024px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .impact-grid { grid-template-columns: 1fr; } }

/* ===== Features Bento ===== */
.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 22px;
}
.feat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}
.feat:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.5);
}
.feat::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(400px circle at var(--x, 50%) var(--y, 50%), var(--crimson-soft), transparent 50%);
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}
.feat:hover::before { opacity: 1; }
.feat > * { position: relative; z-index: 1; }
.feat-tall { grid-row: span 2; }
.feat-wide { grid-column: span 2; }
.crimson-feat {
    background: linear-gradient(135deg, rgba(255,45,79,0.12) 0%, rgba(255,45,79,0.02) 100%);
    border-color: var(--crimson-dim);
}

.feat-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: white;
    transition: 0.3s;
}
.feat-icon i { width: 22px; height: 22px; }
.feat-icon.crimson {
    background: var(--crimson-grad);
    border-color: var(--crimson);
    box-shadow: 0 8px 22px var(--crimson-glow);
}
.feat:hover .feat-icon {
    background: var(--crimson-grad);
    border-color: var(--crimson);
    box-shadow: 0 8px 22px var(--crimson-glow);
    transform: scale(1.05) rotate(-4deg);
}

.feat h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.feat p { color: var(--secondary); font-size: 14px; line-height: 1.55; font-weight: 400; }

.feat-tag {
    margin-top: auto;
    align-self: flex-start;
    padding: 5px 12px;
    background: var(--crimson);
    color: white;
    border-radius: 99px;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 18px var(--crimson-glow);
}

/* mini-pix-anim inside PIX feature card */
.mini-pix-anim {
    margin-top: auto;
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
    padding: 18px;
    background: rgba(0,0,0,0.4);
    border-radius: 14px;
    border: 1px solid var(--border);
}
.mini-qr {
    width: 56px; height: 56px;
    background-image:
        linear-gradient(white 2px, transparent 2px),
        linear-gradient(90deg, white 2px, transparent 2px);
    background-size: 8px 8px;
    background-color: rgba(255,255,255,0.05);
    border: 2px solid white;
    border-radius: 6px;
    opacity: 0.85;
    animation: pulse 2.5s ease-in-out infinite;
}
.mini-arrow {
    color: var(--crimson);
    animation: arrowSlide 2s ease-in-out infinite;
}
.mini-arrow i { width: 22px; height: 22px; }
@keyframes arrowSlide { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.mini-check {
    color: var(--success);
    background: rgba(16,185,129,0.12);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(16,185,129,0.4);
    animation: checkPop 2.5s ease-in-out infinite;
}
.mini-check i { width: 24px; height: 24px; }
@keyframes checkPop {
    0%, 60% { transform: scale(0.85); opacity: 0.5; }
    70%, 100% { transform: scale(1); opacity: 1; }
}

/* mini-chart in analytics card */
.mini-chart {
    margin-top: auto;
    display: flex; align-items: flex-end; gap: 6px; height: 80px;
    padding-top: 14px;
}
.mini-chart .bar {
    flex: 1;
    background: linear-gradient(180deg, var(--crimson) 0%, rgba(255, 45, 79, 0.2) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 14px;
    box-shadow: 0 0 12px rgba(255, 45, 79, 0.3);
    animation: barGrow 1.6s ease-out;
    transform-origin: bottom;
}
.mini-chart .bar.tall {
    background: linear-gradient(180deg, white 0%, var(--crimson) 100%);
    box-shadow: 0 0 18px var(--crimson-glow);
}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (max-width: 1024px) {
    .features-bento { grid-template-columns: repeat(2, 1fr); }
    .feat-wide { grid-column: span 2; }
    .feat-tall { grid-row: span 1; }
}
@media (max-width: 640px) {
    .features-bento { grid-template-columns: 1fr; }
    .feat-wide { grid-column: span 1; }
}

/* ===== Bumps deep dive ===== */
.bumps-section { padding-top: 40px; }
.bumps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.bumps-copy .section-eyebrow,
.bumps-copy .section-title { text-align: left; }
.bumps-copy .section-title { font-size: clamp(34px, 4vw, 48px); }

.bumps-list { display: flex; flex-direction: column; gap: 22px; }
.bump-item {
    display: flex; gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: 0.3s;
}
.bump-item:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
    background: var(--bg-card-strong);
}
.bump-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--crimson-grad);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 14px;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 22px var(--crimson-glow);
    font-family: 'JetBrains Mono', monospace;
}
.bump-item h4 { font-size: 17px; color: white; margin-bottom: 4px; font-weight: 700; }
.bump-item p { font-size: 14px; color: var(--secondary); line-height: 1.55; }
.bump-item p b { color: var(--crimson); }

/* Discord mock */
.discord-mock { position: relative; }
.discord-window {
    background: linear-gradient(180deg, #1d181f 0%, #14101a 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 50px 120px rgba(0,0,0,0.85),
        0 0 0 1px var(--crimson-dim),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}
.discord-titlebar {
    height: 36px;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; gap: 8px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dwin-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dwin-dot.red { background: #ff5f56; }
.dwin-dot.yellow { background: #ffbd2e; }
.dwin-dot.green { background: #27c93f; }
.dwin-title { margin-left: 14px; color: var(--secondary); font-size: 13px; font-weight: 500; }

.discord-body {
    padding: 22px;
    min-height: 380px;
    background:
        radial-gradient(ellipse at top right, rgba(255,45,79,0.07), transparent 50%);
}

.discord-msg { display: flex; gap: 14px; }
.dmsg-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--crimson-grad);
    color: white; font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px var(--crimson-glow);
}
.dmsg-content { flex: 1; }
.dmsg-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.dmsg-head b { color: white; font-size: 14.5px; font-weight: 600; }
.bot-tag {
    background: var(--crimson);
    color: white; font-size: 9.5px; font-weight: 700;
    padding: 2px 5px; border-radius: 3px;
    letter-spacing: 0.05em;
}
.dmsg-time { color: var(--muted); font-size: 11.5px; }

.discord-embed {
    background: #1a151c;
    border-left: 4px solid var(--secondary);
    border-radius: 6px;
    padding: 14px 16px;
    margin-top: 8px;
    display: flex; gap: 14px;
}
.discord-embed.crimson-embed {
    border-left-color: var(--crimson);
    box-shadow: 0 0 24px rgba(255,45,79,0.15);
}
.embed-content { flex: 1; }
.embed-title { color: white; font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.embed-desc { color: #c8c5cd; font-size: 13px; line-height: 1.5; margin-bottom: 12px; }
.embed-desc b { color: white; font-weight: 600; }
.embed-fields { display: flex; gap: 18px; }
.embed-field .ef-name { color: var(--muted); font-size: 11px; font-weight: 600; margin-bottom: 2px; }
.embed-field .ef-val { color: white; font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }

.discord-buttons { margin-top: 8px; display: flex; gap: 8px; }
.dbtn {
    border: none; cursor: pointer;
    padding: 9px 14px;
    border-radius: 4px;
    font-family: inherit; font-size: 13px; font-weight: 600;
    transition: 0.2s;
}
.dbtn-primary {
    background: #248046; color: white;
    box-shadow: 0 4px 12px rgba(36,128,70,0.4);
}
.dbtn-primary:hover { background: #2da55a; }
.dbtn-ghost {
    background: rgba(255,255,255,0.05); color: white;
    border: 1px solid rgba(255,255,255,0.1);
}
.dbtn-ghost:hover { background: rgba(255,255,255,0.1); }

.discord-typing {
    margin-top: 18px;
    display: flex; align-items: center; gap: 8px;
    color: var(--muted); font-size: 12px; font-style: italic;
}
.discord-typing span {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--muted);
    animation: typingBounce 1.2s infinite;
}
.discord-typing span:nth-child(2) { animation-delay: 0.15s; }
.discord-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* float tags */
.float-tag {
    position: absolute;
    background: var(--bg-card-strong);
    border: 1px solid var(--crimson-dim);
    color: white;
    padding: 8px 14px;
    border-radius: 99px;
    font-size: 13px; font-weight: 600;
    backdrop-filter: blur(20px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.5), 0 0 18px var(--crimson-glow);
    animation: floatTag 4s ease-in-out infinite;
}
.float-tag.t1 { top: -18px; right: -22px; }
.float-tag.t2 { bottom: 30px; left: -30px; animation-delay: 1.5s; }
@keyframes floatTag {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@media (max-width: 1024px) {
    .bumps-grid { grid-template-columns: 1fr; gap: 60px; }
    .bumps-copy .section-eyebrow,
    .bumps-copy .section-title { text-align: center; }
    .float-tag.t1 { right: 10px; }
    .float-tag.t2 { left: 10px; }
}

/* ===== Showcase / Dashboard mock ===== */
.glass-preview {
    background: linear-gradient(180deg, rgba(20,16,22,0.7) 0%, rgba(8,7,10,0.95) 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 18px;
    max-width: 1180px;
    margin: 0 auto;
    box-shadow: 0 60px 140px rgba(0,0,0,0.9), 0 0 0 1px var(--crimson-dim);
}
.preview-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 16px; padding: 4px 8px;
    position: relative;
}
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.preview-url {
    position: absolute; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    color: var(--secondary);
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
}
.preview-content {
    background: #08070a;
    border-radius: 16px;
    height: 600px;
    display: flex;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    position: relative;
}
.preview-content::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% -10%, rgba(255,45,79,0.10) 0%, transparent 50%);
    pointer-events: none;
}
.dashboard-mockup { width: 100%; }

/* Mockup sidebar */
.mockup-sidebar {
    width: 230px;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 22px 14px;
    display: flex; flex-direction: column; gap: 4px;
    background: rgba(7,6,10,0.85);
    overflow: hidden;
}
.m-brand {
    display: flex; align-items: center; gap: 10px;
    padding: 0 8px 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--border);
    font-weight: 800; font-size: 14px;
    color: white;
}
.m-brand-mark {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: var(--crimson-grad);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 13px;
    box-shadow: 0 4px 12px var(--crimson-glow);
}
.m-section-t {
    font-size: 9.5px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.14em;
    font-weight: 700; padding: 14px 12px 6px;
}
.m-item {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--secondary);
    font-size: 12.5px; font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}
.m-item i { width: 14px; height: 14px; }
.m-item:hover { background: rgba(255,255,255,0.04); color: white; }
.m-item.active {
    background: linear-gradient(90deg, rgba(255,45,79,0.12), rgba(255,45,79,0.02));
    color: white;
    border: 1px solid var(--crimson-dim);
}
.m-item.active i { color: var(--crimson); }
.m-item.highlight i { color: var(--crimson); }
.m-badge {
    margin-left: auto;
    background: var(--crimson);
    color: white;
    font-size: 8.5px; font-weight: 800;
    padding: 1px 5px;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

/* Mockup body */
.mockup-body {
    flex: 1;
    padding: 28px;
    display: flex; flex-direction: column; gap: 22px;
    overflow: hidden;
}
.mockup-header {
    display: flex; justify-content: space-between; align-items: center;
}
.m-page-title { font-size: 18px; color: white; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.m-bar { width: 4px; height: 18px; border-radius: 2px; background: var(--crimson-grad); box-shadow: 0 0 10px var(--crimson-glow); }
.m-actions { display: flex; gap: 10px; align-items: center; }
.m-search {
    width: 180px;
    padding: 7px 14px;
    border-radius: 9px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--muted); font-size: 12px;
    display: flex; align-items: center; gap: 8px;
}
.m-search i { width: 13px; height: 13px; }
.m-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--crimson-grad);
    box-shadow: 0 4px 10px var(--crimson-glow);
}

.mockup-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.m-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px;
    display: flex; flex-direction: column;
    transition: 0.3s;
}
.m-card:hover { border-color: var(--crimson-dim); transform: translateY(-2px); }
.m-card-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 12px;
}
.m-card-label { font-size: 11px; color: var(--secondary); font-weight: 600; }
.m-card-ico {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
}
.m-card-ico i { width: 14px; height: 14px; }
.m-card-ico.crimson {
    background: rgba(255,45,79,0.14);
    color: var(--crimson);
    border: 1px solid var(--crimson-dim);
}
.m-card-val {
    font-size: 22px; color: white; font-weight: 800;
    letter-spacing: -0.02em; line-height: 1;
    font-variant-numeric: tabular-nums;
}
.m-card-delta {
    margin-top: 8px;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700;
}
.m-card-delta i { width: 12px; height: 12px; }
.m-card-delta.up { color: var(--success); }

.m-bottom {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px;
    flex: 1;
}
.m-chart, .m-funnel {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px;
    display: flex; flex-direction: column;
}
.m-chart-head { font-size: 12px; color: white; font-weight: 700; margin-bottom: 14px; }
.m-chart-bars {
    display: flex; align-items: flex-end; gap: 5px;
    flex: 1;
}
.m-chart-bars span {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--crimson) 0%, rgba(255,45,79,0.2) 100%);
    border-radius: 3px 3px 0 0;
    min-height: 6px;
    box-shadow: 0 0 8px rgba(255,45,79,0.2);
}

.m-funnel-stage {
    position: relative;
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 10px;
    margin-bottom: 4px;
    border-radius: 7px;
    background: rgba(0,0,0,0.3);
    overflow: hidden;
    font-size: 11px;
}
.m-funnel-stage span { color: var(--secondary); font-weight: 500; z-index: 1; }
.m-funnel-stage b { color: white; font-weight: 800; z-index: 1; font-variant-numeric: tabular-nums; }
.m-funnel-bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: var(--w);
    background: linear-gradient(90deg, var(--crimson-soft), transparent);
    border-right: 2px solid var(--crimson);
    z-index: 0;
}

/* ===== How it works ===== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step;
}
.how-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    text-align: left;
    position: relative;
}
.how-step:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.how-num {
    width: 42px; height: 42px;
    background: var(--crimson-grad);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px var(--crimson-glow);
    font-family: 'JetBrains Mono', monospace;
}
.how-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.how-step p { color: var(--secondary); font-size: 14px; line-height: 1.55; }

@media (max-width: 1024px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .how-grid { grid-template-columns: 1fr; } }

/* ===== Pricing ===== */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    margin-top: 50px;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 38px 30px;
    backdrop-filter: blur(20px);
    transition: 0.35s;
    position: relative;
    display: flex; flex-direction: column;
}
.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.price-card.popular {
    background: linear-gradient(180deg, rgba(255,45,79,0.10) 0%, var(--bg-card) 100%);
    border-color: var(--crimson);
    box-shadow: 0 30px 70px var(--crimson-glow);
    transform: translateY(-12px);
}
.popular-tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--crimson-grad);
    color: white;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 22px var(--crimson-glow);
    white-space: nowrap;
}
.price-tier {
    font-size: 14px; color: var(--secondary);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
}
.price-amount {
    font-size: 56px; color: white; font-weight: 900;
    letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
    display: flex; align-items: baseline; gap: 6px;
}
.price-amount .currency { font-size: 22px; color: var(--secondary); font-weight: 600; }
.price-amount .cents { font-size: 18px; color: var(--secondary); font-weight: 600; margin-left: 4px; }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.price-desc { color: var(--secondary); font-size: 14.5px; line-height: 1.55; margin-bottom: 26px; }

.price-feats { list-style: none; flex: 1; margin-bottom: 28px; }
.price-feats li {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 0;
    color: white; font-size: 14.5px;
    border-bottom: 1px dashed var(--border);
}
.price-feats li:last-child { border-bottom: none; }
.price-feats li i { width: 17px; height: 17px; color: var(--crimson); flex-shrink: 0; }
.price-feats li b { color: var(--crimson); }
.price-feats li.dim { color: var(--muted); }
.price-feats li.dim i { color: var(--muted); }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 50px auto 0; } .price-card.popular { transform: none; } .pricing-hero { grid-template-columns: 1fr !important; } }
@media (max-width: 640px) { .pricing-hero div[style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; } }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column; gap: 16px;
    transition: 0.3s;
}
.testi:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testi-stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }
.testi p {
    color: white;
    font-size: 16px; line-height: 1.6;
    font-weight: 400;
    flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--crimson-grad);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 16px;
}
.testi-name { font-weight: 700; color: white; font-size: 14px; }
.testi-role { font-size: 12.5px; color: var(--muted); }

@media (max-width: 1024px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    backdrop-filter: blur(14px);
    transition: 0.3s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item summary {
    cursor: pointer;
    font-size: 16px; font-weight: 600;
    color: white;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px; color: var(--crimson); font-weight: 300;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 14px;
    color: var(--secondary);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ===== CTA Final ===== */
.cta-section { padding: 100px 0 140px; }
.cta-card {
    background: linear-gradient(180deg, rgba(35,15,25,0.9) 0%, rgba(8,7,10,1) 100%);
    padding: 100px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--crimson-dim);
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0,0,0,0.85), 0 0 0 1px var(--crimson-dim);
    text-align: center;
}
.cta-glow {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 90%; height: 350px;
    background: radial-gradient(ellipse, var(--crimson-glow), transparent 70%);
    pointer-events: none;
}
.cta-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,45,79,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,45,79,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-eyebrow {
    color: var(--crimson); font-size: 13px;
    font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 20px;
}
.cta-card h2 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    color: white;
}
.cta-card p {
    font-size: 18px; color: var(--secondary);
    max-width: 580px; margin: 0 auto 40px; line-height: 1.6;
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-cta {
    padding: 20px 38px !important;
    font-size: 17px !important;
}
.cta-trust {
    display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
    color: var(--secondary); font-size: 13.5px; font-weight: 500;
}
.cta-trust span { display: inline-flex; align-items: center; gap: 6px; }
.cta-trust i { color: var(--success); }

/* ===== Footer ===== */
.site-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.4);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.foot-brand p {
    color: var(--secondary);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 18px 0 22px;
    max-width: 320px;
}
.foot-social { display: flex; gap: 10px; }
.foot-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
    transition: 0.25s;
}
.foot-social a i { width: 16px; height: 16px; }
.foot-social a:hover { color: var(--crimson); border-color: var(--crimson-dim); background: var(--crimson-soft); transform: translateY(-2px); }

.foot-col h5 {
    font-size: 13px; font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}
.foot-col a {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.2s;
}
.foot-col a:hover { color: var(--crimson); }

.foot-bottom {
    display: flex; justify-content: space-between;
    padding-top: 28px; border-top: 1px solid var(--border);
    color: var(--muted); font-size: 13px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Responsive global ===== */
@media (max-width: 1024px) {
    .nav-pill { display: none; }
    .hero { padding: 130px 0 70px; }
    .section { padding: 80px 0; }
    .preview-content { height: 480px; }
    .mockup-sidebar { width: 180px; padding: 16px 8px; }
    .mockup-body { padding: 18px; }
    .mockup-grid { grid-template-columns: repeat(2, 1fr); }
    .m-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero-actions { flex-direction: column; align-items: stretch; padding: 0 30px; }
    .hero-trust { flex-direction: column; gap: 10px; padding: 16px; border-radius: 22px; text-align: center; }
    .live-ticker { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ticker-label { padding-right: 0; border-right: none; padding-bottom: 12px; border-bottom: 1px solid var(--border); width: 100%; }
    .preview-content { height: 380px; }
    .mockup-sidebar { display: none; }
    .mockup-grid { grid-template-columns: 1fr; }
    .glass-preview { padding: 12px; border-radius: 18px; }
    .cta-card { padding: 60px 24px; }
}

/* =====================================================
   ===== RESPONSIVIDADE COMPLETA — Landing v2 ==========
   ===================================================== */

/* Guard horizontal SEM travar o scroll vertical */
html { overflow-x: clip; }
body { overflow-x: clip; }
@supports not (overflow: clip) {
    html, body { overflow-x: hidden; }
    html { overflow-y: auto; }
}
img, svg, video, canvas { max-width: 100%; height: auto; }

/* ===== Tablet (≤1024px) ===== */
@media (max-width: 1024px) {
    .container { padding: 0 22px; }

    /* Header */
    .site-header { height: 64px; }
    .logo svg { width: 110px !important; }

    /* Bento features: 4col → 2col */
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
    }
    .feat-wide { grid-column: span 2; }
    .feat-tall { grid-row: span 1; }

    /* Bumps deep-dive */
    .bumps-grid { grid-template-columns: 1fr; gap: 50px; }
    .bumps-copy .section-eyebrow,
    .bumps-copy .section-title { text-align: center; }
    .bumps-copy .btn { margin-left: auto; margin-right: auto; display: flex; max-width: 320px; }
    .float-tag.t1 { right: 10px; top: -14px; font-size: 12px; }
    .float-tag.t2 { left: 10px; bottom: 20px; font-size: 12px; }

    /* Showcase / dashboard mock */
    .preview-content { height: 520px; }

    /* Section padding */
    .section { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }
}

/* ===== Mobile grande (≤768px) ===== */
@media (max-width: 768px) {
    .container { padding: 0 18px; }

    /* Hero */
    .hero { padding: 110px 0 60px; }
    .hero-title { font-size: clamp(36px, 9vw, 56px); }
    .hero-sub { font-size: 16px; padding: 0 4px; margin-bottom: 32px; }
    .hero-badge { font-size: 12px; padding: 6px 14px 6px 12px; }
    .hero-badge span:last-of-type { display: none; } /* só "Novo: ..." */

    /* Logos strip */
    .logos-row { gap: 30px; font-size: 14px; }

    /* Sections */
    .section { padding: 70px 0; }
    .section-title { font-size: clamp(28px, 6vw, 40px); }
    .section-lead { font-size: 15px; padding: 0 8px; }
    .section-head { margin-bottom: 40px; }

    /* Impact cards */
    .impact-card { padding: 26px 22px; }
    .impact-num { font-size: 44px; }

    /* Features bento: força 1 coluna abaixo de 768 */
    .features-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }
    .feat { min-height: 200px; padding: 24px 22px; }
    .feat-wide, .feat-tall { grid-column: span 1; grid-row: span 1; }
    .feat h3 { font-size: 18px; }
    .feat p { font-size: 13.5px; }

    /* Discord mock */
    .discord-window { border-radius: 16px; }
    .discord-body { padding: 16px; min-height: auto; }
    .dmsg-avatar { width: 32px; height: 32px; font-size: 15px; }
    .embed-fields { flex-direction: column; gap: 8px; }
    .discord-buttons { flex-direction: column; }
    .dbtn { width: 100%; }
    .float-tag { display: none; } /* limpa visualmente */

    /* Showcase mock */
    .preview-content { height: 460px; }
    .preview-url { display: none; } /* preview-header fica só com os dots */

    /* Pricing */
    .pricing-grid { gap: 16px; }
    .price-card { padding: 32px 24px; }
    .price-card.popular { transform: none; }
    .price-amount { font-size: 46px; }
    .popular-tag { font-size: 11px; padding: 5px 12px; }

    /* Testimonials */
    .testi { padding: 24px; }
    .testi p { font-size: 15px; }

    /* FAQ */
    .faq-item { padding: 16px 18px; }
    .faq-item summary { font-size: 14.5px; }
    .faq-item summary::after { font-size: 20px; }
    .faq-item p { font-size: 13.5px; }

    /* CTA */
    .cta-section { padding: 70px 0 100px; }
    .cta-card { padding: 70px 24px; border-radius: 24px; }
    .cta-card h2 { font-size: clamp(32px, 7vw, 44px); }
    .cta-card p { font-size: 16px; }
    .btn-cta { padding: 16px 28px !important; font-size: 15px !important; width: 100%; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-trust { flex-direction: column; gap: 12px; font-size: 13px; }

    /* Footer */
    .site-footer { padding: 60px 0 30px; }
    .foot-brand p { font-size: 13.5px; max-width: 100%; }
}

/* ===== Mobile pequeno (≤480px) ===== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Header */
    .site-header { height: 60px; }
    .logo svg { width: 90px !important; }
    .nav-actions { gap: 6px; }
    .nav-actions .btn-ghost-light { display: none; } /* só CTA */
    .nav-actions .btn-primary { padding: 9px 16px; font-size: 13px; }

    /* Hero */
    .hero { padding: 100px 0 50px; }
    .hero-title { font-size: clamp(30px, 9vw, 46px); line-height: 1.08; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-sub strong { display: inline; }
    .hero-actions { padding: 0 8px; gap: 12px; }
    .btn-lg { padding: 14px 24px; font-size: 14.5px; }
    .hero-trust { padding: 12px 16px; }
    .trust-meta { font-size: 12px; }
    .stars { font-size: 12px; }

    /* Trust avatars menores */
    .trust-avatars .avatar { width: 26px; height: 26px; margin-left: -8px; border-width: 1.5px; }

    /* Ticker */
    .live-ticker { padding: 14px 18px; margin-top: 60px; }
    .ticker-track { gap: 28px; font-size: 13px; }

    /* Logos */
    .logos-row { gap: 18px 24px; font-size: 13px; }
    .logos-label { font-size: 11px; }

    /* Section spacing */
    .section { padding: 60px 0; }
    .section-eyebrow { font-size: 11.5px; margin-bottom: 14px; }
    .section-head { margin-bottom: 32px; }

    /* Impact */
    .impact-card { padding: 22px 18px; }
    .impact-num { font-size: 38px; }
    .impact-label { font-size: 14px; }
    .impact-desc { font-size: 12.5px; }

    /* Features */
    .feat { padding: 22px 18px; min-height: 180px; }
    .feat-icon { width: 40px; height: 40px; margin-bottom: 14px; }
    .feat-icon i { width: 18px; height: 18px; }
    .feat h3 { font-size: 17px; }
    .feat p { font-size: 13px; line-height: 1.5; }
    .feat-tag { font-size: 10.5px; padding: 4px 10px; }
    .mini-pix-anim { padding: 14px; gap: 10px; }
    .mini-qr { width: 44px; height: 44px; }
    .mini-check { width: 38px; height: 38px; }
    .mini-chart { height: 60px; }

    /* Bumps */
    .bumps-grid { gap: 36px; }
    .bump-item { padding: 16px; gap: 14px; }
    .bump-num { width: 38px; height: 38px; font-size: 13px; }
    .bump-item h4 { font-size: 15.5px; }
    .bump-item p { font-size: 13px; }
    .discord-titlebar { height: 30px; padding: 0 10px; }
    .dwin-title { font-size: 11px; margin-left: 8px; }
    .embed-title { font-size: 13.5px; }
    .embed-desc { font-size: 12.5px; }
    .ef-val { font-size: 13px; }

    /* Showcase mock — colapsa pra "cartão único" */
    .glass-preview { padding: 10px; border-radius: 16px; }
    .preview-content { height: 360px; border-radius: 12px; }
    .mockup-body { padding: 14px; gap: 14px; }
    .m-page-title { font-size: 14px; }
    .m-search { display: none; }
    .mockup-grid { gap: 10px; }
    .m-card { padding: 12px; border-radius: 10px; }
    .m-card-val { font-size: 18px; }
    .m-card-label { font-size: 10px; }
    .m-card-delta { font-size: 10px; }

    /* How it works */
    .how-step { padding: 26px 22px; }
    .how-num { width: 38px; height: 38px; font-size: 16px; margin-bottom: 14px; }
    .how-step h3 { font-size: 17px; }
    .how-step p { font-size: 13.5px; }

    /* Pricing */
    .pricing-grid { max-width: 100%; margin-top: 40px; }
    .price-card { padding: 28px 22px; }
    .price-tier { font-size: 12.5px; margin-bottom: 14px; }
    .price-amount { font-size: 40px; }
    .price-amount .currency { font-size: 18px; }
    .price-period { font-size: 12px; margin-bottom: 18px; }
    .price-desc { font-size: 13.5px; margin-bottom: 22px; }
    .price-feats li { font-size: 13.5px; padding: 8px 0; }

    /* Testimonials */
    .testi { padding: 20px; }
    .testi p { font-size: 14px; }
    .testi-name { font-size: 13px; }
    .testi-role { font-size: 11.5px; }
    .testi-avatar { width: 36px; height: 36px; font-size: 14px; }

    /* FAQ */
    .faq-list { margin-top: 36px; }
    .faq-item { padding: 14px 16px; }
    .faq-item summary { font-size: 14px; }
    .faq-item p { font-size: 13px; margin-top: 12px; }

    /* CTA */
    .cta-section { padding: 60px 0 90px; }
    .cta-card { padding: 56px 20px; border-radius: 22px; }
    .cta-eyebrow { font-size: 12px; }
    .cta-card h2 { font-size: clamp(28px, 8vw, 38px); margin-bottom: 16px; }
    .cta-card p { font-size: 14.5px; margin-bottom: 30px; }
    .cta-trust { font-size: 12.5px; gap: 10px; }

    /* Footer */
    .site-footer { padding: 50px 0 30px; }
    .footer-grid { gap: 28px; margin-bottom: 40px; }
    .foot-col h5 { font-size: 12px; margin-bottom: 14px; }
    .foot-col a { font-size: 13.5px; margin-bottom: 10px; }
    .foot-bottom { font-size: 12px; padding-top: 22px; }
    .foot-social a { width: 32px; height: 32px; }
    .foot-social a i { width: 14px; height: 14px; }
}

/* ===== Mobile MUITO pequeno (≤360px) ===== */
@media (max-width: 360px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: 28px; }
    .hero-sub { font-size: 14px; }
    .section-title { font-size: 24px; }
    .preview-content { height: 320px; }
    .cta-card h2 { font-size: 26px; }
    .price-amount { font-size: 36px; }
}

/* ===== Touch devices: remove hovers grandes ===== */
@media (hover: none) {
    .feat:hover, .impact-card:hover, .how-step:hover, .price-card:hover, .testi:hover, .faq-item:hover {
        transform: none;
    }
    .feat:hover .feat-icon { transform: none; }
}
