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

:root {
    --purple: #9333ea;
    --purple-dark: #6b21a8;
    --purple-light: #c084fc;
    --gold: #fbbf24;
    --gold-dark: #f59e0b;
    --dark-bg: #0f0f1a;
    --dark-card: #1a1a2e;
    --text-light: #f5f5f5;
    --text-muted: #b0b0c0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 50%, var(--dark-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.bg-accent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: drift 20s ease-in-out infinite;
}

.bg-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: drift 25s ease-in-out infinite reverse;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    flex-wrap: wrap;
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-decoration: none;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
    letter-spacing: -1px;
    animation: slideDown 0.8s ease-out;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--purple-light), var(--gold), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Styling */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 5;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Space Mono', monospace;
}

/* Lurk OS Section */
.lurk-os {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-top: 1px solid rgba(147, 51, 234, 0.3);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.lurk-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.lurk-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.lurk-intro-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Shop Section */
.shop {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 250px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.add-product-btn {
    background: rgba(147, 51, 234, 0.2);
    border: 2px dashed rgba(147, 51, 234, 0.5);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.add-product-btn:hover {
    border-color: var(--gold);
    background: rgba(251, 191, 36, 0.1);
}

.add-product-btn p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Streaming Hub */
.streaming-hub {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hub-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.hub-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.hub-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hub-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hub-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hub-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hub-card a:hover {
    color: var(--purple-light);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gold);
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--purple-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--purple), var(--gold));
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    position: relative;
    z-index: 5;
}

/* ===== Sub-page styles ===== */

/* Compact hero variant for sub-pages */
.subpage-hero {
    min-height: 50vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.subpage-hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
}

.subpage-hero .tagline {
    margin-bottom: 1.5rem;
}

/* Section-link CTA used inside shop preview on home */
.section-link {
    display: block;
    text-align: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.section-link:hover {
    color: var(--purple-light);
}

/* Feature deep-dive sections (Lurk OS page) */
.feature-deepdive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(251, 191, 36, 0.04) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.feature-deepdive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
}

.feature-deepdive.reverse {
    direction: rtl;
}

.feature-deepdive.reverse > * {
    direction: ltr;
}

.feature-deepdive .big-icon {
    font-size: 6rem;
    text-align: center;
}

.feature-deepdive h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

.feature-deepdive p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-deepdive ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-deepdive li {
    color: var(--text-muted);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-deepdive li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Demo / screenshot placeholder */
.demo-placeholder {
    width: 100%;
    min-height: 360px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px dashed rgba(147, 51, 234, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
}

/* Demo video grid */
.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.demo-video {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.demo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
    z-index: 1;
}

.demo-video:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.demo-video video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
}

.demo-video-info {
    padding: 1.25rem 1.5rem;
}

.demo-video-info h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Space Mono', monospace;
}

.demo-video-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* System requirements two-column card */
.sysreq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.sysreq-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.sysreq-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

.sysreq-card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1rem;
}

.sysreq-card dt {
    color: var(--purple-light);
    font-weight: 600;
}

.sysreq-card dd {
    color: var(--text-muted);
}

/* FAQ cards */
.faq-list {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-card h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-card p {
    color: var(--text-muted);
}

/* Signup / CTA container (slimmer than full contact form) */
.signup-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Video grid (Videos page) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(251, 191, 36, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.video-thumb .play-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    color: var(--gold);
}

.video-info {
    padding: 1.25rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.video-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Schedule grid (Schedule page) */
.week-section {
    margin-bottom: 4rem;
}

.week-heading {
    font-family: 'Space Mono', monospace;
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    text-align: center;
}

.week-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
}

.day-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 1rem 0.6rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.day-card.live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold));
}

.day-card.off {
    opacity: 0.35;
    border-style: dashed;
}

.day-card .day-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--purple-light);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.day-card .day-time {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
}

.day-card.off .day-time {
    color: var(--text-muted);
    font-weight: 400;
}

.rotation-note {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-style: italic;
}

/* Upcoming events list */
.events-list {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.event-date {
    font-family: 'Space Mono', monospace;
    color: var(--purple-light);
    font-size: 0.95rem;
    text-align: center;
}

.event-info h4 {
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.event-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Shop categories (Shop page) */
.shop-category {
    margin-bottom: 4rem;
}

.shop-category-title {
    font-family: 'Space Mono', monospace;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    text-align: center;
}

.shop-category-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-card {
    background: rgba(147, 51, 234, 0.08);
    border: 2px dashed rgba(147, 51, 234, 0.4);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.coming-soon-card .cs-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.coming-soon-card h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav a {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .lurk-intro {
        grid-template-columns: 1fr;
    }

    .lurk-intro-text h2 {
        font-size: 1.8rem;
    }

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

    .btn {
        width: 100%;
    }

    .products-grid,
    .hub-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 1rem;
    }

    .feature-deepdive,
    .sysreq-grid {
        grid-template-columns: 1fr;
    }

    .feature-deepdive.reverse {
        direction: ltr;
    }

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

    .event-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .event-date {
        text-align: left;
    }

    .compare-row,
    .panel-row {
        grid-template-columns: 1fr;
    }
}

/* ===== About Lurk OS page ===== */

.toc-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.toc-card h3 {
    font-family: 'Space Mono', monospace;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
}

.toc-card ol {
    list-style: none;
    counter-reset: toc;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.toc-card li {
    counter-increment: toc;
    padding: 0.4rem 0;
    break-inside: avoid;
}

.toc-card li::before {
    content: counter(toc, decimal-leading-zero) "  ";
    color: var(--purple-light);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

.toc-card a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.toc-card a:hover {
    color: var(--gold);
}

.about-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    font-family: 'Space Mono', monospace;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    scroll-margin-top: 2rem;
}

.about-section h3 {
    color: var(--purple-light);
    margin: 1.5rem 0 0.6rem;
    font-size: 1.15rem;
}

.about-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.about-section ul li {
    color: var(--text-muted);
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Panel rows: label + description (used for Section 2 and Integrations) */
.panel-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
}

.panel-row:last-child {
    border-bottom: none;
}

.panel-row .panel-name {
    color: var(--gold);
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    font-weight: 700;
}

.panel-row .panel-desc {
    color: var(--text-muted);
}

/* Comparison rows: competitor vs Lurk OS */
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.compare-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.compare-card.lurk {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(251, 191, 36, 0.08) 100%);
    border: 1px solid var(--gold);
}

.compare-card h4 {
    color: var(--gold);
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.compare-card.lurk h4 {
    color: var(--gold);
}

.compare-card p,
.compare-card li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.compare-card ul {
    margin-top: 0.5rem;
}

.compare-divider {
    text-align: center;
    color: var(--purple-light);
    font-family: 'Space Mono', monospace;
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

/* Code-styled inline path */
.about-section code {
    background: rgba(147, 51, 234, 0.15);
    color: var(--gold);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9em;
}
