:root {
    --bg-primary: #121214;
    --bg-secondary: #1a1a1e;
    --bg-card: #1e1e24;
    --bg-card-hover: #26262e;
    
    --accent-gold: #c9a227;
    --accent-gold-light: #d4b44a;
    --accent-gold-dark: #a68620;
    --accent-gold-muted: rgba(201, 162, 39, 0.12);
    --accent-signal: #6ec4b8;
    --accent-signal-dim: rgba(110, 196, 184, 0.35);
    
    --text-primary: #f4f4f5;
    --text-secondary: #a8a8b0;
    --text-muted: #71717a;
    
    --border-color: #2e2e36;
    --border-light: #3f3f48;
    
    --font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    
    --transition-fast: 0.15s ease;
    --transition-medium: 0.25s ease;
    
    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0);
    backdrop-filter: blur(0);
    transition: background-color var(--transition-medium),
                backdrop-filter var(--transition-medium);
    z-index: 1000;
}

header.header-scrolled {
    background: rgba(18, 18, 20, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
    height: 18px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

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

.nav-item-plugins {
    position: relative;
}

/* Keep hover active while moving from trigger to dropdown. */
.nav-item-plugins::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    max-width: calc(100vw - 24px);
    height: 14px;
    pointer-events: none;
}

.nav-item-plugins:hover::after,
.nav-item-plugins:focus-within::after,
.nav-item-plugins.open::after {
    pointer-events: auto;
}

.nav-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-parent-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition-fast);
    opacity: 0.85;
}

.nav-item-plugins:hover .nav-parent-link::after,
.nav-item-plugins:focus-within .nav-parent-link::after,
.nav-item-plugins.open .nav-parent-link::after {
    transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 348px;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: rgba(24, 24, 24, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1010;
}

.nav-item-plugins:hover .nav-dropdown,
.nav-item-plugins:focus-within .nav-dropdown,
.nav-item-plugins.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.62rem 0.72rem;
    border-radius: 8px;
}

.nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown-link strong {
    display: block;
    font-size: 0.88rem;
    line-height: 1.35;
    color: var(--text-primary);
}

.nav-dropdown-wordmark {
    display: block;
    width: 122px;
    max-width: 100%;
    height: auto;
    margin-bottom: 0.04rem;
}

.nav-dropdown-link span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
    letter-spacing: 0.07em;
    word-break: break-word;
}

.nav-links .nav-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    color: var(--accent-gold);
}

.nav-links .nav-login-btn:hover {
    color: var(--bg-primary);
    background: var(--accent-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    padding: calc(70px + 6rem) 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    --hero-image: url('/assets/img/hero.jpg');
    background:
        radial-gradient(circle at 20% 20%, rgba(110, 196, 184, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 65%, rgba(201, 162, 39, 0.14) 0%, transparent 38%),
        linear-gradient(180deg, #1c1c22 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.56;
    z-index: 0;
    pointer-events: none;
    transform: scale(1.04);
    animation: heroBackgroundDrift 16s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(212, 180, 74, 0.18) 0%, rgba(212, 180, 74, 0) 42%),
        radial-gradient(circle at 82% 72%, rgba(196, 88, 42, 0.14) 0%, rgba(196, 88, 42, 0) 40%),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.62) 45%,
            rgba(0, 0, 0, 0.70) 100%
        );
    z-index: 0;
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    animation: heroPanelIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-signal);
    margin-bottom: 1rem;
    animation: heroTextIn 0.8s ease-out both;
    animation-delay: 0.04s;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1.15rem;
    color: var(--text-primary);
    animation: heroTextIn 0.8s ease-out both;
    animation-delay: 0.08s;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
    animation: heroTextIn 0.8s ease-out both;
    animation-delay: 0.2s;
}

.hero-tech-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    animation: heroTextIn 0.8s ease-out both;
    animation-delay: 0.26s;
}

.tech-pill {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
}

