/* ==========================================================================
   Kira Scripts — Ascend Aesthetics & Dark Architecture
   Color Palette: Deep Slate-Black, Violet/Purple Accent, Emerald Ping
   ========================================================================== */

:root {
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Theme colors */
    --color-bg: #070C17;
    --color-bg-card: rgba(14, 20, 36, 0.45);
    --color-primary: #A855F7;
    --color-primary-hover: #C084FC;
    --color-pink: #E844A0;
    --color-green: #23A55A;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(168, 85, 247, 0.45);

    /* Text */
    --text-foreground: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --text-dark: #334155;
}

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

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--text-foreground);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

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

/* ═══════════ BACKGROUND ATMOSPHERIC SMOKE ═══════════ */
.smoke-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.smoke-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    will-change: transform;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #7010c0 0%, #2b0852 60%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: driftAura 24s ease-in-out infinite alternate;
}

.blob-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #c0106a 0%, #30061e 60%, transparent 70%);
    top: 20%;
    right: -200px;
    animation: driftAura 28s ease-in-out infinite alternate-reverse;
}

.smoke-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, #070C17 90%);
}

@keyframes driftAura {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(80px, 60px) scale(1.15); }
    100% { transform: translate(-40px, 120px) scale(0.95); }
}

/* ═══════════ FIXED HEADER & FLOATING NAVIGATION (ASCEND STYLE) ═══════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 1.5rem 0.5rem;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.header-inner {
    max-width: 72rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}
.brand-link:hover {
    transform: scale(1.04);
}
.brand-svg {
    filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.4));
}
.brand-wordmark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    background: linear-gradient(180deg, #FFFFFF 30%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-foreground);
    margin-top: 0.6rem;
    opacity: 0.9;
}

/* Floating Ticks Navigation Bar */
.ticks-nav {
    display: inline-flex;
    align-items: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.3rem 0.4rem;
    border-radius: 4px;
    margin-top: 1rem;
    gap: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.06);
}

.t-link {
    font-family: var(--font-display);
    font-size: 12.6px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    padding: 0.55rem 1.05rem;
    border-radius: 2px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.t-link:hover {
    color: var(--color-primary);
    background: rgba(168, 85, 247, 0.08);
}

.nav-divider {
    width: 1px;
    height: 0.9rem;
    background: var(--color-border);
    margin: 0 0.45rem;
}

.discord-pill:hover {
    color: #5865F2;
}

.live-dot-wrap {
    position: relative;
    display: flex;
    width: 6px;
    height: 6px;
}
.live-dot-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-green);
    opacity: 0.75;
    animation: pingDot 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.live-dot-solid {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
}
@keyframes pingDot {
    75%, 100% { transform: scale(2.4); opacity: 0; }
}

.discord-count {
    font-family: var(--font-mono);
    font-size: 12.6px;
    color: var(--text-foreground);
    font-weight: 600;
}

/* ═══════════ MAIN CONTENT ═══════════ */
.main-content {
    position: relative;
    z-index: 10;
    flex: 1;
}

