:root {
    --bg: #0a0a0a;
    --bg-sidebar: #0e0e0e;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dim: #d4a017;
    --gold-tint: rgba(251, 191, 36, 0.08);
    --gold-glow: rgba(251, 191, 36, 0.12);
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --text-muted: #6b6b6b;
    --border: #1e1e1e;
    --border-hover: #2a2a2a;
    --accent-blue: #60a5fa;
    --accent-red: #f87171;
    --accent-green: #34d399;
    --accent-purple: #a78bfa;
    --font-sans: 'Space Grotesk', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.25s ease;
}

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

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    z-index: 50;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.sidebar-header {
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-brand {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.sidebar-brand span {
    color: var(--text-muted);
}

.sidebar-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.sidebar-section {
    padding: 16px 0;
}

.sidebar-section-title {
    padding: 0 24px;
    margin-bottom: 8px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 500;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    border-left: 2px solid transparent;
    position: relative;
}

.sidebar-link i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.sidebar-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    border-left-color: var(--border-hover);
}

.sidebar-link.active {
    color: var(--gold);
    background: var(--gold-tint);
    border-left-color: var(--gold);
}

.sidebar-dropdown {
    padding: 0;
    border: 0;
}

.sidebar-dropdown > summary {
    list-style: none;
    cursor: pointer;
}

.sidebar-dropdown > summary::-webkit-details-marker {
    display: none;
}

.sidebar-link-toggle {
    width: 100%;
}

.sidebar-caret {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.sidebar-dropdown[open] .sidebar-caret {
    transform: rotate(180deg);
    color: var(--gold);
}

.sidebar-submenu {
    display: grid;
    gap: 2px;
    padding: 4px 0 8px;
}

.sidebar-link-sub {
    padding-left: 46px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.sidebar-link-sub:hover {
    color: var(--text-primary);
}

.sidebar-link-muted {
    opacity: 0.6;
    pointer-events: none;
}

.sidebar-link-logout:hover {
    color: var(--accent-red);
    border-left-color: var(--accent-red);
}

.sidebar-footer {
    margin-top: auto;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.sidebar-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 60;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--gold);
    padding: 10px 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.sidebar-toggle.shifted {
    left: 276px;
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 36px 40px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.admin-header h1 i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.2rem;
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold-dim);
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.admin-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.admin-card:hover {
    border-color: var(--border-hover);
}

.admin-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-card h3 i {
    color: var(--gold);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    border-radius: 0 2px 2px 0;
}

.stat-card.blue::before {
    background: var(--accent-blue);
}

.stat-card.green::before {
    background: var(--accent-green);
}

.stat-card.purple::before {
    background: var(--accent-purple);
}

.stat-card.pink::before {
    background: var(--accent-red);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-card.blue .stat-icon {
    color: var(--accent-blue);
}

.stat-card.green .stat-icon {
    color: var(--accent-green);
}

.stat-card.purple .stat-icon {
    color: var(--accent-purple);
}

.stat-card.pink .stat-icon {
    color: var(--accent-red);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.admin-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.admin-table thead {
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 12px 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.admin-table code {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--gold);
}

.acd-pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.acd-pay-option {
    display: block;
    position: relative;
}

.acd-pay-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.acd-pay-content {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(15, 17, 21, 0.6);
    transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.acd-pay-option input:checked + .acd-pay-content {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.3);
    transform: translateY(-1px);
}

.acd-pay-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.acd-pay-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
}

.badge-active,
.badge-published,
.badge-read {
    background: var(--gold-tint);
    color: var(--gold);
}

.badge-draft {
    background: rgba(107, 107, 107, 0.1);
    color: var(--text-muted);
}

.badge-unread,
.badge-A,
.badge-AAAA {
    background: rgba(96, 165, 250, 0.1);
    color: var(--accent-blue);
}

.badge-replied {
    background: rgba(52, 211, 153, 0.1);
    color: var(--accent-green);
}

.badge-suspended,
.badge-revoked {
    background: rgba(248, 113, 113, 0.08);
    color: var(--accent-red);
}

.badge-expired {
    background: rgba(107, 107, 107, 0.1);
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    text-decoration: none;
}

.btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-tint);
}

.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #0a0a0a;
}

.btn-outline {
    border-color: var(--border-hover);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.78rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-tint);
}

