/* ============================================
   SureWhyNot, LLC – Stylesheet
   ============================================ */

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

:root {
    --bg-dark: #0a0e27;
    --bg-darker: #050812;
    --bg-card: #1a1f3a;
    --text-primary: #e8eef7;
    --text-secondary: #b0b8cc;
    --accent-primary: #4f46e5;
    --accent-light: #6366f1;
    --border-color: #2a2f48;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
    margin-top: 1.5em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1.25em;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

ul {
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

ul li {
    margin-bottom: 0.75em;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Products dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > button {
    background: none; border: none; cursor: pointer; font: inherit;
    color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding-bottom: 0.25rem; border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.nav-dropdown > button:hover,
.nav-dropdown:focus-within > button { color: var(--text-primary); }
.nav-caret { transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-menu {
    position: absolute; top: calc(100% + 0.7rem); right: 0; min-width: 250px;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 10px; padding: 0.4rem;
    box-shadow: 0 18px 44px rgba(5, 8, 18, 0.6);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-menu.open { opacity: 1; visibility: visible; transform: none; }
.nav-menu a {
    display: block; padding: 0.65rem 0.75rem; border-radius: 7px;
    color: var(--text-secondary); border-bottom: none;
}
.nav-menu a:hover { background: var(--bg-dark); color: var(--text-primary); border-bottom: none; }
.nm-title { display: block; color: var(--text-primary); font-weight: 600; font-size: 0.92rem; }
.nm-desc { display: block; font-size: 0.78rem; color: var(--text-secondary); margin-top: 0.15rem; line-height: 1.4; }
.nm-tag {
    display: inline-block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em;
    padding: 0.1rem 0.45rem; border-radius: 999px; vertical-align: middle; margin-left: 0.35rem;
    background: var(--lv-green-dim, rgba(34,197,94,0.1)); border: 1px solid var(--lv-green-border, rgba(34,197,94,0.28));
    color: var(--lv-green, #22c55e); font-weight: 700;
}

/* Static (non-link) hero pill */
.status-pill-static { cursor: default; }
.status-pill-static:hover { transform: none; background: rgba(99, 102, 241, 0.1); border-color: rgba(99, 102, 241, 0.35); }

/* Section lead paragraph (centered intro under an h2) */
.section-lead {
    text-align: center; max-width: 680px; margin: -1.5rem auto 3rem;
    color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8;
}

/* Portfolio cards (whole card is a link) */
.portfolio-card { display: block; }
.portfolio-card h3 { color: var(--text-primary); }
.portfolio-link { display: inline-block; margin-top: 1rem; font-size: 0.9rem; font-weight: 600; }
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated ambient glow behind the hero */
.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-glow::before,
.hero-glow::after {
    content: "";
    position: absolute;
    width: 45vw;
    height: 45vw;
    max-width: 620px;
    max-height: 620px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.hero-glow::before {
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.55) 0%, transparent 70%);
    animation: drift-a 18s ease-in-out infinite;
}

.hero-glow::after {
    bottom: -15%;
    right: -8%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.45) 0%, transparent 70%);
    animation: drift-b 22s ease-in-out infinite;
}

@keyframes drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(6%, 8%) scale(1.12); }
}

@keyframes drift-b {
    0%, 100% { transform: translate(0, 0) scale(1.05); }
    50%      { transform: translate(-7%, -6%) scale(0.92); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Status pill (featured product) */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1.75rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.status-pill:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.18);
    border-color: var(--accent-light);
    transform: translateY(-1px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse-dot 2.2s ease-out infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.status-arrow {
    transition: transform 0.25s ease;
}

.status-pill:hover .status-arrow {
    transform: translateX(3px);
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

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

    .btn {
        width: 100%;
    }
}

/* Focus Areas */
.focus-areas {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background-color: var(--bg-darker);
}

.focus-areas h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.focus-card {
    position: relative;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.focus-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-6px);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(79, 70, 229, 0.05) 100%);
    box-shadow: 0 16px 40px rgba(5, 8, 18, 0.55), 0 0 0 1px rgba(99, 102, 241, 0.15);
}

.focus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    color: var(--accent-light);
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    transition: var(--transition);
}

.focus-icon svg {
    width: 24px;
    height: 24px;
}

.focus-card:hover .focus-icon {
    color: #fff;
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.06);
}

