/* AH-GSM Tool — single-page landing
 * Mobile-first, compact, dynamic.
 * Breakpoints: 480 / 640 / 900 / 1024 / 1240
 */

:root {
    --amber:  #fbbf24;
    --orange: #f97316;
    --grad:   linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    --bg:     #0d0d0d;
    --bg-2:   #1a1a1a;
    --text:   #0f172a;
    --muted:  #64748b;
    --border: #e5e7eb;
    --soft:   #f8fafc;

    /* Compact spacing scale */
    --section-y: 40px;
    --section-y-lg: 56px;
    --radius:    10px;
    --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--text);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 13px;
    letter-spacing: -0.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 640px) { .container { padding: 0 14px; } }

/* ═══════════ TOP NAV ═══════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(13,13,13,0.55);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
    background: rgba(6,9,18,0.95);
    border-bottom-color: rgba(255,255,255,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 52px;
}
.brand {
    display: flex; align-items: center; gap: 7px;
    color: white;
}
.brand-mark {
    width: 28px; height: 28px;
    background: var(--grad);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 15px; color: white;
    box-shadow: 0 3px 8px rgba(249,115,22,0.4);
}
.brand-name { font-weight: 800; font-size: 13px; letter-spacing: 0.02em; }
.brand-sub  { font-weight: 800; font-size: 10px; letter-spacing: 0.16em; opacity: 0.7; }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
    position: relative;
    padding: 7px 9px;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--amber); }
.nav-link::after {
    content: '';
    position: absolute; left: 10px; right: 10px; bottom: 4px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-burger {
    display: none;
    width: 36px; height: 36px;
    border-radius: 7px;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    transition: background 0.2s ease;
}
.nav-burger:hover { background: rgba(255,255,255,0.1); }
.nav-burger span {
    display: block;
    width: 20px; height: 2px;
    background: white;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .brand-sub { display: none; }
}

/* Mobile drawer */
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 55;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(82vw, 300px);
    background: var(--bg);
    z-index: 60;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 64px 20px 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 7px;
    color: white; font-size: 16px;
    transition: background 0.2s ease;
}
.drawer-close:hover { background: rgba(255,255,255,0.1); }
.drawer-link {
    display: block;
    padding: 11px 4px;
    color: rgba(255,255,255,0.85);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-link:hover { color: var(--amber); }
.drawer-foot {
    margin-top: auto; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}
.drawer-foot p { margin: 0 0 5px; display: flex; align-items: center; gap: 6px; }
.drawer-foot p i { color: var(--amber); }
.drawer-socials { display: flex; gap: 6px; margin-top: 10px; }
.drawer-socials a {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: all 0.2s ease;
}
.drawer-socials a:hover { background: var(--grad); color: white; transform: translateY(-2px); }

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 64vh;
    background:
        radial-gradient(700px 400px at 50% 25%, rgba(251,191,36,0.05), transparent 60%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 0 40px;
}
/* Halftone dots — visible on far-left and far-right */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.32) 1.4px, transparent 2px);
    background-size: 11px 11px;
    -webkit-mask-image: linear-gradient(to right,
        black 0%, black 16%, transparent 34%, transparent 66%, black 84%, black 100%);
            mask-image: linear-gradient(to right,
        black 0%, black 16%, transparent 34%, transparent 66%, black 84%, black 100%);
    opacity: 0.85;
    pointer-events: none;
}
/* Diagonal slash band on the right */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(135deg,
        transparent 0, transparent 50px,
        rgba(255,255,255,0.06) 50px, rgba(255,255,255,0.06) 100px);
    -webkit-mask-image: linear-gradient(to right, transparent 50%, black 95%);
            mask-image: linear-gradient(to right, transparent 50%, black 95%);
    pointer-events: none;
}
.hero-inner {
    text-align: center;
    position: relative; z-index: 1;
    max-width: 760px;
    width: 100%;
}
.hero-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.22em; color: rgba(255,255,255,0.78);
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 16px;
}
.hero-title {
    color: white;
    font-weight: 700;
    font-size: clamp(0.72rem, 1.15vw, 1rem);
    letter-spacing: 0.02em;
    line-height: 1.45;
    margin: 0 0 22px;
    text-transform: uppercase;
}
.title-accent-letter {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}
.hero-logo {
    position: relative;
    display: inline-block;
    width: clamp(140px, 17vw, 200px);
    aspect-ratio: 320 / 340;
    animation: hero-float 5s ease-in-out infinite;
    filter: drop-shadow(0 14px 32px rgba(251,191,36,0.28));
}
.hero-logo-svg,
.hero-logo-image {
    width: 100%; height: 100%;
    display: block;
    object-fit: contain;
}
/* Text-only overlay — sits directly on top of the dark bar that's already painted
 * into the uploaded AH logo image. No background, no border, just letters.
 * Positions tuned to the AH reference logo (bar lives in the lower-middle).
 */