.acd-cover {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.acd-cover::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.acd-cover::after {
    content: '';
    position: absolute;
    right: -15%;
    bottom: -20%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.acd-cover-left,
.acd-cover-right {
    position: relative;
    z-index: 1;
    padding: 64px clamp(24px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.acd-cover-left {
    gap: 24px;
    max-width: 640px;
}

.acd-cover-right {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.9), rgba(12, 12, 12, 0.55));
    border-left: 1px solid var(--border);
    position: relative;
}

.acd-cover-brand {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.acd-cover-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.acd-cover-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 520px;
}

.acd-cover-list {
    display: grid;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.acd-cover-list i {
    color: var(--gold);
    margin-right: 10px;
}

.acd-cover-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.acd-cover-card {
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(16, 16, 16, 0.7));
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: var(--radius);
    padding: 36px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.acd-cover-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(251, 191, 36, 0.08), transparent 65%);
    opacity: 0.8;
    pointer-events: none;
}

.acd-cover-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.acd-cover-card h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.acd-cover-card p {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-bottom: 18px;
}

.acd-cover-card form {
    display: grid;
    gap: 16px;
}

.acd-cover-card .form-group {
    margin-bottom: 0;
}

.acd-cover-card .form-control {
    background: rgba(6, 6, 6, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
}

.acd-cover-card .form-control:focus {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
}

.acd-cover-card .acd-check-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.acd-cover-card .acd-form-hint {
    margin-top: 0;
}

.acd-cover-card .acd-cover-footer {
    gap: 14px;
}

.acd-cover-card .acd-cover-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.acd-cover-card .acd-cover-footer a:hover {
    border-color: rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.08);
}

.acd-cover-sep {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 18px 0;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acd-cover-sep::before,
.acd-cover-sep::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--border);
}

.acd-cover-footer {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.acd-cover-footer a {
    color: var(--text-muted);
}

.acd-cover-footer a:hover {
    color: var(--gold);
}

.acd-landing {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.acd-hero {
    padding-bottom: 32px;
}

.acd-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.acd-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.08);
    color: var(--gold);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.acd-pill i {
    font-size: 0.7rem;
}

.acd-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.acd-metric {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.acd-metric-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.acd-metric-label {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 6px;
}

.acd-hero-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acd-glass-card {
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.acd-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.acd-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(96, 165, 250, 0.12);
    color: var(--accent-blue);
}

.acd-quick-list {
    display: grid;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.86rem;
    margin-bottom: 18px;
}

.acd-quick-list i {
    color: var(--accent-green);
    margin-right: 8px;
}

.acd-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.acd-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.acd-mini-title {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acd-mini-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 6px;
}

.acd-mini-sub {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 4px;
}

.acd-section {
    padding: 0 clamp(24px, 5vw, 72px);
}

.acd-section-alt {
    background: rgba(255, 255, 255, 0.02);
    padding-top: 40px;
    padding-bottom: 40px;
}

.acd-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    position: relative;
}

.acd-section-head::after {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
    margin-top: 16px;
}

.acd-band {
    padding: 32px 0 40px;
}

.acd-band-inner {
    background: linear-gradient(140deg, rgba(15, 15, 15, 0.8), rgba(20, 20, 20, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    display: grid;
    gap: 18px;
}

.acd-band-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.acd-band-row span {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.acd-highlight {
    padding: 24px 0 48px;
}

.acd-highlight-card {
    border-radius: 20px;
    padding: 36px;
    background: linear-gradient(120deg, rgba(251, 191, 36, 0.15), rgba(96, 165, 250, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 10px;
}

.acd-highlight-card h2 {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.acd-highlight-card p {
    color: var(--text-secondary);
    max-width: 720px;
}

.acd-programs {
    padding: 16px 0 48px;
}

.acd-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.acd-program-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 20, 0.75);
    padding: 22px;
    display: grid;
    gap: 12px;
    transition: var(--transition);
}

.acd-program-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-4px);
}

.acd-program-title {
    color: var(--text-primary);
    font-weight: 600;
}

.acd-program-link {
    color: var(--gold);
    font-size: 0.8rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acd-ready {
    padding: 24px 0 48px;
}

.acd-ready-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.acd-ready-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    gap: 10px;
}

.acd-ready-card span {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.acd-ready-card h3 {
    color: var(--text-primary);
    font-size: 1rem;
}

.acd-ready-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.acd-section-kicker {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--gold);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.acd-section-title {
    color: var(--text-primary);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 8px;
}

.acd-section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 640px;
}

.acd-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.acd-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--transition);
}

.acd-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.acd-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(251, 191, 36, 0.12);
    color: var(--gold);
    margin-bottom: 12px;
}

