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

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

/* Text selection: same yellow as header highlighter, text stays white */
::selection {
    background: rgba(255, 200, 80, 0.55);
    color: #fff;
}

::-moz-selection {
    background: rgba(255, 200, 80, 0.55);
    color: #fff;
}

html {
    background: #1c1c1e;
}

/* Scroll-triggered slide-up animations */
.slide-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up-delay-1 {
    transition-delay: 0.1s;
}

.slide-up-delay-2 {
    transition-delay: 0.2s;
}

.slide-up-delay-3 {
    transition-delay: 0.3s;
}

.slide-up-delay-4 {
    transition-delay: 0.4s;
}

.slide-up-delay-5 {
    transition-delay: 0.5s;
}

.slide-up-delay-6 {
    transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .slide-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-btn:hover {
        transform: none;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1c1c1e;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Idea Bomb (and tool pages): footer at bottom when content is short */
body.page-idea-bomb {
    display: flex;
    flex-direction: column;
}

body.page-idea-bomb .tool-page {
    flex: 1;
}

/* Top Navigation Bar - Dark liquid glass (frosted glass on dark, edge highlights, soft shadow) */
.top-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 45, 50, 0.28);
    backdrop-filter: saturate(160%) blur(24px);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    padding: 6px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    min-width: 280px;
    border-radius: 24px;
    z-index: 1000;
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.2) inset,
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.us-logo {
    height: 48px;
    width: auto;
    opacity: 0.95;
    object-fit: contain;
    max-width: none;
    display: block;
    filter: brightness(0) invert(1);
}

.dropdown-menu-container {
    position: relative;
}

.dropdown-icon {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-weight: 600;
    padding: 10px 12px;
    user-select: none;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.08) inset;
}

.dropdown-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: rgba(28, 28, 30, 0.94);
    backdrop-filter: saturate(160%) blur(80px);
    -webkit-backdrop-filter: saturate(160%) blur(80px);
    border-radius: 18px;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 168px;
    z-index: 1001;
    overflow: visible;
    isolation: isolate;
}

.dropdown-item {
    display: block;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dots {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    line-height: 1;
}

.top-nav-right {
    display: flex;
    align-items: center;
}

.top-nav-right .user-icon,
.user-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s;
    filter: brightness(0) invert(1);
}

.user-icon:hover {
    opacity: 1;
}

/* Vanta.js background container – receives mouse/touch for effect; overlay & content sit on top */
.vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 560px;
    z-index: 0;
}

.vanta-bg canvas {
    position: absolute !important;
    z-index: 0 !important;
}

/* Header Section - Dark Background with Main CTA */
.hero-section {
    position: relative;
    background: #1c1c1e;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 42px;
    margin-top: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 80% at center, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.02) 3px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.02) 3px);
    background-size: 2px 2px;
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    pointer-events: none;
    width: 100%;
    text-align: center;
    margin-top: 38vh;
    margin-bottom: 0;
    padding: 48px 44px 52px;
    background:
        linear-gradient(145deg, rgba(58, 58, 64, 0.42) 0%, rgba(38, 38, 42, 0.36) 100%);
    backdrop-filter: saturate(180%) blur(28px);
    -webkit-backdrop-filter: saturate(180%) blur(28px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.14) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.22) inset,
        0 0 0 1px rgba(255, 200, 80, 0.06),
        0 12px 48px rgba(0, 0, 0, 0.35),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 80, 0.75), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.hero-kicker {
    margin: 0 0 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 210, 150, 0.88);
}

.hero-kicker-mark {
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 200, 80, 0.35);
}

.hero-title {
    color: rgba(255, 255, 255, 0.98);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-title--display {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

.hero-title-accent {
    font-style: italic;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 0.06em;
    height: 0.32em;
    background: rgba(255, 200, 80, 0.5);
    transform: rotate(-1deg);
    z-index: -1;
    border-radius: 2px;
}

.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    margin: 0 0 22px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.hero-tagline-part {
    white-space: nowrap;
}

.hero-tagline-sep {
    color: rgba(255, 200, 80, 0.65);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1;
    user-select: none;
}

.hero-lede {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 400;
    max-width: 34em;
    margin: 0 auto 32px;
    letter-spacing: -0.01em;
}

.hero-title .highlight-swipe {
    position: relative;
    display: inline-block;
}

.hero-title .highlight-swipe::after,
.tool-page h1 .highlight-swipe::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 0.35em;
    background: rgba(255, 200, 80, 0.55);
    transform: rotate(-1.2deg);
    z-index: -1;
    border-radius: 2px;
}

.tool-page h1 .highlight-swipe {
    position: relative;
    display: inline-block;
}

.settings-title .highlight-swipe {
    position: relative;
    display: inline-block;
}

.settings-title .highlight-swipe::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 0.35em;
    background: rgba(255, 200, 80, 0.55);
    transform: rotate(-1.2deg);
    z-index: -1;
    border-radius: 2px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    font-weight: 500;
}