.hero-logo-stripe {
    position: absolute;
    left: 22%; right: 22%;
    top: 52%;
    transform: translateY(-50%);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(0.42rem, calc(0.9vw - var(--len, 7) * 0.025vw), 0.65rem);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
    pointer-events: none;
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ═══════════ BRAND STRIP — compact horizontal marquee ═══════════ */
.brand-strip {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
}
.marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    padding-left: 36px;          /* prevents first item touching mask edge */
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }   /* the track holds items twice */
}
.brand-tag {
    flex-shrink: 0;
    display: inline-flex; align-items: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.85;
    cursor: default;
}
.brand-tag:hover { opacity: 1; transform: translateY(-2px); }
.brand-tag svg,
.brand-tag img {
    height: 22px; width: auto; max-height: 22px;
    object-fit: contain; display: block;
}
.brand-tag .brand-text {
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: #1f2937;
    text-transform: uppercase;
}
@media (max-width: 640px) {
    .marquee-track { gap: 26px; animation-duration: 25s; }
    .brand-tag svg, .brand-tag img { height: 18px; max-height: 18px; }
    .brand-tag .brand-text { font-size: 0.8rem; }
}

/* ═══════════ STATS BAND ═══════════ */
.stats {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    color: white;
    padding: var(--section-y) 0;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(251,191,36,0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249,115,22,0.04), transparent 50%);
}
.stats-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    position: relative; z-index: 1;
}
@media (min-width: 900px) { .stats-inner { grid-template-columns: 1.1fr 0.9fr; gap: 32px; } }
.stats-text h2 {
    font-size: clamp(1.15rem, 2.1vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.18;
}
.stats-text p {
    color: rgba(255,255,255,0.7);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 32em;
}
.stats-text strong { color: var(--amber); font-weight: 800; }
.stats-text .hl   { color: var(--amber); }
.stats-num {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
@media (min-width: 900px) { .stats-num { text-align: right; } }

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative; z-index: 1;
}
@media (max-width: 480px) { .stats-mini { grid-template-columns: 1fr; gap: 6px; } }
.kpi { text-align: center; color: rgba(255,255,255,0.85); }
.kpi i { color: var(--amber); font-size: 14px; margin-bottom: 4px; display: block; }
.kpi span {
    display: block;
    font-size: clamp(1.15rem, 1.9vw, 1.45rem);
    font-weight: 800;
    color: white;
    line-height: 1;
}
.kpi em {
    display: block;
    font-style: normal;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-top: 5px;
}

/* ═══════════ FEATURES ═══════════ */
.features {
    background: white;
    padding: var(--section-y) 0;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }

.features-image {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}
.features-image-custom {
    width: 100%; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,0.15));
}
.laptop {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.06);
}
.laptop-titlebar {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.laptop-titlebar > span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.laptop-titlebar > span:nth-child(1) { background: #ef4444; }
.laptop-titlebar > span:nth-child(2) { background: #fbbf24; }
.laptop-titlebar > span:nth-child(3) { background: #10b981; }
.laptop-title {
    margin-left: 8px;
    font-size: 10px; color: rgba(255,255,255,0.5);
    font-family: ui-monospace, 'SF Mono', monospace;
}
.laptop-body { padding: 18px; }
.laptop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 14px;
}
.laptop-cell {
    height: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}
.laptop-cell.active { background: var(--grad); }
.laptop-bar {
    height: 10px; border-radius: 4px; margin-bottom: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}
.laptop-bar.w70 { width: 70%; }

.phone-mock {
    position: absolute;
    bottom: -22px; right: -14px;
    width: 110px; height: 200px;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 20px;
    border: 4px solid #0f172a;
    box-shadow: 0 16px 32px rgba(0,0,0,0.3);
    overflow: hidden;
}
.phone-screen {
    height: 100%;
    background: var(--grad);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: white;
    text-align: center;
}
.phone-logo {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.18);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 26px;
    margin-bottom: 9px;
}
.phone-name {
    font-size: 9px; font-weight: 800;
    letter-spacing: 0.14em;
}
@media (max-width: 480px) {
    .phone-mock { width: 84px; height: 156px; bottom: -16px; right: -8px; }
    .phone-logo { width: 40px; height: 40px; font-size: 20px; }
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(251,191,36,0.10);
    border: 1px solid rgba(251,191,36,0.30);
    color: var(--orange);
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.features-text h2 {
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--text);
}
.features-text > p {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0 0 16px;
    max-width: 36em;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 18px;
}
@media (min-width: 480px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
    display: flex; gap: 9px;
    padding: 9px 11px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-1px);
    border-color: var(--orange);
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.feature-ico {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(249,115,22,0.15));
    color: var(--orange);
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
}
.feature-meta { min-width: 0; }
.feature-name { font-weight: 700; color: var(--text); font-size: 12px; margin-bottom: 1px; }
.feature-desc { font-size: 10.5px; color: var(--muted); line-height: 1.45; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1;
}
.btn-lg { padding: 11px 20px; font-size: 12px; }
.btn-primary {
    background: var(--grad); color: white;
    box-shadow: 0 5px 14px rgba(249,115,22,0.30);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,0.40); }
