@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

:root {
    --bg: #070b12;
    --surface: #0e1324;
    --text: #e8edff;
    --muted: #9aa4c0;
    --line: rgba(255, 255, 255, 0.08);
    --glow: radial-gradient(circle at 50% 25%, rgba(86, 0, 255, 0.3), transparent 45%),
        radial-gradient(circle at 50% 0%, rgba(0, 123, 255, 0.22), transparent 38%);
    --grid: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px);
    --gradient: linear-gradient(120deg, #2d8cff 0%, #7b5dff 48%, #e144ff 100%);
    --outline: rgba(82, 103, 255, 0.4);
}

* {
    box-sizing: border-box;
}

html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
    text-wrap: pretty;
}

.homepage .page {
    font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Apply Montserrat to homepage modals only */
.homepage .modal,
.homepage .modal-content,
.homepage .modal-content * {
    font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Keep brand-style heading font in modal title headers */
.homepage .modal .about-heading,
.homepage .modal .blog-heading {
    font-family: 'Rajdhani', 'Inter', sans-serif;
}

/* Keep modal hierarchy proportional with Montserrat */
.homepage .about-heading,
.homepage .faq-heading,
.homepage .blog-heading {
    letter-spacing: -0.5px;
}

.homepage .faq-question {
    letter-spacing: 0;
}

.homepage .faq-answer,
.homepage .about-text p,
.homepage .blog-card p,
.homepage .auth-desc {
    line-height: 1.62;
}

/* Downloads page typography switch and balancing */
body.downloads-page .page {
    font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
}

body.downloads-page .download-title {
    letter-spacing: -0.45px;
}

body.downloads-page .download-eyebrow {
    letter-spacing: 0.22em;
}

body.downloads-page .download-btn {
    font-weight: 700;
}

body.downloads-page .download-reqs-list li {
    line-height: 1.5;
}

/* Homepage visual polish: keep layout, tighten hierarchy/alignment */
.homepage .nav {
    padding: 10px 24px;
}

.homepage .nav-links {
    gap: 28px;
}

.homepage .nav-links a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.homepage .nav-actions {
    gap: 12px;
}

.homepage .hero {
    margin: 84px auto 68px;
}

.homepage h1 {
    letter-spacing: -0.03em;
}

.homepage .subhead {
    max-width: 820px;
    font-size: 17px;
    line-height: 1.62;
}

.homepage .cta-row {
    margin-bottom: 40px;
}

.homepage .stats {
    max-width: 760px;
    padding: 24px 28px;
}

.homepage .label {
    line-height: 1.35;
}

.homepage .features-intro {
    padding: 90px 32px 24px;
}

.homepage .simple-setup {
    padding: 110px 32px 74px;
}

.homepage .pricing {
    margin: 84px auto 82px;
}

.homepage .pricing-grid {
    margin-top: 84px;
}

body.downloads-page {
    height: 100vh;
    overflow: hidden;
}

body.downloads-page .page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

body.downloads-page .download-hero {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.downloads-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.downloads-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .downloads-bg-video {
        animation: none;
    }
}

.page {
    min-height: 100vh;
    background-color: var(--bg);
    background-image: var(--grid), var(--glow);
    background-size: cover;
    position: relative;
    overflow: visible;
    padding: 32px 0 80px;
}

.page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 38%, rgba(100, 0, 140, 0.2), transparent 48%);
    pointer-events: none;
}

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

.nav {
    position: sticky;
    top: 16px;
    z-index: 30;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(10, 14, 24, 0.6);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    transition: transform 0.2s ease, filter 0.2s ease;
    will-change: transform;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    background: transparent;
    box-shadow: none;
}