/* Legacy: if any block still uses .hero-subtitle */
.hero-content .hero-subtitle {
    margin-bottom: 28px;
}

.main-cta {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background: #e5e5e5;
    color: #333;
    font-size: 1rem;
    outline: none;
}

.hero-input::placeholder {
    color: #999;
}

.hero-input:focus {
    background: #fff;
}

.hero-content .hero-btn,
.hero-content a {
    pointer-events: auto;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: saturate(160%) blur(24px);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.14) inset,
        0 8px 28px rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.18s ease;
}

.hero-btn:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 200, 80, 0.35);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.16) inset,
        0 0 24px rgba(255, 200, 80, 0.12),
        0 12px 32px rgba(0, 0, 0, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.06) inset, 0 6px 20px rgba(0, 0, 0, 0.18);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

a.inline-link {
    color: rgba(255, 210, 140, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
}

a.inline-link:hover {
    color: #fff;
}

/* ========== Growth section (animated graph) ========== */
.growth-section {
    background: #1c1c1e;
    padding: 80px 24px 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.growth-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.growth-heading {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.growth-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
}

.growth-chart {
    margin: 0 auto;
    max-width: 620px;
}

.growth-chart-svg {
    width: 100%;
    height: auto;
    display: block;
}

.growth-line {
    stroke-dasharray: 580;
    stroke-dashoffset: 580;
    animation: growth-line-draw 3.5s ease-out forwards, growth-line-wobble 5s ease-in-out 3.8s infinite;
}

.growth-line-fill {
    opacity: 0;
    animation: growth-fill-in 3.5s ease-out 0.25s forwards, growth-fill-wobble 5s ease-in-out 3.8s infinite;
}

@keyframes growth-line-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes growth-fill-in {
    to {
        opacity: 1;
    }
}

/* Gentle up-down animation (smoother) */
@keyframes growth-line-wobble {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(1px);
    }

    75% {
        transform: translateY(-0.5px);
    }
}

@keyframes growth-fill-wobble {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(1px);
    }

    75% {
        transform: translateY(-0.5px);
    }
}

/* ========== For serious creators (no CTA button) ========== */
.creators-section {
    background: #1c1c1e;
    padding: 72px 24px 80px;
}

.creators-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.creators-heading .highlight-swipe {
    position: relative;
    display: inline-block;
}

.creators-heading .highlight-swipe::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 0.35em;
    background: rgba(255, 200, 80, 0.55);
    transform: rotate(-1.2deg);
    z-index: -1;
    border-radius: 2px;
}

.creators-subheading {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.creators-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.creator-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 22px;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}

.creator-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.creator-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: rgba(255, 200, 80, 0.95);
}

.creator-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.creator-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

.creator-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    font-size: 0.9375rem;
}

.creator-card-coming-soon {
    opacity: 0.85;
}

.creator-card-coming-soon .creator-title {
    color: rgba(255, 255, 255, 0.8);
}

.creator-card-coming-soon .creator-text {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== TOOLS SECTION - Alternating text / thin-lined graphic ========== */
.tools-section {
    background: #1c1c1e;
    padding: 80px 24px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tools-section .tools-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.tool-rows {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.tool-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 220px;
}

.tool-row--reverse .tool-text {
    order: 2;
}

.tool-row--reverse .tool-graphic {
    order: 1;
}

.tool-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: -0.02em;
    margin: 0;
}

.tool-desc {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
    max-width: 420px;
}

.tool-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.tool-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.tool-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.tool-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1;
}

.tool-video {
    width: 100%;
    max-width: 960px;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.tool-svg-idea {
    max-width: 240px;
}

.tool-svg-inspire {
    max-width: 260px;
}

@media (max-width: 768px) {

    .tool-row,
    .tool-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
    }

    .tool-row--reverse .tool-text,
    .tool-row--reverse .tool-graphic {
        order: unset;
    }

    .tool-row--reverse .tool-graphic {
        order: -1;
    }

    .tool-desc {
        max-width: none;
    }

    .tool-graphic {
        padding: 16px;
    }

    .tool-video {
        max-width: 100%;
    }

    .tool-svg {
        max-width: 200px;
    }
}

