/* ============================================================================
   HEARTEN SYSTEMS LTD — Minimal, dark-mode landing page
   Anti-bloat. Clean. Fast.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --color-black: #080808;
    --color-brand: #00ffcd;
    --color-white: #ffffff;
    --color-grey: #abb8c3;
    --color-grey-muted: #7f7f7f;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-surface: rgba(255, 255, 255, 0.02);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;

    --gutter: 2rem;
    --max-width: 800px;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

::selection {
    background: var(--color-brand);
    color: var(--color-black);
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================================
   LAYOUT
   ============================================================================ */
.page-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================================================================
   HEADER / NAV
   ============================================================================ */
.site-header {
    padding: 0.5rem 0 0.25rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.125rem;
}

.site-header nav {
    width: 100%;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-white);
    text-decoration: none;
    height: 187.5px;
    overflow: hidden;
}

.site-logo {
    height: 375px;
    width: auto;
    flex-shrink: 0;
    filter: invert(1);
    margin-left: -150px;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 3.4375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-white);
    line-height: 1;
    margin-left: -261.9px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-list a {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-grey-muted);
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: var(--color-brand);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    margin-bottom: 5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--color-brand);
    color: var(--color-black);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 2.5rem;
    border: 1px solid var(--color-brand);
    transition: opacity 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--color-grey);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================================
   SECTION
   ============================================================================ */
.section {
    margin-bottom: 4rem;
    padding-top: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.section-title .num {
    color: var(--color-brand);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.4rem;
}

/* ============================================================================
   STANCE / BLOCKQUOTE
   ============================================================================ */
.stance-block {
    background: var(--color-surface);
    border-left: 3px solid var(--color-brand);
    padding: 1.5rem 1.75rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-bottom: 1.5rem;
}

.stance-block p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
}

.stance-block strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ============================================================================
   PROJECT CARDS
   ============================================================================ */
.project-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.project-card:hover {
    border-color: rgba(0, 255, 205, 0.15);
}

.project-card .card-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-brand);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.project-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--color-white);
}

.project-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
}

.project-card strong {
    color: var(--color-white);
    font-weight: 600;
}

/* ============================================================================
   CORPORATE / CONTACT
   ============================================================================ */
.corporate-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem 1.75rem;
}

.corporate-block p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.8;
}

.corporate-block strong {
    color: var(--color-white);
    font-weight: 600;
}

.corporate-block a {
    color: var(--color-brand);
    transition: opacity 0.2s;
}

.corporate-block a:hover {
    opacity: 0.8;
}

/* ============================================================================
   PRIVACY POLICY
   ============================================================================ */
.privacy-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.privacy-section h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.privacy-section .effective {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--color-grey-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--color-white);
}

.privacy-section h3 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--color-white);
}

.privacy-section p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.privacy-section strong {
    color: var(--color-white);
    font-weight: 600;
}

.privacy-section a {
    color: var(--color-brand);
    transition: opacity 0.2s;
}

.privacy-section a:hover {
    opacity: 0.8;
}

.privacy-section ul {
    list-style: none;
    margin: 0.5rem 0 1rem;
    padding: 0;
}

.privacy-section ul li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.3rem;
}

.privacy-section ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-brand);
}

.privacy-section blockquote {
    border-left: 2px solid var(--color-brand);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    background: var(--color-surface);
    border-radius: 0 0.5rem 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
}

/* ============================================================================
   404 ERROR PAGE
   ============================================================================ */