/* ═══════════ HERO SECTION ═══════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13rem 1.5rem 4rem;
}

.hero-container {
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-brand-mark {
    margin-bottom: 1.5rem;
}
.hero-hex-svg {
    filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.35));
}

.hero-heading {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: var(--text-foreground);
    margin-bottom: 1.25rem;
}

.hero-pitch {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 24rem;
    margin-bottom: 2rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.25rem;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--color-primary);
    color: #070C17;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 28px -6px rgba(168, 85, 247, 0.65);
}
.btn-shop-now:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 0 38px -4px rgba(168, 85, 247, 0.85);
    transform: translateY(-1px);
}
.btn-shop-now svg {
    transition: transform 0.25s ease;
}
.btn-shop-now:hover svg {
    transform: translateX(4px);
}

.btn-get-support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--text-foreground);
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.btn-get-support:hover {
    border-color: rgba(168, 85, 247, 0.55);
    background: rgba(168, 85, 247, 0.08);
    color: var(--color-primary);
}

/* Ratings */
.hero-ratings-block {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars-list {
    color: var(--color-primary);
    font-size: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.rating-text {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
}
.rating-val {
    font-weight: 700;
    color: var(--text-foreground);
}
.rating-div {
    margin: 0 0.4rem;
    color: var(--text-dark);
}
.rating-count {
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ── RIGHT MENU SHELL (ASCEND STYLE) ── */
.hero-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-shell-box {
    position: relative;
    width: 100%;
    max-width: 740px;
    height: 520px;
    background: rgba(6, 10, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85), 0 0 60px rgba(168, 85, 247, 0.12);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.menu-shell-box:hover {
    box-shadow: 0 35px 110px rgba(0, 0, 0, 0.95), 0 0 80px rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.menu-embedded-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ═══════════ SECTIONS COMMON ═══════════ */
.section-block {
    position: relative;
    padding: 5rem 1.5rem;
}

.section-wrap {
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
}

.section-title-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.st-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--color-primary);
    flex-shrink: 0;
}
.st-rule {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, var(--color-border), transparent 80%);
}

.section-main-heading {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-foreground);
    margin-bottom: 2.5rem;
}

/* ═══════════ PRODUCTS SECTION (ASCEND STYLE) ═══════════ */
.products-tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.asc-prod-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    backdrop-filter: blur(8px);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.asc-prod-card:hover {
    border-color: var(--color-border-hover);
    background: rgba(18, 24, 44, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(168, 85, 247, 0.12);
}

.apc-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.5s ease;
}
.asc-prod-card:hover .apc-thumb {
    transform: scale(1.02);
}

.apc-scripts-bg {
    background: linear-gradient(135deg, #090518 0%, #1a0840 50%, #0d0620 100%);
    background-image:
        radial-gradient(ellipse at 30% 60%, rgba(168, 85, 247, 0.25) 0%, transparent 65%),
        linear-gradient(135deg, #090518, #1a0840);
}
.apc-bundle-bg {
    background: linear-gradient(135deg, #0d0620 0%, #2b0852 50%, #150426 100%);
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(232, 68, 160, 0.25) 0%, transparent 65%),
        linear-gradient(135deg, #0d0620, #2b0852);
}
.apc-spoofer-bg {
    background: linear-gradient(135deg, #090418 0%, #240845 50%, #12042f 100%);
    background-image:
        radial-gradient(ellipse at 70% 40%, rgba(168, 85, 247, 0.2) 0%, transparent 65%),
        linear-gradient(135deg, #090418, #240845);
}

.apc-status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    background: rgba(7, 12, 23, 0.75);
    padding: 0.35rem 0.65rem;
    backdrop-filter: blur(8px);
    border-radius: 2px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}
.status-ping {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
}

.apc-text-overlay {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
    width: 100%;
}
.apc-title-big {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.apc-title-sub {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
}

.apc-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.apc-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-foreground);
    margin-bottom: 1.25rem;
}

.apc-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    margin-top: auto;
}

.apc-pricing-box {
    display: flex;
    flex-direction: column;
}
.apc-from {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    margin-bottom: 2px;
}
.apc-price-val {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.old-cut {
    font-size: 11px;
    color: var(--text-dim);
    text-decoration: line-through;
}
.now-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-foreground);
}

.apc-view-btn {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    transition: transform 0.2s ease, color 0.2s ease;
}
.asc-prod-card:hover .apc-view-btn {
    color: var(--color-pink);
    transform: translateX(3px);
}

/* ═══════════ HOW IT WORKS (ASCEND 2x2 TILES) ═══════════ */
.how-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--color-border);
    background: var(--color-border);
    gap: 1px;
    overflow: hidden;
    border-radius: 4px;
}

.how-tile {
    background: rgba(7, 12, 23, 0.85);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}
.how-tile:hover {
    background: rgba(16, 24, 46, 0.85);
}

.ht-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
}
.ht-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-foreground);
    margin-bottom: 0.65rem;
}
.ht-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ═══════════ WHAT PLAYERS SAY (MARQUEE) ═══════════ */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scrollMarquee 150s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-figure {
    flex-shrink: 0;
    width: 19rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 2px;
    transition: border-color 0.25s, transform 0.25s;
}
.review-figure:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.rf-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.rf-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.12);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rf-user-block {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.rf-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-foreground);
}
.rf-stars {
    color: var(--color-primary);
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 2px;
}

.rf-quote {
    margin-top: 0.75rem;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--color-border);
    padding: 2rem 1.5rem;
}
.footer-wrap {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-brand {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}
.footer-copy {
    font-size: 12px;
    color: var(--text-dim);
}

/* ═══════════ PRODUCT MODAL / PLAN SELECTOR ═══════════ */
.prod-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.prod-modal-backdrop.active {
    display: flex;
}

.prod-modal-box {
    width: 100%;
    max-width: 520px;
    background: #080D1A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(168, 85, 247, 0.15);
    animation: scaleModal 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleModal {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

.pm-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.pm-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pm-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}
.pm-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
}
.pm-close {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
.pm-close:hover { color: #FFFFFF; }

.pm-desc-box {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pm-tiers-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.pm-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 20, 36, 0.7);
    border: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.pm-tier:hover {
    border-color: rgba(255, 255, 255, 0.2);
}
.pm-tier.selected {
    border-color: var(--color-primary);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.pm-tier-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pm-tier-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pm-pop {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 800;
    color: var(--color-primary);
    background: rgba(168, 85, 247, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
}
.pm-pop.gold {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.15);
}
.pm-tier-sub {
    font-size: 11.5px;
    color: var(--text-dim);
}
.pm-tier-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-foreground);
}

.pm-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
}
.pm-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.pm-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary);
    color: #070C17;
    font-family: var(--font-mono);
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem;
    border-radius: 6px;
    transition: all 0.25s;
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.5);
    margin-bottom: 0.75rem;
}
.pm-cta-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(168, 85, 247, 0.7);
}
.pm-hint {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-dim);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left-col {
        align-items: center;
    }
    .hero-pitch { max-width: 32rem; }
    .hero-cta-row { justify-content: center; }
    .hero-ratings-block { justify-content: center; }
    .products-tri-grid { grid-template-columns: 1fr; }
    .how-tiles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { padding: 1rem 1rem 0; }
    .ticks-nav { flex-wrap: wrap; justify-content: center; }
    .hero-section { padding-top: 15rem; }
    .hero-heading { font-size: 2.2rem; }
    .menu-shell-box { height: 380px; }
}
