/* ===================================
   Jo Local - CSS Styles
   Based on askjo.ai design system
   =================================== */

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colors - Light Mode */
    --bg-primary: rgb(247, 247, 248);
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f0f2;
    --text-primary: #121218;
    --text-secondary: #61646b;
    --text-muted: #8e9196;
    --accent-cyan: #0099ff;
    --accent-purple: rgb(159, 117, 255);
    --accent-gradient: linear-gradient(135deg, #0099ff 0%, rgb(159, 117, 255) 100%);

    /* Semantic Colors */
    --success: #95b500;
    --success-bg: rgba(149, 181, 0, 0.15);
    --warning: #f49d0b;
    --warning-bg: rgba(244, 157, 11, 0.15);
    --error: #f23f5d;
    --error-bg: rgba(242, 63, 93, 0.15);
    --info: #22d2ed;
    --info-bg: rgba(34, 210, 237, 0.15);

    /* Typography - Distinctive choices */
    --font-logo: 'DM Serif Display', serif;
    --font-headline: 'DM Serif Display', serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Sora', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: rgb(12, 10, 18);
        --bg-secondary: rgb(22, 20, 32);
        --bg-tertiary: rgb(32, 28, 45);
        --text-primary: rgb(245, 243, 250);
        --text-secondary: rgb(168, 162, 180);
        --text-muted: rgb(118, 112, 135);
    }
}

html {
    scroll-behavior: smooth;
    color-scheme: light dark;
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
    outline: 3px solid var(--accent-purple);
    outline-offset: 2px;
}

