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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #050505;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Dotted Grid Background */
.dotted-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.2px, transparent 1.2px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}

/* Bottom White Gradient */
.bottom-gradient {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(140px, 18vh, 200px);
    padding-bottom: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 160% 75% at 50% 100%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.22) 22%, rgba(255, 255, 255, 0.08) 45%, rgba(255,255,255,0.02) 65%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

.hero::after {
    content: "";
    display: none;
}

/* Navbar entrance */
.navbar {
    position: fixed;
    top: clamp(16px, 2vh, 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: navbarSlideDown 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes navbarSlideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(32px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(12px, 1.2vh, 14px) clamp(20px, 2.5vw, 28px);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
    height: clamp(20px, 2vw, 24px);
    width: auto;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: clamp(24px, 2.5vw, 32px);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.5);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

.nav-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.nav-telegram img {
    height: clamp(20px, 2vw, 22px);
    width: auto;
    display: block;
}

.nav-telegram:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(140px, 18vh, 200px);
    padding-bottom: clamp(80px, 12vh, 140px);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.headline {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 4px;
}

.subheadline {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: clamp(20px, 3vh, 28px);
    background: linear-gradient(135deg, #ffffff 0%, #c8c8c8 40%, #a0a0a0 70%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: clamp(16px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto clamp(32px, 4vh, 40px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: clamp(14px, 1.5vh, 16px) clamp(24px, 2.5vw, 28px);
    font-size: clamp(14px, 1.3vw, 15px);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 1px 0 rgba(255,255,255,0.12) inset,
        0 8px 32px rgba(0,0,0,0.4),
        0 0 24px rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

.cta-button i {
    font-size: 13px;
    transition: transform 0.25s ease;
    opacity: 0.8;
}

.cta-button:hover {
    background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.07) 100%);
    border-color: rgba(255,255,255,0.25);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 1px 0 rgba(255,255,255,0.18) inset,
        0 8px 40px rgba(0,0,0,0.5),
        0 0 40px rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

.cta-button:hover i {
    transform: translateX(4px);
    opacity: 1;
}

/* Screenshot */
.screenshot-container {
    margin-top: clamp(60px, 8vh, 80px);
    padding: 0 20px;
    width: 100%;
    max-width: min(1400px, 90vw);
}

.screenshot-wrapper {
    position: relative;
    border-radius: clamp(12px, 1.5vw, 20px);
    padding: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
    mask-image: linear-gradient(180deg, black 0%, black 65%, transparent 100%);
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(10px, 1.4vw, 18px);
    background: #0a0a0a;
}

/* ==================== Why Choose Us ==================== */
.why-section {
    position: relative;
    z-index: 3;
    padding: clamp(52px, 6vh, 80px) 24px clamp(44px, 5vh, 68px);
    background: #050505;
    overflow: hidden;
}

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

.why-header {
    text-align: center;
    margin-bottom: clamp(32px, 4vh, 48px);
}

.why-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 22px;
    padding: 8px 20px 8px 28px;
}

.why-eyebrow-arc {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform-origin: center;
    transform: translateY(-50%) rotate(-45deg);
}

.why-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 auto 18px;
}

.why-sub {
    font-size: clamp(14px, 1.1vw, 15px);
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: clamp(36px, 5vh, 56px);
}

.why-card {
    position: relative;
    padding: 24px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(20,20,20,0.6) 0%, rgba(10,10,10,0.6) 100%);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
    min-height: 0;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
}

.why-card::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-12deg);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.35s ease;
}

.why-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card.is-visible:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(28,28,28,0.7) 0%, rgba(14,14,14,0.7) 100%);
    box-shadow: 0 16px 40px -16px rgba(0,0,0,0.7);
}

.why-card:hover::after {
    opacity: 0.9;
}

.why-grid .why-card:nth-child(1) { transition-delay: 0ms, 0ms; }
.why-grid .why-card:nth-child(2) { transition-delay: 80ms, 80ms; }
.why-grid .why-card:nth-child(3) { transition-delay: 160ms, 160ms; }
.why-grid .why-card:nth-child(4) { transition-delay: 80ms, 80ms; }
.why-grid .why-card:nth-child(5) { transition-delay: 160ms, 160ms; }
.why-grid .why-card:nth-child(6) { transition-delay: 240ms, 240ms; }