/* Pricing Section */
.pricing-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.pricing-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 50px;
    text-transform: lowercase;
}

.pricing-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #2c2c2c;
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #6366f1;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-btn:hover {
    background: #4f46e5;
}

.pricing-btn-selected {
    background: #10b981 !important;
    cursor: default;
}

.pricing-btn-selected:hover {
    background: #10b981 !important;
}

.pricing-btn-disabled {
    background: #666 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.pricing-btn-disabled:hover {
    background: #666 !important;
}

.pricing-card-featured {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Founders pricing: sticker + crossed-out price + founders price */
.pricing-card-founders {
    position: relative;
    overflow: visible;
}

.pricing-founders-sticker {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    transform: rotate(3deg);
    z-index: 2;
}

.pricing-price-block {
    margin-bottom: 28px;
}

.pricing-price-old {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.pricing-price-old del {
    text-decoration: line-through;
}

.pricing-price-old span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

.pricing-price-founders {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1.2;
}

.pricing-price-founders span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(251, 191, 36, 0.9);
}

.pricing-founders-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* Dark pricing section (home page) */
.pricing-section.dark-pricing {
    background: #1c1c1e;
    padding: 80px 24px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-section.dark-pricing .pricing-heading {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
}

.pricing-section.dark-pricing .pricing-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.pricing-section.dark-pricing .pricing-card-featured {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-section.dark-pricing .pricing-card-founders {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.pricing-section.dark-pricing .pricing-founders-sticker {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5);
}

.pricing-section.dark-pricing .pricing-price-old {
    color: rgba(255, 255, 255, 0.45);
}

.pricing-section.dark-pricing .pricing-price-old span {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-section.dark-pricing .pricing-price-founders {
    color: #fbbf24;
}

.pricing-section.dark-pricing .pricing-founders-label {
    color: #f59e0b;
}

.pricing-section.dark-pricing .pricing-title {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-section.dark-pricing .pricing-price span {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-section.dark-pricing .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.pricing-section.dark-pricing .pricing-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: saturate(160%) blur(24px);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
}

.pricing-section.dark-pricing .pricing-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

.pricing-section.dark-pricing .pricing-btn:disabled {
    cursor: default;
    opacity: 1;
}

.pricing-section.dark-pricing .pricing-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-section.dark-pricing .pricing-btn.pricing-btn-disabled {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.6);
    cursor: default;
}

.pricing-section.dark-pricing .pricing-btn.pricing-btn-disabled:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-section.dark-pricing .pricing-btn .highlight-swipe {
    position: relative;
    display: inline-block;
}

.pricing-section.dark-pricing .pricing-btn .highlight-swipe::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 0.4em;
    background: rgba(255, 200, 80, 0.55);
    transform: rotate(-2deg);
    z-index: 0;
    border-radius: 2px;
}

/* Free tier: coming soon overlay with highlighter scribble */
.pricing-card-free {
    position: relative;
}

.pricing-coming-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 28, 30, 0.7);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.pricing-coming-soon-text {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 8px;
}

.pricing-coming-soon-text.highlight-scribble::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 4px;
    height: 0.4em;
    background: rgba(255, 200, 80, 0.6);
    transform: rotate(-2deg);
    z-index: -1;
    border-radius: 3px;
}

/* Bottom fade on tool pages so content blends into footer */
.tool-page {
    position: relative;
}

.tool-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.5) 40%, rgba(26, 26, 26, 0.85) 75%, #1a1a1a 100%);
    pointer-events: none;
    z-index: 0;
}

.tool-page .page,
.tool-page .container {
    position: relative;
    z-index: 1;
}

/* Small button: link to tweet on X */
.btn-tweet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-tweet:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
}

/* Text + highlighter swipe on hover (Copy tweet, View on X, etc.) */
.tool-page .btn-highlight-text {
    position: relative;
    display: inline-block;
    padding: 4px 2px 6px;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    box-shadow: none;
}

.tool-page .btn-highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 0.35em;
    background: rgba(255, 200, 80, 0.55);
    transform: scaleX(0) rotate(-1deg);
    transform-origin: left center;
    border-radius: 2px;
    z-index: -1;
    transition: transform 0.25s ease;
}

.tool-page .btn-highlight-text:hover::after {
    transform: scaleX(1) rotate(-1deg);
}