.error-block {
    text-align: center;
    padding: 3rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 800;
    color: var(--color-brand);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.error-message {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.error-humor {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.error-suggestion {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-grey-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ============================================================================
   COOKIE CONSENT BANNER
   ============================================================================ */

.cookie-consent.visible {
    display: block;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: var(--color-brand);
    color: var(--color-black);
    border-color: var(--color-brand);
}

.cookie-btn-accept:hover {
    opacity: 0.85;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-grey);
    border-color: rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .cookie-content {
        gap: 0.75rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-grey-muted);
    line-height: 1.6;
}

.footer-column h4 {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-grey-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--color-brand);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-grey-muted);
}

.footer-bottom a {
    color: var(--color-brand);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 768px) {
    .site-title {
        height: 93.75px;
    }

    .site-logo {
        height: 187.5px;
        margin-left: -75px;
    }

    .site-logo-text {
        font-size: 1.71875rem;
        margin-left: -130.95px;
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list {
        gap: 0.75rem;
    }

    .nav-list a {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .project-card {
        padding: 1.25rem;
    }

    .stance-block {
        padding: 1.25rem;
    }

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

@media (max-width: 480px) {
    .site-title {
        height: 46.875px;
    }

    .site-logo {
        height: 93.75px;
        margin-left: -37.5px;
    }

    .site-logo-text {
        font-size: 0.859375rem;
        margin-left: -65.475px;
    }
}

/* ============================================================================
   CUSTOM FORMS (Support & Contact)
   ============================================================================ */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .half {
    flex: 1;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.custom-form label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    text-transform: uppercase;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form textarea,
.custom-form select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.custom-form textarea {
    resize: vertical;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
    outline: none;
    border-color: var(--color-brand);
    background: rgba(0, 0, 0, 0.6);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.6rem;
    color: var(--color-brand);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-form select {
    appearance: none;
    cursor: pointer;
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    border: 1px solid;
}

.success-alert {
    background: rgba(0, 255, 205, 0.1);
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.error-alert {
    background: rgba(255, 60, 60, 0.1);
    border-color: #ff3c3c;
    color: #ff3c3c;
}

.field-error {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #ff3c3c;
    margin-top: 0.2rem;
}

.field-error:empty {
    display: none;
}

.custom-form input[data-fs-error],
.custom-form textarea[data-fs-error],
.custom-form select[data-fs-error] {
    border-color: #ff3c3c;
}

/* ============================================================================
   OMNIFORMA™ PRODUCT PAGE STYLES
   ============================================================================ */

.product-page-wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.product-hero {
    text-align: center;
    padding: 2.5rem 0 3.5rem;
    position: relative;
}

.product-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 205, 0.08);
    border: 1px solid rgba(0, 255, 205, 0.25);
    color: var(--color-brand);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 205, 0.08);
}

.product-hero-icon {
    width: 110px;
    height: 110px;
    border-radius: 24px;
    margin: 0 auto 1.75rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 255, 205, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-hero-icon:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 205, 0.35);
}

.product-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.product-hero .hero-sub {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 600;
    color: var(--color-brand);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.product-hero .hero-lead {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-grey);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.product-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-brand);
    color: var(--color-black);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border-radius: 2.5rem;
    border: 1px solid var(--color-brand);
    box-shadow: 0 0 25px rgba(0, 255, 205, 0.25);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 205, 0.45);
    opacity: 0.95;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Key Metrics Grid */
.product-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 4.5rem;
}

.stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
    border-color: rgba(0, 255, 205, 0.35);
    transform: translateY(-2px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand);
    line-height: 1.1;
    margin-bottom: 0.35rem;
    display: block;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.35rem;
}

.stat-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-grey-muted);
    line-height: 1.4;
}

/* Workstation Interactive Showcase */
.workstation-showcase {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.showcase-title-group h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.showcase-title-group p {
    font-size: 0.85rem;
    color: var(--color-grey-muted);
}

.view-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem;
    border-radius: 2rem;
    border: 1px solid var(--color-border);
    gap: 0.25rem;
}

.switcher-btn {
    background: transparent;
    color: var(--color-grey-muted);
    border: none;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.switcher-btn.active,
.switcher-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.switcher-btn.active {
    background: var(--color-brand);
    color: var(--color-black);
}

.showcase-image-container {
    position: relative;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    background: #000;
    margin-bottom: 1.75rem;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.showcase-callouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 0;
}

.callout-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1rem 1.2rem;
}

.callout-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-brand);
    margin-bottom: 0.4rem;
    display: block;
}

.callout-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.callout-card p {
    font-size: 0.8rem;
    color: var(--color-grey);
    line-height: 1.4;
}

/* App Store Badge CTA Button */
.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000000;
    color: #ffffff;
    font-family: var(--font-body);
    padding: 0.65rem 1.6rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: left;
    cursor: pointer;
}

.btn-appstore:hover {
    border-color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 205, 0.25);
}

.btn-appstore svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: currentColor;
}

.appstore-text-group {
    display: flex;
    flex-direction: column;
}

