/* Inter Font */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #070a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.6);
    --cyan-500: #06b6d4;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --green-500: #22c55e;
    --orange-500: #f97316;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(40, 175, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

.brand-icon img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 10, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
}

.brand-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.brand-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover {
    color: white;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--green-500);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #22d3ee, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 0.10em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-description strong {
    color: white;
    font-weight: 600;
}

/* Buttons */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
    background-clip: padding-box;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-outline:active {
    transform: scale(0.95);
}

/* Meta Badges */
.meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.meta-badge svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* Hero Preview */
.hero-preview {
    position: relative;
}

.preview-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 1.5rem;
    filter: blur(60px);
}

/* Video Player */
.video-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(6, 182, 212, 0.08);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    border-color: rgba(6, 182, 212, 0.55);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 24px rgba(6, 182, 212, 0.2);
}

.video-facade {
    position: relative;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    display: block;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-facade:hover .video-thumbnail {
    transform: scale(1.05);
}

/* Dark overlay so the thumbnail blends into the dark design */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7, 10, 26, 0.35) 0%,
        rgba(7, 10, 26, 0.15) 40%,
        rgba(7, 10, 26, 0.55) 100%
    );
    transition: background 0.3s;
}

.video-facade:hover .video-overlay {
    background: linear-gradient(
        to bottom,
        rgba(7, 10, 26, 0.25) 0%,
        rgba(7, 10, 26, 0.08) 40%,
        rgba(7, 10, 26, 0.45) 100%
    );
}

/* Centered play button + label */
.video-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.video-play-btn {
    position: relative;
    width: 76px;
    height: 76px;
    background: rgba(6, 182, 212, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5), 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: videoPulse 2.4s ease-out infinite;
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: #fff;
    margin-left: 5px;
}

.video-facade:hover .video-play-btn {
    background: rgb(6, 182, 212);
    transform: scale(1.12);
    box-shadow: 0 0 0 14px rgba(6, 182, 212, 0.18), 0 8px 40px rgba(0, 0, 0, 0.55);
    animation: none;
}

.video-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

@keyframes videoPulse {
    0%   { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.55), 0 8px 32px rgba(0, 0, 0, 0.5); }
    60%  { box-shadow: 0 0 0 16px rgba(6, 182, 212, 0), 0 8px 32px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0), 0 8px 32px rgba(0, 0, 0, 0.5); }
}

.video-iframe-wrapper {
    aspect-ratio: 16 / 9;
}

.video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.preview-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.preview-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.preview-card img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Cards */
.card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.card-header {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.card-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    font-size: 1rem;
    color: var(--text-muted);
}

.card-content {
    padding: 0 2rem 2rem 2rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-content em {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.feature-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.feature-icon-green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.feature-icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.feature-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.feature-icon-orange {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.feature-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feature-text strong {
    color: white;
    font-weight: 600;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Plan Badges */
.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.plan-badge-free {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.plan-badge-plus {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: #22d3ee;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-highlighted {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.1), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.07), rgba(59, 130, 246, 0.04));
}

.pricing-card-highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-500), var(--blue-500));
    border-radius: 1rem 1rem 0 0;
}

.pricing-card-highlighted:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.15), 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.pricing-card-description {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-original {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.25rem;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-feature-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.pricing-feature-icon-check {
    color: var(--green-500);
}

.pricing-feature-icon-x {
    color: rgba(255, 255, 255, 0.25);
}

.pricing-popular {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
    font-size: 0.6875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

/* Dashboard */
.dashboard {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: white;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dashboard-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Usage Bar */
.usage-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.usage-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.usage-count span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.usage-bar-track {
    width: 100%;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.usage-bar-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--cyan-500), var(--blue-500));
    transition: width 0.6s ease;
}

.usage-bar-fill-warning {
    background: linear-gradient(90deg, var(--orange-500), #ef4444);
}

.usage-reset {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Upgrade CTA */
.upgrade-cta {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(59, 130, 246, 0.05));
}

.upgrade-cta-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.upgrade-cta-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Subscription Info */
.subscription-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.subscription-detail:last-child {
    border-bottom: none;
}

.subscription-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.subscription-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

a.subscription-link {
    color: var(--cyan-500);
    text-decoration: none;
    transition: opacity 0.2s;
}

a.subscription-link:hover {
    opacity: 0.8;
}

.alert-success {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--green-500);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 1.5rem;
}

.alert-warning {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--orange-500);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    margin-bottom: 1.5rem;
}

/* Subscription Management */
.subscription-cancel-notice {
    font-size: 0.9375rem;
    color: var(--orange-500);
    line-height: 1.6;
}

.subscription-cancel-notice strong {
    color: white;
}

.subscription-value-warning {
    color: var(--orange-500) !important;
}

.subscription-manage-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.subscription-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.subscription-inline-form {
    margin: 0;
    display: inline;
}

.subscription-link-btn {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.btn-danger-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    color: #f87171;
}

.btn-danger-outline:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.5;
}

.faq-question:hover {
    color: #22d3ee;
}

.faq-chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Simple page hero (for success/cancel) */
.simple-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.simple-hero-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-hero-icon-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green-500);
}

.simple-hero-icon-cancel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.simple-hero-icon svg {
    width: 2rem;
    height: 2rem;
}

.simple-hero h1 {
    font-size: 2rem;
    font-weight: 700;
}

.simple-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
}

.simple-hero .button-group {
    justify-content: center;
}