.hero-actions {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    animation: heroTextIn 0.8s ease-out both;
    animation-delay: 0.32s;
}

/* Section headers */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--spacing-xl);
}

.section-head-tight {
    margin-bottom: var(--spacing-lg);
}

.section-kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-signal);
    margin-bottom: 0.65rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title-plain::after {
    display: none;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-signal), var(--accent-gold));
    margin: var(--spacing-sm) auto 0;
}

.section-lead {
    margin-top: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
}

.plugin-pricing-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plugin-pricing-label {
    margin: 0;
}

.plugin-pricing-select {
    font: inherit;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
}

.plugin-pricing-note {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Plugins Section */
.plugins {
    padding: var(--spacing-2xl) 0;
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.plugin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.plugin-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.plugin-card-hero-link {
    display: block;
    text-decoration: none;
    color: inherit;
    outline: none;
}

.plugin-card-hero-link:focus-visible {
    box-shadow: inset 0 0 0 2px var(--accent-gold);
}

.plugin-card-title-link {
    display: block;
    line-height: 0;
    text-decoration: none;
    outline: none;
    border-radius: 4px;
}

.plugin-card-title-link:focus-visible {
    box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--accent-gold);
}

.plugin-card .plugin-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.plugin-card-actions {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: var(--spacing-md);
}

.plugin-card-actions-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
}

.plugin-card-read-more {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.plugin-card-read-more:hover {
    color: var(--accent-gold-light);
    border-bottom-color: rgba(201, 162, 39, 0.45);
}

.plugin-card-read-more:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.plugin-card-actions .plugin-card-btn-buy {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.24);
}

.plugin-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plugin-hero {
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
}

.plugin-hero-lab {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 180, 74, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 38%),
        linear-gradient(140deg, #5d3f10 0%, #251a08 45%, #111 100%);
}

.plugin-hero-comp {
    background-image:
        radial-gradient(circle at 70% 25%, rgba(201, 162, 39, 0.28) 0%, transparent 36%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 0 10px,
            rgba(255, 255, 255, 0.01) 10px 20px
        ),
        linear-gradient(160deg, #202936 0%, #171c24 50%, #0f1116 100%);
}

.plugin-hero-vox {
    background-image:
        radial-gradient(circle at 35% 30%, rgba(201, 162, 39, 0.32) 0%, transparent 42%),
        radial-gradient(circle at 78% 72%, rgba(189, 133, 255, 0.24) 0%, transparent 36%),
        linear-gradient(145deg, #3a2f52 0%, #241a35 48%, #14101b 100%);
}

.plugin-hero-fire {
    background-image:
        radial-gradient(circle at 25% 75%, rgba(255, 117, 39, 0.55) 0%, transparent 34%),
        radial-gradient(circle at 78% 30%, rgba(255, 205, 101, 0.3) 0%, transparent 36%),
        linear-gradient(145deg, #5c1e10 0%, #2b110b 52%, #130d0b 100%);
}

.plugin-hero-meter {
    background-image:
        radial-gradient(circle at 30% 35%, rgba(64, 224, 208, 0.22) 0%, transparent 42%),
        radial-gradient(circle at 82% 65%, rgba(120, 200, 255, 0.18) 0%, transparent 38%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 0 2px,
            rgba(255, 255, 255, 0.01) 2px 8px
        ),
        linear-gradient(155deg, #143a40 0%, #0c2226 48%, #080f12 100%);
}

.plugin-content {
    padding: var(--spacing-lg);
}

.plugin-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.plugin-wordmark-heading {
    margin: 0;
    line-height: 0;
}

.plugin-wordmark {
    display: block;
    width: 100%;
    height: auto;
}

.card-wordmark {
    max-width: 160px;
    margin-bottom: var(--spacing-xs);
}

.plugin-type {
    display: inline-block;
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.22);
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
}

.plugin-lead {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.65rem;
    flex-grow: 0;
}

.plugin-spec-list {
    list-style: none;
    margin: 0 0 var(--spacing-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.plugin-spec-list li {
    position: relative;
    padding-left: 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text-muted);
}

.plugin-spec-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--accent-signal);
    font-weight: 600;
}

.plugin-content p:not(.plugin-lead) {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.plugin-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    padding-top: 0.2rem;
}

.plugin-actions .btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.24);
}