/* Headings scroll margin for anchor navigation */
h1, h2, h3, h4, h5, h6 {
    scroll-margin-top: 120px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric background gradient */
@media (prefers-color-scheme: dark) {
    body {
        background:
            radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 153, 255, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 100% 50%, rgba(159, 117, 255, 0.06) 0%, transparent 50%),
            var(--bg-primary);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    line-height: 1.3;
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-purple);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.35), 0 0 40px rgba(159, 117, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 247, 248, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark) {
    .header {
        background: rgba(18, 18, 24, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
}

.nav-logo a {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    gap: var(--space-md);
}

/* Hero Section */
.hero {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-4xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    animation: fadeInBg 1.5s ease-out 0.3s forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 24, 0.55);
    z-index: 1;
}

@keyframes fadeInBg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-mobile-video {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--success-bg);
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

.badge-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.hero-requirement {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* App Preview Window */
.hero-centered {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-centered .hero-description {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.hero-centered .hero-actions {
    justify-content: center;
}

.hero-centered .hero-stats {
    justify-content: center;
}

.app-preview {
    max-width: 500px;
    margin: var(--space-2xl) auto 0;
}

.app-window {
    background: rgb(18, 18, 24);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.app-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgb(28, 28, 36);
}

.app-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.app-dot.red { background: #ff5f57; }
.app-dot.yellow { background: #febc2e; }
.app-dot.green { background: #28c840; }

.app-title {
    margin-left: auto;
    font-size: 13px;
    color: rgb(121, 124, 131);
    font-weight: 500;
}

.app-body {
    padding: var(--space-lg);
}

.chat-message {
    margin-bottom: var(--space-md);
}

.chat-message.user {
    display: flex;
    justify-content: flex-end;
}

.chat-message.user .message-bubble {
    background: var(--accent-cyan);
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 4px var(--radius-lg);
}

.chat-message.assistant .message-bubble {
    background: rgb(38, 38, 48);
    color: rgb(241, 242, 244);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
}

.message-bubble {
    padding: var(--space-md);
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: rgb(28, 28, 36);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.input-placeholder {
    color: rgb(121, 124, 131);
    font-size: 14px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--success-bg);
    color: var(--success);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.privacy-badge::before {
    content: "\2022";
}

.model-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.model-label {
    font-size: 12px;
    color: rgb(121, 124, 131);
}

.model-option {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.model-option:hover {
    background: rgba(0, 153, 255, 0.2);
    color: var(--accent-cyan);
}

/* Example Cards */
.example-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 400px;
    margin: var(--space-xl) auto 0;
}

.example-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid;
    border-right: 4px solid;
}

.example-card.private {
    border-left-color: var(--success);
    border-right-color: var(--success);
}

.example-card.cloud {
    border-left-color: var(--accent-cyan);
    border-right-color: var(--accent-cyan);
}

.example-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.example-content {
    font-size: 16px;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.example-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.example-badge.local {
    background: var(--success-bg);
    color: var(--success);
}

.example-badge.cloud-badge {
    background: rgba(0, 153, 255, 0.15);
    color: var(--accent-cyan);
}

/* Opportunity Section */
.opportunity-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.opportunity-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.opportunity-icon {
    font-size: 32px;
    display: block;
    margin-bottom: var(--space-sm);
}

.opportunity-card p {
    font-size: 15px;
    color: var(--text-primary);
    font-style: italic;
}

.opportunity-footer {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 18px;
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Why Jo is Different Section */
.difference-section {
    padding: var(--space-4xl) 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.difference-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid rgba(159, 117, 255, 0.1);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.difference-card:hover {
    border-color: rgba(0, 153, 255, 0.25);
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.08);
}

.difference-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
}

.difference-card h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.difference-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Hybrid Cloud Section */
.hybrid-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.hybrid-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.hybrid-local,
.hybrid-cloud {
    flex: 1;
    background: var(--bg-tertiary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.hybrid-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.hybrid-local h3,
.hybrid-cloud h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.hybrid-local p,
.hybrid-cloud p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hybrid-arrow {
    font-size: 32px;
    color: var(--accent-cyan);
    font-weight: bold;
}

.cloud-models {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
}

.model-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 153, 255, 0.15);
    border: 1px solid rgba(0, 153, 255, 0.3);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-cyan);
}

.hybrid-footer {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 16px;
    color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    text-align: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    color: white;
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.how-step h3 {
    margin-bottom: var(--space-sm);
    font-size: 20px;
}

.how-step p {
    font-size: 15px;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-lead {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.cta-subhead {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.left {
    text-align: left;
    margin: 0 0 var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: white;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-4xl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    color: white;
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-lg);
}

.step-card h3 {
    margin-bottom: var(--space-sm);
}

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

/* Use Cases Section */
.use-cases {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.use-case-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: white;
}

.use-case-card h3 {
    margin-bottom: var(--space-sm);
}

.use-case-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.faq-item {
    padding: var(--space-lg);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-purple);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

/* Pricing Section */
.pricing {
    padding: var(--space-4xl) 0;
}

.pricing-single {
    max-width: 400px;
    margin: 0 auto var(--space-3xl);
}

.pricing-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.pricing-footer {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.pricing-card {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-tertiary);
}

.pricing-card.featured {
    border-color: var(--accent-purple);
}

.pricing-card.single {
    text-align: center;
    padding: var(--space-2xl);
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    margin-bottom: var(--space-xs);
}

.pricing-description {
    font-size: 14px;
}

.pricing-price {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--bg-tertiary);
}

.price {
    font-family: var(--font-headline);
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.pricing-features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: 15px;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-note {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-comparison {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-comparison h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-secondary);
}

.comparison-icon.positive {
    color: var(--success);
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-tertiary);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 13px;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Mid-page CTA */
.mid-cta {
    padding: var(--space-3xl) 0;
    background: var(--bg-tertiary);
}

.mid-cta-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.mid-cta h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: var(--space-sm);
}

.mid-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.trust-note {
    display: block;
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--text-muted);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.trust-badge::before {
    content: "\2713";
    color: var(--success);
    font-weight: 700;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.cta-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-trust-badge::before {
    content: "\2713";
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

/* CTA Section */
.cta {
    padding: var(--space-4xl) 0;
    background: var(--accent-gradient);
}

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

.cta h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.cta .btn-primary {
    background: white;
    color: #121218;
    border-color: white;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.cta .btn-primary:hover {
    background: #f0f0f0;
    color: #121218;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.4);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--text-primary);
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--bg-tertiary);
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.footer-links-inline {
    display: flex;
    gap: var(--space-lg);
}

.footer-links-inline a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links-inline a:hover {
    color: var(--accent-cyan);
}

.footer-simple p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .use-cases-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Base adjustments */
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-actions .btn-secondary {
        display: none;
    }

    .nav-actions .btn-primary {
        padding: 10px 18px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 24px;
    }

    /* Hero Section */
    .hero {
        padding-top: calc(var(--space-2xl) + 70px);
        padding-bottom: var(--space-2xl);
        min-height: auto;
        background: var(--bg-primary);
    }

    .hero-video-bg,
    .hero-overlay {
        display: none !important;
    }

    .hero-mobile-video {
        display: block;
        width: 100%;
        max-width: 250px;
        max-height: 200px;
        object-fit: cover;
        margin: var(--space-md) auto;
        border-radius: var(--radius-lg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-centered {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 48px);
        margin-bottom: var(--space-md);
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: var(--space-lg);
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 var(--space-sm);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

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

    .hero-requirement {
        font-size: 12px;
        margin-top: var(--space-sm);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Example Cards */
    .example-cards {
        max-width: 100%;
        margin-top: var(--space-lg);
        gap: var(--space-sm);
    }

    .example-card {
        padding: var(--space-md);
    }

    .example-content {
        font-size: 14px;
    }

    .example-badge {
        font-size: 11px;
    }

    /* Opportunity Section */
    .opportunity-section {
        padding: var(--space-2xl) 0;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .opportunity-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .opportunity-card {
        padding: var(--space-md);
    }

    .opportunity-icon {
        font-size: 24px;
    }

    .opportunity-card p {
        font-size: 13px;
    }

    .opportunity-footer {
        font-size: 15px;
        margin-top: var(--space-lg);
        padding: 0 var(--space-sm);
    }

    /* Why Jo is Different Section */
    .difference-section {
        padding: var(--space-2xl) 0;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .difference-card {
        padding: var(--space-lg);
    }

    .difference-icon {
        font-size: 28px;
    }

    .difference-card h3 {
        font-size: 18px;
    }

    .difference-card p {
        font-size: 14px;
    }

    /* Hybrid Section */
    .hybrid-section {
        padding: var(--space-2xl) 0;
    }

    .hybrid-content {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hybrid-arrow {
        transform: rotate(90deg);
    }

    .hybrid-local,
    .hybrid-cloud {
        padding: var(--space-lg);
    }

    .hybrid-icon {
        font-size: 36px;
    }

    .hybrid-local h3,
    .hybrid-cloud h3 {
        font-size: 18px;
    }

    .hybrid-local p,
    .hybrid-cloud p {
        font-size: 14px;
    }

    .model-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hybrid-footer {
        font-size: 14px;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: var(--space-2xl) 0;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .how-step h3 {
        font-size: 18px;
    }

    .how-step p {
        font-size: 14px;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Other grids */
    .features-grid,
    .use-cases-grid,
    .pricing-grid,
    .pricing-dual,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    /* Testimonials Section */
    .testimonials-section {
        padding: var(--space-2xl) 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-quote {
        font-size: 15px;
    }

    /* FAQ Section */
    .faq-section {
        padding: var(--space-2xl) 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* Mid-page CTA */
    .mid-cta {
        padding: var(--space-2xl) 0;
    }

    .mid-cta h2 {
        font-size: 24px;
    }

    .mid-cta p {
        font-size: 16px;
    }

    .trust-note {
        font-size: 13px;
    }

    /* Trust Badges */
    .trust-badges {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .trust-badge {
        font-size: 12px;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .cta-trust-badge {
        font-size: 13px;
    }

    /* CTA Section */
    .cta {
        padding: var(--space-2xl) 0;
    }

    .cta h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cta-note {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Footer */
    .footer {
        padding: var(--space-lg) 0;
    }

    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .footer-links-inline {
        gap: var(--space-md);
    }

    .footer-links-inline a {
        font-size: 13px;
    }

    .footer-simple p {
        font-size: 12px;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 28px;
    }

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

    .opportunity-card p {
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.animate-on-scroll.from-left {
    transform: translateX(-60px);
}

.animate-on-scroll.from-left.animate-in {
    transform: translateX(0);
}

/* Slide from right */
.animate-on-scroll.from-right {
    transform: translateX(60px);
}

.animate-on-scroll.from-right.animate-in {
    transform: translateX(0);
}

/* Scale up */
.animate-on-scroll.scale-up {
    transform: scale(0.9);
}

.animate-on-scroll.scale-up.animate-in {
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Float animation for cards */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.float-animation:nth-child(2) {
    animation-delay: 0.5s;
}

.float-animation:nth-child(3) {
    animation-delay: 1s;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 153, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 153, 255, 0.25), 0 0 60px rgba(159, 117, 255, 0.15);
    }
}

.hero-content > *,
.section-header,
.feature-card,
.solution-card,
.pricing-card {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-badge { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-description { animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }
.hero-stats { animation-delay: 0.45s; }
.hero-requirement { animation-delay: 0.5s; }
.trust-badges { animation-delay: 0.55s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.18s; }
.feature-card:nth-child(3) { animation-delay: 0.26s; }
.feature-card:nth-child(4) { animation-delay: 0.34s; }
.feature-card:nth-child(5) { animation-delay: 0.42s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

/* Judo throw tracker variant */
body.throw-app {
    background: radial-gradient(circle at top left, rgba(27, 133, 102, 0.12), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(195, 138, 44, 0.12), transparent 50%),
        linear-gradient(180deg, #f7f4ef 0%, #f1f0ea 45%, #f7f4ef 100%);
    color: #1b1f21;
}

body.throw-app h1,
body.throw-app h2,
body.throw-app h3 {
    color: #1b1f21;
}

body.throw-app p {
    color: #2f353a;
}

body.throw-app .skip-link {
    background: #1b8566;
}

.throw-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(247, 244, 239, 0.92);
    border-bottom: 1px solid rgba(29, 36, 40, 0.08);
    backdrop-filter: blur(12px);
}

.throw-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
}

.throw-logo {
    font-family: var(--font-headline);
    font-size: 26px;
    letter-spacing: -0.02em;
}

.throw-nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.throw-nav-pill {
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(27, 133, 102, 0.15);
    color: #1b8566;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-throw {
    background: #1b8566;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 16px rgba(27, 133, 102, 0.2);
}

.btn-throw:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(27, 133, 102, 0.28);
}

.btn-ghost {
    background: transparent;
    color: #1b1f21;
    border-color: rgba(29, 36, 40, 0.25);
}

.btn-ghost:hover {
    background: rgba(27, 133, 102, 0.08);
    border-color: rgba(27, 133, 102, 0.4);
}

.throw-hero {
    padding: calc(var(--space-4xl) + 20px) 0 var(--space-3xl);
}

.throw-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3xl);
    align-items: center;
}

.throw-hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: var(--space-lg);
    color: #1b1f21;
}

.throw-hero-content p {
    font-size: 19px;
    margin-bottom: var(--space-xl);
    max-width: 520px;
    color: #2a3136;
}

.throw-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(195, 138, 44, 0.18);
    color: #7a4d15;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.throw-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
}

.throw-metric-card {
    background: #fffaf2;
    border: 1px solid rgba(29, 36, 40, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    color: #1b1f21;
}

.metric-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6a6964;
    margin-bottom: var(--space-sm);
}

.metric-value {
    font-family: var(--font-headline);
    font-size: 28px;
    color: #1b1f21;
}

.throw-hero-visual {
    display: grid;
    gap: var(--space-lg);
}

.throw-highlight-card {
    background: #1b1f21;
    color: #f9f6f0;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 24px 60px rgba(27, 31, 33, 0.2);
}

.highlight-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.highlight-score {
    font-family: var(--font-headline);
    font-size: 64px;
    margin: var(--space-sm) 0;
}

.highlight-meta {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-md);
}

.highlight-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.highlight-tags span {
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.throw-hero-note {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(29, 36, 40, 0.08);
}

.throw-hero-note h3 {
    margin-bottom: var(--space-sm);
    color: #1b1f21;
}

.throw-hero-note p {
    color: #2f353a;
}

.throw-shell {
    padding: var(--space-3xl) 0 var(--space-4xl);
}

.throw-shell-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
}

.throw-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(29, 36, 40, 0.08);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    color: #1b1f21;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.panel-header h2 {
    font-size: 24px;
    margin-bottom: var(--space-xs);
}

.panel-header p {
    font-size: 14px;
    color: #4a5258;
}

.panel-pill {
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(27, 133, 102, 0.12);
    color: #1b8566;
    font-size: 12px;
    font-weight: 600;
}

.throw-form {
    display: grid;
    gap: var(--space-md);
}

.throw-field {
    display: grid;
    gap: var(--space-sm);
    font-size: 14px;
    font-weight: 600;
}

.throw-field input,
.throw-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(29, 36, 40, 0.2);
    font-family: var(--font-body);
    font-size: 15px;
    background: #fcfbf7;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.throw-field input:focus,
.throw-field textarea:focus {
    outline: none;
    border-color: #1b8566;
    box-shadow: 0 0 0 3px rgba(27, 133, 102, 0.18);
}

.leaderboard-list,
.log-list {
    display: grid;
    gap: var(--space-md);
}

.leaderboard-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: #fcfbf7;
    border: 1px solid rgba(29, 36, 40, 0.08);
}

.leaderboard-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(195, 138, 44, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #8b5e1a;
}

.leaderboard-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.leaderboard-meta {
    font-size: 13px;
    color: #4a5258;
    margin-bottom: 4px;
}

.leaderboard-notes {
    font-size: 13px;
    color: #2f353a;
}

.item-delete {
    border: 1px solid rgba(29, 36, 40, 0.2);
    background: transparent;
    border-radius: var(--radius-pill);
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.item-delete:hover {
    border-color: #c2594a;
    color: #c2594a;
}

.log-item {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: #fcfbf7;
    border: 1px solid rgba(29, 36, 40, 0.08);
}

.log-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.log-meta {
    font-size: 13px;
    color: #4a5258;
    margin-bottom: 4px;
}

.log-notes {
    font-size: 13px;
    color: #2f353a;
}

.log-score {
    font-family: var(--font-headline);
    font-size: 24px;
    color: #1b8566;
}

.empty-state {
    font-size: 14px;
    color: #3e474d;
    background: rgba(27, 133, 102, 0.08);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
    .throw-hero-grid {
        grid-template-columns: 1fr;
    }

    .throw-shell-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .throw-nav {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .throw-nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .throw-metrics {
        grid-template-columns: 1fr;
    }

    .throw-shell-grid {
        grid-template-columns: 1fr;
    }

    .throw-panel {
        padding: var(--space-lg);
    }

    .leaderboard-item {
        grid-template-columns: 1fr;
    }

    .item-delete {
        justify-self: flex-start;
    }
}