.focus-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.focus-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Philosophy Section */
.philosophy {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background-color: var(--bg-dark);
}

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

.philosophy-content h2 {
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.philosophy-content p:last-child {
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Page Content */
.page-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.page-content .container {
    max-width: 800px;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    margin-top: 0;
}

/* Legal Pages */
.legal p {
    font-size: 0.95rem;
}

.legal ul {
    margin-bottom: 1.5em;
}

.legal ul li {
    font-size: 0.95rem;
    margin-bottom: 0.75em;
}

/* Contact Info */
.contact-section {
    margin-bottom: 3rem;
}

.contact-info {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: clamp(2rem, 5vw, 3rem) 0;
    margin-top: clamp(3rem, 8vw, 5rem);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .page-content {
        padding: 2rem 0;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-cta {
        gap: 0.75rem;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stagger the focus cards as they enter */
.focus-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.focus-card.reveal:nth-child(2) { transition-delay: 0.13s; }
.focus-card.reveal:nth-child(3) { transition-delay: 0.21s; }
.focus-card.reveal:nth-child(4) { transition-delay: 0.29s; }

/* No-JS fallback: never leave content hidden */
.no-js .reveal {
    opacity: 1;
    transform: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
    }
}

/* ============================================
   LocalView Product Pages
   ============================================ */

:root {
    --lv-accent: #0ea5e9;
    --lv-accent-dim: rgba(14, 165, 233, 0.1);
    --lv-accent-border: rgba(14, 165, 233, 0.28);
    --lv-green: #22c55e;
    --lv-green-dim: rgba(34, 197, 94, 0.1);
    --lv-green-border: rgba(34, 197, 94, 0.28);
}

/* Breadcrumb */
.lv-breadcrumb {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 0;
    font-size: 0.85rem;
}
.lv-breadcrumb a { color: var(--text-secondary); }
.lv-breadcrumb a:hover { color: var(--lv-accent); }
.lv-breadcrumb .sep { color: var(--border-color); margin: 0 0.5rem; }
.lv-breadcrumb .cur { color: var(--text-primary); }

/* Product hero */
.lv-hero {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.lv-hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -8%;
    width: 45vw;
    height: 45vw;
    max-width: 540px;
    max-height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lv-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 1;
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.lv-product-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--lv-accent-dim);
    border: 1px solid var(--lv-accent-border);
    color: var(--lv-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.lv-hero h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--lv-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lv-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: 700px;
    line-height: 1.6;
}
.lv-hero-copy {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 680px;
    line-height: 1.85;
}
.lv-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Store / LocalView CTA button */
.btn-store {
    background: var(--lv-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.btn-store:hover {
    background: #38bdf8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

/* Generic sections */
.lv-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}
.lv-section-alt {
    background-color: var(--bg-darker);
}
.lv-section-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 680px;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Feature card grid */
.lv-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.lv-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.75rem;
    transition: var(--transition);
}
.lv-feature-card:hover {
    border-color: var(--lv-accent-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(5, 8, 18, 0.55);
}
.lv-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--lv-accent-dim);
    border: 1px solid var(--lv-accent-border);
    color: var(--lv-accent);
    transition: var(--transition);
}
.lv-feature-card:hover .lv-feature-icon {
    background: var(--lv-accent);
    border-color: var(--lv-accent);
    color: #fff;
}
.lv-feature-icon svg { width: 20px; height: 20px; }
.lv-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.lv-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.65;
}

/* Power-user feature groups */
.lv-power-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.lv-power-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.75rem;
}
.lv-power-group h3 {
    font-size: 0.95rem;
    color: var(--lv-accent);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lv-power-group ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}
.lv-power-group ul li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}
.lv-power-group ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--lv-accent);
    font-size: 1rem;
    line-height: 1.4;
}

/* Privacy checks */
.lv-privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}
.lv-privacy-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: var(--transition);
}
.lv-privacy-item:hover {
    border-color: var(--lv-green-border);
}
.lv-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lv-green-dim);
    border: 1px solid var(--lv-green-border);
    color: var(--lv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}
.lv-privacy-item span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Who it's for */
.lv-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 1.1rem;
    margin-top: 2rem;
}
.lv-who-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: var(--transition);
}
.lv-who-card:hover {
    border-color: var(--lv-accent-border);
    transform: translateY(-3px);
}
.lv-who-emoji {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    display: block;
}
.lv-who-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}
.lv-who-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.55;
}