.appstore-sub {
    font-size: 0.65rem;
    color: var(--color-grey-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

.appstore-main {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Signal Flow Diagram & Animated Dual Rigs */
.signal-flow-wrap {
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 205, 0.04) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

/* Pipeline visual rail */
.pipeline-rail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 2.25rem;
    gap: 0.5rem;
    overflow-x: auto;
}

.pipeline-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--color-grey);
    white-space: nowrap;
}

.pipeline-step.active {
    color: var(--color-brand);
    font-weight: 700;
}

.pipeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-grey-muted);
}

.pipeline-step.active .pipeline-dot {
    background: var(--color-brand);
    box-shadow: 0 0 10px var(--color-brand);
    animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
}

.pipeline-arrow {
    color: var(--color-border);
    font-size: 0.75rem;
}

/* Technical Rig Flow Architecture Grid (8 Stages) */
.rig-flow-diagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2.25rem 0;
}

@media (min-width: 900px) {
    .rig-flow-diagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.flow-stage-card {
    background: rgba(14, 14, 16, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    overflow: hidden;
}

.flow-stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-brand) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flow-stage-card:hover {
    border-color: rgba(0, 255, 205, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 205, 0.12);
    background: rgba(20, 20, 24, 0.95);
}

.flow-stage-card:hover::before {
    opacity: 1;
}

.flow-stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow-stage-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--color-brand);
    background: rgba(0, 255, 205, 0.08);
    border: 1px solid rgba(0, 255, 205, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    font-weight: 700;
}

.flow-stage-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-grey-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 0.35rem;
}

.flow-stage-card:hover .flow-stage-tag {
    color: var(--color-brand);
    border-color: rgba(0, 255, 205, 0.25);
}

.flow-stage-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.flow-stage-desc {
    font-size: 0.86rem;
    color: var(--color-grey);
    line-height: 1.55;
}

.flow-param-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.4rem;
}

.param-pill {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-grey);
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
}

.flow-stage-card:hover .param-pill {
    border-color: rgba(0, 255, 205, 0.2);
    color: var(--color-white);
}

/* Parallel Execution Banner */
.parallel-duality-banner {
    background: linear-gradient(90deg, rgba(0, 255, 205, 0.08) 0%, rgba(255, 159, 28, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}


/* Custom Themes & Palette Showcase */
.themes-showcase-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 5rem;
}

.themes-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.theme-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    transition: all 0.2s ease;
}

.theme-chip:hover {
    border-color: var(--color-brand);
    transform: translateY(-2px);
}

.theme-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* DAW Host & AUv3 Compatibility Grid */
.daw-compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.daw-card {
    background: rgba(14, 14, 16, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    padding: 1.5rem 1.25rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.daw-card:hover {
    border-color: var(--color-brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 205, 0.15);
}

.daw-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.daw-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.daw-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--color-brand);
    background: rgba(0, 255, 205, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(0, 255, 205, 0.25);
    font-weight: 700;
}

.daw-desc {
    font-size: 0.82rem;
    color: var(--color-grey);
    line-height: 1.45;
}



/* 14 Stompboxes Pedalboard Rack */
.pedals-section {
    margin-bottom: 5rem;
}

.pedal-rack-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.chaos-mode-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ff6b6b;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 0.5rem;
}

/* Pedalboard Showcase Screenshot */
.pedalboard-showcase-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #080a0f;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 255, 205, 0.08);
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
}

.pedalboard-showcase-container:hover {
    border-color: rgba(0, 255, 205, 0.35);
}

.pedalboard-showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.pedalboard-showcase-caption {
    padding: 0.6rem 1.25rem;
    background: rgba(10, 12, 16, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pedalboard-showcase-caption span:first-child {
    color: var(--color-white);
}

.pedal-selector-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.pedal-selector-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-grey-muted);
}

.pedals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
    .pedals-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

.pedal-card {
    background: rgba(15, 17, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.45rem 0.3rem 0.35rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pedal-card:hover,
.pedal-card.active {
    border-color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 205, 0.25);
    background: rgba(24, 28, 36, 0.95);
}

.pedal-thumb {
    width: 100%;
    max-height: 58px;
    object-fit: contain;
    margin-bottom: 0.3rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease;
}

.pedal-card:hover .pedal-thumb {
    transform: scale(1.06);
}

.pedal-name {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.pedal-type {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Active Pedal Detail Inspector Box */
.pedal-inspector {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--color-brand);
    border-radius: 1rem;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 205, 0.15);
}

@media (max-width: 650px) {
    .pedal-inspector {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pedal-inspector-preview {
        margin: 0 auto;
    }
}

.pedal-inspector-preview {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.8));
}