.why-card-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 4px 12px rgba(0,0,0,0.4);
}

.why-card-title {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.why-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* Marquee pills */
.why-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.why-marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: why-scroll 40s linear infinite;
}

.why-pill {
    flex: none;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(22,22,22,0.7) 0%, rgba(10,10,10,0.7) 100%);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

@keyframes why-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

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

/* ==================== Pricing ==================== */
.pricing-section {
    position: relative;
    z-index: 3;
    padding: clamp(52px, 6vh, 80px) 24px clamp(52px, 6vh, 80px);
    background: #050505;
    overflow: hidden;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: clamp(36px, 4vh, 52px);
}

.pricing-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 22px;
    padding: 8px 20px 8px 28px;
}

.pricing-eyebrow-arc {
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.pricing-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 auto 18px;
}

.pricing-sub {
    font-size: clamp(14px, 1.1vw, 15px);
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 34px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(16,16,16,0.7) 0%, rgba(8,8,8,0.7) 100%);
    backdrop-filter: blur(10px);
    overflow: visible;
    opacity: 0;
    transform: translateY(28px);
    will-change: transform, opacity;
    transition:
        border-color 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        background 900ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 900ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card-featured.is-visible {
    transform: translateY(0) scale(1.04);
}

.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0ms, 0ms, 0ms, 0ms, 0ms; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 120ms, 120ms, 120ms, 120ms, 120ms; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 240ms, 240ms, 240ms, 240ms, 240ms; }

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.10) 50%, transparent 100%);
    border-radius: 24px 24px 0 0;
    transition: background 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(22,22,22,0.8) 0%, rgba(12,12,12,0.8) 100%);
    box-shadow: 0 28px 60px -24px rgba(0,0,0,0.8);
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card-featured {
    transform: translateY(28px) scale(1.04);
    border: 1px solid rgba(255,255,255,0.10);
    background:
        radial-gradient(150% 95% at 50% 115%, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.14) 25%, rgba(255,255,255,0.04) 55%, transparent 80%),
        linear-gradient(180deg, rgba(16,16,16,0.7) 0%, rgba(8,8,8,0.7) 100%);
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,0.85),
        0 -30px 80px -20px rgba(255,255,255,0.12);
    z-index: 2;
}

.pricing-card-featured::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
}

.pricing-card-featured:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: rgba(255,255,255,0.20);
    background:
        radial-gradient(150% 95% at 50% 115%, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0.16) 25%, rgba(255,255,255,0.05) 55%, transparent 80%),
        linear-gradient(180deg, rgba(22,22,22,0.8) 0%, rgba(12,12,12,0.8) 100%);
    box-shadow:
        0 36px 80px -22px rgba(0,0,0,0.88),
        0 -30px 80px -20px rgba(255,255,255,0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #050505;
    background: #fff;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 6px 18px -4px rgba(0,0,0,0.6), 0 0 0 4px rgba(5,5,5,1);
    white-space: nowrap;
}

.pricing-badge-save {
    background: rgba(20,20,20,1);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 6px 18px -4px rgba(0,0,0,0.6), 0 0 0 4px rgba(5,5,5,1);
}

.pricing-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 4px 12px rgba(0,0,0,0.4);
    transition:
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 800ms cubic-bezier(0.22, 1, 0.36, 1),
        background 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover .pricing-card-icon {
    transform: translateY(-2px) scale(1.06);
    border-color: rgba(255,255,255,0.18);
    background: linear-gradient(160deg, #232323 0%, #101010 100%);
}

.pricing-card-name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 24px;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.pricing-amount:has(+ .pricing-subprice) {
    margin-bottom: 6px;
}

.pricing-subprice {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 0 0 24px;
    letter-spacing: 0.01em;
}

.pricing-currency {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    align-self: flex-start;
    margin-top: 10px;
    margin-right: 2px;
}

.pricing-value {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-left: 6px;
    font-weight: 500;
}

.pricing-strike {
    text-decoration: line-through;
    color: rgba(255,255,255,0.35);
    margin-right: 4px;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-cta i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.pricing-cta:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(0,0,0,0.6);
}

.pricing-cta:hover i {
    transform: translateX(3px);
}

.pricing-cta-primary {
    background: #fff;
    color: #050505;
    border-color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 24px -6px rgba(255,255,255,0.18);
}

.pricing-cta-primary:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 12px 30px -6px rgba(255,255,255,0.28);
}

