/* ============================================================
   DISCORD BOT HOSTING — FastPanel
   Accent: #5865F2 (blurple) | Fond: #181a1b
============================================================ */

:root {
    --db-bg:      #181a1b;
    --db-bg2:     #1c1f20;
    --db-accent:  #5865F2;
    --db-accent-l:#7289DA;
    --db-green:   #22c55e;
    --db-green-l: #4ade80;
    --db-text:    rgba(255,255,255,.88);
    --db-muted:   rgba(255,255,255,.42);
    --db-border:  rgba(255,255,255,.07);
    --r-sm:   8px;
    --r-md:   14px;
    --r-lg:   20px;
    --r-full: 999px;
}

*, *::before, *::after { box-sizing: border-box; }

.db-page {
    background-color: #181a1b;
    background-image:
        radial-gradient(ellipse 60% 40% at 78% 18%, rgba(88,101,242,.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 14% 72%, rgba(114,137,218,.05) 0%, transparent 55%);
    background-attachment: fixed;
    color: var(--db-text);
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ================================================
   HERO ENTRANCE ANIMATIONS
   ================================================ */
@keyframes fpFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}
.fp-r-1 { animation: fpFadeUp .55s cubic-bezier(.22,1,.36,1) both .05s; }
.fp-r-2 { animation: fpFadeUp .55s cubic-bezier(.22,1,.36,1) both .18s; }
.fp-r-3 { animation: fpFadeUp .55s cubic-bezier(.22,1,.36,1) both .30s; }
.fp-r-4 { animation: fpFadeUp .55s cubic-bezier(.22,1,.36,1) both .42s; }
.fp-r-5 { animation: fpFadeUp .55s cubic-bezier(.22,1,.36,1) both .54s; }
.fp-r-6 { animation: fpFadeUp .55s cubic-bezier(.22,1,.36,1) both .66s; }

/* ================================================
   HERO
   ================================================ */
.db-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Ambient orbs */
.db-orb {
    position: absolute; border-radius: 50%;
    filter: blur(130px); pointer-events: none; z-index: 1;
    animation: db-float ease-in-out infinite alternate;
}
.db-orb1 { width:680px; height:680px; background:rgba(88,101,242,.09); top:-200px; right:-120px; animation-duration:11s; }
.db-orb2 { width:520px; height:520px; background:rgba(114,137,218,.06); bottom:-160px; left:-90px; animation-duration:14s; animation-delay:5s; }
@keyframes db-float { 0%{transform:translate(0,0);} 100%{transform:translate(26px,-30px);} }

.db-hero-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
    background: linear-gradient(to bottom, transparent, #181a1b);
    z-index: 2; pointer-events: none;
}

/* Split layout */
.db-wrap {
    position: relative; z-index: 3;
    display: flex; align-items: center; gap: 56px;
    width: 100%;
}
.db-left  { flex: 0 0 auto; max-width: 520px; }
.db-right {
    flex: 1; min-width: 0;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

/* Breadcrumb */
.db-breadcrumb {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    font-size: .72rem; font-weight: 600;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: .08em;
}
.db-breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.db-breadcrumb a:hover { color: rgba(255,255,255,.65); }
.db-breadcrumb .fa-chevron-right { font-size: .55rem; opacity: .45; }
.db-breadcrumb span { color: var(--db-accent-l); }

/* Title */
.db-title {
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 900; color: #fff; line-height: 1.06;
    letter-spacing: -.035em; margin-bottom: 18px;
}
.db-hl { color: var(--db-accent-l); }

/* Subtitle */
.db-sub {
    font-size: clamp(.88rem, 1.3vw, 1.02rem);
    color: rgba(255,255,255,.50); line-height: 1.78; margin: 0 0 26px;
}

/* Runtime chips */
.db-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.db-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(88,101,242,.09);
    border: 1px solid rgba(88,101,242,.25);
    border-radius: var(--r-full);
    padding: 6px 14px;
    font-size: .74rem; font-weight: 700; color: #a5b4fc;
    letter-spacing: .02em;
}
.db-chip i { font-size: .9rem; }
.db-chip-svg { width: 13px; height: 13px; flex-shrink: 0; display: inline-block; vertical-align: middle; }

/* Action buttons */
.db-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 28px; }
.db-btn-main {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff; padding: 14px 32px; border-radius: var(--r-full);
    font-size: .95rem; font-weight: 800; text-decoration: none;
    box-shadow: 0 8px 32px rgba(88,101,242,.40);
    transition: transform .2s, box-shadow .2s;
}
.db-btn-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 44px rgba(88,101,242,.58); color:#fff; text-decoration:none; }
.db-btn-sec {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.70); padding: 13px 24px; border-radius: var(--r-full);
    font-size: .9rem; font-weight: 600; text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.db-btn-sec:hover { background: rgba(88,101,242,.10); border-color: rgba(88,101,242,.35); color:#fff; text-decoration:none; }

/* Proof bar */
.db-proof {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px;
    font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.45);
}
.db-proof i { margin-right: 5px; font-size: .78rem; }
.db-proof .fa-circle-check { color: #22c55e; }
.db-proof .fa-bolt         { color: var(--db-accent-l); }
.db-proof .fa-shield-halved{ color: var(--db-accent-l); }
.db-proof-sep { width: 1px; height: 14px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* Discord mock wrapper (positioning context for stat cards) */
.db-mock-wrap { position: relative; }

/* Floating stat cards */
.db-stat-card {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: rgba(18,20,22,.85);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(14px);
    z-index: 5;
    white-space: nowrap;
    animation: fpFadeUp .7s cubic-bezier(.22,1,.36,1) both .5s;
    box-shadow: 0 8px 28px rgba(0,0,0,.38);
}
.db-stat-card i        { font-size: 1.15rem; flex-shrink: 0; }
.db-stat-card strong   { display: block; font-size: .95rem; font-weight: 800; color: #fff; line-height: 1.1; }
.db-stat-card span     { display: block; font-size: .62rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .08em; }
.db-stat-card--up      { top: 18px; left: -28px; }
.db-stat-card--deploy  { bottom: 44px; right: -20px; }
.db-stat-card--up i    { color: #22c55e; }
.db-stat-card--deploy i{ color: var(--db-accent); }

/* ================================================
   COMPAT BAND
   ================================================ */
.db-compat-band {
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.055);
    border-bottom: 1px solid rgba(255,255,255,.055);
    padding: 22px 0;
    position: relative; z-index: 1;
}
.db-compat-inner {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.db-compat-label {
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: rgba(255,255,255,.28);
    white-space: nowrap; flex-shrink: 0;
}
.db-compat-items {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap; flex: 1;
}
.db-compat-item {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px; padding: 6px 12px;
    font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.55);
    transition: background .2s, border-color .2s, color .2s;
}
.db-compat-item:hover { background: rgba(88,101,242,.08); border-color: rgba(88,101,242,.25); color: rgba(255,255,255,.8); }
.db-compat-item i { font-size: 14px; }
.db-os-svg { width: 15px; height: 15px; vertical-align: middle; flex-shrink: 0; display: inline-block; }

/* ================================================
   DISCORD MOCK WINDOW
   ================================================ */
.db-discord-mock {
    display: flex; height: 460px;
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 50px 100px rgba(0,0,0,.65), 0 0 80px rgba(88,101,242,.18);
    animation: fpFadeUp .8s cubic-bezier(.22,1,.36,1) both .3s;
}
/* Guilds sidebar */
.db-mock-guilds {
    width: 70px; background: #1e1f22;
    display: flex; flex-direction: column; align-items: center;
    padding: 12px 0; gap: 8px; flex-shrink: 0;
}
.db-mock-guild {
    width: 46px; height: 46px; border-radius: 50%; background: #313338;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.55);
    cursor: pointer; transition: all .2s; user-select: none;
}
.db-mock-guild.active, .db-mock-guild:hover { border-radius: 35%; background: #5865F2; color: #fff; }
.db-mock-guild-sep { width: 30px; height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; }
/* Channel sidebar */
.db-mock-sidebar {
    width: 182px; background: #2b2d31;
    flex-shrink: 0; display: flex; flex-direction: column; overflow: hidden;
}
.db-mock-server-name {
    padding: 15px 12px; font-size: .875rem; font-weight: 700; color: #fff;
    border-bottom: 1px solid rgba(0,0,0,.3);
    display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.db-mock-category {
    padding: 16px 8px 4px; font-size: .67rem; font-weight: 700;
    color: rgba(255,255,255,.28); text-transform: uppercase; letter-spacing: 1.2px;
}
.db-mock-channel {
    padding: 5px 8px; margin: 1px 4px; border-radius: 4px;
    font-size: .875rem; color: rgba(255,255,255,.32);
    display: flex; align-items: center; gap: 6px; cursor: pointer; transition: all .15s;
}
.db-mock-channel i { font-size: .78rem; opacity: .5; flex-shrink: 0; }
.db-mock-channel:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.65); }
.db-mock-channel.active { background: rgba(255,255,255,.12); color: #fff; }
.db-mock-channel.active i { opacity: .9; }
/* Chat area */
.db-mock-chat { flex: 1; display: flex; flex-direction: column; background: #313338; min-width: 0; }
.db-mock-chat-header {
    padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,.25);
    font-size: .9rem; font-weight: 700; color: #fff;
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.db-mock-chat-header i { opacity: .4; font-size: .85rem; }
.db-mock-messages {
    flex: 1; overflow-y: auto; padding: 12px 16px;
    display: flex; flex-direction: column; gap: 2px;
}
.db-mock-messages::-webkit-scrollbar { width: 3px; }
.db-mock-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 2px; }
.db-mock-msg-group { display: flex; gap: 12px; padding: 6px 0 2px; animation: dbMsgIn .3s ease; }
@keyframes dbMsgIn { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:none;} }
.db-mock-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 800; color: #fff; margin-top: 1px;
}
.db-mock-msg-content { flex: 1; min-width: 0; }
.db-mock-msg-header  { display: flex; align-items: baseline; gap: 8px; margin-bottom: 3px; }
.db-mock-username  { font-size: .875rem; font-weight: 600; color: #fff; }
.db-mock-bot-tag   { background: #5865F2; color: #fff; font-size: .58rem; font-weight: 700; padding: 1px 5px; border-radius: 3px; text-transform: uppercase; letter-spacing: .5px; }
.db-mock-timestamp { font-size: .67rem; color: rgba(255,255,255,.2); }
.db-mock-text      { font-size: .875rem; color: rgba(255,255,255,.82); line-height: 1.45; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; word-break: break-word; }
.db-mock-embed {
    margin-top: 6px; background: rgba(0,0,0,.18);
    border-left: 3px solid #22c55e; border-radius: 0 4px 4px 0;
    padding: 10px 14px; max-width: 300px;
}
.db-mock-embed.blurple { border-left-color: #5865F2; }
.db-mock-embed.cyan    { border-left-color: #4fc3f7; }
.db-mock-embed-title   { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.db-mock-embed-desc    { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.55; }
.db-mock-typing-bar {
    padding: 2px 16px 8px; font-size: .73rem; color: rgba(255,255,255,.35);
    display: flex; align-items: center; gap: 6px; flex-shrink: 0; min-height: 22px;
}
.db-mock-dots span {
    display: inline-block; width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,.4); margin-right: 2px;
    animation: dbTyping 1.2s ease infinite;
}
.db-mock-dots span:nth-child(2) { animation-delay: .2s; }
.db-mock-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dbTyping { 0%,80%,100%{transform:scale(.7);opacity:.4} 40%{transform:scale(1);opacity:1} }
.db-mock-input-wrap { padding: 0 16px 14px; flex-shrink: 0; }
.db-mock-input-box {
    background: rgba(0,0,0,.22); border-radius: 8px;
    padding: 10px 14px; display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.25); font-size: .875rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.db-mock-input-cursor-blink { animation: dbBlink 1s step-end infinite; color: rgba(255,255,255,.45); }
@keyframes dbBlink { 0%,50%{opacity:1} 51%,100%{opacity:0} }

/* ================================================
   SECTION BASE
   ================================================ */
.db-section     { padding: 100px 0; }
.db-section-alt { background: var(--db-bg2); }

.db-section-header { text-align: center; margin-bottom: 60px; }
.db-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(88,101,242,.90); margin-bottom: 14px;
}
.db-section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 900; color: #fff; line-height: 1.15;
    margin-bottom: 16px; letter-spacing: -.02em;
}
.db-section-sub { color: var(--db-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.75; }
.db-hl-accent { color: var(--db-accent-l); }

/* ================================================
   FEATURES GRID
   ================================================ */
.db-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.db-feat-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--db-border);
    border-radius: var(--r-lg); padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: all .35s ease;
}
.db-feat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #5865F2, #7289DA);
    opacity: 0; transition: opacity .35s;
}
.db-feat-card:hover { transform: translateY(-8px); border-color: rgba(88,101,242,.38); box-shadow: 0 20px 60px rgba(88,101,242,.14); }
.db-feat-card:hover::before { opacity: 1; }
.db-feat-icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(88,101,242,.22), rgba(88,101,242,.06));
    border: 1px solid rgba(88,101,242,.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(88,101,242,.15);
}
.db-feat-icon i { color: #a5b4fc !important; font-size: 1.3rem; }
.db-feat-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.db-feat-desc  { font-size: .875rem; color: var(--db-muted); line-height: 1.68; }

/* ================================================
   TERMINAL
   ================================================ */
.db-terminal-section {
    background: var(--db-bg2);
    padding: 100px 0;
    position: relative; overflow: hidden;
}
.db-terminal-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(88,101,242,.30), transparent);
}
.db-terminal-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(88,101,242,.18), transparent);
}
.db-terminal-wrap { display: flex; align-items: center; gap: 64px; }
.db-terminal-text { flex: 1; }
.db-terminal-text h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.2; letter-spacing: -.02em; }
.db-terminal-text p  { color: var(--db-muted); font-size: .95rem; line-height: 1.78; margin-bottom: 26px; }
.db-lang-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.db-lang-tag {
    display: flex; align-items: center; gap: 8px;
    background: rgba(88,101,242,.08); border: 1px solid rgba(88,101,242,.22);
    border-radius: 10px; padding: 8px 14px;
    font-size: .82rem; font-weight: 700; color: #a5b4fc;
    transition: border-color .2s, background .2s;
}
.db-lang-tag:hover { background: rgba(88,101,242,.14); border-color: rgba(88,101,242,.4); }

