/* Alloc42 — Main Stylesheet
   Professional, typography-forward, mobile-first.
   No icons. No emojis. Clean. */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── Variables ─────────────────────────────────────── */
:root {
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-dark: #0f1419;
    --text: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888a0;
    --accent: #1a6b5a;
    --accent-hover: #145a4c;
    --accent-light: #e8f5f1;
    --border: #e2e4e8;
    --border-light: #f0f1f3;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --max-width: 1120px;
    --nav-height: 64px;
}

/* ── Dark Mode Variables ────────────────────────────── */
[data-theme="dark"] {
    --bg: #0f1419;
    --bg-alt: #151b23;
    --bg-dark: #0a0e12;
    --text: #e0e2e8;
    --text-secondary: #9ca3b4;
    --text-muted: #636d80;
    --accent: #3ec9a7;
    --accent-hover: #5dd8b9;
    --accent-light: rgba(62, 201, 167, 0.12);
    --border: #252d3a;
    --border-light: #1e2530;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    --card-shadow-hover: 0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.25);
}

/* ── Base ──────────────────────────────────────────── */
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--text);
    font-weight: 700;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: var(--accent-light); color: var(--text); }

/* ── Container ─────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 107, 90, 0.25);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    padding: 12px 24px;
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Navigation ────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    height: var(--nav-height);
}

[data-theme="dark"] .nav {
    background: rgba(15,20,25,0.92);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}
.nav-brand:hover { color: var(--text); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}
.nav-link:hover { color: var(--text); }

.nav-link-cta {
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600;
}
.nav-link-cta:hover {
    background: var(--accent-hover);
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.2s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

[data-theme="dark"] .nav.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ── Theme Toggle ──────────────────────────────────── */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 12px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.theme-toggle-track {
    width: 48px;
    height: 26px;
    background: var(--border);
    border-radius: 13px;
    position: relative;
    transition: background 0.35s ease;
}

[data-theme="dark"] .theme-toggle-track {
    background: #2a3545;
}

.theme-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.30, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(22px);
}

.sun-moon {
    width: 16px;
    height: 16px;
    position: relative;
}

/* Sun: yellow circle with rays */
.sun-moon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: #e8a317;
    border-radius: 50%;
    transition: transform 0.35s ease, background 0.35s ease;
}

[data-theme="dark"] .sun-moon::before {
    background: #c9d1d9;
    transform: scale(1.1);
}

.sun-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.sun-rays span {
    position: absolute;
    display: block;
    width: 2px;
    height: 3px;
    background: #e8a317;
    border-radius: 1px;
    top: 50%;
    left: 50%;
}

.sun-rays span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translateY(-8px); }
.sun-rays span:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg) translateY(-8px); }
.sun-rays span:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg) translateY(-8px); }
.sun-rays span:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg) translateY(-8px); }
.sun-rays span:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translateY(-8px); }
.sun-rays span:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg) translateY(-8px); }
.sun-rays span:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg) translateY(-8px); }
.sun-rays span:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg) translateY(-8px); }

[data-theme="dark"] .sun-rays {
    opacity: 0;
    transform: rotate(45deg) scale(0);
}

/* Moon shadow (crescent cutout) */
.moon-shadow {
    position: absolute;
    top: 1px;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

[data-theme="dark"] .moon-shadow {
    opacity: 1;
    transform: scale(1);
    background: #2a3545;
}

/* ── Section Headings ──────────────────────────────── */
.section-heading {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
    padding: 160px 0 100px;
    background: var(--bg);
}

.hero-content {
    max-width: 760px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Offerings / Tier Cards ────────────────────────── */
.offerings {
    padding: 100px 0;
    background: var(--bg-alt);
}

.offerings-price-range {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: -8px 0 24px;
}

.tier-grid {
    column-count: 2;
    column-gap: 24px;
}

.tier-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 24px;
    break-inside: avoid;
    transition: box-shadow 0.2s ease;
}
.tier-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.tier-card-highlight {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.tier-header {
    margin-bottom: 20px;
}

.tier-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.tier-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tier-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.tier-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.tier-audience {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.tier-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
    margin-top: 4px;
}

.tier-list {
    margin-bottom: 24px;
}

.tier-list li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}

.tier-list li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.tier-outcomes {
    margin-bottom: 28px;
}

.tier-cta {
    margin-top: auto;
    text-align: center;
    display: block;
}

.tier-card.card-collapsible,
.project-card.card-collapsible {
    cursor: pointer;
}

.tier-card.card-collapsible .tier-label,
.tier-card.card-collapsible .tier-section-label,
.tier-card.card-collapsible .tier-list,
.tier-card.card-collapsible .tier-cta,
.project-card.card-collapsible .project-status,
.project-card.card-collapsible .project-bullets,
.project-card.card-collapsible .project-fit,
.project-card.card-collapsible .project-actions {
    overflow: hidden;
    max-height: 460px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.55s ease, transform 0.55s ease, margin 0.55s ease, padding 0.55s ease;
    pointer-events: auto;
}

.tier-card.card-collapsible:not(.expanded) .tier-label,
.tier-card.card-collapsible:not(.expanded) .tier-section-label,
.tier-card.card-collapsible:not(.expanded) .tier-list,
.tier-card.card-collapsible:not(.expanded) .tier-cta,
.project-card.card-collapsible:not(.expanded) .project-status,
.project-card.card-collapsible:not(.expanded) .project-bullets,
.project-card.card-collapsible:not(.expanded) .project-fit,
.project-card.card-collapsible:not(.expanded) .project-actions {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    pointer-events: none;
}

.tier-card.card-collapsible:not(.expanded),
.project-card.card-collapsible:not(.expanded) {
    padding-bottom: 24px;
}

.tier-card.card-collapsible:not(.expanded)::after,
.project-card.card-collapsible:not(.expanded)::after {
    content: "Click to expand";
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

/* ── How It Works / Steps ──────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    text-align: left;
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Credibility ───────────────────────────────────── */
.credibility {
    padding: 100px 0;
    background: var(--bg-alt);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
}

.cred-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cred-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Portfolio ─────────────────────────────────────── */
.portfolio {
    padding: 100px 0;
    background: var(--bg);
}

.portfolio-grid {
    column-count: 3;
    column-gap: 24px;
}

.project-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 24px;
    break-inside: avoid;
    transition: box-shadow 0.2s ease;
}
.project-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.project-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
    align-self: flex-start;
}