.pedal-inspector-info h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.pedal-inspector-type {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: block;
}

.pedal-inspector-desc {
    font-size: 0.92rem;
    color: var(--color-grey);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.pedal-controls-chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.control-chip {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-white);
    padding: 0.25rem 0.65rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Engineering & Benchmark Comparison */
.benchmark-spotlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 2.5rem;
}

.bench-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.bench-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 205, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 205, 0.1);
}

.bench-card.spotlight-256,
.bench-card.featured-256 {
    background: linear-gradient(135deg, rgba(0, 255, 205, 0.08) 0%, rgba(20, 24, 33, 0.95) 100%);
    border: 1.5px solid rgba(0, 255, 205, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 205, 0.12);
}

.bench-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    background: rgba(0, 255, 205, 0.15);
    color: var(--color-brand);
    border: 1px solid rgba(0, 255, 205, 0.3);
    margin-bottom: 0.75rem;
}

.bench-value {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-brand);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.bench-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.bench-sub {
    font-size: 0.8rem;
    color: var(--color-grey-muted);
    line-height: 1.45;
}

.bench-progress-wrap {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9999px;
    height: 6px;
    overflow: hidden;
}

.bench-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ffcd, #00b4d8);
    border-radius: 9999px;
}

.benchmark-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0 3.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
}

.benchmark-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.benchmark-table th,
.benchmark-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.benchmark-table th {
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.benchmark-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-grey);
}

.benchmark-table td.omni-highlight {
    color: var(--color-brand);
    font-weight: 700;
    background: rgba(0, 255, 205, 0.04);
}

.benchmark-table tr:last-child td {
    border-bottom: none;
}

.benchmark-table tr.highlight-row td {
    background: rgba(0, 255, 205, 0.06);
    border-top: 1px solid rgba(0, 255, 205, 0.25);
    border-bottom: 1px solid rgba(0, 255, 205, 0.25);
}

/* Specs & DAW Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0 4.5rem;
}

.spec-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.75rem;
}

.spec-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 0.4rem;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-k {
    color: var(--color-grey-muted);
}

.spec-v {
    color: var(--color-white);
    font-weight: 500;
    text-align: right;
}

/* Pricing Card Showcase */
.pricing-banner-wrap {
    background: linear-gradient(135deg, rgba(0, 255, 205, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(0, 255, 205, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 205, 0.1);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-brand);
    margin: 1rem 0 0.5rem;
    line-height: 1;
}

.pricing-license-tag {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.pricing-checklist-grid,
.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.pricing-feat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--color-white);
}

.check-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand);
    box-shadow: 0 0 6px rgba(0, 255, 205, 0.6);
    flex-shrink: 0;
}

.pricing-feat span {
    color: var(--color-brand);
}

/* FAQ Accordion */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 4rem;
}

.faq-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s;
}

.faq-card summary {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

.faq-card summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--color-brand);
    font-weight: 300;
}

.faq-card[open] summary::after {
    content: '−';
}

.faq-card p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-grey);
    line-height: 1.6;
}

/* ============================================================================
   SUPPORT & USER GUIDE STYLES
   ============================================================================ */
.guide-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 3rem;
}

.guide-jump-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-grey);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.guide-jump-btn:hover {
    color: var(--color-brand);
    border-color: rgba(0, 255, 205, 0.4);
    background: rgba(0, 255, 205, 0.05);
    transform: translateY(-2px);
}

.guide-doc-block {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}

.guide-header-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    background: rgba(0, 255, 205, 0.12);
    color: var(--color-brand);
    border: 1px solid rgba(0, 255, 205, 0.3);
    margin-bottom: 1rem;
}

.guide-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.75rem 0;
}

.guide-step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    padding: 1.5rem;
    position: relative;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.guide-step-card:hover {
    border-color: rgba(0, 255, 205, 0.3);
    transform: translateY(-2px);
}