.acd-feature-card h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

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

.acd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.acd-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acd-price-highlight {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.acd-price-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.acd-price-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.acd-price-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.acd-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.acd-price-value span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.acd-price-list {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.acd-price-list i {
    color: var(--accent-green);
    margin-right: 8px;
}

.acd-cta {
    padding-bottom: 56px;
}

.acd-cta-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(96, 165, 250, 0.12));
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.acd-cta-card h2 {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    margin-bottom: 8px;
}

.acd-cta-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 520px;
}

.acd-auth-meta {
    display: grid;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.acd-auth-meta i {
    color: var(--gold);
    margin-right: 8px;
}

.acd-form-hint {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 8px;
}

.acd-input-row {
    display: grid;
    gap: 12px;
}

.acd-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin: 18px 0;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acd-divider::before,
.acd-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--border);
}

.acd-social-grid {
    display: grid;
    gap: 10px;
}

.acd-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.acd-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-tint);
}

.acd-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.acd-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acd-check input {
    width: 14px;
    height: 14px;
    accent-color: var(--gold);
}

.acd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
}

.acd-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.acd-landing-v2 {
    background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.08), transparent 45%),
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.08), transparent 40%);
    padding-bottom: 32px;
}

.acd-landing-v2 .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
}

.acd-landing-v2 .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.acd-landing-v2 .col {
    flex: 1 1 100%;
}

.acd-landing-v2 .position-relative {
    position: relative;
}

.acd-landing-v2 .text-center {
    text-align: center;
}

.acd-landing-v2 .acd-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
}

.acd-landing-v2 .acd-section {
    padding: 0;
}

.acd-hero-v2 {
    padding: 32px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.acd-hero-v2::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.28), transparent 65%);
    top: 24px;
    left: -40px;
    filter: blur(2px);
    opacity: 0.6;
}

.acd-hero-v2::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 70%);
    bottom: -60px;
    right: -30px;
    filter: blur(4px);
    opacity: 0.7;
}

.acd-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
}

.acd-hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acd-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(251, 191, 36, 0.25), rgba(96, 165, 250, 0.18));
    color: var(--gold);
    font-size: 1.1rem;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.acd-brand-sub {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

.acd-hero-nav {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.acd-hero-nav a {
    color: var(--text-muted);
    white-space: nowrap;
}

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

.acd-hero-nav .btn {
    white-space: nowrap;
}

.acd-nav-link {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.acd-nav-link:hover {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.08);
}

.acd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: center;
}

.acd-hero-title {
    color: var(--text-primary);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 18px 0 12px;
    line-height: 1.1;
}

.acd-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    color: var(--accent-blue);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.acd-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
}

.acd-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.acd-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
    color: var(--text-muted);
}

.acd-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.acd-stat-label {
    font-size: 0.8rem;
    margin-top: 4px;
}

.acd-hero-panel {
    display: grid;
    gap: 16px;
}