.logo-text {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.nav .logo-text {
    font-size: 19.5px;
    position: relative;
    top: 1px;
}

.footer-brand .logo-text {
    font-size: 19.5px;
    position: relative;
    top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.link-muted {
    color: var(--muted);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-small {
    padding: 12px 18px;
}

.btn-primary {
    background: var(--gradient);
    color: #f6f7ff;
    box-shadow: 0 16px 45px rgba(121, 50, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 55px rgba(121, 50, 255, 0.42);
}

.btn-ghost {
    color: var(--text);
    border-color: var(--outline);
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 26px;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.hero {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 90px auto 64px;
    padding: 0 32px;
    text-align: center;
}

/* Modal styles */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translateZ(0);
    /* GPU promote */
    will-change: opacity;
}

.modal-content {
    position: relative;
    background: #111a2d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 20px 20px;
    width: min(420px, 94vw);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: transparent;
    color: #e8edff;
    font-size: 20px;
    cursor: pointer;
}

.auth-desc {
    color: var(--muted);
    margin: 0 0 14px;
}

.gradient-text {
    background: linear-gradient(120deg, #2d8cff 0%, #7b5dff 50%, #e144ff 100%);
    background-clip: text;
    color: transparent;
}

.modal-btn {
    width: 100%;
    margin-top: 10px;
}

.auth-submit-btn {
    background: linear-gradient(90deg, #7fe7ff 0%, #5db8ff 100%);
    color: #0b1b2a;
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(77, 166, 255, 0.35);
}

.auth-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(77, 166, 255, 0.45);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    margin: 14px 0;
}

.modal-divider::before,
.modal-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.auth-consent input {
    margin-top: 3px;
}

.auth-consent a {
    color: #2d8cff;
    text-decoration: underline;
}

.auth-consent a:hover {
    color: #7b5dff;
}

.auth-form label {
    display: grid;
    gap: 6px;
    color: #e8edff;
    font-weight: 600;
    font-size: 14px;
}

.auth-form input {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 12px;
    color: #e8edff;
    font-size: 15px;
}

.auth-error {
    min-height: 16px;
    margin: 4px 0 0;
    font-size: 13px;
    color: #ff4b4b;
    text-align: center;
}

.auth-error-link {
    display: none;
    margin-left: 8px;
    color: #2d8cff;
    text-decoration: underline;
    font-weight: 600;
}

.auth-error-link:hover {
    color: #7b5dff;
}

.auth-resend-btn {
    display: none;
    width: 100%;
    margin-top: 6px;
    background: transparent;
    border: 1px solid rgba(45, 140, 255, 0.5);
    color: #2d8cff;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
    cursor: pointer;
}

.auth-resend-btn:hover {
    border-color: rgba(123, 93, 255, 0.7);
    color: #7b5dff;
}

.auth-resend-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-hero {
    max-width: 980px;
    margin: 120px auto 160px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.download-panel {
    width: min(920px, 100%);
    background: linear-gradient(180deg, rgba(14, 19, 36, 0.95), rgba(8, 12, 24, 0.95));
    border: 1px solid rgba(125, 155, 255, 0.18);
    border-radius: 22px;
    padding: 48px 40px 44px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(4, 8, 18, 0.7);
}

.download-logo {
    width: 90px;
    height: auto;
    margin: 0 auto 14px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.3));
}

.download-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: rgba(127, 231, 255, 0.85);
    margin-bottom: 16px;
}

.download-title {
    margin: 0 0 20px;
    font-size: clamp(26px, 4.8vw, 44px);
    margin-bottom: 28px;
    letter-spacing: -0.6px;
    font-weight: 800;
    background: linear-gradient(120deg, #76e4ff 0%, #6c7dff 45%, #ff77ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.download-tag {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(127, 231, 255, 0.35);
    color: #bff4ff;
    background: rgba(127, 231, 255, 0.08);
}

.download-platform {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(123, 93, 255, 0.35);
    color: #d3ccff;
    background: rgba(123, 93, 255, 0.1);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 28px auto 28px;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7fe7ff 0%, #5db8ff 100%);
    color: #061420;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(77, 166, 255, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 44px rgba(77, 166, 255, 0.6), 0 0 24px rgba(127, 231, 255, 0.55);
}

.download-guide {
    display: block;
    margin: 6px auto 22px;
    text-align: center;
    color: rgba(45, 140, 255, 0.75);
    text-decoration: underline;
    font-weight: 400;
    font-size: 0.78rem;
}

.download-guide:hover {
    color: #7b5dff;
}

.download-reqs {
    text-align: left;
    background: rgba(9, 14, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 22px;
    width: min(500px, 100%);
    margin: 0 auto;
}

.download-reqs h2 {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a9b7d6;
}

.download-reqs ul {
    margin: 0;
    padding-left: 0;
    color: rgba(217, 226, 255, 0.65);
    line-height: 1.55;
    list-style: none;
    display: grid;
    gap: 10px;
}

.download-reqs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.req-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(127, 231, 255, 0.4);
    background: linear-gradient(145deg, rgba(127, 231, 255, 0.18), rgba(45, 140, 255, 0.08));
    position: relative;
    flex-shrink: 0;
    box-shadow: inset 0 0 6px rgba(127, 231, 255, 0.25);
}

.req-icon::before,
.req-icon::after {
    content: "";
    position: absolute;
    background: rgba(127, 231, 255, 0.85);
    border-radius: 2px;
}

.req-icon-ram::before {
    inset: 3px 3px 8px 3px;
}

.req-icon-ram::after {
    height: 2px;
    left: 3px;
    right: 3px;
    bottom: 2px;
}

.req-icon-gamepad::before {
    width: 10px;
    height: 6px;
    left: 3px;
    top: 5px;
    border-radius: 4px;
}

.req-icon-gamepad::after {
    width: 2px;
    height: 2px;
    left: 5px;
    top: 7px;
    box-shadow: 6px 0 0 rgba(127, 231, 255, 0.85);
}

.req-icon-shield::before {
    width: 9px;
    height: 11px;
    left: 3px;
    top: 2px;
    border-radius: 0 0 6px 6px;
}

.auth-success-message {
    color: #2ecc71;
}

.auth-status {
    margin-top: 10px;
    color: var(--muted);
    min-height: 18px;
    font-size: 14px;
}

.user-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    color: #e8edff;
}

.user-email {
    font-size: 14px;
    color: var(--text);
}

.logout-link {
    color: var(--muted);
    font-size: 14px;
}


.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00e0a4;
    display: inline-block;
    transform-origin: center;
    animation: pulse-dot 2s ease-in-out infinite;
}

.dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(0, 224, 164, 0.16);
    opacity: 0.8;
    animation: pulse-ring 2s ease-in-out infinite;
    pointer-events: none;
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.16);
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.22);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.25;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