.plugin-try-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(176, 176, 176, 0.55);
    padding-bottom: 1px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.plugin-try-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--accent-gold-muted);
}

/* About Section */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-text {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Contact Section */
.contact {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contact .section-head {
    margin-bottom: var(--spacing-md);
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.98rem;
}

.home-story {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 100%);
}

.home-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: var(--spacing-lg);
}

.home-story-copy {
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.8;
}

.home-story-points {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.home-story-points li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 0.95rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-signal-dim);
}

.home-story-points strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.16rem;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
}

.home-stack {
    padding: var(--spacing-2xl) 0;
}

.home-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
    gap: var(--spacing-md);
}

.home-stack-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1rem;
    border-top: 2px solid var(--accent-signal-dim);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.home-stack-card h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.stack-wordmark {
    max-width: 150px;
    margin: 0 0 0.35rem;
}

.home-stack-card p {
    color: var(--text-secondary);
    font-size: 0.89rem;
    line-height: 1.6;
}

.home-stack-step {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-signal);
    margin-bottom: 0.5rem;
}

.home-cta-band {
    margin-top: var(--spacing-xl);
    border: 1px solid var(--border-light);
    background: linear-gradient(125deg, rgba(110, 196, 184, 0.08) 0%, rgba(201, 162, 39, 0.06) 55%, transparent 100%);
    border-radius: 14px;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    align-items: center;
}

.home-cta-band p {
    color: var(--text-secondary);
    max-width: 700px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Legal Pages */
.legal-main {
    padding: calc(70px + var(--spacing-xl)) 0 var(--spacing-2xl);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

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

.legal-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.legal-card h2 {
    font-size: 1.2rem;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--text-secondary);
}

.legal-card ul {
    margin-left: 1.2rem;
    display: grid;
    gap: 0.4rem;
}

.legal-meta {
    margin-top: var(--spacing-lg);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Product Detail Pages */
.product-main {
    padding-bottom: var(--spacing-2xl);
}

.product-hero {
    padding: calc(70px + 5rem) 0 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.95;
    pointer-events: none;
    transform: scale(1.03);
    animation: heroBackgroundDrift 18s ease-in-out infinite alternate;
}

.product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.44) 45%,
        rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

.product-hero-inner {
    max-width: 880px;
    animation: heroPanelIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.product-kicker {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: var(--accent-gold-muted);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    margin-top: 0.45rem;
    margin-bottom: var(--spacing-md);
    animation: heroTextIn 0.75s ease-out both;
    animation-delay: 0.14s;
}

.product-hero h1 {
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    animation: heroTextIn 0.75s ease-out both;
    animation-delay: 0.05s;
}

.hero-wordmark {
    max-width: 255px;
    margin-bottom: 0;
}

.product-subtitle {
    color: #e2e2e2;
    max-width: 760px;
    font-size: 1.06rem;
    line-height: 1.75;
    margin-bottom: var(--spacing-md);
    animation: heroTextIn 0.75s ease-out both;
    animation-delay: 0.24s;
}

.product-price-hero {
    margin: 0 0 var(--spacing-md);
    max-width: 760px;
}

.product-price-hero .product-price-aud {
    font-size: 1.35rem;
    font-weight: 600;
    color: #f5f2eb;
    letter-spacing: 0.02em;
}

.product-price-hero .product-trial-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #d4d4dc;
    line-height: 1.45;
}

.product-hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
    animation: heroTextIn 0.75s ease-out both;
    animation-delay: 0.34s;
}

.product-hero-actions .btn {
    min-width: 170px;
    justify-content: center;
}