/* Auth Pages */
.auth-page {
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-brand-header {
    display: flex;
    justify-content: center;
}

.auth-brand-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
    padding: 0.45rem;
}

.auth-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: -0.25rem;
    line-height: 1.6;
}

.auth-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Form Elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}

.form-input:focus {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(6, 182, 212, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--cyan-500);
    cursor: pointer;
}

.form-error {
    font-size: 0.8125rem;
    color: #f87171;
}

.form-errors {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.8125rem;
    color: #f87171;
}

.form-errors:empty,
.form-errors.validation-summary-valid {
    display: none;
}

.form-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Google Sign-in Button */
.btn-google {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: inherit;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Utility Classes */
.btn-full {
    width: 100%;
}

.hero-compact {
    padding-bottom: 2.5rem;
    text-align: center;
}

.hero-compact .section-eyebrow {
    margin-bottom: 1rem;
}

.hero-compact .hero-title {
    margin-bottom: 1rem;
}

.hero-compact .hero-description {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-feature-disabled {
    color: rgba(255, 255, 255, 0.35);
}

.dashboard-card-full {
    grid-column: 1 / -1;
}

/* Nav Button (logout) */
.nav form {
    margin: 0;
    display: flex;
    align-items: center;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font: inherit;
    font-size: 0.875rem;
    padding: 0;
    transition: color 0.2s;
}

.nav-btn:hover {
    color: white;
}

/* Pricing card button/badge alignment */
.pricing-card .btn,
.pricing-card form .btn {
    width: 100%;
}

.pricing-card .plan-badge {
    align-self: center;
}

/* Fix simple-hero container layout */
.simple-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(6, 182, 212, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: modalIn 0.25s ease-out;
}

.image-modal-content img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.game-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.game-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(59, 130, 246, 0.08));
}

.game-card-image-placeholder svg {
    width: 3.5rem;
    height: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
}

.game-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.game-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
}

.game-card-badge-enhanced {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: #22d3ee;
}

.game-card-badge-universal {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.game-card-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.games-cta {
    max-width: 700px;
    margin: 3rem auto 0;
}

.games-cta-inner {
    padding: 2.5rem;
    text-align: center;
}

.games-cta-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0.75rem;
}

.games-cta-inner p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* FAQ bottom CTA */
.faq-bottom-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-bottom-cta p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* Flush section (no top padding, used after hero on sub-pages) */
.section-flush {
    padding-top: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan-500);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: white;
}

.section-subtitle {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Stats Strip */
.stats-strip {
    padding: 0 0 4rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--bg-primary);
    transition: background 0.2s;
}

.stat-item:hover {
    background: rgba(6, 182, 212, 0.04);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Bottom CTA */
.bottom-cta {
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 1;
}

.bottom-cta-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.03));
    backdrop-filter: blur(20px);
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 0 80px rgba(6, 182, 212, 0.05), inset 0 1px 0 rgba(255,255,255,0.05);
}

.bottom-cta-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: white;
}

@media (min-width: 768px) {
    .bottom-cta-title {
        font-size: 2.75rem;
    }
}

.bottom-cta-sub {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 420px;
    line-height: 1.7;
}

/* Admin Table */
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th {
    text-align: left;
    padding: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.admin-email {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
}

.admin-usage {
    font-weight: 700;
    color: white;
}

.admin-usage-limit {
    color: var(--text-muted);
}

.admin-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.admin-page-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    min-width: 2.5rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.25rem 1.5rem 0.75rem;
        background: rgba(7, 10, 26, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 0.875rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav form {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin: 0;
    }

    .nav-btn {
        width: 100%;
        text-align: left;
        padding: 0.875rem 0;
        font-size: 1rem;
    }

    /* Remove divider from last item */
    .nav > *:last-child {
        border-bottom: none;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .auth-card {
        padding: 1.5rem;
    }
}

/* Hide separator dots when footer links wrap on very small screens */
@media (max-width: 480px) {
    .footer-links .separator {
        display: none;
    }
}

/* =====================================================================
   Homepage – How It Works (3-step cards)
   ===================================================================== */
.how-it-works {
    padding: 5rem 0;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .how-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.how-step-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.how-step-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(6, 182, 212, 0.07);
}

.how-step-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.how-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.015em;
}

.how-step-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =====================================================================
   Homepage – Outcomes (what GMentor helps with)
   ===================================================================== */
.outcomes {
    padding: 5rem 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.outcome-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.3s, background 0.3s;
}

.outcome-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.02));
}

.outcome-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.outcome-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================================
   Homepage – Use Case example block
   ===================================================================== */
.use-case {
    padding: 5rem 0;
}

.use-case-inner {
    border-radius: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.18);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.03));
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .use-case-inner {
        grid-template-columns: 1fr 1fr;
        padding: 3.5rem;
    }
}

.use-case-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.use-case-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan-500);
}

.use-case-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: white;
}

.use-case-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.use-case-points {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.use-case-point {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.use-case-point-icon {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--green-500);
}

.use-case-mockup {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    position: relative;
}

.use-case-mockup:hover .use-case-mockup-overlay {
    opacity: 1;
}

.use-case-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.use-case-mockup:hover .use-case-mockup-img {
    transform: scale(1.03);
}

.use-case-mockup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.use-case-mockup-overlay svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* =====================================================================
   Homepage – Trust / Reassurance strip
   ===================================================================== */
.trust-strip {
    padding: 0 0 5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color 0.2s;
}

.trust-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.trust-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.trust-item-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}