.db-terminal       { flex: 1; min-width: 0; }
.db-terminal-window {
    background: #0d1117;
    border: 1px solid rgba(88,101,242,.28);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.60), 0 0 60px rgba(88,101,242,.12);
}
.db-term-bar {
    background: #161b22; padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(88,101,242,.14);
}
.db-term-dot       { width: 12px; height: 12px; border-radius: 50%; }
.db-term-dot.r     { background: #ff5f57; }
.db-term-dot.y     { background: #febc2e; }
.db-term-dot.g     { background: #28c840; }
.db-term-title     { margin-left: 8px; font-size: .78rem; color: rgba(255,255,255,.38); font-weight: 600; font-family: monospace; }
.db-term-body      { padding: 24px; font-family: 'Courier New', Courier, monospace; font-size: .82rem; line-height: 2; }
.db-term-line      { display: flex; align-items: flex-start; gap: 10px; opacity: 0; }
.db-term-line.show { animation: dbTermLine .4s ease forwards; }
.db-term-prompt    { color: var(--db-accent); flex-shrink: 0; font-weight: 700; }
.db-term-cmd       { color: #e6edf3; }
.db-term-ok        { color: var(--db-green); font-weight: 700; }
.db-term-warn      { color: #FEE75C; }
.db-term-cursor    { display: inline-block; width: 8px; height: 14px; background: var(--db-accent); margin-left: 4px; animation: dbBlink 1s step-end infinite; vertical-align: text-bottom; }
@keyframes dbTermLine { from{opacity:0;transform:translateX(-6px)} to{opacity:1;transform:none} }

/* ================================================
   PRICING
   ================================================ */
.db-pricing { background: var(--db-bg); padding: 100px 0; }
.db-plans {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; align-items: start;
}
.db-plan {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--db-border);
    border-radius: 22px; padding: 36px 30px;
    position: relative; overflow: hidden;
    transition: all .4s ease;
}
.db-plan:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(88,101,242,.16); }
.db-plan.featured {
    background: linear-gradient(145deg, rgba(88,101,242,.11), rgba(88,101,242,.04));
    border: 2px solid rgba(88,101,242,.44);
    box-shadow: 0 20px 60px rgba(88,101,242,.16);
    transform: scale(1.04);
}
.db-plan.featured:hover { transform: scale(1.04) translateY(-10px); }
.db-plan-glow {
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(88,101,242,.12) 0%, transparent 70%);
    pointer-events: none;
}
.db-plan-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff; font-size: .72rem; font-weight: 800;
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 18px; letter-spacing: 1.5px; text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(88,101,242,.40);
    position: relative; overflow: hidden;
}
.db-plan-badge::before {
    content: '';
    position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: rgba(255,255,255,.25); transform: skewX(-20deg);
    animation: dbBadgeShine 3s ease infinite;
}
@keyframes dbBadgeShine { 0%{left:-60%;} 50%,100%{left:160%;} }
.db-plan-name    { font-size: 1.1rem; font-weight: 800; color: #a5b4fc; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 2px; }
.db-plan-price   { margin-bottom: 8px; }
.db-plan-price .amount { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.db-plan-price .cents  { font-size: 1.3rem; font-weight: 700; color: #a5b4fc; vertical-align: super; }
.db-plan-price .period { font-size: .85rem; color: var(--db-muted); }
.db-plan-desc    { font-size: .85rem; color: var(--db-muted); margin-bottom: 28px; line-height: 1.58; }
.db-plan-features { list-style: none; padding: 0; margin: 0 0 30px; }
.db-plan-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: .875rem; color: var(--db-text);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.db-plan-features li:last-child { border-bottom: none; }
.db-plan-features .icon    { color: var(--db-green); font-size: 1rem; flex-shrink: 0; }
.db-plan-features .icon.na { color: rgba(255,255,255,.2); }
.db-plan-features .na-item { color: rgba(255,255,255,.3); }
.db-plan-btn {
    display: block; text-align: center; font-weight: 800; font-size: .95rem;
    padding: 14px 20px; border-radius: 50px; text-decoration: none; transition: all .3s ease;
}
.db-plan-btn.outline { background: transparent; border: 2px solid rgba(88,101,242,.38); color: #a5b4fc; }
.db-plan-btn.outline:hover { background: rgba(88,101,242,.14); border-color: var(--db-accent); color: #fff; }
.db-plan-btn.solid {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff; border: none;
    box-shadow: 0 8px 30px rgba(88,101,242,.35);
}
.db-plan-btn.solid:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(88,101,242,.55); color: #fff; }

/* ================================================
   STEPS / COMMENT ÇA MARCHE
   ================================================ */
.db-steps { background: var(--db-bg2); padding: 100px 0; }

.db-steps-track {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 64px;
    border: 1px solid var(--db-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
}

.db-step-card {
    padding: 40px 32px;
    background: rgba(255,255,255,.02);
    border-right: 1px solid var(--db-border);
    position: relative; overflow: hidden;
    transition: background .35s ease;
    cursor: default;
}
.db-step-card:last-child { border-right: none; }
.db-step-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #5865F2, #7289DA);
    opacity: 0; transition: opacity .35s;
}
.db-step-card:hover { background: rgba(88,101,242,.05); }
.db-step-card:hover::before { opacity: 1; }

.db-step-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: #a5b4fc;
    margin-bottom: 22px;
    background: linear-gradient(145deg, rgba(88,101,242,.20), rgba(88,101,242,.06));
    border: 1px solid rgba(88,101,242,.22);
    box-shadow: 0 4px 18px rgba(88,101,242,.14);
    position: relative; overflow: hidden;
    transition: all .35s ease;
}
.db-step-icon::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 48%;
    background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, transparent 100%);
    pointer-events: none;
}
.db-step-card:hover .db-step-icon {
    background: linear-gradient(145deg, rgba(88,101,242,.32), rgba(88,101,242,.12));
    border-color: rgba(88,101,242,.45);
    box-shadow: 0 8px 28px rgba(88,101,242,.28), 0 0 0 1px rgba(88,101,242,.15);
    transform: translateY(-2px);
    color: #c4b5fd;
}

.db-step-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.db-step-desc  { font-size: .855rem; color: var(--db-muted); line-height: 1.72; }

/* ================================================
   GARANTIES
   ================================================ */
.db-guarantees { background: var(--db-bg); padding: 80px 0; }
.db-guarantees-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.db-guarantee {
    background: rgba(255,255,255,.025);
    border: 1px solid var(--db-border);
    border-radius: var(--r-lg); padding: 32px 26px;
    position: relative; overflow: hidden;
    transition: border-color .35s, transform .35s, box-shadow .35s;
}
.db-guarantee::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #5865F2, #7289DA);
    opacity: 0; transition: opacity .35s;
}
.db-guarantee:hover { border-color: rgba(88,101,242,.35); transform: translateY(-6px); box-shadow: 0 18px 50px rgba(88,101,242,.13); }
.db-guarantee:hover::before { opacity: 1; }

.db-guarantee-icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: #a5b4fc;
    background: linear-gradient(145deg, rgba(88,101,242,.20), rgba(88,101,242,.06));
    border: 1px solid rgba(88,101,242,.20);
    box-shadow: 0 4px 16px rgba(88,101,242,.12);
    margin-bottom: 18px;
    position: relative; overflow: hidden;
    transition: all .35s;
}
.db-guarantee-icon-wrap::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 48%;
    background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, transparent 100%);
    pointer-events: none;
}
.db-guarantee:hover .db-guarantee-icon-wrap {
    background: linear-gradient(145deg, rgba(88,101,242,.30), rgba(88,101,242,.10));
    border-color: rgba(88,101,242,.40);
    box-shadow: 0 6px 22px rgba(88,101,242,.22);
    color: #c4b5fd;
}