.pricing-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin: 12px 0 0;
    letter-spacing: 0.02em;
}

.pricing-trust i {
    font-size: 9px;
}

.pricing-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 24px;
}

.pricing-divider::before,
.pricing-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.pricing-divider span {
    padding: 0 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    transition: color 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover .pricing-features li {
    color: rgba(255,255,255,0.92);
}

.pricing-features li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    font-size: 8px;
    transition:
        background 600ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover .pricing-features li i {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.20);
    transform: scale(1.08);
}

.pricing-card-featured .pricing-features li i {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.22);
    color: #fff;
}

.pricing-feature-highlight {
    color: #fff !important;
    font-weight: 600;
}

.pricing-feature-highlight i {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
}

@media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 32px; }
    .pricing-card-featured { transform: translateY(28px); }
    .pricing-card-featured.is-visible { transform: translateY(0); }
    .pricing-card-featured:hover { transform: translateY(-8px); }
    .pricing-card-featured.is-visible:hover { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .pricing-card-featured {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .pricing-card-featured { transform: scale(1.04); }
}

/* ==================== Hub / Integrations ==================== */
.hub-section {
    position: relative;
    z-index: 3;
    padding: clamp(60px, 7vh, 100px) 24px clamp(50px, 6vh, 80px);
    background: #050505;
    overflow: hidden;
}

.hub-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hub-layout {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.hub-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 20px;
}

.hub-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 22px;
    padding: 8px 20px 8px 28px;
}

.hub-eyebrow-arc {
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.hub-title {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 22px;
}

.hub-sub {
    font-size: clamp(14px, 1.1vw, 16px);
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 0 48px;
}

.hub-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 44px;
    width: 100%;
}

.hub-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-stat-label {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.hub-stage {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    margin: 0 auto;
}

.hub-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    pointer-events: none;
    z-index: 1;
}


/* Center node */
.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 5;
}

.hub-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 30%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.hub-center-icon {
    width: 132px;
    height: 132px;
    border-radius: 30px;
    background: linear-gradient(160deg, #ffffff 0%, #d8d8d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 56px;
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,0.9),
        inset 0 -2px 0 rgba(0,0,0,0.08),
        0 20px 60px rgba(255,255,255,0.18),
        0 0 100px rgba(255,255,255,0.18);
    animation: centerPulse 4s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(0,0,0,0.08), 0 20px 60px rgba(255,255,255,0.18), 0 0 100px rgba(255,255,255,0.18); }
    50%       { box-shadow: inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(0,0,0,0.08), 0 20px 80px rgba(255,255,255,0.28), 0 0 140px rgba(255,255,255,0.28); }
}

.hub-center-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.hub-center-label {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Orbit rings */
.hub-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 2;
}

.hub-orbit-inner { --radius: 187px; }
.hub-orbit-outer { --radius: 319px; }

.hub-item {
    position: absolute;
    top: 0;
    left: 0;
    --angle: calc((360deg / var(--n)) * var(--i) - 90deg);
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translate(var(--radius))
        rotate(calc(var(--angle) * -1));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Stagger outer ring by half a step for cleaner look */
.hub-orbit-outer .hub-item {
    --angle: calc((360deg / var(--n)) * (var(--i) + 0.5) - 90deg);
}

.hub-tile {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: linear-gradient(160deg, #1a1a1a 0%, #0c0c0c 100%);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -2px 0 rgba(0,0,0,0.4),
        0 10px 30px rgba(0,0,0,0.55);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
}

.hub-orbit-outer .hub-tile {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    font-size: 26px;
    opacity: 0.85;
}

.hub-tile:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255,255,255,0.18);
    background: linear-gradient(160deg, #222 0%, #111 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -2px 0 rgba(0,0,0,0.4),
        0 18px 40px rgba(0,0,0,0.7);
}

.hub-tile img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    filter: brightness(1.05);
}