.guide-step-num {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.guide-step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.guide-step-card p {
    font-size: 0.88rem;
    color: var(--color-grey-muted);
    line-height: 1.55;
}

.guide-tabs-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.guide-tab-box {
    background: rgba(10, 12, 16, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    padding: 1.5rem;
}

.guide-tab-tag {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.guide-tab-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.guide-tab-box p {
    font-size: 0.85rem;
    color: var(--color-grey-muted);
    line-height: 1.5;
}

.guide-tab-box ul {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.guide-tab-box li {
    font-size: 0.82rem;
    color: var(--color-grey);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-bullet {
    color: var(--color-brand);
    font-weight: 700;
}

.guide-tab-box li span {
    color: var(--color-brand);
}

.guide-callout-tip {
    background: linear-gradient(135deg, rgba(0, 255, 205, 0.06) 0%, rgba(15, 18, 24, 0.9) 100%);
    border: 1px solid rgba(0, 255, 205, 0.3);
    border-radius: 0.85rem;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.guide-callout-content {
    font-size: 0.88rem;
    color: var(--color-grey);
    line-height: 1.55;
}

.guide-callout-content strong {
    color: var(--color-white);
}

/* ============================================================================
   OMNIFORMA MANUAL SEARCH & REFERENCE STYLES
   ============================================================================ */
.manual-search-container {
    background: rgba(12, 15, 20, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
}

.manual-search-bar {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    transition: all var(--transition-fast);
}

.manual-search-bar:focus-within {
    border-color: var(--color-brand);
    box-shadow: 0 0 15px rgba(0, 255, 205, 0.25);
    background: rgba(0, 0, 0, 0.85);
}

.manual-search-icon {
    width: 20px;
    height: 20px;
    color: var(--color-brand);
    flex-shrink: 0;
}

#manual-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-white);
}

#manual-search-input::placeholder {
    color: var(--color-grey-muted);
}

.manual-search-clear-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-grey);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.manual-search-clear-btn:hover {
    color: var(--color-white);
    background: rgba(255, 60, 60, 0.4);
    border-color: rgba(255, 60, 60, 0.6);
}

.manual-search-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.manual-search-count {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.manual-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.manual-filter-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-grey);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.manual-filter-tag:hover {
    color: var(--color-white);
    border-color: rgba(0, 255, 205, 0.3);
    background: rgba(0, 255, 205, 0.05);
}

.manual-filter-tag.active {
    background: rgba(0, 255, 205, 0.15);
    color: var(--color-brand);
    border-color: var(--color-brand);
    box-shadow: 0 0 10px rgba(0, 255, 205, 0.2);
}

.manual-no-results {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--color-border);
    border-radius: 0.85rem;
    margin-top: 1.5rem;
}

.manual-no-results p {
    color: var(--color-grey-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.manual-no-results span {
    color: var(--color-brand);
    font-weight: 700;
}

.manual-highlight {
    background: rgba(0, 255, 205, 0.25);
    color: #fff;
    padding: 0.1em 0.3em;
    border-radius: 3px;
    font-weight: 600;
}

/* ============================================================================
   PEDALBOARD EFFECTS CARDS & KNOB BREAKDOWNS
   ============================================================================ */
.pedal-guide-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.pedal-guide-card {
    background: rgba(10, 12, 16, 0.75);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.pedal-guide-card:hover {
    border-color: rgba(0, 255, 205, 0.4);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.pedal-guide-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 600px) {
    .pedal-guide-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.pedal-guide-thumb {
    width: 100px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    margin: 0 auto;
}

.pedal-guide-title-group h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.35rem;
}

.pedal-guide-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-brand);
    background: rgba(0, 255, 205, 0.08);
    border: 1px solid rgba(0, 255, 205, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.pedal-guide-desc {
    color: var(--color-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.knob-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.knob-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.65rem;
    padding: 1rem 1.15rem;
    transition: all var(--transition-fast);
}

.knob-card:hover {
    border-color: rgba(0, 255, 205, 0.25);
    background: rgba(0, 255, 205, 0.02);
}

.knob-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
    gap: 0.5rem;
}

.knob-name {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.knob-range {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-brand);
    background: rgba(0, 255, 205, 0.08);
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    white-space: nowrap;
}

.knob-desc {
    font-size: 0.82rem;
    color: var(--color-grey-muted);
    line-height: 1.5;
}

.pedal-pro-tip {
    background: rgba(0, 255, 205, 0.04);
    border-left: 3px solid var(--color-brand);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.75rem 1rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--color-grey);
    line-height: 1.5;
}

.pedal-pro-tip strong {
    color: var(--color-brand);
    font-weight: 700;
}