h1 {
    margin: 28px 0 16px;
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@media (min-width: 900px) {
    .homepage .hero h1 {
        white-space: nowrap;
    }
}

.accent {
    color: #b266ff;
    background: linear-gradient(120deg, #2d8cff 0%, #7b5dff 48%, #e144ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-dot {
    display: inline-block;
    font-size: 1.15em;
    font-weight: 800;
    background: linear-gradient(120deg, #2d8cff 0%, #7b5dff 48%, #e144ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(121, 50, 255, 0.35);
}

.about-content {
    width: min(1100px, 94vw);
    max-width: 1100px;
    text-align: left;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    margin-top: 12px;
}

.about-text h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #e8edff;
}

.about-text p {
    margin: 0 0 10px;
    color: #c7d0e5;
    line-height: 1.6;
}

.about-side {
    display: grid;
    gap: 14px;
}

.about-visual {
    height: 190px;
    background: radial-gradient(circle at 15% 15%, rgba(42, 198, 255, 0.25), transparent 55%),
        radial-gradient(circle at 85% 85%, rgba(255, 75, 216, 0.2), transparent 55%),
        rgba(12, 16, 30, 0.88);
    border: 1px solid rgba(123, 93, 255, 0.4);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(123, 93, 255, 0.15);
}

.about-visual:hover {
    border-color: #2ac6ff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45), 0 0 20px rgba(123, 93, 255, 0.3);
}

.about-visual h4 {
    background: linear-gradient(120deg, #2ac6ff, #ff4bd8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-images {
    display: grid;
    gap: 12px;
}

.about-image {
    border-radius: 16px;
    height: 160px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.about-image-large {
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.about-image-inset {
    margin-top: 16px;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-inset .about-gif {
    object-fit: cover;
    object-position: top;
}

.about-tag {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c7d0e5;
    font-weight: 600;
    font-size: 13px;
}

.about-image-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-credit {
    font-size: 11px;
    color: #9aa4c0;
    opacity: 0.7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-content {
    width: min(560px, 96vw);
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
}

.faq-heading {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.2px;
}

.faq-accordion {
    display: grid;
    gap: 10px;
}

.faq-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    contain: layout;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #e8edff;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.1px;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item.open .faq-question {
    color: #2ac6ff;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px) translateZ(0);
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
    will-change: max-height, opacity, transform;
    color: #c7d0e5;
    line-height: 1.6;
    font-weight: 500;
    font-size: 14px;
    margin-top: 6px;
    backface-visibility: hidden;
    transform-origin: top;
}

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

.blog-content {
    width: min(94vw, 850px);
    max-width: 850px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    padding: 2.5rem;
}

.blog-heading {
    display: inline-block;
    width: fit-content;
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(110deg, #2d8cff 0%, #7b5dff 45%, #e144ff 90%, #ff6df3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.8px;
    text-shadow: 0 0 10px rgba(123, 93, 255, 0.2);
}

.blog-composer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-input,
.blog-textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 26, 0.8);
    color: #f0f4ff;
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-input:focus,
.blog-textarea:focus {
    outline: none;
    border-color: rgba(123, 93, 255, 0.5);
    background: rgba(15, 20, 35, 0.9);
    box-shadow: 0 0 0 4px rgba(123, 93, 255, 0.15);
}

.blog-textarea {
    min-height: 120px;
    max-height: 300px;
    resize: vertical;
}

.blog-publish {
    align-self: flex-start;
    padding: 10px 24px;
    font-weight: 600;
}

#blog-posts-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 12px;
    margin-right: -12px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Blog */
#blog-posts-container::-webkit-scrollbar {
    width: 5px;
}

#blog-posts-container::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #2d8cff, #e144ff);
    border-radius: 10px;
}

#blog-posts-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.blog-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0 20px;
}

.blog-card {
    position: relative;
    background: rgba(15, 20, 35, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover {
    background: rgba(22, 28, 48, 0.85);
    border-color: rgba(123, 93, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: none;
}

.blog-card.expandable {
    cursor: pointer;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

/* Manage / Upgrade states on pricing buttons */
.btn-manage {
    border: 1px solid rgba(124, 243, 255, 0.8);
    background: transparent;
    color: #7cf3ff;
    box-shadow: 0 0 12px rgba(124, 243, 255, 0.25);
}

.btn-manage:hover {
    background: rgba(124, 243, 255, 0.08);
    color: #dff8ff;
}

.btn-upgrade {
    box-shadow: 0 12px 30px rgba(45, 140, 255, 0.28);
}

.blog-card h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #f6f7ff;
    letter-spacing: -0.4px;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
}

.blog-date {
    font-size: 13px;
    font-weight: 500;
    color: #9aa4c0;
    opacity: 0.7;
    margin-bottom: 4px;
}

.blog-card p {
    margin: 0;
    color: #c7d0e5;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: pre-wrap;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card.expanded {
    background: rgba(22, 28, 48, 0.85);
    border-color: rgba(123, 93, 255, 0.4);
    cursor: default;
}

.blog-card.expanded p {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.blog-read-more {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2d8cff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.blog-card:hover .blog-read-more {
    opacity: 1;
    color: #7b5dff;
}

.blog-card.expanded .blog-read-more {
    color: #e144ff;
}

.blog-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-edit,
.btn-delete {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit:hover {
    background: rgba(45, 140, 255, 0.2);
    border-color: #2d8cff;
}

.btn-delete:hover {
    background: rgba(255, 75, 75, 0.2);
    border-color: #ff4b4b;
}

.about-heading {
    display: inline-block;
    width: fit-content;
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(110deg, #2d8cff 0%, #7b5dff 45%, #e144ff 90%, #ff6df3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 10px rgba(123, 93, 255, 0.22);
}

.about-sub {
    color: #e8edff;
    margin-bottom: 16px;
}

.about-info {
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
}

.faq-link {
    color: #2d8cff;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-link:hover {
    color: #7b5dff;
}

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

    .about-content {
        max-width: 94vw;
    }
}

.subhead {
    margin: 0 auto 32px;
    max-width: 860px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.play {
    font-size: 14px;
}

.arrow {
    font-size: 16px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 26px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.stat {
    text-align: center;
}

.value {
    font-size: 32px;
    font-weight: 800;
    color: #f5f7ff;
    letter-spacing: -0.3px;
}

.label {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 500;
}

.stats:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    border-color: rgba(255, 255, 255, 0.12);
}

.features-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 32px 20px;
    max-width: 1100px;
    margin: 0 auto;
    scroll-margin-top: 120px;
}

.features-intro h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.4px;
}

.features-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 12px auto 0;
    padding: 24px 28px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    background: radial-gradient(circle at 30% 20%, rgba(116, 52, 255, 0.12), transparent 45%), rgba(8, 12, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 240px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #f6f7ff;
    background: linear-gradient(135deg, #2d8cff, #b34bff);
    box-shadow: 0 15px 35px rgba(120, 70, 255, 0.35);
}

.icon-bulb {
    background: linear-gradient(135deg, #d44eff, #f86ddf);
}

.icon-chat {
    background: linear-gradient(135deg, #6aaaff, #c75cff);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #f7f8ff;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 500;
}

.about-visual p {
    color: #e8edff;
    line-height: 1.6;
    font-weight: 500;
}

.simple-setup {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 32px 80px;
    max-width: 1000px;
    margin: 0 auto;
    scroll-margin-top: 120px;
}

.simple-setup h2 {
    margin: 0 0 12px;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.simple-setup .subhead {
    margin: 2px auto 0;
    display: inline-block;
    max-width: none;
    text-align: center;
    white-space: nowrap;
}

.setup-steps {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 32px 120px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.step {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: flex-start;
    gap: 22px;
    position: relative;
}

.step-badge {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2d8cff, #7b5dff 50%, #e144ff);
    display: grid;
    place-items: center;
    color: #f7f8ff;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 0 16px 40px rgba(120, 70, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.step:not(:last-child) .step-badge::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(101, 128, 255, 0.5), rgba(101, 128, 255, 0.12));
}

.step-badge:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(120, 70, 255, 0.45);
}

.step-content h3 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #f6f7ff;
}

.step-content p {
    margin: 0;
    color: #c6cee4;
    font-size: 18px;
    line-height: 1.65;
}

.cta-transform {
    position: relative;
    z-index: 1;
    padding: 130px 24px 150px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 32px;
}

.cta-video-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.28;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.cta-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(123, 93, 255, 0.35), rgba(15, 20, 35, 0.85));
    opacity: 0.65;
    pointer-events: none;
}

.cta-transform::before {
    content: '';
    position: absolute;
    width: 1250px;
    height: 1450px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(45, 97, 255, 0.12) 0%, rgba(140, 72, 255, 0.2) 30%, rgba(12, 9, 22, 0) 72%);
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(20px);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 1200px;
    padding: 36px 24px 54px;
}

.cta-title {
    margin: 0;
    font-size: clamp(46px, 6.4vw, 76px);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.05;
    color: #f6f7ff;
}

.cta-title.gradient {
    background: linear-gradient(120deg, #2d8cff 0%, #7b5dff 50%, #e144ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subhead {
    margin: 14px auto 4px;
    max-width: 980px;
    color: #c7d0e5;
    font-size: 20px;
    line-height: 1.62;
}

.cta-subhead.sub {
    margin-top: 0;
    margin-bottom: 10px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0 16px;
}

.cta-actions .btn {
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    min-width: 190px;
}

.cta-actions .btn-ghost {
    color: #e8edff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.cta-actions .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.cta-note {
    margin-top: 16px;
    color: #9aa4c0;
    font-size: 15px;
    line-height: 1.55;
}

.pricing {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 90px auto 90px;
    padding: 10px 26px 20px;
    text-align: center;
    scroll-margin-top: 140px;
}

.pricing-headings h2 {
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 54px);
}

.pricing-headings .subhead {
    margin: 0 auto 52px;
    max-width: 760px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 100px;
}

.pricing-card {
    background: rgba(8, 10, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 30px 28px 38px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.primary:hover {
    transform: translateY(-8px);
}

.pricing-card.primary {
    border-color: rgba(123, 93, 255, 0.35);
    box-shadow: 0 38px 88px rgba(86, 39, 255, 0.44);
    background: radial-gradient(circle at 30% 20%, rgba(116, 52, 255, 0.14), transparent 46%), rgba(14, 18, 32, 0.9);
    padding: 36px 32px 52px;
    transform: none;
    transform-origin: center top;
    z-index: 2;
}

.pricing-card.primary::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -20px;
    height: 24px;
    background: radial-gradient(ellipse at center, rgba(123, 93, 255, 0.144) 0%, rgba(123, 93, 255, 0.072) 44%, transparent 72%);
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
    transform-origin: center;
    animation: pricing-breath 5.4s ease-in-out infinite;
}

.pricing-card.primary::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    pointer-events: none;
    box-shadow:
        0 0 18px rgba(123, 93, 255, 0.16),
        0 0 44px rgba(70, 150, 255, 0.1);
    animation: primary-glow 6s ease-in-out infinite;
    z-index: -2;
}

.pricing-card.glow {
    border-color: rgba(123, 93, 255, 0.22);
    box-shadow: 0 18px 40px rgba(86, 39, 255, 0.2);
    background: radial-gradient(circle at 70% 30%, rgba(116, 52, 255, 0.1), transparent 48%), rgba(10, 12, 20, 0.74);
}

.pricing-card.glow::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -26px;
    height: 28px;
    background: radial-gradient(ellipse at center, rgba(116, 52, 255, 0.2) 0%, rgba(116, 52, 255, 0.08) 45%, transparent 75%);
    filter: blur(10px);
    z-index: -1;
}

.plan-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(120deg, #2d8cff, #e144ff);
    color: #f8f9ff;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 4px;
}

.pricing-card.primary .plan-badge {
    background: linear-gradient(135deg, #7cf3ff 0%, #dff8ff 45%, #74d7ff 100%);
    color: #0a1a2c;
    box-shadow: 0 10px 26px rgba(116, 215, 255, 0.38);
}

.pricing-card.primary .btn.full {
    background: linear-gradient(135deg, #7cf3ff 0%, #74d7ff 50%, #2d8cff 100%);
    color: #0a1a2c;
    box-shadow: 0 20px 50px rgba(92, 186, 255, 0.35);
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #f6f7ff;
}

.plan-desc {
    color: #aeb7cf;
    font-weight: 600;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 6px 0 10px;
}

.price {
    font-size: 44px;
    font-weight: 800;
    color: #f6f7ff;
}

.price-currency {
    display: inline-block;
    font-size: 0.5em;
    color: #c7d0e5;
    position: relative;
    top: -0.26em;
    margin-right: 2px;
}

.price-cents {
    display: inline-block;
    font-size: 0.5em;
    position: relative;
    top: -0.32em;
    color: #c7d0e5;
}

.per {
    color: #9aa4c0;
    font-weight: 600;
    font-size: 0.90em;
    position: relative;
    top: -0.14em;
    margin-left: 0px;
}

.per {
    color: #c7d0e5;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 6px 0 14px;
    display: grid;
    gap: 10px;
    color: #c7d0e5;
    font-weight: 600;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.plan-library-link {
    color: inherit;
    font: inherit;
    text-decoration-line: underline;
    text-decoration-color: currentColor;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.plan-library-link:hover {
    color: inherit;
    text-decoration-color: currentColor;
}

.check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    position: relative;
}

.check::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #4be1a0;
    border-bottom: 2px solid #4be1a0;
    transform: rotate(-45deg);
    position: absolute;
}

.pricing-card .btn.full {
    width: 100%;
    justify-content: center;
    font-weight: 800;
    margin-top: 4px;
}

.pricing-card.primary .btn.full {
    box-shadow: 0 18px 50px rgba(86, 39, 255, 0.35);
}

.pricing-card.glow .btn.full {
    box-shadow: 0 16px 44px rgba(86, 39, 255, 0.3);
}

@keyframes pricing-breath {
    0% {
        transform: scale(0.992);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.005) translateY(0.5px);
        opacity: 0.48;
    }

    100% {
        transform: scale(0.992);
        opacity: 0.35;
    }
}

@keyframes primary-glow {
    0% {
        box-shadow: 0 0 14px rgba(123, 93, 255, 0.14), 0 0 32px rgba(70, 150, 255, 0.08);
        transform: scale(0.995);
    }

    50% {
        box-shadow: 0 0 18px rgba(123, 93, 255, 0.18), 0 0 42px rgba(70, 150, 255, 0.12);
        transform: scale(1.002);
    }

    100% {
        box-shadow: 0 0 14px rgba(123, 93, 255, 0.14), 0 0 32px rgba(70, 150, 255, 0.08);
        transform: scale(0.995);
    }
}

.section-divider {
    max-width: 1200px;
    margin: 0 auto 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.7;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 32px;
    padding: 30px 32px 26px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: transform 0.2s ease, filter 0.2s ease;
    will-change: transform;
}

.logo:hover,
.footer-brand:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 26px;
    color: #a9b2c8;
    font-weight: 600;
}

.footer-links a {
    color: inherit;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #e8edff;
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copy {
    color: #9aa4c0;
    font-weight: 600;
    font-size: 13px;
}

.footer-support {
    font-size: 13px;
    color: #9aa4c0;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        gap: 18px;
        position: static;
        transform: none;
    }

    .cta-row {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding-inline: 20px;
    }

    .setup-steps {
        padding-inline: 20px;
        gap: 36px;
    }

    .step {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .step-badge {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    .step:not(:last-child) .step-badge::after {
        height: 70px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .step-content p {
        font-size: 16px;
    }

    .simple-setup .subhead {
        white-space: normal;
    }

    .cta-transform {
        padding: 86px 16px 120px;
    }

    .cta-content {
        padding: 32px 12px 42px;
    }

    .cta-title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .cta-subhead {
        font-size: 18px;
    }

    .cta-actions {
        margin: 18px 0 14px;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cta-note {
        font-size: 14px;
        line-height: 1.55;
    }

    .pricing {
        margin: 70px auto 12px;
        padding: 8px 16px 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        margin-top: 90px;
    }

    .pricing-card.primary {
        order: -1;
    }

    .section-divider {
        margin: 0 auto 20px;
        opacity: 0.6;
    }

    .footer {
        padding: 22px 20px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px 20px;
    }

    .footer-info {
        text-align: center;
        align-items: center;
    }
}