.hub-orbit-outer .hub-tile img {
    width: 58%;
    height: 58%;
}

.hub-label {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
}

.hub-orbit-outer .hub-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .hub-layout { grid-template-columns: 1fr; gap: 60px; }
    .hub-copy { padding-left: 0; align-items: center; text-align: center; }
    .hub-sub { margin-left: auto; margin-right: auto; }
    .hub-stats { justify-content: center; }
}

@media (max-width: 900px) {
    .hub-stage { height: 560px; max-width: 560px; }
    .hub-lines { width: 560px; height: 560px; }
    .hub-orbit-inner { --radius: 150px; }
    .hub-orbit-outer { --radius: 255px; }
    .hub-center-icon { width: 100px; height: 100px; font-size: 42px; border-radius: 24px; }
    .hub-tile { width: 70px; height: 70px; font-size: 26px; border-radius: 18px; }
    .hub-orbit-outer .hub-tile { width: 58px; height: 58px; font-size: 22px; border-radius: 14px; }
    .hub-label { font-size: 11px; }
    .hub-stats { gap: 24px; }
}

@media (max-width: 600px) {
    .hub-stage { height: 460px; max-width: 460px; }
    .hub-lines { width: 460px; height: 460px; }
    .hub-orbit-inner { --radius: 123px; }
    .hub-orbit-outer { --radius: 209px; }
    .hub-label { display: none; }
    .hub-stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ==================== Finale (About) Card ==================== */
.finale-section {
    position: relative;
    z-index: 3;
    padding: clamp(40px, 6vh, 80px) 24px clamp(60px, 8vh, 100px);
    background: #050505;
}

.finale-card {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    background: #0a0a0b;
    text-align: center;
}

.finale-title {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 12px;
}

.finale-text {
    max-width: 480px;
    margin: 0 auto;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    line-height: 1.6;
}

.finale-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.finale-cta-primary,
.finale-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.finale-cta-primary {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.finale-cta-primary:hover {
    background: rgba(255,255,255,0.88);
}

.finale-cta-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.12);
}

.finale-cta-ghost:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.22);
    color: #fff;
}