/* MS Store readiness info grid */
.lv-store-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}
.lv-store-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}
.lv-store-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lv-green);
    margin-top: 0.5rem;
}
.lv-store-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.55;
}
.lv-store-item p a {
    color: var(--lv-accent);
}

/* Contact card */
.lv-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.lv-contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--lv-accent-dim);
    border: 1px solid var(--lv-accent-border);
    color: var(--lv-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lv-contact-icon svg { width: 24px; height: 24px; }
.lv-contact-body h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.lv-contact-body p { margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 0.95rem; }
.lv-email {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lv-accent) !important;
}
.lv-email:hover { color: #38bdf8 !important; }

/* Support quick-links grid */
.lv-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.85rem;
    margin-top: 1.75rem;
}
.lv-support-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}
.lv-support-link:hover {
    border-color: var(--lv-accent-border);
    color: var(--text-primary);
    transform: translateY(-2px);
}
.lv-support-link svg { width: 15px; height: 15px; color: var(--lv-accent); flex-shrink: 0; }

/* Troubleshooting list */
.lv-troubleshoot {
    list-style: none;
    margin-left: 0;
    margin-top: 1rem;
}
.lv-troubleshoot li {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}
.lv-troubleshoot li:first-child { padding-top: 0; }
.lv-troubleshoot li:last-child { border-bottom: none; }
.lv-troubleshoot li strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    font-size: 0.93rem;
}

/* Table of contents (help page) */
.lv-toc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.75rem;
    margin-bottom: 3rem;
}
.lv-toc-heading {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.lv-toc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
}
.lv-toc-links li { margin: 0; }
.lv-toc-links a {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    background: var(--lv-accent-dim);
    border: 1px solid var(--lv-accent-border);
    color: var(--lv-accent);
    font-size: 0.83rem;
    font-weight: 500;
    transition: var(--transition);
}
.lv-toc-links a:hover {
    background: rgba(14, 165, 233, 0.18);
    color: #38bdf8;
}

/* FAQ sections */
.lv-faq-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 90px;
}
.lv-faq-section h2 {
    font-size: 1.35rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
    margin-top: 0;
}
.lv-faq-item {
    margin-bottom: 1.75rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
}
.lv-faq-item:hover { border-left-color: var(--lv-accent-border); }
.lv-faq-item h3 {
    font-size: 0.97rem;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
}
.lv-faq-item p, .lv-faq-item ul {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}
.lv-faq-item ul { margin-bottom: 0; }
.lv-faq-item ul li { font-size: 0.92rem; margin-bottom: 0.4rem; }

/* Release notes */
.lv-release-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}
.lv-release-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.lv-version-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    background: var(--lv-accent-dim);
    border: 1px solid var(--lv-accent-border);
    color: var(--lv-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.lv-release-date {
    color: var(--text-secondary);
    font-size: 0.88rem;
}
.lv-release-block h2 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.lv-release-category {
    margin-bottom: 1.5rem;
}
.lv-release-category h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.75rem;
}
.lv-release-category ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}
.lv-release-category ul li {
    padding: 0.45rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(42, 47, 72, 0.4);
}
.lv-release-category ul li:last-child { border-bottom: none; }
.lv-release-category ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lv-green);
    font-size: 0.8rem;
    top: 0.5rem;
}

/* LocalView sub-footer nav */
.lv-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
}
.lv-footer-nav a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
}
.lv-footer-nav a:hover { color: var(--lv-accent); }

/* Note/callout box */
.lv-note {
    background: var(--lv-accent-dim);
    border: 1px solid var(--lv-accent-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.65;
}

/* Section anchor offset for sticky nav */
.lv-anchor { scroll-margin-top: 80px; }

/* Responsive */
@media (max-width: 768px) {
    .lv-hero-cta { flex-direction: column; }
    .lv-contact-card { flex-direction: column; }
    .lv-who-grid { grid-template-columns: repeat(2, 1fr); }
    .lv-power-grid { grid-template-columns: 1fr; }
    .btn-store { width: 100%; }
}
@media (max-width: 480px) {
    .lv-who-grid { grid-template-columns: 1fr; }
    .lv-feature-grid { grid-template-columns: 1fr; }
}
