/* --- LOCAL FONTS --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('assets/fonts/InterVariable.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('assets/fonts/InterVariable-Italic.woff2') format('woff2');
}

/* --- 1. DESIGN TOKENS (Variables) --- */
:root {
    /* Colors - Derived from design-tokens.json */
    --bg-main: #050507;
    --bg-surface: #121217;
    --bg-card: #1c1c24;
    --bg-overlay: rgba(5, 5, 7, 0.8);

    --primary-main: #9333ea;
    --primary-glow: rgba(147, 51, 234, 0.5);
    --primary-hover: #7e22ce;
    --primary-subtle: rgba(147, 51, 234, 0.1);

    --text-main: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --status-success: #10b981;
    --status-error: #ef4444;

    --border-color: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --h1-size: 3.5rem;
    --h1-height: 1.1;
    --h1-weight: 800;

    --h2-size: 2.5rem;
    --h2-height: 1.2;
    --h2-weight: 800;

    --body-size: 1rem;
    --body-height: 1.6;
    --body-weight: 400;

    /* Spacing Scale - Refined 8px grid */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 2rem;
    /* 32px */
    --space-lg: 4rem;
    /* 64px */
    --space-xl: 6rem;
    /* 96px */
    --space-2xl: 8rem;
    /* 128px */

    /* Layout */
    --container-max-width: 1200px;
    --section-padding: var(--space-2xl) 1.5rem;
    /* Increased vertical breathing room */

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(147, 51, 234, 0.3);

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- 2. RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: var(--body-height);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dots Background */
.dots-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text-main);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--h1-size);
    line-height: var(--h1-height);
    font-weight: var(--h1-weight);
}

h2 {
    font-size: var(--h2-size);
    line-height: var(--h2-height);
    font-weight: var(--h2-weight);
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
    /* Increased from md to lg */
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    max-width: 65ch;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* --- 3. FLOATING HEADER --- */
.floating-header {
    position: sticky;
    top: 1.25rem;
    z-index: 50;
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.floating-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    /* Liquid Glass Effect */
    background: rgba(18, 18, 23, 0.35);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
}

.nav-logo:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: var(--text-main);
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Nav Buttons */
.nav-btn-ghost {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- HERO ALERT PILL --- */
.hero-alert-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);

    /* Liquid Glass Effect */
    background: rgba(18, 18, 23, 0.35);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    /* Success Green */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #10b981;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-trigger {
        display: none;
    }
}

/* --- 4. SHEET --- */
.sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sheet-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.sheet-content {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background: var(--bg-surface);
    z-index: 100;
    padding: 1.5rem;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid var(--border-color);
}

.sheet-content.open {
    transform: translateX(0);
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.sheet-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.close-sheet {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.sheet-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sheet-link {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.sheet-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.sheet-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Button Variants */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
}

.btn-icon {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-main);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary-full {
    background-color: var(--primary-main);
    color: white;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline-full {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 600;
}

/* --- 5. SECTIONS --- */

/* Hero Section Spacing Updates */
/* Hero Section Spacing Updates */
.section-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100dvh;
    /* Ensure it covers the full viewport height */
    padding-top: 100px;
    /* Account for floating header */
    padding-bottom: var(--space-xl);
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* 1. Badge */
.hero-alert-pill {
    margin-bottom: var(--space-md);
    /* Consistent spacing */
    /* Maintain existing glass styles */
}

/* 2. Logo */
.hero-logo-img {
    max-width: 350px;
    /* Increased size for better visibility */
    width: 100%;
    margin-bottom: var(--space-md);
    /* Breathable spacing */
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.2));
    /* Subtle glow for impact/tech feel */
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

/* 3. Headline */
.hero-title {
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 50px rgba(147, 51, 234, 0.2);
    /* Enhanced glow */
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    /* Optimized line breaks */
}

/* 4. Subheadline */
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    max-width: 600px;
    /* Limited width for better scanability */
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
    font-weight: 400;
}

/* 5. CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    /* Consistent spacing */
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 640px) {
    .section-hero {
        padding-top: 120px;
        /* More space on mobile for header */
    }

    .hero-title {
        font-size: 2.5rem;
        /* Adjust for mobile */
    }

    /* Keep CTAs horizontal on mobile if possible, or wrap gracefully */
    .hero-ctas {
        flex-direction: row;
    }

    .btn {
        padding: 0.75rem 1rem;
        /* Slightly smaller padding on small screens if needed */
        font-size: 0.9rem;
    }
}