.acd-panel-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.acd-panel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(96, 165, 250, 0.12), transparent 50%);
    opacity: 0.9;
    pointer-events: none;
}
.acd-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.acd-panel-title {
    color: var(--text-primary);
    font-weight: 600;
}

.acd-panel-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.acd-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.acd-panel-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    display: grid;
    gap: 4px;
}

.acd-panel-item span {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

.acd-panel-item strong {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.acd-panel-item small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.acd-panel-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.acd-panel-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.acd-panel-strip i {
    color: var(--gold);
    margin-right: 6px;
}

.acd-flow {
    padding: 16px 0 40px;
}

.acd-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.acd-flow-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    display: grid;
    gap: 10px;
}

.acd-flow-card span {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.acd-flow-card h3 {
    color: var(--text-primary);
    font-size: 1rem;
}

.acd-flow-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.acd-tech {
    padding: 16px 0 40px;
}

.acd-tech-swiper {
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.acd-tech-swiper .swiper-wrapper {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 4px 4px 12px;
    animation: acd-tech-marquee 26s linear infinite;
}

.acd-tech-swiper .swiper-wrapper::-webkit-scrollbar {
    height: 6px;
}

.acd-tech-swiper .swiper-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.acd-tech-swiper .swiper-slide {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: start;
}

@keyframes acd-tech-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .acd-tech-swiper .swiper-wrapper {
        animation-duration: 34s;
    }
}

.acd-tech-card {
    background: linear-gradient(150deg, rgba(20, 20, 20, 0.95), rgba(20, 20, 20, 0.75));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    display: grid;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.acd-tech-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.12), transparent 55%);
    opacity: 0;
    transition: var(--transition);
}

.acd-tech-card:hover {
    border-color: rgba(251, 191, 36, 0.45);
    transform: translateY(-4px);
}

.acd-tech-card:hover::after {
    opacity: 1;
}

.acd-tech-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, rgba(251, 191, 36, 0.2), rgba(96, 165, 250, 0.12));
    color: var(--gold);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.acd-tech-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.acd-tech-card h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.acd-tech-card p {
    color: var(--text-muted);
    font-size: 0.86rem;
    position: relative;
    z-index: 1;
}

.acd-tech-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    color: var(--accent-blue);
    font-size: 0.7rem;
    font-family: var(--font-mono);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    width: fit-content;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .admin-content {
        padding: 28px 24px;
    }

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

    .acd-cover {
        grid-template-columns: 1fr;
    }

    .acd-cover-right {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .acd-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .acd-hero-nav {
        justify-content: flex-start;
    }

    .acd-section {
        padding: 0 24px;
    }

    .acd-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        z-index: 100;
        box-shadow: none;
    }

    .admin-sidebar.open {
        transform: translateX(0);
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .sidebar-toggle {
        display: block;
    }

    .admin-content {
        margin-left: 0;
        padding: 20px 16px;
        padding-top: 64px;
    }

    .admin-header {
        flex-direction: column;
    }

    .admin-header h1 {
        font-size: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 10px 12px;
    }

    .acd-cover-left,
    .acd-cover-right {
        padding: 36px 20px;
    }

    .acd-cover-left {
        gap: 18px;
    }

    .acd-cover {
        min-height: auto;
    }

    .acd-cover-card {
        max-width: 100%;
        padding: 28px;
    }

    .acd-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .acd-hero-nav {
        width: 100%;
    }

    .acd-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .acd-cta-card {
        padding: 24px;
    }

    .acd-hero-v2 {
        padding: 24px 0 40px;
    }

    .acd-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .acd-cover-title {
        font-size: 1.75rem;
    }

    .acd-cover-subtitle {
        font-size: 0.92rem;
    }

    .acd-cover-card {
        padding: 24px;
    }

    .acd-cover-card h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-content {
        padding: 16px 12px;
        padding-top: 60px;
    }

    .acd-metric-grid {
        grid-template-columns: 1fr;
    }

    .acd-cover-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .acd-cover-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .acd-cover-card .acd-check-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