.db-guarantee-value {
    font-size: clamp(1.4rem, 2.5vw, 1.6rem); font-weight: 900; color: #fff;
    letter-spacing: -.03em; margin-bottom: 4px; line-height: 1;
}
.db-guarantee h4 { font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.db-guarantee p  { font-size: .8rem; color: var(--db-muted); line-height: 1.6; }

/* ================================================
   CTA FINAL
   ================================================ */
.db-cta {
    padding: 100px 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(88,101,242,.09) 0%, transparent 70%),
                linear-gradient(180deg, var(--db-bg) 0%, var(--db-bg2) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.db-cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 300px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(88,101,242,.06) 0%, transparent 70%);
    pointer-events: none;
}
.db-cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -.02em; }
.db-cta p  { color: var(--db-muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; line-height: 1.75; }
.db-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

.db-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #fff; font-weight: 800; font-size: 1rem;
    padding: 15px 36px; border-radius: var(--r-full); text-decoration: none;
    box-shadow: 0 8px 32px rgba(88,101,242,.38); transition: all .3s ease;
}
.db-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(88,101,242,.55); color: #fff; }
.db-btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.75); font-weight: 600; font-size: .95rem;
    padding: 14px 28px; border-radius: var(--r-full); text-decoration: none;
    transition: all .3s ease; backdrop-filter: blur(8px);
}
.db-btn-secondary:hover { background: rgba(88,101,242,.12); border-color: rgba(88,101,242,.38); color: #fff; transform: translateY(-2px); }

/* ================================================
   SCROLL-IN ANIMATION
   ================================================ */
.db-animate {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.db-animate.visible { opacity: 1; transform: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1199px) {
    .db-discord-mock  { height: 420px; }
    .db-mock-guilds   { width: 58px; }
    .db-mock-guild    { width: 40px; height: 40px; }
    .db-mock-sidebar  { width: 156px; }
    .db-stat-card--up     { left: -10px; }
    .db-stat-card--deploy { right: -10px; }
}
@media (max-width: 991px) {
    .db-hero    { padding: 70px 0 60px; min-height: auto; }
    .db-wrap    { flex-direction: column; gap: 40px; }
    .db-left    { max-width: 100%; }
    .db-right   { display: none !important; }
    .db-features-grid  { grid-template-columns: repeat(2, 1fr); }
    .db-terminal-wrap  { flex-direction: column; }
    .db-plans          { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .db-plan.featured  { transform: none; }
    .db-steps-track    { grid-template-columns: repeat(2, 1fr); }
    .db-step-card      { border-right: 1px solid var(--db-border); border-bottom: 1px solid var(--db-border); }
    .db-step-card:nth-child(2n) { border-right: none; }
    .db-step-card:nth-last-child(-n+2) { border-bottom: none; }
    .db-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .db-compat-inner    { gap: 16px; }
}
@media (max-width: 575px) {
    .db-features-grid   { grid-template-columns: 1fr; }
    .db-steps-track     { grid-template-columns: 1fr; }
    .db-step-card       { border-right: none; border-bottom: 1px solid var(--db-border); }
    .db-step-card:last-child { border-bottom: none; }
    .db-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .db-chips           { gap: 6px; }
    .db-actions         { flex-direction: column; align-items: flex-start; }
}
