/* ═══════════════════════════════════════════════
   Landing Page — Marketing + Auth Modal
   ═══════════════════════════════════════════════ */

/* ── Fixed Top Nav ── */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 56px;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.landing-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.landing-nav.scrolled .landing-nav-brand {
    color: var(--primary-dark);
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}

.nav-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.landing-nav.scrolled .nav-btn-ghost {
    color: var(--text);
    border-color: var(--border);
}

.landing-nav.scrolled .nav-btn-ghost:hover {
    background: var(--gray-lighter);
    border-color: var(--gray);
}

.nav-btn-solid {
    background: #fff;
    color: var(--primary-dark);
}

.nav-btn-solid:hover {
    background: #f0f4ff;
    transform: translateY(-1px);
}

.landing-nav.scrolled .nav-btn-solid {
    background: var(--primary);
    color: #fff;
}

.landing-nav.scrolled .nav-btn-solid:hover {
    background: var(--primary-dark);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s;
}

.landing-nav.scrolled .nav-hamburger span {
    background: var(--text);
}

/* ── Hero Section ── */

.landing-hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, #1e3a5f 0%, #2F5597 40%, #4472C4 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Grid pattern overlay */
.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Gradient orb */
.landing-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.landing-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.landing-subhead {
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero-actions {
    margin-bottom: 48px;
}

.btn-hero-primary {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px;
    background: #fff;
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:active {
    transform: translateY(0);
}

.hero-login-link {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.hero-login-link a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.hero-login-link a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats row */
.landing-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-stat-num {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.landing-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.landing-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── Shared Section Styles ── */

.landing-section {
    padding: 80px 24px;
}

.landing-section-alt {
    background: #f8fafc;
}

.landing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── Screenshot Showcase ── */

.landing-showcase {
    padding-top: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.screenshot-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 960px;
    margin: 0 auto;
}

.screenshot-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.screenshot-dot:first-child {
    margin-left: 4px;
}

.screenshot-url {
    margin-left: 16px;
    font-size: 12px;
    color: #94a3b8;
    font-family: var(--font-mono);
}

.screenshot-body {
    background: #fafbfc;
    line-height: 0;
}

.screenshot-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Features Grid ── */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-visual {
    width: 100%;
    background: #f0f4ff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 10px;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Value Props (alternating layout) ── */

.value-prop {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
}

.value-prop:last-child {
    margin-bottom: 0;
}

.value-prop-reverse {
    flex-direction: row-reverse;
}

.value-prop-text {
    flex: 1;
}

.value-prop-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.value-prop-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.value-prop-visual {
    flex: 1;
    min-height: 220px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 13px;
}

/* ── Pricing ── */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(68, 114, 196, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none' stroke='%2316a34a' stroke-width='2'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E") no-repeat center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    padding: 13px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
}

.btn-pricing-outline {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-pricing-outline:hover {
    background: #f0f4ff;
}

.btn-pricing-solid {
    background: var(--primary);
    color: #fff;
}

.btn-pricing-solid:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ── Final CTA Section ── */

.landing-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2F5597 100%);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.landing-cta h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.landing-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* ── Footer ── */

.landing-footer {
    padding: 24px;
    border-top: 1px solid #e8ecf1;
}

.landing-footer .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.footer-copy {
    font-size: 13px;
    color: var(--text-light);
}

/* ── Mobile Menu ── */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #fff;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e8ecf1;
}

.mobile-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.mobile-menu-close {
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.mobile-menu-link {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.15s;
}

.mobile-menu-link:hover {
    background: var(--gray-lighter);
}

.mobile-menu-divider {
    border: none;
    border-top: 1px solid #e8ecf1;
    margin: 4px 0;
}

.mobile-menu-auth {
    font-weight: 600;
}

.mobile-menu-join {
    color: var(--primary);
}

/* ── Auth Modal Overlay ── */

.auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    padding: 24px;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
    padding: 32px;
    position: relative;
    transform: translateY(16px) scale(0.97);
    transition: transform 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0) scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.15s;
    z-index: 1;
}

.auth-modal-close:hover {
    color: var(--text);
}

/* ── Auth Card (inside modal) ── */

.auth-card {
    width: 100%;
}

/* Tab toggle */
.auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
    color: #64748b;
    transition: all 0.2s;
}

.auth-tab.active {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.auth-tab:hover:not(.active) {
    color: var(--text);
}

.auth-card .subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Sign-up benefits */
.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
}

.signup-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}

.signup-benefit svg {
    flex-shrink: 0;
}

/* Form */
.auth-card .form-group {
    margin-bottom: 18px;
}

.auth-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%;
    padding: 11px 14px;
    font-size: 16px;
    font-family: var(--font);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: #f8fafc;
    color: var(--text);
}