.btn-dark { background: #0f172a; color: white; }
.btn-dark:hover { background: #1e293b; transform: translateY(-1px); }
.btn-outline {
    background: white; color: var(--text); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.btn-outline-sm {
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 11px; font-weight: 700;
    color: var(--text);
}
.btn-outline-sm:hover { border-color: var(--orange); color: var(--orange); }
.btn-icon {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 7px;
    background: var(--soft);
    color: var(--muted);
    transition: all 0.2s ease;
    font-size: 13px;
}
.btn-icon:hover { background: var(--orange); color: white; transform: translateY(-2px); }

/* ═══════════ BAND TITLE ═══════════ */
.band-title {
    background: black; color: white;
    text-align: center;
    padding: 11px 12px;
    font-weight: 800;
    font-size: clamp(0.78rem, 1.4vw, 0.92rem);
    letter-spacing: 0.22em;
}

/* ═══════════ UPDATES ═══════════ */
.updates-section {
    background: var(--soft);
    padding: 32px 0 var(--section-y);
}
.updates-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap; gap: 8px;
}
.updates-head h3 {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--text);
}
.link-arrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text);
    display: inline-flex; align-items: center; gap: 5px;
}
.link-arrow:hover { color: var(--orange); }

.updates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}
@media (min-width: 540px)  { .updates-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .updates-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .updates-grid { grid-template-columns: repeat(4, 1fr); } }