.status-active { background: #e8f5f1; color: #1a6b5a; }
.status-stable { background: #e8f0fe; color: #2b5797; }
.status-design { background: #fef3e0; color: #8a6d2b; }
.status-shipped { background: #f0f0f0; color: #555; }

.project-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-purpose {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.project-bullets {
    margin-bottom: 16px;
    flex-grow: 1;
}

.project-bullets li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 14px;
    position: relative;
}
.project-bullets li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 11px;
}

.project-fit {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-style: italic;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.link-placeholder {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── FAQ ───────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    background: var(--bg-alt);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    padding: 20px 40px 20px 0;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.faq-question:hover { color: var(--accent); }

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
    content: "\2013";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ── Contact ───────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font);
    font-size: 15px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.15s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 107, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-aside {
    padding-top: 8px;
}

.contact-aside h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 32px;
}

.contact-aside h3:first-child {
    margin-top: 0;
}

.contact-aside p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-aside a {
    font-weight: 600;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
    padding: 48px 0;
    background: var(--bg-dark);
    color: #aaa;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.footer-copy {
    font-size: 12px;
    color: #555;
}

/* ── Notification ──────────────────────────────────── */
.notification {
    position: fixed;
    top: 80px;
    right: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--card-shadow-hover);
    z-index: 200;
    font-size: 14px;
    font-weight: 500;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}
.notification.show { transform: translateX(0); }
.notification-success { border-left: 4px solid var(--accent); }
.notification-error { border-left: 4px solid #c0392b; color: #c0392b; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
    .tier-grid { column-count: 2; }
    .portfolio-grid { column-count: 2; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-link {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-link:last-child { border-bottom: none; }
    .nav-link-cta {
        margin-top: 8px;
        text-align: center;
        display: block;
    }

    .hero { padding: 120px 0 72px; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 17px; }

    .section-heading { font-size: 28px; }
    .section-sub { font-size: 16px; margin-bottom: 40px; }

    .tier-grid { column-count: 1; }
    .steps-grid { grid-template-columns: 1fr; }
    .credibility-grid { grid-template-columns: 1fr; gap: 32px; }
    .portfolio-grid { column-count: 1; }

    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    .contact-aside { order: -1; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; }

    .tier-card { padding: 24px 20px; }
    .tier-price { font-size: 28px; }

    .section-heading { font-size: 24px; }

    .container { padding: 0 16px; }
}

/* ── Reduced Motion ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn, .tier-card, .project-card, .faq-answer,
    .notification { transition: none; }
}

/* ── Focus Styles ──────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }

[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #444; }
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: #666; }

/* ── Dark mode form adjustments ────────────────────── */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="dark"] .btn-secondary {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="dark"] .btn-primary {
    box-shadow: 0 4px 12px rgba(62, 201, 167, 0.2);
}

[data-theme="dark"] .tier-card {
    background: var(--bg-alt);
}

[data-theme="dark"] .project-card {
    background: var(--bg-alt);
}

[data-theme="dark"] .status-active { background: rgba(62,201,167,0.15); color: #3ec9a7; }
[data-theme="dark"] .status-stable { background: rgba(100,149,237,0.15); color: #6495ed; }
[data-theme="dark"] .status-design { background: rgba(230,180,80,0.15); color: #e6b450; }
[data-theme="dark"] .status-shipped { background: rgba(150,150,150,0.15); color: #999; }