.auth-card input::placeholder {
    color: #94a3b8;
}

.auth-card input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(68, 114, 196, 0.12);
    background: #fff;
}

.auth-card .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 4px;
}

.auth-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.auth-card .btn-primary:active {
    transform: translateY(0);
}

.auth-card .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer link */
.auth-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.auth-footer-link {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

.auth-footer-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Messages */
.auth-card .error-msg {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 18px;
    display: none;
    line-height: 1.5;
}

.auth-card .error-msg.visible {
    display: block;
}

.auth-card .success-msg {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 18px;
    display: none;
    line-height: 1.5;
}

.auth-card .success-msg.visible {
    display: block;
}

/* Pending banner */
.pending-banner {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 24px;
    text-align: center;
}

.pending-icon {
    margin-bottom: 8px;
}

.pending-banner h3 {
    color: #b45309;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pending-banner p {
    font-size: 13px;
    color: #78716c;
    line-height: 1.5;
}

/* ── Refresh button (used in main app) ── */

.btn-refresh {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.15s, background 0.15s;
}

.btn-refresh:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.btn-refresh:disabled {
    opacity: 0.5;
    cursor: default;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── Tablet (600-900px) ── */
@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }

    .landing-headline {
        font-size: 40px;
    }

    .landing-subhead {
        font-size: 17px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-prop,
    .value-prop-reverse {
        flex-direction: column;
        gap: 24px;
    }

    .value-prop-visual {
        min-height: 180px;
    }

    .section-title {
        font-size: 30px;
    }

    .landing-cta h2 {
        font-size: 30px;
    }
}

/* ── Mobile (<600px) ── */
@media (max-width: 600px) {
    .landing-nav-inner {
        padding: 0 16px;
    }

    .nav-btn {
        font-size: 13px;
        padding: 7px 12px;
    }

    .landing-hero {
        padding: 80px 20px 48px;
        min-height: auto;
    }

    .landing-headline {
        font-size: 32px;
        letter-spacing: -1.2px;
    }

    .landing-subhead {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .btn-hero-primary {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
    }

    .landing-social-proof {
        gap: 0;
        justify-content: space-between;
        padding-top: 28px;
    }

    .landing-stat {
        flex: 1;
        align-items: center;
    }

    .landing-stat-num {
        font-size: 22px;
    }

    .landing-stat-divider {
        height: 28px;
    }

    .landing-section {
        padding: 48px 20px;
    }

    .landing-showcase {
        margin-top: -24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-visual {
        border-radius: 8px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .value-prop {
        margin-bottom: 32px;
    }

    .value-prop-text h3 {
        font-size: 20px;
    }

    .value-prop-visual {
        min-height: 160px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .landing-cta {
        padding: 48px 20px;
    }

    .landing-cta h2 {
        font-size: 24px;
    }

    .landing-cta p {
        font-size: 15px;
    }

    .landing-cta .btn-hero-primary {
        width: 100%;
    }

    .landing-footer .landing-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .auth-modal-overlay {
        padding: 16px;
        align-items: flex-start;
        padding-top: 56px;
    }

    .auth-modal {
        padding: 24px;
        border-radius: 14px;
    }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
    .nav-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-hamburger {
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .btn-pricing {
        min-height: 48px;
    }

    .auth-card .btn-primary {
        min-height: 48px;
    }
}