.tool-page .btn-highlight-text:hover {
    color: #fff;
    text-decoration: none;
}

/* Under construction (below pricing) */
.under-construction {
    margin-top: 56px;
    padding: 32px 24px 40px;
    text-align: center;
    border-top: 2px dashed rgba(255, 184, 0, 0.5);
    border-radius: 12px;
    background: rgba(255, 184, 0, 0.06);
}

.under-construction-graphics {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.uc-warning-icon {
    width: 64px;
    height: auto;
    display: block;
}

.under-construction-text {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section - Dark Background with Starry Texture (dots light at top, bolder toward bottom) */
.footer-section {
    background: #1a1a1a;
    padding: 80px 20px 40px;
    color: #fff;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 1px);
    background-size: 60px 60px, 20px 20px;
    background-position: 0 0, 20px 20px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, black 100%);
    pointer-events: none;
}

.footer-section .footer-content {
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: #fff;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-content h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-content h2 .highlight-swipe {
    position: relative;
    display: inline-block;
}

.modal-content h2 .highlight-swipe .highlight-swipe-text {
    position: relative;
    z-index: 1;
}

.modal-content h2 .highlight-swipe::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    height: 0.35em;
    background: rgba(255, 200, 80, 0.55);
    transform: rotate(-1.2deg);
    z-index: 0;
    border-radius: 2px;
}