.update-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex; flex-direction: column;
}
.update-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 16px 32px rgba(0,0,0,0.10);
}
.update-card:hover .update-thumb img { transform: scale(1.06); }
.update-card[hidden] { display: none; }
.update-thumb {
    height: 130px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.update-thumb::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(251,191,36,0.18), transparent 60%);
    z-index: 1;
}
.update-thumb i {
    font-size: 1.7rem;
    color: rgba(251,191,36,0.7);
    position: relative;
    z-index: 2;
}
.update-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
/* When a real image is uploaded, drop the gradient overlay so it doesn't tint the photo. */
.update-card.has-image .update-thumb::before {
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
}
.ver-badge {
    position: absolute;
    top: 9px; right: 9px;
    z-index: 3;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(15,23,42,0.85);
    color: var(--amber);
    border: 1px solid rgba(251,191,36,0.4);
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.update-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex; flex-direction: column;
}
.update-meta {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--grad);
    color: white;
    font-weight: 900;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(249,115,22,0.32);
}
.meta-name { font-size: 11px; font-weight: 800; color: var(--text); line-height: 1.2; letter-spacing: -0.005em; }
.meta-date {
    font-size: 9.5px;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.update-body h4 {
    font-size: 12.5px; font-weight: 800;
    line-height: 1.35; margin: 0 0 6px;
    color: var(--text);
    letter-spacing: -0.005em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    transition: color 0.2s ease;
}
.update-card:hover .update-body h4 { color: var(--orange); }
.update-body p {
    font-size: 10.5px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
    flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.pager {
    display: flex; align-items: center; justify-content: center;
    gap: 4px; flex-wrap: wrap;
    margin-top: 20px;
}
.pager-btn {
    min-width: 28px; height: 28px;
    padding: 0 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 7px;
    font-weight: 700; font-size: 11px;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.pager-btn:hover:not(:disabled) {
    border-color: var(--orange); color: var(--orange);
    transform: translateY(-1px);
}
.pager-btn.active {
    background: var(--grad); color: white;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(249,115,22,0.3);
}
.pager-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ═══════════ RESELLERS ═══════════ */
.resellers-section {
    background: white;
    padding: var(--section-y) 0;
}
.section-head {
    text-align: center;
    margin-bottom: 22px;
}
.section-head .eyebrow { margin: 0 0 10px; }
.section-head h2 {
    font-size: clamp(1.15rem, 2.1vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    color: var(--text);
}
.section-head p {
    color: var(--muted);
    font-size: 12.5px;
    margin: 0 auto;
    max-width: 540px;
    line-height: 1.6;
}
.resellers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 600px)  { .resellers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .resellers-grid { grid-template-columns: repeat(3, 1fr); } }

.reseller-card {
    padding: 13px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.reseller-card:hover {
    transform: translateY(-2px);
    border-color: var(--orange);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.reseller-head {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 10px;
}
.reseller-logo {
    width: 84px; height: 84px;
    flex-shrink: 0;
    background: var(--grad);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 900; font-size: 22px;
    overflow: hidden;
}
.reseller-logo.has-image {
    background: white;
    border: 1px solid var(--border);
    padding: 5px;
}
.reseller-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
}
.reseller-head h3 {
    margin: 5px 0 2px;
    font-size: 13px; font-weight: 800;
    color: var(--text);
}
.reseller-country {
    font-size: 10.5px; color: var(--muted);
    display: inline-flex; align-items: center; gap: 4px;
}
.reseller-country i { color: var(--orange); }
.reseller-actions {
    display: flex; align-items: center; gap: 5px;
    flex-wrap: wrap;
}
.section-cta { text-align: center; margin-top: 20px; }

.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 7px;
    border-radius: 100px;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.04em;
}
.badge-green {
    background: rgba(16,185,129,0.10);
    color: #047857;
    border: 1px solid rgba(16,185,129,0.25);
}

/* ═══════════ SERVER STATUS / PRICE LIST ═══════════ */
.status-section {
    background: var(--soft);
    padding: var(--section-y) 0;
}
.status-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 900px) { .status-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }

.status-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.status-card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, white, #f8fafc);
}
.status-card-head h3 {
    margin: 0;
    font-size: 12.5px; font-weight: 800;
    color: var(--text);
    display: inline-flex; align-items: center; gap: 7px;
    letter-spacing: 0.02em;
}
.status-card-head h3 i { color: var(--orange); font-size: 12px; }
.status-meta {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11.5px;
}
.status-table tr {
    transition: background 0.15s ease, transform 0.15s ease;
    animation: status-row-in 0.35s cubic-bezier(0.4,0,0.2,1) backwards;
}
.status-table tr:nth-child(1) { animation-delay: 0ms; }
.status-table tr:nth-child(2) { animation-delay: 40ms; }
.status-table tr:nth-child(3) { animation-delay: 80ms; }
.status-table tr:nth-child(4) { animation-delay: 120ms; }
.status-table tr:nth-child(5) { animation-delay: 160ms; }
.status-table tr:nth-child(6) { animation-delay: 200ms; }
.status-table tr:nth-child(7) { animation-delay: 240ms; }
.status-table tr:nth-child(8) { animation-delay: 280ms; }
.status-table tr:nth-child(9) { animation-delay: 320ms; }
@keyframes status-row-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0);   }
}
.status-table tr:hover { background: var(--soft); }
.status-table tr:hover .svc-name { color: var(--orange); }
.status-table td {
    padding: 7px 14px;
    border-top: 1px solid var(--border);
}
.status-table tr:first-child td { border-top: 0; }
.svc-name {
    font-family: ui-monospace, 'SF Mono', monospace;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    transition: color 0.15s ease;
}
.svc-state {
    text-align: right;
    display: flex; align-items: center; justify-content: flex-end; gap: 7px;
}
.state-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(203,213,225,0.18);
}
.state-dot.online {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.20);
    animation: dot-pulse 1.6s ease-in-out infinite;
}
.state-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.20);
}
.state-dot.loading {
    background: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251,191,36,0.20);
    animation: dot-pulse 1s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.45; }
}
.state-text {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-width: 54px;
    text-align: right;
}
.state-dot.online + .state-text { color: #047857; }
.state-dot.offline + .state-text { color: #b91c1c; }

/* Two-column compact grid for the price list — half the vertical space. */
.price-table { display: block; }
.price-table tbody {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 540px) {
    .price-table tbody { grid-template-columns: 1fr 1fr; }
    .price-table tbody tr:nth-child(2) td { border-top: 0; }
}
.price-table tr {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 14px;
    border-top: 1px solid var(--border);
    gap: 10px;
    transition: background 0.15s ease;
}
.price-table tr:first-child { border-top: 0; }
.price-table tr:hover { background: var(--soft); }
.price-table td { padding: 0; border: 0; flex: 0 0 auto; }
.price-table .svc-name {
    flex: 1; min-width: 0;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.price-table .svc-price { text-align: right; flex-shrink: 0; }
.price-pill {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 100px;
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.price-pill.free   { background: rgba(16,185,129,0.10); color: #047857; border: 1px solid rgba(16,185,129,0.28); }
.price-pill.credit { background: rgba(251,191,36,0.10); color: #b45309; border: 1px solid rgba(251,191,36,0.32); }
.price-pill.remote { background: rgba(139,92,246,0.10); color: #6d28d9; border: 1px solid rgba(139,92,246,0.28); }

.status-empty {
    text-align: center;
    color: var(--muted);
    padding: 18px !important;
    font-size: 12px;
}

/* ═══════════ SHOP ═══════════ */
.shop-section {
    background: var(--soft);
    padding: var(--section-y) 0;
}
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 600px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }

.shop-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex; flex-direction: column;
}
.shop-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.shop-badge {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    padding: 4px 10px;
    background: var(--grad);
    color: white;
    border-radius: 100px;
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(249,115,22,0.32);
}
.shop-image {
    height: 150px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.shop-image img {
    max-width: 80%;
    max-height: 110px;
    object-fit: contain;
}
.shop-image i {
    font-size: 50px;
    color: rgba(249,115,22,0.35);
}
.shop-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex; flex-direction: column;
}
.shop-body h3 {
    font-size: 14px; font-weight: 800;
    margin: 0 0 6px;
    color: var(--text);
}
.shop-body p {
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 14px;
    flex: 1;
}
.shop-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.shop-price {
    font-size: 18px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ═══════════ DOWNLOAD ═══════════ */
.download-section {
    background: linear-gradient(180deg, var(--soft), white);
    padding: var(--section-y) 0;
}
.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
}
@media (min-width: 900px) { .download-grid { grid-template-columns: 1.1fr 0.9fr; gap: 32px; } }
.download-info h2 {
    font-size: clamp(1.15rem, 2.1vw, 1.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--text);
}
.download-info > p {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 36em;
}
.download-actions {
    display: flex; gap: 7px; flex-wrap: wrap;
    margin-bottom: 16px;
}
.download-specs {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}
.download-specs li {
    font-size: 11px; color: var(--muted);
    display: flex; align-items: center; gap: 5px;
}
.download-specs i { color: var(--orange); }

.download-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(15,23,42,0.22);
}
.download-card-head {
    padding: 18px;
    background: radial-gradient(circle at 30% 20%, rgba(251,191,36,0.20), transparent 60%);
    text-align: center;
}
.download-card-head i {
    font-size: 36px;
    color: var(--amber);
    margin-bottom: 8px;
}
.download-card-head span {
    display: block;
    font-size: 16px; font-weight: 900;
    letter-spacing: -0.01em;
}
.download-card-body { padding: 14px 18px 18px; }
.download-card-body h4 {
    font-size: 13px; font-weight: 800;
    margin: 0 0 6px;
}
.download-card-body p {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    line-height: 1.55;
    margin: 0 0 11px;
}
.download-card-meta {
    display: flex; align-items: center;
    gap: 10px; flex-wrap: wrap;
    font-size: 10px; color: rgba(255,255,255,0.6);
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.download-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.download-card-meta i { color: var(--amber); }

.download-list {
    margin-top: 22px;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) { .download-list { grid-template-columns: 1fr 1fr; } }
.download-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    padding: 11px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.download-row:hover {
    transform: translateY(-2px);
    border-color: var(--orange);
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}
.download-row-info { min-width: 0; flex: 1; }
.download-row-info strong { display: block; font-size: 12.5px; color: var(--text); }
.download-row-info span   { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.download-row-meta {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
    font-size: 11px; color: var(--muted);
}
.download-row-meta i { color: var(--orange); }
.ver-pill {
    padding: 2px 8px; border-radius: 100px;
    background: rgba(251,191,36,0.15);
    color: #b45309;
    border: 1px solid rgba(251,191,36,0.32);
    font-weight: 700;
}

/* ═══════════ TEAM SUPPORT ═══════════ */
.support-section {
    background: white;
    padding: var(--section-y) 0;
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}
@media (min-width: 900px) { .support-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }

.support-art {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.support-art-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(251,191,36,0.18), transparent 70%);
    transform: scale(1.1);
}
.support-art-card {
    position: relative;
    padding: 32px 20px;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
}
.support-art-card.has-image { padding: 0; background: transparent; border: 0; }
.support-art-card.has-image img {
    width: 100%; height: auto;
    object-fit: contain;
    display: block;
    border-radius: 14px;
}
.support-art-card > i {
    font-size: 44px;
    color: var(--orange);
}
.support-art-globe {
    font-size: 28px !important;
    color: var(--muted) !important;
    opacity: 0.4;
    margin-left: 10px;
}
.support-text h3 {
    font-size: clamp(1.15rem, 2.1vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--text);
}
.support-text p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 13px;
    margin: 0 0 14px;
}
.support-actions {
    display: flex; gap: 7px;
    flex-wrap: wrap;
}

/* ═══════════ "OUR TEAM" GRID ═══════════ */
.team-section { text-align: center; }
.team-section .section-head { margin-bottom: 32px; }
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
}
@media (min-width: 540px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .team-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 18px 18px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex; flex-direction: column;
    align-items: center;
}
.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.team-photo {
    width: 96px; height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 3px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    background: var(--soft);
    flex-shrink: 0;
}
.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.team-photo-text {
    background: var(--grad);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 36px;
    letter-spacing: -0.02em;
}
.team-card h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
}
.team-role {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 10px;
}
.team-card p {
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.team-socials {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    width: 100%;
    justify-content: center;
}
.team-socials a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.team-socials a:hover {
    color: white;
    transform: translateY(-2px);
}
.team-socials a.tg-wa:hover { background: #25d366; box-shadow: 0 6px 14px rgba(37,211,102,0.35); }
.team-socials a.tg-fb:hover { background: #1877f2; box-shadow: 0 6px 14px rgba(24,119,242,0.35); }
.team-socials a.tg-tg:hover { background: #229ed9; box-shadow: 0 6px 14px rgba(34,158,217,0.35); }

/* ═══════════ FOOTER ═══════════ */
.site-footer {
    background: #111827;
    color: #cbd5e1;
    padding: 32px 0 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (min-width: 700px)  { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); } }

.site-footer h4 {
    color: white;
    font-size: 10.5px; font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.site-footer p, .site-footer a {
    font-size: 11.5px;
    color: #cbd5e1;
    margin: 0 0 5px;
    display: flex; align-items: center; gap: 5px;
}
.site-footer p i { color: var(--amber); }
.site-footer a:hover { color: var(--amber); }
.site-footer a.bullet { padding: 3px 0; transition: transform 0.2s ease; }
.site-footer a.bullet::before { content: '▸'; color: var(--amber); margin-right: 5px; }
.site-footer a.bullet:hover { transform: translateX(3px); }
.hours { font-size: 11px; color: #94a3b8; margin-top: 10px; }
.hours span { color: var(--amber); font-weight: 700; }
.muted { color: #94a3b8; line-height: 1.6; font-size: 12px; }
.muted.small { font-size: 11px; }

.footer-socials {
    display: flex; gap: 6px;
    margin-top: 12px;
}
.footer-socials a {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    color: #cbd5e1;
    border-radius: 50%;
    margin: 0;
    transition: all 0.25s ease;
}
.footer-socials a:hover {
    background: var(--grad);
    color: white;
    transform: translateY(-3px);
}
.footer-socials a i { color: inherit; }

.footer-bottom {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 8px;
    font-size: 10.5px;
    color: #64748b;
}
.footer-bottom .status-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px;
    background: rgba(16,185,129,0.10);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 100px;
    font-weight: 700;
}
.footer-bottom .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse-dot 1.6s ease-in-out infinite;
}
.footer-bottom .fa-heart { color: var(--orange); }
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

/* ═══════════ CONTACT BUBBLE ═══════════ */
.contact-bubble {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 40;
    background: var(--grad);
    color: white;
    padding: 9px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 6px 18px rgba(249,115,22,0.38);
    display: inline-flex; align-items: center; gap: 6px;
    transition: transform 0.22s ease;
}
.contact-bubble:hover { transform: translateY(-3px) scale(1.04); }
@media (max-width: 640px) {
    .contact-bubble { right: 12px; bottom: 12px; padding: 9px 14px; font-size: 11px; }
}

/* ═══════════ LIGHTBOX (update card preview) ═══════════ */
.lightbox {
    position: fixed; inset: 0;
    z-index: 200;
    background: rgba(8, 12, 24, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}
.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: calc(100vh - 40px);
    background: white;
    border-radius: 14px;
    overflow: auto;
    transform: scale(0.94) translateY(10px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox.open .lightbox-inner {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.lightbox-image-wrap {
    position: relative;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}
.lightbox-img {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}
.lightbox-ver {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(15,23,42,0.92);
    color: var(--amber);
    border: 1px solid rgba(251,191,36,0.4);
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.06em;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.lightbox-meta {
    padding: 22px 28px 26px;
}
.lightbox-meta-head {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.lightbox-avatar {
    width: 36px; height: 36px;
    font-size: 14px;
}
.lightbox-author {
    font-size: 13px; font-weight: 800;
    color: var(--text);
    letter-spacing: -0.005em;
}
.lightbox-date {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.lightbox-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.lightbox-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    white-space: pre-wrap;
}

.lightbox-close {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 10;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #0f172a;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.lightbox-close:hover {
    transform: rotate(90deg) scale(1.06);
    background: white;
    box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

@media (max-width: 640px) {
    .lightbox { padding: 12px; }
    .lightbox-inner { border-radius: 12px; }
    .lightbox-img { max-height: 50vh; }
    .lightbox-meta { padding: 18px 20px 22px; }
    .lightbox-title { font-size: 17px; }
    .lightbox-desc  { font-size: 13px; }
    .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; }
}

/* Hint that the card is clickable when an image is present */
.update-card.has-image { cursor: zoom-in; }
.update-card:not(.has-image) { cursor: pointer; }

/* ═══════════ FADE-IN ═══════════ */
.fade {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0,1), transform 0.6s cubic-bezier(0.4,0,0,1);
}
.fade.in { opacity: 1; transform: translateY(0); }