/* Value Cards Grid (Glass) */
.glass-card {
    background: rgba(28, 28, 36, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    /* Reduced internal padding slightly */
    transition: var(--transition-base);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    /* Centered content alignment */
    text-align: center;
    gap: 0.5rem;
    /* Gap between icon/title/text */
}

.glass-card:hover {
    background: rgba(28, 28, 36, 0.8);
    border-color: var(--primary-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
}

.glass-card p {
    margin-bottom: 0;
    /* Remove default internal margin */
}

/* Value Grid specific */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: -80px;
    /* Overlap effect */
    position: relative;
    z-index: 2;
}

/* --- ABOUT GGCLIENT SECTION --- */
.section-about {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--text-main);
    text-align: left;
    max-width: 100%;
    margin-inline: 0;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 65ch;
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-frame {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(147, 51, 234, 0.1);
    /* Subtle glow */
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mockup-frame:hover .about-img {
    transform: scale(1.02);
}

@media (max-width: 1023px) {
    .about-content {
        align-items: center;
        text-align: center;
    }

    .about-title {
        text-align: center;
        margin-inline: auto;
        font-size: 2rem;
    }

    .about-desc {
        text-align: center;
        margin-inline: auto;
    }

    .about-visual {
        margin-top: var(--space-md);
    }
}

/* Tools Grid Spacing */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    /* Consistent gap */
    margin-top: var(--space-lg);
}

.tool-card {
    background: rgba(28, 28, 36, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    /* Normalized internal padding */
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.5rem;
    /* Consistent internal gap */
}

.tool-card:hover {
    background: rgba(28, 28, 36, 0.7);
    border-color: var(--primary-main);
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-main);
}

.tool-card p {
    margin-bottom: 0;
}

/* Marquee Spacing */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: var(--space-lg) 0;
    /* Increased vertical padding */
    margin-bottom: var(--space-md);
}

.marquee-content {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    animation: marquee 40s linear infinite;
    align-items: center;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.proof-item {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Spacing */
.pricing-section-container {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
    /* Increased separation from title */
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    /* Consistent internal padding */
    width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    gap: 1rem;
    /* Spacer for internal elements */
}

.pricing-card.best-value {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid var(--primary-main);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
}

.badge {
    background: var(--primary-main);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

/* FAQ Spacing */
.accordion {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    /* Separated from title */
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    /* Subtle spacing between items */
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-main);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
    color: var(--primary-main);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--text-secondary);
    padding-right: 2rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    margin: 0;
}

/* Footer Spacing */
.footer {
    background: var(--bg-surface);
    padding: var(--space-lg) 0 var(--space-md);
    /* Reduced top slightly, standard bottom */
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: var(--space-2xl);
    /* Massive space before footer starts */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-main);
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    width: 100%;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.highlight {
    color: var(--primary-main);
    text-shadow: var(--shadow-glow);
    position: relative;
    display: inline-block;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .pricing-card.best-value {
        transform: scale(1);
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* --- 6. SCREEN EFFECTS --- */
.screen-blur-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    z-index: 40;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to top, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
    pointer-events: none;
    user-select: none;
}

/* --- 7. SQUISHY PRICING --- */
.squishy-card {
    position: relative;
    width: 320px;
    height: 480px;
    /* Increased height to match verticality of image */
    background-color: #9333ea;
    border-radius: 1.5rem;
    /* Larger border radius */
    padding: 2rem;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transform-origin: center;
    border: none;
}

.squishy-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(147, 51, 234, 0.3);
}

.squishy-content {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.squishy-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.squishy-price {
    display: block;
    font-family: var(--font-family);
    /* Using Inter for clean bold look */
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.squishy-period {
    font-size: 2.5rem;
    display: block;
    font-weight: 800;
}

.squishy-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    line-height: 1.5;
    font-weight: 500;
    max-width: 90%;
}

.squishy-btn {
    position: relative;
    z-index: 20;
    background: white;
    color: #121217;
    border: none;
    padding: 1rem;
    border-radius: 0.75rem;
    font-family: var(--font-family);
    /* Inter */
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: auto;
    /* Push to bottom */
    width: 100%;
}

.squishy-btn:hover {
    transform: scale(1.02);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Background SVGs Animation */
.squishy-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    fill: #1c1c1c;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Organic ease-out */
}

/* Top Shape */
.bg-ellipse-top {
    transform-origin: 50% 0%;
    /* Scale from top */
}

.squishy-card:hover .bg-ellipse-top {
    transform: translateY(5px) scale(1, 0.7);
    /* Float down slightly, flatten vertically */
}

/* Bottom Shape */
.bg-ellipse-bottom {
    transform-origin: 50% 100%;
    /* Scale from bottom */
}

.squishy-card:hover .bg-ellipse-bottom {
    transform: translateY(-20px) scale(1, 1.4);
    /* Move up more, significant vertical stretch */
}

/* --- 8. DISCORD ANALYSIS SECTION --- */
.section-discord-analysis {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-surface));
    /* Subtle gradient */
    border-bottom: 1px solid var(--border-color);
}