.modal-content .btn-glass {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
    background: rgba(28, 28, 30, 0.94);
    backdrop-filter: saturate(160%) blur(24px);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset, 0 8px 24px rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.modal-content .btn-glass:hover {
    background: rgba(38, 38, 42, 0.94);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.modal-content .btn-highlight-text,
.modal-content .modal-link .btn-highlight-text {
    position: relative;
    display: inline-block;
    padding: 4px 2px 6px;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.modal-content .modal-link .btn-highlight-text .highlight-swipe-text {
    position: relative;
    z-index: 1;
}

.modal-content .btn-highlight-text::after,
.modal-content .modal-link .btn-highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 0.35em;
    background: rgba(255, 200, 80, 0.55);
    transform: scaleX(0) rotate(-1deg);
    transform-origin: left center;
    border-radius: 2px;
    z-index: 0;
    transition: transform 0.25s ease;
}

.modal-content .btn-highlight-text:hover::after,
.modal-content .modal-link .btn-highlight-text:hover::after {
    transform: scaleX(1) rotate(-1deg);
}

.modal-content .btn-highlight-text:hover,
.modal-content .modal-link .btn-highlight-text:hover {
    color: #fff;
    text-decoration: none;
}

.login-success-content .login-success-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.login-success-content .btn-glass {
    width: 100%;
}

.close-modal {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
    transition: color 0.2s;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.close-modal:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e5e5e5;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.billing-email-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.divider {
    margin: 1.5rem 0;
}

.divider-line {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-text {
    position: relative;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
}

.btn-google {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-x {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-x:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.modal-link {
    margin-top: 1.5rem;
    text-align: center;
}

.modal-link a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.modal-link a:hover {
    color: #e5e5e5;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .creators-section .creators-heading {
        font-size: 1.65rem;
    }

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

    .tools-section .tools-heading {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 16px;
    }

    .footer-nav-link {
        font-size: 0.9rem;
    }

    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .hero-content {
        margin-top: 28vh;
        padding: 36px 22px 40px;
        border-radius: 22px;
    }

    .hero-title,
    .hero-title--display {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        gap: 8px 10px;
    }

    .hero-tagline-part {
        white-space: normal;
        text-align: center;
    }

    .hero-lede {
        font-size: 0.98rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .creators-heading {
        font-size: 1.5rem;
    }

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

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

    .hero-btn {
        width: 100%;
    }

    .footer-nav {
        gap: 12px;
        flex-direction: column;
    }

    .footer-nav-link {
        font-size: 0.85rem;
    }

    .footer-logo-img {
        height: 20px;
    }
}

/* Homepage: Inspire tweet preview strip */
.home-inspire-preview-section {
    position: relative;
    background: #1a1a1d;
    padding: 88px 24px 96px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.home-inspire-preview-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100vw);
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(255, 200, 80, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.home-inspire-preview-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.home-inspire-preview-section .growth-heading {
    text-align: center;
    margin-bottom: 14px;
}

.home-inspire-preview-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 40px;
}

.home-inspire-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

.home-tweet-card {
    position: relative;
    border-radius: 18px;
    padding: 0;
    background: linear-gradient(155deg, rgba(52, 52, 58, 0.85) 0%, rgba(32, 32, 36, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.home-tweet-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 200, 80, 0.22);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 0 0 1px rgba(255, 200, 80, 0.12),
        0 22px 50px rgba(0, 0, 0, 0.42),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

.home-tweet-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(255, 210, 130, 0.95) 0%, rgba(255, 180, 70, 0.45) 50%, rgba(255, 200, 80, 0.2) 100%);
    border-radius: 18px 0 0 18px;
    pointer-events: none;
}

.home-tweet-card-inner {
    padding: 18px 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
}

.home-tweet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.home-tweet-source {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    opacity: 0.45;
}

.home-tweet-source-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.home-tweet-source-dot:nth-child(1) {
    background: rgba(255, 120, 120, 0.65);
}

.home-tweet-source-dot:nth-child(2) {
    background: rgba(255, 200, 100, 0.55);
}

.home-tweet-source-dot:nth-child(3) {
    background: rgba(120, 200, 255, 0.5);
}

.home-tweet-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.home-tweet-pill {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-tweet-pill--niche {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-tweet-pill--cat {
    color: rgba(40, 30, 10, 0.95);
    background: linear-gradient(135deg, rgba(255, 220, 150, 0.95) 0%, rgba(255, 190, 90, 0.88) 100%);
    border: 1px solid rgba(255, 210, 120, 0.5);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.home-tweet-metrics {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    margin: 0 0 16px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-tweet-stat {
    flex: 1 1 auto;
    min-width: 4.5rem;
    text-align: center;
    padding: 4px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.home-tweet-stat:last-child {
    border-right: none;
}

.home-tweet-stat-val {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.2;
}

.home-tweet-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.home-tweet-body {
    flex: 1;
}

.home-tweet-text {
    font-size: 0.98rem;
    line-height: 1.58;
    white-space: pre-wrap;
    word-break: break-word;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
    letter-spacing: -0.01em;
}

.home-tweet-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-tweet-why-kicker {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 200, 120, 0.75);
    margin: 0 0 8px;
}

.home-tweet-why {
    font-size: 0.84rem;
    line-height: 1.5;
    font-style: italic;
    color: rgba(255, 230, 200, 0.88);
    margin: 0;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 200, 80, 0.45);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-inspire-preview-cta-wrap {
    text-align: center;
    margin: 0;
}

.home-inspire-preview-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 32px 16px;
    margin: 0;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.home-inspire-preview-empty .home-inspire-preview-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.82em;
    color: rgba(255, 220, 160, 0.75);
    word-break: break-all;
}

@media (max-width: 640px) {
    .home-inspire-preview-grid {
        grid-template-columns: 1fr;
    }

    .home-tweet-card:hover {
        transform: none;
    }

    .home-tweet-stat {
        min-width: 33%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-tweet-card {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .home-tweet-card:hover {
        transform: none;
    }
}

/* Comparison Section */
.comparison-section {
    background: #1c1c1e;
    padding: 100px 24px 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
}

.comparison-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    padding: 20px 0;
}

.comparison-quote {
    font-family: 'Merriweather', 'Georgia', 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

/* Remove default quotes if any */
.comparison-quote::before,
.comparison-quote::after {
    content: none;
}

/* Large decorative quotes */
.comparison-content::before {
    content: '“';
    position: absolute;
    top: -40px;
    left: -40px;
    font-family: 'Georgia', serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.comparison-content::after {
    content: '”';
    position: absolute;
    bottom: 60px;
    right: -40px;
    font-family: 'Georgia', serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.comparison-quote .highlight-swipe {
    position: relative;
    display: inline-block;
    color: #fff;
}

.comparison-quote .highlight-swipe::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 8px;
    height: 0.3em;
    background: rgba(255, 200, 80, 0.55);
    transform: rotate(-1.5deg);
    z-index: -1;
    border-radius: 2px;
}

.comparison-answer {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    /* Keep sans-serif for body text */
}

.comparison-answer p {
    margin-bottom: 20px;
}

.comparison-answer strong {
    color: #fff;
    font-weight: 600;
}

.comparison-answer em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .comparison-quote {
        font-size: 2rem;
    }

    .comparison-answer {
        font-size: 1.1rem;
    }

    .comparison-content::before {
        left: -10px;
        top: -30px;
        font-size: 6rem;
    }

    .comparison-content::after {
        right: -10px;
        bottom: 80px;
        font-size: 6rem;
    }
}