.product-hero-actions .plugin-try-link {
    font-size: 0.9rem;
    padding-bottom: 2px;
}

.product-content {
    padding: var(--spacing-2xl) 0 0;
}

.product-section + .product-section {
    margin-top: var(--spacing-xl);
}

.product-section h2 {
    font-size: 1.7rem;
    margin-bottom: var(--spacing-sm);
}

.product-section-intro {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
}

.product-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.1rem;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.product-list li {
    color: var(--text-secondary);
    padding-left: 1.1rem;
    position: relative;
}

.product-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-gold);
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.product-spec-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
}

.product-spec-group h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.product-spec-group ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.product-spec-group li {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.product-meta {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.84rem;
}

.product-hero-lab::before {
    background:
        radial-gradient(circle at 20% 18%, rgba(212, 180, 74, 0.32) 0%, transparent 40%),
        radial-gradient(circle at 83% 72%, rgba(255, 255, 255, 0.11) 0%, transparent 36%),
        linear-gradient(140deg, #5d3f10 0%, #251a08 45%, #111 100%);
}

.product-hero-comp::before {
    background:
        radial-gradient(circle at 74% 20%, rgba(201, 162, 39, 0.28) 0%, transparent 36%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0 12px,
            rgba(255, 255, 255, 0.02) 12px 22px
        ),
        linear-gradient(160deg, #202936 0%, #171c24 50%, #0f1116 100%);
}

.product-hero-vox::before {
    background:
        radial-gradient(circle at 35% 30%, rgba(201, 162, 39, 0.28) 0%, transparent 40%),
        radial-gradient(circle at 78% 72%, rgba(189, 133, 255, 0.24) 0%, transparent 36%),
        linear-gradient(145deg, #3a2f52 0%, #241a35 48%, #14101b 100%);
}

.product-hero-fire::before {
    background:
        radial-gradient(circle at 25% 75%, rgba(255, 117, 39, 0.52) 0%, transparent 34%),
        radial-gradient(circle at 78% 30%, rgba(255, 205, 101, 0.28) 0%, transparent 36%),
        linear-gradient(145deg, #5c1e10 0%, #2b110b 52%, #130d0b 100%);
}

.product-hero-meter::before {
    background:
        radial-gradient(circle at 28% 32%, rgba(72, 209, 204, 0.28) 0%, transparent 40%),
        radial-gradient(circle at 80% 68%, rgba(130, 190, 255, 0.2) 0%, transparent 36%),
        linear-gradient(150deg, #164850 0%, #0b1e22 50%, #070e10 100%);
}

/* Premium product page refresh */
.product-hero {
    padding: calc(70px + 4.5rem) 0 3.4rem;
}

.product-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: var(--spacing-lg);
    align-items: end;
}

.product-subtitle {
    max-width: 640px;
}

.product-proof-row {
    margin-top: var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    max-width: 700px;
    animation: heroTextIn 0.75s ease-out both;
    animation-delay: 0.44s;
}

.product-proof-chip {
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.65rem 0.7rem 0.58rem;
}

.product-proof-chip strong {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.product-proof-chip span {
    color: #d4d4d4;
    font-size: 0.8rem;
}

.product-hero-panel {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: var(--spacing-md);
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
    animation: heroPanelIn 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-delay: 0.18s;
}

.product-panel-label {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f6f2e5;
    margin-bottom: 0.7rem;
}

.product-panel-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.product-panel-list li {
    color: #efefef;
    padding-left: 1.05rem;
    position: relative;
    font-size: 0.9rem;
}

.product-panel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.54rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-gold);
}

.product-panel-note {
    margin-top: 0.8rem;
    color: #dadada;
    font-size: 0.84rem;
    line-height: 1.55;
}

.product-content {
    padding: var(--spacing-xl) 0 0;
}

.product-section + .product-section {
    margin-top: var(--spacing-2xl);
}

.product-section h2 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    letter-spacing: -0.01em;
}

.product-section-intro {
    max-width: 760px;
}

.product-highlight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.product-benefits {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.product-benefits li {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: var(--text-secondary);
}

.product-benefits li strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.18rem;
}

.product-quote {
    background: linear-gradient(180deg, #2d2d2d 0%, #252525 100%);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: var(--spacing-md);
    align-self: stretch;
}

.product-quote-text {
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.7;
}

.product-quote-meta {
    margin-top: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.product-grid {
    gap: 1rem;
}

.product-card {
    background: linear-gradient(180deg, #2c2c2c 0%, #262626 100%);
    border-radius: 14px;
}

.product-card h3 {
    font-size: 1.05rem;
}

.product-specs {
    gap: 1rem;
}

.product-spec-group {
    border-radius: 14px;
}

.product-spec-group h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--accent-gold);
}

.product-spec-group li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.45rem;
}

.product-spec-group li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-meta {
    margin-top: var(--spacing-md);
}

.product-cta-band {
    margin-top: var(--spacing-2xl);
    background: linear-gradient(130deg, #c9a227 0%, #d8ba57 38%, #a68620 100%);
    border-radius: 16px;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.product-cta-band h3 {
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    color: #1c1c1c;
    margin-bottom: 0.2rem;
}

.product-cta-band p {
    color: rgba(28, 28, 28, 0.85);
    max-width: 640px;
}

.product-cta-band .btn-secondary {
    border-color: rgba(0, 0, 0, 0.8);
    color: #1d1d1d;
    background: rgba(255, 255, 255, 0.3);
}

.product-cta-band .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .site-logo {
    height: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links > li > a {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        margin-top: 0.6rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

    .nav-item-plugins.open .nav-dropdown {
        display: block;
    }

    .nav-dropdown-link strong {
        font-size: 1rem;
    }

    .home-story-grid,
    .home-stack-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero {
        padding: calc(70px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .plugins-grid {
        grid-template-columns: 1fr;
    }
    
    .plugin-card {
        border-radius: 10px;
    }

    .plugin-content {
        padding: var(--spacing-md);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-card {
        padding: var(--spacing-md);
    }
}

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

    .footer-logo .site-logo {
        height: 12px;
    }
    
    .nav-links {
        gap: var(--spacing-sm);
    }
    
    nav {
        height: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .home-cta-band .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 860px) {
    .product-hero-layout,
    .product-highlight-layout,
    .product-grid,
    .product-specs {
        grid-template-columns: 1fr;
    }

    .product-hero-panel {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: calc(70px + 3.25rem) 0 3rem;
    }

    .product-hero h1 {
        font-size: clamp(2.05rem, 10vw, 2.9rem);
    }

    .hero-wordmark {
        max-width: 225px;
    }

    .product-subtitle {
        font-size: 0.98rem;
    }

    .product-content {
        padding-top: var(--spacing-xl);
    }

    .product-proof-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .product-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .product-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .product-cta-band {
        padding: var(--spacing-md);
    }

    .product-cta-band .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPanelIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes heroBackgroundDrift {
    from {
        transform: scale(1.03) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.08) translate3d(-0.4%, 0.7%, 0);
    }
}

.plugin-card {
    animation: fadeInUp 0.5s ease forwards;
}

.plugin-card:nth-child(1) { animation-delay: 0.1s; }
.plugin-card:nth-child(2) { animation-delay: 0.2s; }
.plugin-card:nth-child(3) { animation-delay: 0.3s; }
.plugin-card:nth-child(4) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .product-hero::before,
    .hero-content,
    .hero h1,
    .hero-subtitle,
    .hero-actions,
    .product-hero-inner,
    .product-kicker,
    .product-hero h1,
    .product-subtitle,
    .product-hero-actions,
    .product-proof-row,
    .product-hero-panel,
    .plugin-card {
        animation: none !important;
        transform: none !important;
    }
}