/* ==================== Footer ==================== */
.site-footer {
    position: relative;
    z-index: 3;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 24px 32px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 18px;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.footer-socials a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-wordmark {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: clamp(60px, 16vw, 200px);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 24px 0 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
    animation: footerPulse 2s ease-in-out infinite;
}

@keyframes footerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .finale-card {
        border-radius: 24px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline,
    .subheadline {
        font-size: 48px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-link {
        font-size: 13px;
    }

    .description {
        font-size: 16px;
    }

    .nav-container {
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .headline,
    .subheadline {
        font-size: 36px;
    }

    .nav-links {
        gap: 16px;
    }

    .navbar {
        top: 16px;
    }
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    position: relative;
    padding: clamp(52px, 6vh, 80px) 40px clamp(52px, 6vh, 80px);
    z-index: 1;
}

.faq-inner {
    max-width: 880px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: clamp(32px, 4vh, 52px);
}

.faq-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 22px;
    padding: 8px 20px 8px 28px;
}

.faq-eyebrow-arc {
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.faq-title {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 auto 18px;
}

.faq-sub {
    font-size: clamp(14px, 1.1vw, 15px);
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(24px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.faq-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.is-open {
    border-color: rgba(255,255,255,0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.025) 100%);
}

.faq-item.is-open::before {
    opacity: 1;
}

.faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-q-text {
    color: rgba(255,255,255,0.92);
    font-size: clamp(15px, 1.15vw, 17px);
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-q-text {
    color: #fff;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
}

.faq-item:hover .faq-icon {
    border-color: rgba(255,255,255,0.22);
    color: #fff;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
}

.faq-a-wrap {
    height: 0;
    overflow: hidden;
    transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a {
    margin: 0;
    padding: 0 26px 24px;
    color: rgba(255,255,255,0.6);
    font-size: clamp(13px, 1vw, 14.5px);
    line-height: 1.75;
    letter-spacing: 0.005em;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease 0.05s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.faq-item.is-open .faq-a {
    opacity: 1;
    transform: translateY(0);
}

.faq-a a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.faq-a a:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.6);
}

@media (max-width: 720px) {
    .faq-section {
        padding: 80px 20px 60px;
    }
    .faq-q {
        padding: 18px 20px;
        gap: 16px;
    }
    .faq-a {
        padding: 0 20px 20px;
    }
}

/* ==================== Mobile Navbar ==================== */
@media (max-width: 640px) {
    .navbar {
        top: 12px;
        left: 12px;
        right: 12px;
        transform: none;
        width: auto;
    }

    @keyframes navbarSlideDown {
        from { opacity: 0; transform: translateY(-12px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .nav-container {
        padding: 10px 16px;
        gap: 0;
        justify-content: space-between;
        width: 100%;
        border-radius: 14px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-link {
        font-size: 12px;
    }

    /* Hide less-important links on very small screens */
    @media (max-width: 420px) {
        .nav-link:nth-child(4),
        .nav-link:nth-child(5) {
            display: none;
        }
        .nav-links {
            gap: 10px;
        }
    }
}

/* ==================== Mobile Hero ==================== */
@media (max-width: 640px) {
    .hero {
        padding-top: clamp(110px, 20vw, 150px);
        padding-bottom: clamp(40px, 8vw, 80px);
    }

    .hero-content {
        padding: 0 16px;
    }

    .description {
        font-size: 15px;
        padding: 0 4px;
    }

    .cta-button {
        padding: 13px 22px;
        font-size: 14px;
    }

    .screenshot-container {
        padding: 0 12px;
        margin-top: 40px;
    }
}

/* ==================== Mobile Hub ==================== */
@media (max-width: 480px) {
    .hub-section {
        padding: clamp(40px, 6vw, 60px) 16px;
        overflow: hidden;
    }

    .hub-layout {
        gap: 40px;
    }

    .hub-stage {
        height: 380px;
        max-width: 380px;
        overflow: hidden;
    }

    .hub-lines {
        width: 380px;
        height: 380px;
    }

    .hub-orbit-inner { --radius: 100px; }
    .hub-orbit-outer { --radius: 172px; }

    .hub-center-icon {
        width: 72px;
        height: 72px;
        font-size: 30px;
        border-radius: 18px;
    }

    .hub-center-label {
        font-size: 14px;
    }

    .hub-tile {
        width: 54px;
        height: 54px;
        font-size: 20px;
        border-radius: 13px;
    }

    .hub-orbit-outer .hub-tile {
        width: 44px;
        height: 44px;
        font-size: 16px;
        border-radius: 11px;
    }

    .hub-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hub-stat-value {
        font-size: clamp(22px, 6vw, 32px);
    }

    .hub-stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .hub-copy {
        padding: 0 8px;
    }
}

/* ==================== Mobile Pricing ==================== */
@media (max-width: 640px) {
    .pricing-section {
        padding: clamp(40px, 6vw, 60px) 16px;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-value {
        font-size: 44px;
    }
}

/* ==================== Mobile Why Section ==================== */
@media (max-width: 640px) {
    .why-section {
        padding: clamp(40px, 6vw, 60px) 16px clamp(36px, 5vw, 52px);
    }
}

/* ==================== Mobile Footer ==================== */
@media (max-width: 640px) {
    .site-footer {
        padding: 48px 16px 24px;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 380px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }
}

/* ==================== Touch device hover cleanup ==================== */
@media (hover: none) {
    .why-card.is-visible:hover {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .pricing-card-featured.is-visible:hover {
        transform: scale(1.04);
    }
}

/* ==================== Tablet (641px - 1024px) ==================== */
@media (min-width: 641px) and (max-width: 1024px) {
    .hero {
        padding-top: clamp(130px, 16vh, 170px);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .pricing-value {
        font-size: 44px;
    }

    .hub-layout {
        gap: 48px;
    }

    .hub-stage {
        height: 500px;
        max-width: 500px;
    }

    .hub-lines {
        width: 500px;
        height: 500px;
    }

    .hub-orbit-inner { --radius: 135px; }
    .hub-orbit-outer { --radius: 230px; }
}