.discord-analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .discord-analysis-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        /* Generous spacing */
    }
}

.discord-analysis-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.discord-analysis-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    /* Black/Bold */
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: var(--space-md);
    text-align: left;
    /* Override global center h2 */
    margin-inline: 0;
    /* Override global auto margins */
}

@media (min-width: 1024px) {
    .discord-analysis-title {
        font-size: 3rem;
    }
}

.discord-analysis-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    /* Light/Medium */
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 50ch;
}

/* Mockup Column */
.discord-analysis-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.discord-embed-mockup {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    background: #2f3136;
    /* Discord Embed Background */
    border-radius: 4px;
    /* Slightly sharper for discord feel */
    border-left: 4px solid var(--primary-main);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Discord fonts simulation */
}

.embed-banner-placeholder {
    width: 100%;
    height: 35%;
    background: #202225;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Adding a subtle shimmer to placeholder */
.embed-banner-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.05) 20%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.embed-content-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.embed-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.embed-desc-lines {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.embed-line {
    height: 0.6rem;
    background: #40444b;
    border-radius: 2px;
    width: 100%;
}

.embed-line.short {
    width: 60%;
}

.embed-btn-placeholder {
    margin-top: auto;
    width: 100px;
    height: 32px;
    background: #5865F2;
    /* Discord Blurple */
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- PLATFORM MOCKUPS SECTION --- */
.section-platforms {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.platform-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.platform-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    /* Bold/Black */
    text-align: center;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
    max-width: 800px;
}

.platform-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    /* Light/Medium */
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    /* Spacious gap before mockups */
    max-width: 600px;
    line-height: 1.6;
}

.platforms-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    /* Noticeable spacing */
    flex-wrap: wrap;
    width: 100%;
}

.platform-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

.platform-wrap:hover {
    transform: translateY(-10px);
}

.platform-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* Dark theme with subtle purple accents */
    background: linear-gradient(145deg, #121217, #0a0a0e);
    border: 1px solid rgba(147, 51, 234, 0.15);
    /* Subtle purple border */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(147, 51, 234, 0.05);
    /* Inner subtle glow */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.circle-content {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-main);
}

.circle-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.platform-circle:hover {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow:
        0 20px 50px -10px rgba(147, 51, 234, 0.2),
        inset 0 0 30px rgba(147, 51, 234, 0.1);
}

.platform-circle:hover .circle-glow {
    opacity: 1;
}

.platform-icon {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.platform-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-family);
    transition: color 0.3s ease;
}

.platform-wrap:hover .platform-icon,
.platform-wrap:hover .platform-letter {
    color: var(--text-main);
    filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.5));
}

.platform-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 1.125rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.platform-wrap:hover .platform-label {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .platforms-row {
        flex-direction: column;
        gap: 3rem;
    }

    .platform-title {
        font-size: 2rem;
    }

    .platform-circle {
        width: 140px;
        height: 140px;
    }

    .section-platforms {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }
}

.platform-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* --- TESTIMONIALS (Imported from Quiz) --- */
.testimonial-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.t-user {
    font-weight: bold;
    color: var(--primary-main);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.testimonials-section {
    margin-top: 5rem;
    width: 100%;
    max-width: 900px;
    /* Reduced max-width for better 2x2 appearance */
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    /* Default to single column for mobile */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-section {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns on desktop */
    }
}

.testimonials-section h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}